/* ═══════════════════════════════════════
   AD COLLAB — SITE STYLES
   Brand: Navy #1B3A5C | Blue #0088FF | Cyan #00D4FF
   ═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --navy: #1B3A5C;
  --deep-navy: #233B6E;
  --navy-dark: #122740;
  --blue: #0088FF;
  --cyan: #00D4FF;
  --light-blue: #E8F4FD;
  --ice: #F0F8FF;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --green: #22C55E;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 1px 3px rgba(27,58,92,0.06);
  --shadow-md: 0 4px 16px rgba(27,58,92,0.08);
  --shadow-lg: 0 12px 40px rgba(27,58,92,0.12);
  --shadow-xl: 0 20px 60px rgba(27,58,92,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Utility ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27,58,92,0.06);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--navy);
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover {
  background: var(--deep-navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--white) !important;
}

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--navy);
  margin: 5px 0; transition: var(--transition);
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-120%);
    transition: transform var(--transition);
  }
  .nav-links.open { transform: translateY(0); }
}

/* ════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,136,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 80px 0;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-label span {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 19px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 40px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,136,255,0.3);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

/* ════════════════════════════════════════
   SECTION STYLES
   ════════════════════════════════════════ */
.section {
  padding: 100px 0;
}
.section-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.65;
}
.section-header {
  margin-bottom: 56px;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered .section-subtitle {
  margin: 0 auto;
}

.section--light { background: var(--ice); }
.section--navy { background: var(--navy); }
.section--navy .section-label { color: var(--cyan); }
.section--navy .section-title { color: var(--white); }
.section--navy .section-subtitle { color: rgba(255,255,255,0.6); }
.section--gradient { background: linear-gradient(135deg, var(--navy) 0%, var(--deep-navy) 100%); }

/* ════════════════════════════════════════
   DIFFERENTIATOR CARDS
   ════════════════════════════════════════ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .diff-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .diff-grid { grid-template-columns: 1fr; } }

.diff-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.diff-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-blue);
  border-radius: 10px;
  margin-bottom: 18px;
}
.diff-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.diff-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.diff-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ════════════════════════════════════════
   DIVISION CARDS
   ════════════════════════════════════════ */
.div-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 700px) { .div-grid { grid-template-columns: 1fr; } }

.div-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.div-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.div-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}
.div-card .div-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--light-blue);
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.div-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}
.div-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 24px;
}
.div-card ul {
  list-style: none;
  margin-bottom: 28px;
}
.div-card ul li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 8px;
}
.div-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
}

/* ════════════════════════════════════════
   TIMELINE (How It Works)
   ════════════════════════════════════════ */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 700px) { .timeline-grid { grid-template-columns: 1fr 1fr; gap: 32px 0; } }

.timeline-step { text-align: center; padding: 0 20px; position: relative; }
.timeline-step::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.15);
}
.timeline-step:last-child::after { display: none; }
.timeline-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.timeline-num.blue { background: var(--blue); color: var(--white); }
.timeline-num.cyan { background: var(--cyan); color: var(--navy); }
.timeline-num.green { background: var(--green); color: var(--white); }
.timeline-step h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.timeline-step .timeline-time {
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.timeline-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

/* ════════════════════════════════════════
   PRICING
   ════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 700px) { .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
}
.pricing-tier {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price span { font-size: 18px; font-weight: 500; color: var(--gray-400); }
.pricing-spend {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}
.pricing-features li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 10px;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}
.pricing-note {
  font-size: 14px;
  color: var(--gray-400);
  font-style: italic;
  max-width: 700px;
  margin: 32px auto 0;
  text-align: center;
  line-height: 1.6;
}

/* ════════════════════════════════════════
   CTA BANNER
   ════════════════════════════════════════ */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-navy) 50%, var(--navy-dark) 100%);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  position: relative;
}
.cta-banner .btn-primary { position: relative; font-size: 17px; padding: 18px 40px; }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
  background: var(--gray-900);
  padding: 48px 0;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-logo { height: 40px; width: auto; }
.footer-tagline {
  font-size: 13px;
  color: var(--gray-400);
  border-left: 1px solid var(--gray-700);
  padding-left: 16px;
}
.footer-right {
  font-size: 13px;
  color: var(--gray-500);
}
@media (max-width: 600px) {
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-brand { flex-direction: column; }
  .footer-tagline { border: none; padding: 0; }
}

