/* ============================================
   SHIVINTA PHARMA — PREMIUM STYLESHEET
   ============================================ */

:root {
  --primary: #0F172A;
  --accent-blue: #2563EB;
  --accent-teal: #06B6D4;
  --accent-green: #22C55E;
  --bg-white: #FFFFFF;
  --text-dark: #111827;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border-light: #E2E8F0;
  --bg-light: #F8FAFC;
  --bg-section: #F1F5F9;
  --gradient-blue: linear-gradient(135deg, #2563EB, #06B6D4);
  --gradient-green: linear-gradient(135deg, #22C55E, #06B6D4);
  --gradient-hero: linear-gradient(160deg, #EFF6FF 0%, #FFFFFF 40%, #F0FDFA 100%);
  --gradient-dark: linear-gradient(135deg, #0F172A, #1E293B);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 25px 60px rgba(0,0,0,0.1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Poppins', 'Inter', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* --- Gradient Text --- */
.gradient-text {
  background: var(--gradient-blue);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-alt {
  background: linear-gradient(135deg, #06B6D4, #22C55E);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Section Labels & Headers --- */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--accent-blue); margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: inline-block; width: 28px; height: 2px;
  background: var(--gradient-blue); border-radius: 2px;
}
.section-label.light { color: rgba(255,255,255,0.85); }
.section-label.light::before { background: linear-gradient(135deg, #06B6D4, #22C55E); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800; line-height: 1.15; color: var(--text-dark); margin-bottom: 20px;
}
.section-title.light { color: #fff; }

.section-text { font-size: 18px; color: var(--text-muted); line-height: 1.8; max-width: 620px; }
.section-subtitle { font-size: 17px; color: var(--text-muted); max-width: 540px; margin: 0 auto; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-cta { text-align: center; margin-top: 48px; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  padding: 13px 30px; border-radius: var(--radius-full); border: none;
  cursor: pointer; transition: all 0.3s var(--ease); text-decoration: none; line-height: 1.4;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--gradient-blue); color: #fff;
  box-shadow: 0 4px 20px rgba(37,99,235,0.25);
}
.btn-primary:hover {
  transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,99,235,0.35);
}
.btn-outline {
  background: transparent; color: var(--accent-blue); border: 2px solid var(--accent-blue);
}
.btn-outline:hover { background: var(--accent-blue); color: #fff; transform: translateY(-2px); }
.btn-outline-light {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); transform: translateY(-2px);
}
.btn-lg { padding: 16px 38px; font-size: 16px; }
.btn-sm { padding: 9px 22px; font-size: 13px; }
.btn-block { width: 100%; }

/* --- Glass Card --- */
.glass-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  transition: all 0.4s var(--ease);
}
.glass-card:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.08); transform: translateY(-6px);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: all 0.35s var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.88); backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(226,232,240,0.6);
  padding: 12px 0; box-shadow: 0 1px 20px rgba(0,0,0,0.04);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-icon svg { display: block; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-heading); font-size: 18px; font-weight: 700;
  color: var(--primary); line-height: 1.2;
}
.logo-tag { font-size: 11px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.5px; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  padding: 8px 18px; border-radius: var(--radius-full); transition: all 0.25s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--accent-blue); background: rgba(37,99,235,0.06); }

.nav-cta {
  display: inline-flex; align-items: center; font-size: 14px; font-weight: 600;
  color: #fff; background: var(--gradient-blue); padding: 10px 26px;
  border-radius: var(--radius-full); box-shadow: 0 2px 12px rgba(37,99,235,0.25);
  transition: all 0.3s var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(37,99,235,0.35); }

.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001;
}
.mobile-toggle span {
  display: block; width: 24px; height: 2px; background: var(--primary);
  border-radius: 2px; transition: all 0.3s var(--ease);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 100px; background: var(--gradient-hero); overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; }
.shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.07), transparent 70%);
  top: -150px; right: -150px;
}
.shape-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,0.05), transparent 70%);
  bottom: -100px; left: -150px;
}
.shape-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(34,197,94,0.05), transparent 70%);
  top: 35%; left: 25%;
}
.shape-4 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(37,99,235,0.04), transparent 70%);
  top: 55%; right: 15%;
}
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(37,99,235,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(37,99,235,0.07); border: 1px solid rgba(37,99,235,0.12);
  padding: 8px 22px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 500; color: var(--accent-blue); margin-bottom: 32px;
}
.badge-dot {
  width: 8px; height: 8px; background: var(--accent-green); border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-heading); font-size: clamp(42px, 6.5vw, 76px);
  font-weight: 900; line-height: 1.08; color: var(--primary); margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero-subtitle {
  font-size: 19px; color: var(--text-muted); line-height: 1.75; max-width: 560px; margin-bottom: 44px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex; align-items: center; gap: 40px; margin-top: 64px;
  padding-top: 40px; border-top: 1px solid var(--border-light);
}
.hero-stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-heading); font-size: 40px; font-weight: 800;
  color: var(--primary); line-height: 1;
}
.stat-plus { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--accent-blue); }
.stat-label { font-size: 14px; color: var(--text-muted); font-weight: 500; margin-top: 4px; }
.hero-stat-divider { width: 1px; height: 48px; background: var(--border-light); }

