/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand colours */
  --navy:    #1B3280;
  --navy-d:  #0D1E50;
  --navy-l:  #2A4BAD;
  --lime:    #AACF00;
  --lime-d:  #7A9700;
  --lime-l:  #C4EE00;

  /* Neutral scale */
  --g50:  #F8F9FA;
  --g100: #F1F3F5;
  --g200: #E9ECEF;
  --g300: #DEE2E6;
  --g400: #CED4DA;
  --g500: #ADB5BD;
  --g600: #6C757D;
  --g700: #495057;
  --g900: #1A1E21;
  --white: #fff;

  /* Typography — modular scale (1.25 ratio), WCAG AA compliant */
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --text-2xs:  0.6875rem;                          /* 11px — use sparingly (badge labels only) */
  --text-xs:   0.75rem;                            /* 12px — captions, footnotes */
  --text-sm:   0.875rem;                           /* 14px — secondary body, card text */
  --text-base: 1rem;                               /* 16px — primary body (WCAG min) */
  --text-md:   1.125rem;                           /* 18px — lead text, subtitles */
  --text-lg:   1.25rem;                            /* 20px — large body / intro */
  --text-xl:   1.5rem;                             /* 24px — h4 / large labels */
  --text-2xl:  clamp(1.5rem, 2.5vw, 1.875rem);    /* 24–30px — h3 fluid */
  --text-3xl:  clamp(1.75rem, 3vw, 2.25rem);      /* 28–36px — h2 section fluid */
  --text-4xl:  clamp(2rem, 3.5vw, 2.625rem);      /* 32–42px — h2 large fluid */
  --text-5xl:  clamp(2.375rem, 5vw, 3.5rem);      /* 38–56px — h1 hero fluid */

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;

  /* Border radii */
  --r-sm: 6px;
  --r:    10px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Shadows */
  --sh:    0 1px 4px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.06);
  --sh-md: 0 4px 6px rgba(0,0,0,.05), 0 10px 30px rgba(0,0,0,.10);
  --sh-lg: 0 8px 16px rgba(0,0,0,.06), 0 24px 48px rgba(0,0,0,.12);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 150ms var(--ease);
  --t-base: 220ms var(--ease);
  --t-slow: 350ms var(--ease);

  /* Layout */
  --max-w: 1280px;
  --nav-h: 68px;

  /* Focus ring */
  --focus-ring: 0 0 0 3px rgba(170, 207, 0, 0.55);
  --focus-ring-dark: 0 0 0 3px rgba(27, 50, 128, 0.45);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--g900);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 { line-height: 1.1; letter-spacing: -0.03em; }
h2 { line-height: 1.15; letter-spacing: -0.02em; }
h3 { line-height: 1.25; }
h4, h5, h6 { line-height: 1.3; }
p { max-width: 72ch; line-height: 1.7; }

a {
  text-decoration: none;
  color: inherit;
}
a:hover { text-decoration: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: var(--font);
  cursor: pointer;
}

ul { list-style: none; }

/* ============================================================
   ACCESSIBILITY — SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--lime);
  color: var(--navy-d);
  font-weight: 700;
  font-size: var(--text-base);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--r);
  z-index: 9999;
  transition: top var(--t-fast);
  text-decoration: none;
}
.skip-link:focus {
  top: var(--space-3);
}

/* ============================================================
   FOCUS STYLES — visible for keyboard, hidden for mouse
   ============================================================ */
:focus { outline: none; }

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* Higher contrast focus on dark backgrounds */
.why :focus-visible,
footer :focus-visible,
.ch :focus-visible {
  outline-color: var(--lime);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.tc  { text-align: center; }
.tc .ss { margin-left: auto; margin-right: auto; }
.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;
}

/* ============================================================
   BUTTONS
   ============================================================ */
/* Shared button base */
.btn-primary,
.btn-outline,
.btn-dark,
.btn-ghost,
.btn-lime,
.btn-od {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--r);
  transition: background var(--t-base), color var(--t-base),
              border-color var(--t-base), box-shadow var(--t-base),
              transform var(--t-base);
  /* Minimum 44px touch target (WCAG 2.5.5) */
  min-height: 44px;
  white-space: nowrap;
  line-height: 1.3;
}