/* ════════════════════════════════════════
   PAGE HERO (subpages)
   ════════════════════════════════════════ */
.page-hero {
  padding: 140px 0 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  position: relative;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.65;
  position: relative;
}

/* ════════════════════════════════════════
   PROOF BAR (audit page)
   ════════════════════════════════════════ */
.proof-bar {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan);
}
.proof-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}
@media (max-width: 500px) { .proof-bar { flex-direction: column; gap: 12px; } }

/* ════════════════════════════════════════
   FORM EMBED
   ════════════════════════════════════════ */
.form-section { padding: 80px 0; }
.form-wrap {
  max-width: 560px;
  margin: 0 auto;
}

/* ════════════════════════════════════════
   VALUES GRID
   ════════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 700px) { .values-grid { grid-template-columns: 1fr 1fr; } }

.value-card { text-align: center; padding: 32px 20px; }
.value-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-blue);
  border-radius: 14px;
  margin: 0 auto 18px;
}
.value-icon svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ════════════════════════════════════════
   CONTACT LAYOUT
   ════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-item-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-blue);
  border-radius: 10px;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-item-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.contact-item-value {
  font-size: 16px;
  color: var(--navy);
  font-weight: 500;
}

/* ════════════════════════════════════════
   ABOUT STORY
   ════════════════════════════════════════ */
.story-content {
  max-width: 700px;
  margin: 0 auto;
}
.story-content p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
}
.story-content p:first-child {
  font-size: 20px;
  color: var(--navy);
  font-weight: 500;
}

/* ════════════════════════════════════════
   AUDIT PAGE — WHAT YOU GET
   ════════════════════════════════════════ */
.audit-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 700px) { .audit-features { grid-template-columns: 1fr 1fr; } }

.audit-feature {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.audit-feature-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-blue);
  border-radius: 12px;
  margin: 0 auto 16px;
}
.audit-feature-icon svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.audit-feature h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.audit-feature p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ════════════════════════════════════════
   INLINE FORM STYLES
   (matching the standalone forms)
   ════════════════════════════════════════ */
.ac-field { margin-bottom: 20px; }
.ac-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.ac-field label .ac-required { color: var(--blue); margin-left: 2px; }
.ac-field label .ac-optional { color: var(--gray-400); font-weight: 400; font-size: 12px; margin-left: 4px; }
.ac-field input,
.ac-field select,
.ac-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.ac-field input::placeholder,
.ac-field textarea::placeholder { color: var(--gray-400); }
.ac-field input:focus,
.ac-field select:focus,
.ac-field textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,136,255,0.1);
}
.ac-field textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
.ac-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .ac-field-row { grid-template-columns: 1fr; gap: 0; } }
.ac-select-wrap { position: relative; }
.ac-select-wrap::after {
  content: '';
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--gray-400);
  pointer-events: none;
}
.ac-submit {
  width: 100%;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.ac-submit:hover { background: var(--deep-navy); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.ac-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.ac-form-footer {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  color: var(--gray-400);
}

.ac-success { display: none; text-align: center; padding: 48px 24px; }
.ac-success.visible { display: block; }
.ac-success-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.ac-success-icon svg { width: 28px; height: 28px; stroke: white; stroke-width: 2.5; fill: none; }
.ac-success h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.ac-success p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 380px;
  margin: 0 auto;
}
.ac-success .ac-timeline {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: var(--light-blue);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

/* ══════════ PRIVACY NOTICE BANNER ══════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #1B3A5C;
  color: #ffffff;
  padding: 14px 24px;
  z-index: 10000;
  display: none;
  box-sizing: border-box;
  animation: cookieSlide 0.4s ease;
}
@keyframes cookieSlide { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text {
  font-size: 13px;
  line-height: 1.5;
  flex: 1;
  min-width: 240px;
}
.cookie-text a { color: var(--cyan); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.cookie-accept { background: var(--blue); color: #fff; }
.cookie-accept:hover { background: var(--cyan); color: var(--navy); }
.cookie-choices { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.15); }
.cookie-choices:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
.cookie-prefs { display: none; width: 100%; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 14px; }
.cookie-prefs.open { display: block; }
.cookie-pref-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.cookie-pref-row:last-child { border-bottom: none; }
.cookie-pref-info { flex: 1; }
.cookie-pref-name { font-size: 13px; font-weight: 600; color: #fff; }
.cookie-pref-desc { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.cookie-pref-badge { font-size: 10px; color: var(--cyan); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.cookie-toggle { position: relative; width: 40px; height: 22px; flex-shrink: 0; margin-left: 16px; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider { position: absolute; cursor: pointer; inset: 0; background: rgba(255,255,255,0.15); border-radius: 22px; transition: 0.2s; }
.cookie-toggle-slider::before { content: ''; position: absolute; width: 16px; height: 16px; left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: 0.2s; }
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--blue); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(18px); }
.cookie-save { width: 100%; margin-top: 12px; padding: 10px; background: var(--blue); color: #fff; border: none; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; }
.cookie-save:hover { background: var(--cyan); color: var(--navy); }


/* Focus visibility for keyboard navigation */
*:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

/* Skip to content link (keyboard users) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--navy);
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  z-index: 10001;
  font-size: 14px;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ════════════════════════════════════════
   EXPANDED FOOTER
   ════════════════════════════════════════ */
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-800);
  margin-bottom: 32px;
}
.footer-col-brand .footer-logo { margin-bottom: 12px; }
.footer-desc {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 320px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--gray-800);
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--blue); }
.footer-social svg { width: 18px; height: 18px; fill: var(--gray-400); }
.footer-social a:hover svg { fill: var(--white); }
.footer-heading {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.footer-link-list { list-style: none; }
.footer-link-list li { margin-bottom: 10px; }
.footer-link-list a {
  font-size: 14px;
  color: var(--gray-400);
  transition: color var(--transition);
}
.footer-link-list a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 13px;
  color: var(--gray-500);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--gray-300); }