.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-mouse {
  width: 24px; height: 38px; border: 2px solid var(--border-light); border-radius: 12px;
  display: flex; justify-content: center; padding-top: 8px;
}
.scroll-wheel {
  width: 3px; height: 8px; background: var(--text-muted); border-radius: 3px;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  padding: 48px 0; background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.trust-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
}
.trust-item:hover { background: var(--bg-light); }
.trust-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  background: rgba(37,99,235,0.06);
}
.trust-item h4 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 2px; }
.trust-item p { font-size: 13px; color: var(--text-muted); }

/* ============================================
   ABOUT PREVIEW
   ============================================ */
.about-preview-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-preview-features { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }
.feature-item { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 500; color: var(--text-dark); }
.feature-check { flex-shrink: 0; }

.about-visual-card { position: relative; }
.visual-image {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.visual-image img { width: 100%; height: 360px; object-fit: cover; }

.visual-float-card {
  position: absolute; bottom: -20px; right: -20px;
  display: flex; align-items: center; gap: 12px;
  background: #fff; padding: 16px 24px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); border: 1px solid rgba(226,232,240,0.6);
}
.float-icon { flex-shrink: 0; }
.visual-float-card strong { display: block; font-size: 15px; color: var(--primary); }
.visual-float-card span { display: block; font-size: 12px; color: var(--text-muted); }

/* ============================================
   PRODUCTS PREVIEW
   ============================================ */
.products-preview { background: var(--bg-section); }
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.product-card {
  padding: 32px 28px; position: relative; overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-blue); opacity: 0; transition: opacity 0.3s var(--ease);
}
.product-card:hover::before { opacity: 1; }

.product-icon-wrap {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  background: rgba(37,99,235,0.06); margin-bottom: 20px;
}
.product-card h3 {
  font-family: var(--font-heading); font-size: 18px; font-weight: 700;
  color: var(--primary); margin-bottom: 6px;
}
.product-hsn {
  display: inline-block; font-size: 12px; font-weight: 500;
  color: var(--accent-teal); background: rgba(6,182,212,0.08);
  padding: 3px 10px; border-radius: var(--radius-full); margin-bottom: 12px;
}
.product-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.product-inquiry {
  font-size: 14px; font-weight: 600; color: var(--accent-blue);
  display: inline-flex; align-items: center; gap: 4px;
}
.product-inquiry:hover { gap: 8px; }

/* ============================================
   INDUSTRIES
   ============================================ */
.industries-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.industry-card {
  padding: 40px 32px; text-align: center;
}
.industry-icon {
  width: 72px; height: 72px; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  background: rgba(37,99,235,0.06); margin: 0 auto 24px;
  transition: all 0.3s var(--ease);
}
.industry-card:hover .industry-icon { background: rgba(37,99,235,0.1); transform: scale(1.05); }
.industry-card h3 {
  font-family: var(--font-heading); font-size: 20px; font-weight: 700;
  color: var(--primary); margin-bottom: 12px;
}
.industry-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ============================================
   LEAD MAGNET
   ============================================ */