.btn-primary {
  padding: 13px 26px;
  background: var(--lime);
  color: var(--navy-d);
  font-size: var(--text-base);
  border-color: var(--lime);
}
.btn-primary:hover {
  background: var(--lime-l);
  border-color: var(--lime-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(170, 207, 0, .38);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  padding: 13px 24px;
  background: transparent;
  color: var(--white);
  font-size: var(--text-base);
  border-color: rgba(255,255,255,.45);
  font-weight: 600;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

.btn-dark {
  padding: 13px 28px;
  background: var(--navy-d);
  color: var(--white);
  font-size: var(--text-base);
  border-color: var(--navy-d);
}
.btn-dark:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.btn-dark:active { transform: translateY(0); }

.btn-ghost {
  padding: 10px 18px;
  background: transparent;
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 600;
  border-color: var(--navy);
  min-height: 40px;
}
.btn-ghost:hover {
  background: var(--g50);
}
.hero-btns .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.hero-btns .btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-lime {
  padding: 10px 20px;
  background: var(--lime);
  color: var(--navy-d);
  font-size: 0.875rem;
  border-color: var(--lime);
}
.btn-lime:hover {
  background: var(--lime-l);
  border-color: var(--lime-l);
  transform: translateY(-1px);
}

.btn-od {
  padding: 13px 24px;
  background: transparent;
  color: var(--navy-d);
  font-size: var(--text-base);
  font-weight: 600;
  border-color: rgba(13,30,80,.30);
}
.btn-od:hover {
  background: rgba(13,30,80,.06);
  border-color: rgba(13,30,80,.45);
}

.btn-full { width: 100%; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--g200);
  transition: box-shadow var(--t-base);
}
.nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,.09);
}

.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-10);
}

.logo { display: inline-flex; align-items: center; }
.logo img { height: 60px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: var(--space-8);
}
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--g700);
  padding: 4px 2px;
  transition: color var(--t-fast);
  text-decoration: none;
  cursor: pointer;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lime);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--t-base);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-ctas {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  padding: var(--space-2);
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}

/* Mobile menu */
.mob-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  padding: var(--space-4) var(--space-6) var(--space-8);
  border-bottom: 1px solid var(--g200);
  box-shadow: 0 12px 32px rgba(0,0,0,.10);
  z-index: 99;
}
.mob-menu a {
  display: block;
  padding: var(--space-4) 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--g700);
  border-bottom: 1px solid var(--g100);
  cursor: pointer;
  transition: color var(--t-fast);
}
.mob-menu a:hover { color: var(--navy); }
.mob-btns {
  margin-top: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
section { padding: var(--space-20) var(--space-10); }
.si { max-width: var(--max-w); margin: 0 auto; }

/* Eyebrow label */
.ew {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--lime-d);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

/* Section title */
.st {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-4);
  line-height: 1.12;
}

/* Section subtitle */
.ss {
  font-size: var(--text-md);
  color: var(--g600);
  max-width: 600px;
  margin-bottom: 44px;
  line-height: 1.7;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy-d) 0%, var(--navy) 60%, var(--navy-l) 100%);
  padding: var(--space-20) var(--space-10) 0;
  position: relative;
  overflow: hidden;
  min-height: 560px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(170,207,0,.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-in {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: var(--space-10);
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.hero-text { padding-bottom: var(--space-20); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(170,207,0,.12);
  border: 1px solid rgba(170,207,0,.30);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--lime);
  margin-bottom: var(--space-6);
}

.hero h1 {
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-5);
}
.hero h1 .accent { color: var(--lime); }