.footer-bottom-copy {
  font-size: 13px;
  color: var(--gray-500);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════════════
   NAV PHONE LINK
   ════════════════════════════════════════ */
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy) !important;
}
.nav-phone svg { width: 16px; height: 16px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.nav-phone-li { display: none; }
@media (max-width: 768px) {
  .nav-phone-li { display: block; }
  .nav-phone { justify-content: center; }
}

/* ════════════════════════════════════════
   ARTICLE META (dates, author, read time)
   ════════════════════════════════════════ */
.article-date {
  font-size: 13px;
  color: var(--gray-400);
}
.article-meta-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gray-300);
  flex-shrink: 0;
}
.article-author {
  font-size: 13px;
  color: var(--gray-400);
}
.article-readtime {
  font-size: 13px;
  color: var(--gray-400);
}

/* ════════════════════════════════════════
   INSIGHT CARDS & GRID
   ════════════════════════════════════════ */
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .insight-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .insight-grid { grid-template-columns: 1fr; } }
.insight-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.insight-cat {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 14px;
  width: fit-content;
}
.insight-cat.model { color: #7c3aed; background: #f5f3ff; }
.insight-cat.channel { color: #059669; background: #ecfdf5; }
.insight-cat.education { color: #d97706; background: #fffbeb; }
.insight-cat.vertical { color: var(--blue); background: var(--light-blue); }
.insight-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}
.insight-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}
.insight-card-link { font-size: 14px; font-weight: 600; color: var(--blue); }

/* ── Related Insights (industry pages) ── */
.related-insights {
  padding: 48px 0 56px;
  border-top: 1px solid var(--gray-200);
}
.related-insights .section-header { margin-bottom: 28px; }
.related-insights .insight-grid {
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}
.related-insights .insight-card {
  border: 1px solid var(--gray-200);
  background: var(--white);
  padding: 20px 22px;
  border-radius: 10px;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.related-insights .insight-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.related-insights .insight-cat {
  font-size: 10px;
  padding: 3px 8px;
  margin-bottom: 0;
  flex-shrink: 0;
}
.related-insights .insight-card h3 {
  font-size: 14px;
  margin-bottom: 0;
  flex: 1;
}
.related-insights .insight-card p {
  display: none;
}
.related-insights .insight-card-link {
  font-size: 13px;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .related-insights .insight-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .related-insights .insight-card { flex-direction: column; align-items: flex-start; gap: 8px; }
}
.vert-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: block;
}

/* ════════════════════════════════════════
   INSIGHTS CATEGORY FILTER
   ════════════════════════════════════════ */
.insight-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.insight-filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  transition: all var(--transition);
}
.insight-filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.insight-filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.insight-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.insight-card-date {
  font-size: 12px;
  color: var(--gray-400);
}
.insight-card-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gray-300);
}
.insight-card-readtime {
  font-size: 12px;
  color: var(--gray-400);
}