.lead-magnet {
  position: relative; background: var(--gradient-dark); overflow: hidden;
}
.lead-magnet-bg { position: absolute; inset: 0; pointer-events: none; }
.lead-glow {
  position: absolute; border-radius: 50%; filter: blur(80px);
}
.lead-glow-1 {
  width: 400px; height: 400px; background: rgba(37,99,235,0.12);
  top: -100px; left: -100px;
}
.lead-glow-2 {
  width: 350px; height: 350px; background: rgba(6,182,212,0.1);
  bottom: -100px; right: -100px;
}
.lead-magnet-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  position: relative; z-index: 2;
}
.lead-magnet-content p { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.7; }
.lead-features { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.lead-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: rgba(255,255,255,0.85); font-weight: 500;
}

/* --- Quote Form --- */
.quote-form {
  padding: 36px; background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,1);
}
.quote-form h3 {
  font-family: var(--font-heading); font-size: 22px; font-weight: 700;
  color: var(--primary); margin-bottom: 4px;
}
.quote-form > p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }

/* --- Forms --- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; position: relative; }
.form-group label {
  display: block; font-size: 14px; font-weight: 600; color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; font-size: 14px; font-family: var(--font-body);
  color: var(--text-dark); background: var(--bg-light);
  border: 1.5px solid var(--border-light); border-radius: var(--radius-md);
  transition: all 0.25s var(--ease); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-blue); background: #fff;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #EF4444; }
.form-error {
  font-size: 12px; color: #EF4444; display: block; margin-top: 4px;
  min-height: 16px;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; cursor: pointer; }

/* ============================================
   PAGE HERO (INNER PAGES)
   ============================================ */
.page-hero {
  position: relative; padding: 160px 0 80px;
  background: var(--gradient-dark); overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.page-hero .shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.15), transparent 70%);
  top: -200px; right: -100px;
}
.page-hero .shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,0.1), transparent 70%);
  bottom: -150px; left: -100px;
}
.page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-hero-content h1 {
  font-family: var(--font-heading); font-size: clamp(36px, 5vw, 56px);
  font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 16px;
}
.page-hero-content p { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-story-visual { position: relative; }
.story-image-card {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-image-card img { width: 100%; height: 380px; object-fit: cover; }
.story-float-card {
  position: absolute; bottom: -20px; left: -20px;
  padding: 20px 28px; display: flex; align-items: center; gap: 16px;
}
.story-float-number {
  font-family: var(--font-heading); font-size: 36px; font-weight: 900;
  background: var(--gradient-blue); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
}
.story-float-text { font-size: 14px; font-weight: 600; color: var(--text-dark); }

.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.vm-card { padding: 44px 36px; text-align: center; }
.vm-icon { margin-bottom: 24px; }
.vm-card h3 {
  font-family: var(--font-heading); font-size: 22px; font-weight: 700;
  color: var(--primary); margin-bottom: 16px;
}
.vm-card p { font-size: 16px; color: var(--text-muted); line-height: 1.8; font-style: italic; }

/* Directors */
.directors-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px;
  max-width: 900px; margin: 0 auto;
}
.director-card { padding: 40px; text-align: center; }
.director-image {
  width: 120px; height: 120px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 24px; border: 3px solid rgba(37,99,235,0.15);
  box-shadow: 0 4px 20px rgba(37,99,235,0.1);
}
.director-image img { width: 100%; height: 100%; object-fit: cover; }
.director-info h3 {
  font-family: var(--font-heading); font-size: 20px; font-weight: 700;
  color: var(--primary); margin-bottom: 4px;
}
.director-role {
  font-size: 14px; font-weight: 600; color: var(--accent-blue);
  display: block; margin-bottom: 16px;
}
.director-info p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.director-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-full);
  background: rgba(37,99,235,0.06); color: var(--accent-blue);
  transition: all 0.25s var(--ease);
}
.director-social a:hover { background: var(--accent-blue); color: #fff; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { padding: 32px 24px; text-align: center; }
.value-icon { margin-bottom: 20px; }
.value-card h3 {
  font-family: var(--font-heading); font-size: 18px; font-weight: 700;
  color: var(--primary); margin-bottom: 10px;
}
.value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.products-full-grid { display: flex; flex-direction: column; gap: 24px; }
.product-full-card {
  display: grid; grid-template-columns: auto 1fr auto; gap: 32px;
  padding: 32px; align-items: center;
}
.product-full-icon {
  width: 64px; height: 64px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  background: rgba(37,99,235,0.06); flex-shrink: 0;
}
.product-full-info h3 {
  font-family: var(--font-heading); font-size: 20px; font-weight: 700;
  color: var(--primary); margin-bottom: 4px;
}
.product-full-hsn {
  display: inline-block; font-size: 12px; font-weight: 600;
  color: var(--accent-teal); background: rgba(6,182,212,0.08);
  padding: 3px 12px; border-radius: var(--radius-full); margin-bottom: 12px;
}
.product-full-info p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
.product-full-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.product-tag {
  font-size: 12px; font-weight: 500; color: var(--accent-blue);
  background: rgba(37,99,235,0.06); padding: 4px 12px;
  border-radius: var(--radius-full);
}
.product-full-action { display: flex; flex-direction: column; gap: 10px; white-space: nowrap; }

/* CTA Banner */
.cta-banner { padding: 80px 0; }
.cta-card {
  padding: 56px; text-align: center;
  background: var(--gradient-dark); color: #fff;
  border-radius: var(--radius-xl); position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,0.15), transparent 70%);
  top: -100px; right: -50px; border-radius: 50%;
}
.cta-card h2 {
  font-family: var(--font-heading); font-size: 32px; font-weight: 800;
  margin-bottom: 12px; position: relative; z-index: 2;
}
.cta-card p { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 32px; position: relative; z-index: 2; }
.cta-actions { display: flex; justify-content: center; gap: 16px; position: relative; z-index: 2; flex-wrap: wrap; }