.hero > .hero-in > .hero-text > p {
  font-size: var(--text-md);
  color: rgba(255,255,255,.82);
  margin-bottom: var(--space-8);
  max-width: 520px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-vis {
  position: relative;
  height: 460px;
  display: flex;
  align-items: flex-end;
}
.hero-vis img { width: 100%; height: auto; }

/* ============================================================
   SOCIAL PROOF STRIP (below hero)
   ============================================================ */
.proof-strip {
  background: rgba(10, 21, 64, 0.96);
  padding: 16px var(--space-10);
  border-bottom: 1px solid rgba(170,207,0,.18);
}
.proof-strip-in {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.proof-stars { color: #F59E0B; font-size: 0.9375rem; flex-shrink: 0; }
.proof-quote {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.84);
  font-style: italic;
  flex: 1;
  min-width: 200px;
}
.proof-author {
  font-size: 0.875rem;
  color: var(--lime);
  font-weight: 600;
  white-space: nowrap;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--g200);
  padding: 18px var(--space-10);
}
.trust-in {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.ti {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tick {
  width: 22px;
  height: 22px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: var(--text-xs);
  font-weight: 900;
  color: var(--navy-d);
}
.ti span {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--g700);
}

/* ============================================================
   PAIN SECTION
   ============================================================ */
.pain { background: var(--g50); }
.pain-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.pc {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: var(--r);
  padding: var(--space-6);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.pc:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: var(--lime);
}
.pc-ico { font-size: 1.5rem; margin-bottom: var(--space-3); line-height: 1; }
.pc h3 { font-size: var(--text-base); font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.pc p  { font-size: var(--text-sm); color: var(--g600); line-height: 1.65; max-width: none; }

.pain-res {
  margin-top: 2px;
  padding: var(--space-6) var(--space-8);
  background: linear-gradient(135deg, var(--navy-d), var(--navy-l));
  border-radius: var(--r-lg);
  grid-column: 1 / -1;
}
.pain-res p { font-size: 1rem; font-weight: 700; color: var(--white); max-width: none; }
.pain-res span { color: var(--lime); }

/* Pain Visual Card */
.pain-vis-card {
  position: relative;
  background: linear-gradient(150deg, #1B3280 0%, #0D1E50 60%, #0a1838 100%);
  border-radius: var(--r-xl, 20px);
  padding: 44px 36px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(13,30,80,.35);
}
.pain-vis-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(170,207,0,.18) 0%, transparent 70%);
  pointer-events: none;
}
.pain-vis-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(42,75,173,.4) 0%, transparent 70%);
  pointer-events: none;
}
.pain-vis-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  text-align: center;
}
.pain-vis-tag {
  display: inline-block;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.75);
  font-size: var(--text-xs, 0.75rem);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}
.pain-vis-emoji {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}
.pain-vis-subhead {
  color: rgba(255,255,255,.5);
  font-size: var(--text-sm, 0.875rem);
  margin-bottom: 22px;
  font-style: italic;
  max-width: none;
}
.pain-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.pain-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 14px 18px;
  backdrop-filter: blur(6px);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
}
.pain-item:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  transform: translateX(4px);
}
.pain-item-icon {
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1;
}
.pain-item-text {
  font-size: var(--text-sm, 0.875rem);
  font-weight: 500;
  color: rgba(255,255,255,.88);
  line-height: 1.4;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--white); }
.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.steps { display: flex; flex-direction: column; }
.step {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--g100);
}
.step:last-of-type { border-bottom: none; }

.sn {
  width: 50px;
  height: 50px;
  background: var(--navy-d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--lime);
}
.sn span { font-size: var(--text-sm); font-weight: 800; color: var(--lime); }