/* ════════════════════════════════════════
   PRICING FAQ
   ════════════════════════════════════════ */
.pricing-faq-list { max-width: 760px; margin: 0 auto; }
.pricing-faq-item { border-bottom: 1px solid var(--gray-200); }
.pricing-faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.pricing-faq-q:hover { color: var(--blue); }
.pricing-faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gray-400);
}
.pricing-faq-item.active .pricing-faq-icon { transform: rotate(45deg); color: var(--blue); }
.pricing-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.pricing-faq-a-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ════════════════════════════════════════
   SAVINGS CALCULATOR
   ════════════════════════════════════════ */
.calc-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.calc-row { margin-bottom: 32px; }
.calc-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.calc-label strong { color: var(--cyan); font-size: 18px; }
.calc-packages { display: flex; gap: 12px; }
.calc-pkg {
  flex: 1;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.calc-pkg span {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  margin-top: 4px;
  color: rgba(255,255,255,0.4);
}
.calc-pkg:hover { border-color: rgba(255,255,255,0.3); }
.calc-pkg.active {
  border-color: var(--cyan);
  background: rgba(0,212,255,0.1);
  color: var(--white);
}
.calc-pkg.active span { color: var(--cyan); }
@media (max-width: 500px) { .calc-packages { flex-direction: column; } }

.calc-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 600px) { .calc-channels { grid-template-columns: repeat(2, 1fr); } }
.calc-channel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  transition: all var(--transition);
}
.calc-channel:hover { border-color: rgba(255,255,255,0.25); }
.calc-channel input { display: none; }
.calc-channel input:checked ~ .calc-channel-name { color: var(--white); }
.calc-channel input:checked ~ .calc-channel-pct { color: var(--cyan); }
.calc-channel:has(input:checked) {
  border-color: var(--cyan);
  background: rgba(0,212,255,0.08);
}
.calc-channel-name {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  flex: 1;
  transition: color var(--transition);
}
.calc-channel-pct {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}

.calc-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.15);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,136,255,0.4);
}
.calc-slider::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0,136,255,0.4);
}
.calc-slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.calc-results {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .calc-results { flex-direction: column; gap: 12px; }
  .calc-result-vs { display: none; }
}
.calc-result {
  flex: 1;
  padding: 24px 20px;
  border-radius: var(--radius);
  text-align: center;
}
.calc-result--them {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.calc-result--us {
  background: rgba(0,212,255,0.08);
  border: 1.5px solid var(--cyan);
}
.calc-result-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.calc-result-pct {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.calc-result-amount {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.calc-result-annual {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.calc-result-vs {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.calc-savings {
  text-align: center;
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  padding: 20px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius);
}
.calc-savings strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
}

/* ════════════════════════════════════════
   STICKY MOBILE CTA
   ════════════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9997;
  padding: 12px 16px;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta a {
  display: block;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .sticky-cta { display: block; }
  .back-to-top { bottom: 80px; }
}

/* ════════════════════════════════════════
   EXIT-INTENT POPUP
   ════════════════════════════════════════ */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10002;
  display: none;
  align-items: center;
  justify-content: center;
  animation: exitFadeIn 0.3s ease;
}
.exit-overlay.visible { display: flex; }
@keyframes exitFadeIn { from { opacity: 0; } to { opacity: 1; } }
.exit-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: exitSlideUp 0.35s ease;
}
@keyframes exitSlideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.exit-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.exit-close:hover { background: var(--gray-200); }
.exit-close svg { width: 16px; height: 16px; stroke: var(--gray-500); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.exit-popup h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}
.exit-popup p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 28px;
}
.exit-popup .btn-primary { font-size: 15px; padding: 16px 32px; }
.exit-dismiss {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-400);
  background: none;
  border: none;
  cursor: pointer;
}
.exit-dismiss:hover { color: var(--gray-600); }

