@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  /* Brand palette from logo */
  --navy:       #0F1F5C;   /* box body dark navy */
  --navy-mid:   #1a2f7a;
  --navy-dark:  #09153D;
  --teal:       #00BFA6;   /* checkmark arrow + BOX text */
  --teal-light: #00D4B8;
  --teal-pale:  #E6FAF8;
  --gold:       #F5B800;   /* sparkle star */
  --gold-pale:  #FFFBEB;
  --orange:     #FF6B00;   /* CTA accent */
  --orange-light:#FF8C33;
  --orange-pale: #FFF4EC;

  --bg:         #FAFAFA;
  --white:      #FFFFFF;
  --slate:      #4A5568;
  --muted:      #94A3B8;
  --border:     #E2E8F0;
  --radius:     16px;
  --radius-sm:  10px;
  --shadow:     0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--navy); -webkit-font-smoothing: antialiased; }

/* ───────── NAV ───────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 100px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 80px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--slate); font-size: 0.875rem; font-weight: 500;
  padding: 6px 12px; border-radius: 8px; transition: all 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: #F1F5F9; }
.nav-actions { display: flex; gap: 8px; align-items: center; }

.btn-ghost {
  padding: 9px 18px; border-radius: 10px; border: 1.5px solid var(--border);
  background: white; color: var(--navy); font-size: 0.875rem; font-weight: 600;
  cursor: pointer; text-decoration: none; transition: all 0.15s; font-family: inherit;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

.btn-primary {
  padding: 9px 20px; border-radius: 10px; border: none;
  background: linear-gradient(135deg, var(--teal) 0%, #009e8e 100%);
  color: white; font-size: 0.875rem; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: all 0.15s; font-family: inherit;
  display: inline-block;
}
.btn-primary:hover { background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 100%); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,191,166,0.35); }

.btn-cta {
  padding: 9px 20px; border-radius: 10px; border: none;
  background: linear-gradient(135deg, var(--orange) 0%, #e55f00 100%);
  color: white; font-size: 0.875rem; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: all 0.15s; font-family: inherit;
  display: inline-block;
}
.btn-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(255,107,0,0.35); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: all 0.2s; }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: white; border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem; z-index: 99; box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 10px 0; font-size: 0.95rem; font-weight: 500; color: var(--slate); text-decoration: none; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-btns { display: flex; gap: 8px; margin-top: 1rem; }
.mobile-btns a { flex: 1; text-align: center; padding: 10px; border-radius: 10px; font-weight: 700; font-size: 0.875rem; text-decoration: none; }

/* ───────── HERO ───────── */
.hero {
  padding: 5.5rem 1.5rem 4.5rem;
  background: linear-gradient(160deg, #EAF9F7 0%, #F0F3FF 50%, var(--bg) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,191,166,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,184,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: white; border: 1.5px solid var(--border);
  padding: 5px 15px; border-radius: 100px; font-size: 0.8rem; font-weight: 700;
  color: var(--teal); margin-bottom: 1.5rem; letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(0,191,166,0.1);
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); display: block; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.85)} }

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900; color: var(--navy); line-height: 1.08;
  letter-spacing: -2px; margin-bottom: 1.25rem;
}
.accent-teal { color: var(--teal); }
.accent-gold { color: var(--gold); }
.accent-orange { color: var(--orange); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem); color: var(--slate);
  max-width: 560px; margin: 0 auto 2.25rem; line-height: 1.7; font-weight: 400;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }

.btn-lg {
  padding: 15px 30px; border-radius: 12px; font-size: 1rem;
  font-weight: 700; font-family: inherit; display: inline-block; text-decoration: none;
  transition: all 0.18s; cursor: pointer; border: none;
}
.btn-lg.teal {
  background: linear-gradient(135deg, var(--teal) 0%, #009e8e 100%);
  color: white;
}
.btn-lg.teal:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,191,166,0.4); }
.btn-lg.orange {
  background: linear-gradient(135deg, var(--orange) 0%, #e55f00 100%);
  color: white;
}
.btn-lg.orange:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,0,0.4); }
.btn-lg.outline {
  background: white; color: var(--navy); border: 1.5px solid var(--border);
}
.btn-lg.outline:hover { border-color: var(--teal); color: var(--teal); }

/* STATS BAR */
.stats-bar {
  max-width: 820px; margin: 0 auto;
  display: flex; justify-content: center; gap: 0; flex-wrap: wrap;
  background: white; border-radius: var(--radius); border: 1px solid var(--border);
  box-shadow: var(--shadow); overflow: hidden;
}
.stat-item {
  text-align: center; padding: 1.5rem 2rem; flex: 1; min-width: 140px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 1.8rem; font-weight: 900; color: var(--navy); letter-spacing: -1.5px; }