.step-body h3 { font-size: var(--text-base); font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.step-body p  { font-size: var(--text-sm); color: var(--g600); line-height: 1.65; max-width: none; }

/* ============================================================
   SOLUTIONS / STACK
   ============================================================ */
.stack { background: var(--g50); }
.sg {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
}

.bc {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: var(--r);
  padding: var(--space-6) var(--space-5);
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bc::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.bc:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}

/* Pillar accent colours */
.bl::before  { background: var(--navy); }
.bsp::before { background: #F97316; }
.ba::before  { background: #8B5CF6; }
.bsh::before { background: #10B981; }
.bf::before  { background: #EF4444; }

.bi {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  margin-bottom: var(--space-3);
  flex-shrink: 0;
}
.bl  .bi { background: #EFF6FF; }
.bsp .bi { background: #FFF7ED; }
.ba  .bi { background: #F5F3FF; }
.bsh .bi { background: #ECFDF5; }
.bf  .bi { background: #FEF2F2; }

.bt {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--g500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-2);
}

.bc h3 { font-size: var(--text-base); font-weight: 700; color: var(--navy); margin-bottom: var(--space-2); }
.bc > p {
  font-size: var(--text-xs);
  color: var(--g600);
  line-height: 1.65;
  margin-bottom: var(--space-3);
  max-width: none;
  flex: 1;
}

.bsv { list-style: none; margin-bottom: auto; }
.bsv li {
  font-size: var(--text-xs);
  color: var(--g700);
  padding: 5px 0;
  border-bottom: 1px solid var(--g100);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}
.bsv li::before {
  content: '✓';
  color: var(--lime-d);
  font-size: var(--text-xs);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.bcta {
  display: block;
  margin-top: var(--space-4);
  padding: 10px;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-sm);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font);
  transition: background var(--t-fast);
  border: none;
  width: 100%;
  cursor: pointer;
  min-height: 36px;
}
.bcta:hover { background: var(--navy-l); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--white); }

/* Tab switcher */
.ptabs {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-10);
  background: var(--g100);
  border-radius: 100px;
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.ptab {
  padding: 9px 24px;
  border: none;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--g600);
  background: transparent;
  cursor: pointer;
  transition: background var(--t-base), color var(--t-base), box-shadow var(--t-base);
  min-height: 40px;
  font-family: var(--font);
}
.ptab.on {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,.10);
}

/* Pricing grid */
.pg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.plan {
  background: var(--white);
  border: 1.5px solid var(--g200);
  border-radius: var(--r-lg);
  padding: var(--space-8) var(--space-6);
  position: relative;
  transition: box-shadow var(--t-base), border-color var(--t-base);
  display: flex;
  flex-direction: column;
}
.plan:hover { box-shadow: var(--sh-md); }
.plan.pop {
  border-color: var(--navy);
  border-width: 2px;
  box-shadow: 0 8px 48px rgba(27,50,128,.13);
}

.pbadge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.pico   { font-size: 1.5rem; margin-bottom: var(--space-3); }
.pname  { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.pfor   { font-size: var(--text-xs); color: var(--g500); margin-bottom: var(--space-4); line-height: 1.55; max-width: none; }

.pprice       { line-height: 1; margin-bottom: 4px; }
.pprice .amt  { font-size: 2.125rem; font-weight: 800; color: var(--g900); }
.pprice .per  { font-size: var(--text-sm); color: var(--g500); }
.peq          { font-size: var(--text-xs); color: var(--g500); margin-bottom: var(--space-5); }

.pf { list-style: none; margin-bottom: var(--space-5); flex: 1; }
.pf li {
  font-size: var(--text-sm);
  color: var(--g700);
  padding: 7px 0;
  border-bottom: 1px solid var(--g100);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
  max-width: none;
}
.pf li::before {
  content: '✓';
  color: var(--lime-d);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: var(--text-sm);
}

.pcta {
  width: 100%;
  padding: 12px;
  border: 2px solid transparent;
  border-radius: var(--r);
  font-size: var(--text-base);
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--t-base);
  min-height: 44px;
}
.pcta-g { background: var(--g100); color: var(--navy); border-color: var(--g100); }
.pcta-g:hover { background: var(--g200); border-color: var(--g300); }
.pcta-n { background: var(--navy); color: var(--white); border-color: var(--navy); }
.pcta-n:hover { background: var(--navy-l); border-color: var(--navy-l); }
.pcta-l { background: var(--lime); color: var(--navy-d); border-color: var(--lime); }
.pcta-l:hover { background: var(--lime-l); border-color: var(--lime-l); }

/* Pricing notes */
.pnotes {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
.pnote {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: var(--text-sm);
  color: var(--g600);
  line-height: 1.55;
}

/* One-off table */
.oot { display: none; background: var(--white); border: 1px solid var(--g200); border-radius: var(--r); overflow: hidden; }
.oot.on { display: block; }
.oot table { width: 100%; border-collapse: collapse; }
.oot th {
  background: var(--navy);
  color: var(--white);
  padding: 13px 18px;
  font-size: var(--text-sm);
  font-weight: 600;
  text-align: left;
}
.oot td { padding: 12px 18px; font-size: var(--text-base); border-bottom: 1px solid var(--g100); max-width: none; }
.oot tr:last-of-type td { border-bottom: none; }
.oot tr:hover td { background: var(--g50); }
.oot .pc2 { font-weight: 700; color: var(--navy); }
.oot-foot {
  padding: 18px;
  text-align: center;
  background: var(--g50);
  border-top: 1px solid var(--g200);
}

/* ============================================================
   WHY BRITLOGY (dark section)
   ============================================================ */
.why {
  background: var(--navy);
  padding: var(--space-20) var(--space-10);
}
.why .ew  { color: var(--lime); }
.why .st  { color: var(--white); }
.why .ss  { color: rgba(255,255,255,.72); }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 52px;
}

.dg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.dc {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r);
  padding: var(--space-6);
  transition: background var(--t-base), transform var(--t-base);
}
.dc:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-3px);
}
.dc-ico  { font-size: 1.625rem; margin-bottom: var(--space-3); line-height: 1; }
.dc h3   { font-size: var(--text-base); font-weight: 700; color: var(--white); margin-bottom: 7px; }
.dc p    { font-size: var(--text-sm); color: rgba(255,255,255,.68); line-height: 1.7; max-width: none; }

/* Comparison table */
.ct {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: var(--space-4);
}
.table-wrap {
  overflow-x: auto;
  border-radius: var(--r);
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}
.ctable { width: 100%; border-collapse: collapse; }
.ctable th {
  padding: 12px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.05);
  white-space: nowrap;
}
.ctable th:first-child { text-align: left; }
.ctable th.hl { color: var(--lime); background: rgba(170,207,0,.12); }
.ctable td {
  padding: 11px 14px;
  font-size: var(--text-sm);
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-align: center;
  color: rgba(255,255,255,.68);
  max-width: none;
}
.ctable td:first-child { text-align: left; font-weight: 500; color: rgba(255,255,255,.84); }
.ctable td.hl { background: rgba(170,207,0,.04); }
.ctable .yes { color: var(--lime); font-size: var(--text-base); font-weight: 700; }
.ctable .no  { color: rgba(255,255,255,.22); font-size: var(--text-base); }
.ctable .pt  { color: #F97316; font-size: var(--text-xs); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { background: var(--g50); }
.testi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.tg {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
.tc2 {
  background: var(--white);
  border: 1.5px solid var(--g200);
  border-radius: var(--r-lg);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--t-base);
}
.tc2:hover { box-shadow: var(--sh-md); }

/* Decorative quote mark */
.tc2::before {
  content: '\201C';
  font-size: 5rem;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--lime);
  line-height: 1;
  position: absolute;
  top: 8px;
  left: 20px;
  opacity: 0.25;
  pointer-events: none;
  user-select: none;
}

.tstars { color: #F59E0B; font-size: 0.875rem; margin-bottom: var(--space-3); }
.tq {
  font-size: 0.9375rem;
  color: var(--g700);
  line-height: 1.75;
  margin-bottom: var(--space-5);
  max-width: none;
}
.ta { display: flex; align-items: center; gap: var(--space-3); }
.tav {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lime);
  flex-shrink: 0;
}
.tn { font-size: 0.875rem; font-weight: 700; color: var(--g900); }
.tb { font-size: 0.75rem; color: var(--g500); }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.ind { background: var(--white); }
.ind-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ig {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.itile {
  background: var(--g50);
  border: 1px solid var(--g200);
  border-radius: var(--r);
  padding: 18px 12px;
  text-align: center;
  transition: background var(--t-base), border-color var(--t-base),
              transform var(--t-base), box-shadow var(--t-base);
}
.itile:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--sh);
}
.itile:hover .iname,
.itile:hover .idesc { color: var(--white); }