/* ════════════════════════════════════════
   PAGE TRANSITIONS
   ════════════════════════════════════════ */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.page-transition.active { opacity: 1; pointer-events: all; }
body.page-loading .page-transition { opacity: 1; }

/* ════════════════════════════════════════
   HERO HEADLINE ROTATION
   ════════════════════════════════════════ */
.hero-rotate-wrap {
  position: relative;
  min-height: 1.2em;
}
.hero-rotate-line {
  display: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-rotate-line.active {
  display: inline;
  opacity: 1;
  transform: translateY(0);
}
.hero-rotate-line.exit {
  display: inline;
  opacity: 0;
  transform: translateY(-16px);
}

/* ════════════════════════════════════════
   READING PROGRESS BAR
   ════════════════════════════════════════ */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  z-index: 10001;
  transition: width 0.1s linear;
}

/* ════════════════════════════════════════
   ANIMATED STAT COUNTERS
   ════════════════════════════════════════ */
.stats-bar {
  background: var(--ice);
  padding: 60px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number .stat-suffix {
  font-size: 0.6em;
  color: var(--blue);
}
/* Staggered reveal */
.stat-item {
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.stats-grid.visible .stat-item { opacity: 1; transform: translateY(0) scale(1); }
.stats-grid.visible .stat-item:nth-child(1) { transition-delay: 0s; }
.stats-grid.visible .stat-item:nth-child(2) { transition-delay: 0.15s; }
.stats-grid.visible .stat-item:nth-child(3) { transition-delay: 0.3s; }
.stats-grid.visible .stat-item:nth-child(4) { transition-delay: 0.45s; }

.stat-label {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
}

/* ════════════════════════════════════════
   ANIMATED HERO GRADIENT
   ════════════════════════════════════════ */
.hero::before,
.page-hero::before {
  animation: heroGlow 12s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { opacity: 0.5; transform: translate(0, 0); }
  100% { opacity: 0.8; transform: translate(-15px, 10px); }
}

/* ════════════════════════════════════════
   BACK TO TOP BUTTON
   ════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--blue); }
.back-to-top svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 600px) {
  .back-to-top { bottom: 80px; right: 16px; width: 40px; height: 40px; }
}

@media (max-width: 600px) {
  .cookie-banner {
    padding: 12px 16px;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    position: fixed;
    background: #1B3A5C;
    color: #ffffff;
    z-index: 10000;
    box-sizing: border-box;
  }
  .cookie-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .cookie-text {
    font-size: 12px;
    line-height: 1.5;
    color: #ffffff;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: center;
    display: flex;
    gap: 10px;
  }
  .cookie-btn {
    flex: 1;
    padding: 10px 14px;
    font-size: 13px;
  }
}

/* ═══ Consent Line ═══ */
.ac-consent-line {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.5;
  margin-top: 16px;
}
.ac-consent-line a {
  color: var(--blue);
  text-decoration: underline;
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* --- COOKIE PREFS (parse-safe duplicate) --- */
.cookie-prefs { display: none; width: 100%; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 16px; }
.cookie-prefs.open { display: block; }

/* --- RELATED INSIGHTS (parse-safe duplicate) --- */
section.related-insights {
  padding: 48px 0 56px;
  border-top: 1px solid var(--gray-200);
}
section.related-insights .section-header { margin-bottom: 28px; }
section.related-insights .insight-grid {
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}
section.related-insights .insight-card {
  border: 1px solid var(--gray-200);
  background: var(--white);
  padding: 20px 22px;
  border-radius: 10px;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
section.related-insights .insight-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
section.related-insights .insight-cat {
  font-size: 10px;
  padding: 3px 8px;
  margin-bottom: 0;
  flex-shrink: 0;
}
section.related-insights .insight-card h3 {
  font-size: 14px;
  margin-bottom: 0;
  flex: 1;
}
section.related-insights .insight-card p {
  display: none;
}
section.related-insights .insight-card-link {
  font-size: 13px;
  flex-shrink: 0;
}
@media (max-width: 500px) {
  section.related-insights .insight-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