.stat-num .stat-teal { color: var(--teal); }
.stat-label { font-size: 0.78rem; color: var(--muted); font-weight: 500; margin-top: 3px; }

/* FLOW ILLUSTRATION */
.flow-wrap {
  max-width: 760px; margin: 3rem auto 2.5rem;
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center; gap: 0.75rem;
}
.flow-node {
  background: white; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.1rem 0.75rem;
  text-align: center; box-shadow: var(--shadow);
}
.flow-node .fn-icon { font-size: 1.6rem; margin-bottom: 5px; }
.flow-node .fn-label { font-size: 0.75rem; font-weight: 700; color: var(--navy); }
.flow-node .fn-sub { font-size: 0.67rem; color: var(--muted); margin-top: 2px; }
.flow-arrow { color: var(--teal); font-size: 1.4rem; font-weight: 700; }
.flow-node.ftb-node {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: transparent;
}
.flow-node.ftb-node .fn-label { color: var(--teal); }
.flow-node.ftb-node .fn-sub { color: rgba(255,255,255,0.6); }

/* ───────── SECTIONS ───────── */
section { padding: 5rem 1.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  font-size: 0.72rem; font-weight: 800; color: var(--teal);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 8px;
}
.section-tag::before { content: ''; width: 20px; height: 2px; background: var(--teal); border-radius: 1px; display: inline-block; }
h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900; color: var(--navy);
  letter-spacing: -1.5px; line-height: 1.12; margin-bottom: 1rem;
}
.section-desc {
  font-size: 1rem; color: var(--slate); max-width: 520px;
  line-height: 1.7; margin-bottom: 3rem;
}

/* ───────── CARDS ───────── */
.card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  box-shadow: var(--shadow); transition: all 0.2s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--teal); }
.card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--teal-pale); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1rem; font-size: 1.25rem;
}
.card h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.card p { font-size: 0.875rem; color: var(--slate); line-height: 1.65; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* ───────── HOW IT WORKS ───────── */
.hiw-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.hiw-col-label {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}
.hiw-col-label.brand { background: #EFF6FF; color: #2563EB; }
.hiw-col-label.consumer { background: var(--teal-pale); color: var(--teal); }
.step {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal-pale); color: var(--teal); font-weight: 800;
  font-size: 0.8rem; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--teal);
}
.step-body h4 { font-size: 0.925rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.step-body p { font-size: 0.82rem; color: var(--slate); line-height: 1.6; }

/* ───────── INDUSTRIES ───────── */
.industry-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.industry-chip {
  background: white; border: 1.5px solid var(--border);
  border-radius: 100px; padding: 9px 20px;
  font-size: 0.875rem; font-weight: 600; color: var(--slate);
  display: flex; align-items: center; gap: 8px;
  transition: all 0.15s; box-shadow: var(--shadow);
}
.industry-chip:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-pale); transform: translateY(-1px); }
.industry-chip .emoji { font-size: 1rem; }

/* ───────── PRICING ───────── */
.pricing-card {
  max-width: 460px; margin: 0 auto;
  background: white; border-radius: 24px; padding: 2.75rem;
  box-shadow: 0 20px 60px rgba(0,191,166,0.15); position: relative; overflow: hidden;
  border: 2px solid var(--teal);
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal), #009e8e);
  color: white; font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; padding: 4px 12px; border-radius: 100px; margin-bottom: 1.25rem;
}
.pricing-name { font-size: 1.4rem; font-weight: 900; color: var(--navy); margin-bottom: 0.5rem; }
.pricing-price {
  font-size: 3.2rem; font-weight: 900; color: var(--navy);
  letter-spacing: -2.5px; margin-bottom: 0.25rem; line-height: 1;
}
.pricing-price .rupee { font-size: 1.4rem; font-weight: 700; vertical-align: top; padding-top: 8px; display: inline-block; color: var(--teal); }
.pricing-note { font-size: 0.8rem; color: var(--muted); margin-bottom: 2rem; }
.pricing-features { list-style: none; margin-bottom: 2.25rem; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem; color: var(--navy); font-weight: 500;
}
.pricing-features li:last-child { border-bottom: none; }
.check { color: var(--teal); font-weight: 900; font-size: 1rem; }