.ii    { font-size: 1.375rem; margin-bottom: var(--space-2); line-height: 1; }
.iname { font-size: var(--text-xs); font-weight: 700; color: var(--navy); margin-bottom: 3px; transition: color var(--t-base); }
.idesc { font-size: var(--text-xs); color: var(--g500); transition: color var(--t-base); max-width: none; }

/* ============================================================
   AI EXPLAINER
   ============================================================ */
.aie { background: var(--g50); }
.aie-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.aig {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.aic {
  background: var(--white);
  border: 1.5px solid var(--g200);
  border-radius: var(--r);
  padding: var(--space-6);
  border-top: 3px solid var(--navy);
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
}
.aic:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}
.aico {
  width: 44px;
  height: 44px;
  background: rgba(170,207,0,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}
.aic h3 { font-size: var(--text-base); font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.aic p  { font-size: var(--text-sm); color: var(--g600); line-height: 1.68; margin-bottom: var(--space-3); flex: 1; max-width: none; }
.who {
  font-size: var(--text-xs);
  font-weight: 700;
  color: #4A6000;
  background: rgba(170,207,0,.16);
  padding: 4px 10px;
  border-radius: 5px;
  display: inline-block;
  align-self: flex-start;
}

/* ============================================================
   CTA / AUDIT SECTION
   ============================================================ */
.ctab {
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-l) 100%);
  padding: var(--space-20) var(--space-10);
}
.ctab-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: center;
}
.ctab h2 {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--navy-d);
  margin-bottom: var(--space-4);
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.ctab p {
  font-size: 1rem;
  color: var(--navy);
  opacity: .80;
  margin-bottom: var(--space-8);
  line-height: 1.75;
  max-width: 520px;
}
.ctabtns { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.reassure {
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  color: rgba(13,30,80,.58);
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about { background: var(--g50); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--white); }
.flist { max-width: 760px; margin: 0 auto; }
.fitem { border-bottom: 1.5px solid var(--g200); }
.fitem:first-of-type { border-top: 1.5px solid var(--g200); }

.fq {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  cursor: pointer;
  min-height: 56px;
}
.fq span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--g900);
  line-height: 1.4;
}
.farr {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--g100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  color: var(--g600);
  transition: background var(--t-base), color var(--t-base), transform var(--t-slow);
  flex-shrink: 0;
}
.fitem.open .farr {
  background: var(--lime);
  color: var(--navy-d);
  transform: rotate(180deg);
}
.fa {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) ease;
}
.fitem.open .fa { max-height: 320px; }
.fa p {
  font-size: 0.9375rem;
  color: var(--g600);
  padding: 0 0 20px;
  line-height: 1.78;
  max-width: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-d);
  padding: 60px var(--space-10) 0;
}
.footer-in { max-width: var(--max-w); margin: 0 auto; }