/* ============================================
   CERTIFICATIONS PAGE
   ============================================ */
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.cert-card { padding: 44px 32px; text-align: center; }
.cert-badge { margin-bottom: 24px; }
.cert-card h3 {
  font-family: var(--font-heading); font-size: 20px; font-weight: 700;
  color: var(--primary); margin-bottom: 16px;
}
.cert-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.cert-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--accent-green);
  background: rgba(34,197,94,0.08); padding: 6px 16px; border-radius: var(--radius-full);
}
.status-dot {
  width: 7px; height: 7px; background: var(--accent-green);
  border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite;
}

/* Quality Section */
.quality-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.quality-features { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.quality-feature { display: flex; gap: 16px; }
.quality-feature-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  background: rgba(37,99,235,0.06);
}
.quality-feature h4 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.quality-feature p { font-size: 14px; color: var(--text-muted); }

.quality-image-stack { display: flex; gap: 20px; }
.quality-img-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); flex: 1;
}
.quality-img-card img { width: 100%; height: 240px; object-fit: cover; }
.quality-img-offset { margin-top: 40px; }

/* Documents */
.docs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.doc-card { padding: 32px 24px; text-align: center; }
.doc-preview {
  width: 72px; height: 72px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  background: rgba(37,99,235,0.04); margin: 0 auto 20px;
  border: 1px dashed rgba(37,99,235,0.15);
}
.doc-card h4 {
  font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 8px;
}
.doc-card p { font-size: 13px; color: var(--text-muted); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.contact-info h2 {
  font-family: var(--font-heading); font-size: 28px; font-weight: 800;
  color: var(--primary); margin-bottom: 12px;
}
.contact-info > p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.contact-cards { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.contact-info-card {
  display: flex; gap: 16px; padding: 20px; border-radius: var(--radius-md);
  background: var(--bg-light); transition: all 0.3s var(--ease);
}
.contact-info-card:hover { background: rgba(37,99,235,0.04); }
.contact-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  background: rgba(37,99,235,0.06);
}
.contact-info-card h4 { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.contact-info-card a:hover { color: var(--accent-blue); }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

.contact-form-wrap {}
.contact-form {
  padding: 40px; background: rgba(255,255,255,0.95) !important;
  border: 1px solid rgba(255,255,255,1);
}
.contact-form h3 {
  font-family: var(--font-heading); font-size: 24px; font-weight: 700;
  color: var(--primary); margin-bottom: 6px;
}
.contact-form > p { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary); color: rgba(255,255,255,0.7); padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-heading); font-size: 18px; font-weight: 700;
  color: #fff; margin-bottom: 16px;
}
.footer-about p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7);
  transition: all 0.25s var(--ease);
}
.footer-social a:hover { background: var(--accent-blue); color: #fff; transform: translateY(-2px); }

.footer-links h4, .footer-products h4, .footer-contact h4 {
  font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 20px;
}
.footer-links ul li, .footer-products ul li { margin-bottom: 10px; }
.footer-links ul li a, .footer-products ul li a {
  font-size: 14px; color: rgba(255,255,255,0.6);
  transition: all 0.25s var(--ease);
}
.footer-links ul li a:hover, .footer-products ul li a:hover { color: #fff; padding-left: 4px; }

.footer-contact-item {
  display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start;
  font-size: 14px;
}
.footer-contact-item svg { flex-shrink: 0; color: var(--accent-teal); margin-top: 2px; }
.footer-contact-item span, .footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: #fff; }

.footer-bottom {
  padding: 24px 0; text-align: center; font-size: 14px; color: rgba(255,255,255,0.4);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s var(--ease); animation: wa-float 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
@keyframes wa-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }
.fade-up:nth-child(7) { transition-delay: 0.6s; }

/* ============================================
   SUCCESS MESSAGE
   ============================================ */
.form-success {
  display: none; text-align: center; padding: 24px;
}
.form-success.show { display: block; }
.form-success svg { margin-bottom: 12px; }
.form-success h4 {
  font-family: var(--font-heading); font-size: 20px; font-weight: 700;
  color: var(--primary); margin-bottom: 8px;
}
.form-success p { font-size: 14px; color: var(--text-muted); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .docs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }

  /* Navbar Mobile */
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column; align-items: flex-start; padding: 80px 32px 32px;
    gap: 8px; box-shadow: -4px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s var(--ease); z-index: 1000;
  }
  .nav-menu.open { right: 0; }
  .nav-link { font-size: 16px; padding: 12px 16px; width: 100%; }
  .nav-cta { display: none; }
  .mobile-toggle { display: flex; }

  /* Hero */
  .hero { padding: 120px 0 64px; min-height: auto; }
  .hero-title { font-size: clamp(36px, 8vw, 52px); }
  .hero-subtitle { font-size: 16px; }
  .hero-stats { flex-direction: column; gap: 24px; align-items: flex-start; }
  .hero-stat-divider { width: 100%; height: 1px; }
  .hero-scroll-indicator { display: none; }

  /* Trust Strip */
  .trust-grid { grid-template-columns: 1fr; gap: 16px; }
  .trust-item { padding: 16px; }

  /* About Preview */
  .about-preview-grid { grid-template-columns: 1fr; gap: 40px; }
  .visual-float-card { right: 16px; bottom: -16px; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; }
  .product-full-card { grid-template-columns: 1fr; gap: 16px; }
  .product-full-action { flex-direction: row; }

  /* Industries */
  .industries-grid { grid-template-columns: 1fr; }

  /* Lead Magnet */
  .lead-magnet-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  /* VM Grid */
  .vm-grid { grid-template-columns: 1fr; }

  /* Directors */
  .directors-grid { grid-template-columns: 1fr; max-width: 440px; }

  /* Values */
  .values-grid { grid-template-columns: 1fr 1fr; }

  /* Certifications */
  .cert-grid { grid-template-columns: 1fr; }

  /* Quality */
  .quality-grid { grid-template-columns: 1fr; }
  .quality-image-stack { flex-direction: column; }
  .quality-img-offset { margin-top: 0; margin-left: 40px; }

  /* Docs */
  .docs-grid { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* CTA Banner */
  .cta-card { padding: 40px 24px; }
  .cta-card h2 { font-size: 24px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .values-grid { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
  .product-full-action { flex-direction: column; }
  .product-full-action .btn { width: 100%; }
  .stat-number { font-size: 32px; }
}