/* ───────── DASHBOARD ───────── */
.dashboard-wrap {
  background: var(--navy-dark); border-radius: 20px;
  padding: 1.5rem; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.07);
}
.db-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.25rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.db-title { color: white; font-weight: 700; font-size: 0.875rem; }
.db-badge {
  background: rgba(0,191,166,0.15); color: var(--teal);
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px;
  border-radius: 100px; border: 1px solid rgba(0,191,166,0.3);
}
.db-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1rem; }
.db-metric {
  background: rgba(255,255,255,0.04); border-radius: 12px; padding: 1rem;
  border: 1px solid rgba(255,255,255,0.07);
}
.db-metric .label { font-size: 0.68rem; color: #64748B; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.db-metric .value { font-size: 1.6rem; font-weight: 900; color: white; margin-top: 4px; letter-spacing: -1px; }
.db-metric .change { font-size: 0.68rem; color: var(--teal); margin-top: 2px; font-weight: 600; }
.db-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.db-chart { background: rgba(255,255,255,0.04); border-radius: 12px; padding: 1rem; border: 1px solid rgba(255,255,255,0.07); }
.db-chart .title { font-size: 0.72rem; color: #94A3B8; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.85rem; }
.bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.bar-label { font-size: 0.68rem; color: #94A3B8; width: 50px; text-align: right; flex-shrink: 0; }
.bar-track { flex: 1; height: 7px; background: rgba(255,255,255,0.07); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--teal), var(--teal-light)); }
.bar-fill.gold { background: linear-gradient(90deg, var(--gold), #ffd54f); }
.bar-fill.neg { background: linear-gradient(90deg, #EF4444, #f87171); }
.bar-fill.neu { background: linear-gradient(90deg, #94A3B8, #CBD5E1); }
.bar-val { font-size: 0.68rem; color: #94A3B8; width: 28px; flex-shrink: 0; font-weight: 600; }
.kw-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 4px; }
.kw-tag { background: rgba(255,255,255,0.07); color: #94A3B8; font-size: 0.68rem; padding: 3px 8px; border-radius: 6px; font-weight: 600; }
.kw-tag.hot { background: rgba(0,191,166,0.15); color: var(--teal); border: 1px solid rgba(0,191,166,0.3); }

/* ───────── FORM ───────── */
.form-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 5rem 1.5rem;
}
.form-card {
  max-width: 660px; margin: 0 auto;
  background: white; border-radius: 24px; padding: 2.75rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}
.form-card h2 { margin-bottom: 0.5rem; }
.form-card .form-desc { color: var(--slate); font-size: 0.9rem; margin-bottom: 2rem; line-height: 1.65; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 0.8rem; font-weight: 700; color: var(--navy); }
input, select, textarea {
  padding: 11px 14px; border-radius: 10px; border: 1.5px solid var(--border);
  font-family: inherit; font-size: 0.875rem; color: var(--navy); outline: none;
  transition: border-color 0.15s; background: #F8FAFC; width: 100%;
}
input:focus, select:focus, textarea:focus { border-color: var(--teal); background: white; box-shadow: 0 0 0 3px rgba(0,191,166,0.1); }
.interest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.interest-chip {
  display: flex; align-items: center; gap: 8px; padding: 9px 12px;
  border: 1.5px solid var(--border); border-radius: 10px;
  cursor: pointer; font-size: 0.82rem; font-weight: 600; color: var(--slate);
  transition: all 0.15s; user-select: none; background: #F8FAFC;
}
.interest-chip input { display: none; }
.interest-chip:has(input:checked) { border-color: var(--teal); background: var(--teal-pale); color: var(--teal); }
.checkbox-wrap {
  display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px;
  background: #F8FAFC; border-radius: 10px; border: 1.5px solid var(--border);
  font-size: 0.82rem; color: var(--slate); cursor: pointer; line-height: 1.55;
}
.checkbox-wrap input[type="checkbox"] { width: auto; margin-top: 1px; accent-color: var(--teal); flex-shrink: 0; }

/* ───────── TESTIMONIALS ───────── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testi-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  box-shadow: var(--shadow); transition: all 0.2s;
}
.testi-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text { font-size: 0.875rem; color: var(--slate); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; flex-shrink: 0; }
.avatar.a { background: #DBEAFE; color: #1D4ED8; }
.avatar.b { background: var(--teal-pale); color: var(--teal); }
.avatar.c { background: var(--gold-pale); color: #B45309; }
.author-name { font-size: 0.875rem; font-weight: 800; color: var(--navy); }
.author-role { font-size: 0.75rem; color: var(--muted); margin-top: 1px; }

/* ───────── FAQ ───────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; cursor: pointer; gap: 1rem;
}
.faq-q span { font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.faq-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--slate); flex-shrink: 0; transition: all 0.25s;
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { font-size: 0.875rem; color: var(--slate); line-height: 1.75; padding-bottom: 1.25rem; }
.faq-item.open .faq-a { max-height: 240px; }
.faq-item.open .faq-icon { background: var(--teal-pale); border-color: var(--teal); color: var(--teal); transform: rotate(45deg); }

/* ───────── FOOTER ───────── */
footer { background: var(--navy-dark); color: #94A3B8; padding: 4.5rem 1.5rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo img { height: 90px; width: auto; filter: brightness(0) invert(1) opacity(0.9); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 240px; }
.footer-col h4 { color: white; font-size: 0.875rem; font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul a { color: #94A3B8; text-decoration: none; font-size: 0.85rem; transition: color 0.15s; }
.footer-col ul a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.75rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; }
.social-links { display: flex; gap: 8px; }
.social-link {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #94A3B8; text-decoration: none; font-size: 0.8rem; font-weight: 700;
  transition: all 0.15s;
}
.social-link:hover { background: var(--teal); color: white; border-color: var(--teal); }
.newsletter-form { display: flex; gap: 8px; margin-top: 0.75rem; }
.newsletter-form input {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: white; flex: 1; padding: 9px 13px; border-radius: 9px; font-size: 0.82rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: var(--teal); box-shadow: none; background: rgba(255,255,255,0.09); }
.newsletter-form button {
  background: var(--teal); color: white; border: none;
  padding: 9px 14px; border-radius: 9px; font-size: 0.82rem;
  font-weight: 700; cursor: pointer; white-space: nowrap; font-family: inherit;
  transition: background 0.15s;
}
.newsletter-form button:hover { background: var(--teal-light); }

/* ───────── PAGE HERO ───────── */
.page-hero {
  padding: 4.5rem 1.5rem 3.5rem;
  background: linear-gradient(160deg, #EAF9F7 0%, #F0F3FF 60%, var(--bg) 100%);
  text-align: center; position: relative;
}
.page-hero h1 { font-size: clamp(1.9rem, 5vw, 3.2rem); letter-spacing: -1.5px; }
.page-hero p { font-size: 1.05rem; color: var(--slate); max-width: 530px; margin: 1rem auto 0; line-height: 1.7; }

/* ───────── CONTACT ───────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; align-items: start; }
.contact-info h3 { font-size: 1.3rem; font-weight: 900; color: var(--navy); margin-bottom: 1rem; }
.contact-info p { font-size: 0.9rem; color: var(--slate); line-height: 1.75; margin-bottom: 1.75rem; }
.contact-detail-item {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 1rem;
}
.cdi-icon {
  width: 38px; height: 38px; background: var(--teal-pale); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.cdi-body { font-size: 0.875rem; }
.cdi-body strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.cdi-body a { color: var(--teal); text-decoration: none; }
.cdi-body span { color: var(--slate); }
.contact-form-card { background: white; border-radius: var(--radius); padding: 2.25rem; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }

/* ───────── 404 ───────── */
.not-found {
  min-height: 72vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 3rem 1.5rem;
  background: linear-gradient(160deg, #EAF9F7 0%, #F0F3FF 50%, var(--bg) 100%);
}
.nf-number {
  font-size: clamp(6rem, 18vw, 10rem); font-weight: 900; line-height: 1;
  letter-spacing: -8px; margin-bottom: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nf-title { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.75rem; }
.nf-desc { color: var(--slate); max-width: 380px; margin: 0 auto 2.25rem; line-height: 1.7; }

/* ───────── UTILITY ───────── */
.bg-light { background: var(--white); }
.bg-pale-teal { background: var(--teal-pale); }
.text-center { text-align: center; }
.section-tag.center { justify-content: center; }
.pill-green { display: inline-block; background: #F0FDF4; color: #16A34A; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 3px 10px; border-radius: 100px; }
.dark-section { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); padding: 5rem 1.5rem; }

/* ───────── RESPONSIVE ───────── */
@media(max-width:1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media(max-width:900px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: block; }
  .hiw-cols { grid-template-columns: 1fr; gap: 2.5rem; }
  .testi-grid, .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .db-metrics { grid-template-columns: 1fr 1fr; }
  .db-bottom { grid-template-columns: 1fr; }
  .flow-wrap { grid-template-columns: 1fr 1fr; }
  .flow-arrow { display: none; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { flex: 0 0 45%; border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
}
@media(max-width:680px) {
  section { padding: 3.5rem 1rem; }
  .page-hero { padding: 3rem 1rem 2.5rem; }
  .hero { padding: 3.5rem 1rem 3rem; }
  h1 { letter-spacing: -1.5px; }
  .form-grid { grid-template-columns: 1fr; }
  .testi-grid, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .stats-bar { border-radius: var(--radius); }
  .stat-item { flex: 0 0 100%; border-right: none; }
  .pricing-card { padding: 1.75rem; }
  .flow-wrap { display: grid; grid-template-columns: 1fr 1fr; }
  .db-metrics { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 1.5rem; }
  .interest-grid { grid-template-columns: 1fr; }
  .nf-number { letter-spacing: -4px; }
}