.fg {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
  gap: var(--space-12);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.fbrand p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.50);
  margin-top: var(--space-3);
  line-height: 1.68;
  max-width: 260px;
}
.fsoc { display: flex; gap: var(--space-2); margin-top: var(--space-4); }
.fsb {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  transition: background var(--t-base), color var(--t-base);
  text-decoration: none;
}
.fsb:hover { background: var(--lime); color: var(--navy-d); }

.fcol h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-4);
}
.fcol a,
.fcol button {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  margin-bottom: var(--space-3);
  transition: color var(--t-fast);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
  padding: 0;
}
.fcol a:hover,
.fcol button:hover { color: var(--lime); }

.fcontact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: none;
}
.fcontact a { color: rgba(255,255,255,.55); transition: color var(--t-fast); }
.fcontact a:hover { color: var(--lime); }

.fbot {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.fbot p { font-size: 0.75rem; color: rgba(255,255,255,.30); max-width: none; }
.fleg { display: flex; gap: var(--space-5); flex-wrap: wrap; }
.fleg a {
  font-size: 0.75rem;
  color: rgba(255,255,255,.30);
  transition: color var(--t-fast);
}
.fleg a:hover { color: var(--lime); }

/* ============================================================
   FLOATING CHAT
   ============================================================ */
.chat-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: var(--lime);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: var(--navy-d);
  box-shadow: 0 4px 24px rgba(170,207,0,.50);
  z-index: 200;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  cursor: pointer;
}
.chat-btn:hover {
  transform: scale(1.10);
  box-shadow: 0 8px 32px rgba(170,207,0,.60);
}

.chat-pnl {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 340px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: 0 16px 56px rgba(0,0,0,.18);
  z-index: 199;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--g200);
}
.chat-pnl.open { display: flex; }

.ch {
  background: var(--navy);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.chav {
  width: 42px;
  height: 42px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy-d);
  flex-shrink: 0;
}
.cht h4 { font-size: var(--text-base); font-weight: 700; color: var(--white); }
.cht p  { font-size: var(--text-xs); color: rgba(255,255,255,.60); max-width: none; }
.chx {
  background: none;
  border: none;
  color: rgba(255,255,255,.55);
  font-size: 1.125rem;
  cursor: pointer;
  line-height: 1;
  margin-left: auto;
  padding: 4px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast);
  min-height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chx:hover { color: var(--white); }

.cb {
  padding: 18px;
  flex: 1;
  overflow-y: auto;
  max-height: 300px;
}
.cmsg {
  background: var(--g50);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.875rem;
  color: var(--g700);
  line-height: 1.62;
  margin-bottom: var(--space-4);
  max-width: none;
}
.cmsg.user { background: #EFF6FF; color: var(--navy); }

.copts { display: flex; flex-direction: column; gap: 7px; }
.copt {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--g200);
  border-radius: var(--r);
  background: var(--white);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  font-family: var(--font);
  min-height: 40px;
}
.copt:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.cf {
  padding: 10px 18px;
  border-top: 1px solid var(--g100);
  font-size: var(--text-xs);
  color: var(--g500);
  text-align: center;
}

/* ============================================================
   RESPONSIVE — 1100px
   ============================================================ */
@media (max-width: 1100px) {
  .sg { grid-template-columns: repeat(3, 1fr); }
  .pg { grid-template-columns: repeat(2, 1fr); }
  .pnotes { grid-template-columns: repeat(2, 1fr); }
  .fg { grid-template-columns: 1fr 1fr; }

  .hero-in,
  .pain-inner,
  .how-inner,
  .why-inner,
  .testi-inner,
  .ind-inner,
  .aie-inner,
  .ctab-inner { grid-template-columns: 1fr; }

  .hero h1  { font-size: var(--text-4xl); }
  .hero-vis { height: 300px; }
  .hero-text { padding-bottom: var(--space-12); }

  .st { font-size: var(--text-3xl); }
  .ctab-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .nav-links,
  .nav-ctas { display: none; }
  .hamburger { display: flex; }

  section { padding: 56px var(--space-5); }
  .hero   { padding: 56px var(--space-5) 0; }
  .trust  { padding: 14px var(--space-5); }
  .why    { padding: 56px var(--space-5); }
  .ctab   { padding: 56px var(--space-5); }
  footer  { padding: 48px var(--space-5) 0; }

  .nav-in { padding: 0 var(--space-5); }
  .proof-strip { padding: 14px var(--space-5); }

  .st { font-size: var(--text-3xl); }
  .ss { font-size: var(--text-base); }

  .pain-grid,
  .dg,
  .aig,
  .ig { grid-template-columns: 1fr 1fr; }

  .sg,
  .pg { grid-template-columns: 1fr; }

  .fg { grid-template-columns: 1fr; }

  .chat-pnl { width: calc(100vw - 40px); right: 20px; }

  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { width: 100%; justify-content: center; }

  .pnotes { grid-template-columns: 1fr 1fr; }

  .tg { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero h1 { font-size: 1.875rem; letter-spacing: -0.5px; }
  .st      { font-size: 1.5rem; }

  .pain-grid,
  .dg,
  .aig,
  .ig { grid-template-columns: 1fr; }

  .trust-in { flex-direction: column; align-items: flex-start; gap: var(--space-3); }

  .proof-strip-in { flex-direction: column; align-items: flex-start; gap: var(--space-2); }

  .pnotes { grid-template-columns: 1fr; }

  .fg { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER CTA STRIP
   ============================================================ */
.footer-cta {
  background: var(--navy-d);
  padding: var(--space-12) var(--space-10);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-cta-in {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.footer-cta h3 {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 7px;
  line-height: 1.3;
}
.footer-cta p {
  font-size: var(--text-base);
  color: rgba(255,255,255,.65);
  max-width: none;
}
.footer-cta-btns {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Active nav link (current section highlighted) */
.nav-links a.active {
  color: var(--navy);
}
.nav-links a.active::after {
  transform: scaleX(1);
}

/* ============================================================
   BILLING TOGGLE
   ============================================================ */
.billing-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.billing-toggle {
  display: inline-flex;
  background: var(--g100);
  border-radius: 50px;
  padding: 4px;
  gap: 0;
  border: 1px solid var(--g200);
}
.btoggle {
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--g600);
  cursor: pointer;
  transition: background var(--trans), color var(--trans), box-shadow var(--trans);
  display: flex;
  align-items: center;
  gap: 8px;
}
.btoggle.on {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(27,50,128,.25);
}
.btoggle:hover:not(.on) { color: var(--navy); }
.save-badge {
  background: var(--lime);
  color: var(--navy-d);
  font-size: var(--text-xs);
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.billing-note {
  font-size: var(--text-xs);
  color: var(--g600);
  text-align: center;
}

/* ============================================================
   GROWTH JOURNEY BANNER
   ============================================================ */
.growth-banner {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--navy-d), var(--navy-l));
  border-radius: var(--r-lg);
  padding: var(--space-8) var(--space-10);
  margin-bottom: var(--space-8);
}
.gb-text {
  flex: 1;
  min-width: 200px;
}
.gb-label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: rgba(255,255,255,.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.gb-text h3 {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}
.gb-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.65);
  line-height: 1.65;
}
.gb-layers {
  flex: 2;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gbl {
  border-radius: 6px;
  padding: 9px 14px;
  font-size: var(--text-xs);
  font-weight: 700;
  transition: background var(--trans);
}
.gbl-base  { background: var(--white); color: var(--navy-d); }
.gbl-mid   { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.2); }
.gbl-active { background: rgba(170,207,0,.18); color: var(--lime); border: 1px solid rgba(170,207,0,.35); }
.gbl-dim   { background: rgba(255,255,255,.06); color: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.1); }
.gb-arrow {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.4);
  text-align: right;
  margin-top: 4px;
}

/* ============================================================
   TYPOGRAPHY IMPROVEMENTS
   ============================================================ */
/* Solution bundle card headings */
.bc h3 {
  font-size: var(--text-lg);
  font-weight: 800;
  margin-bottom: var(--space-2);
  line-height: 1.3;
}
.bc p {
  font-size: 0.875rem;
  color: var(--g600);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}
.bc .bsv li {
  font-size: var(--text-sm);
}
/* Bundle tag (Foundation, Visibility etc.) */
.bt {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
/* Plan cards */
.pname {
  font-size: var(--text-2xl);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
}
.pfor {
  font-size: var(--text-xs);
  color: var(--g600);
  margin-bottom: var(--space-4);
  line-height: 1.4;
}
.amt {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.per {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--g600);
  vertical-align: bottom;
  padding-bottom: 3px;
}
.peq {
  font-size: var(--text-xs);
  color: var(--g500);
  margin-top: 4px;
  margin-bottom: var(--space-5);
}
/* Differentiator cards on Why section */
.dc h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 4px;
}
.dc p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.7);
  line-height: 1.55;
}
/* Testimonial quote text */
.tq {
  font-size: var(--text-base);
  line-height: 1.65;
}
/* Industry tile name */
.iname {
  font-size: var(--text-sm);
  font-weight: 700;
}
.idesc {
  font-size: var(--text-xs);
  color: var(--g500);
}

/* ============================================================
   TESTIMONIALS — Layout with illustration on left
   ============================================================ */
.testi-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-12);
  align-items: start;
}
@media (max-width: 860px) {
  .testi-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .nav, .chat-btn, .chat-pnl, .mob-menu { display: none !important; }
  body { color: #000; }
  .hero { background: #fff; color: #000; }
}
