/* ══════════════════════════════════════════
   AttendIQ · Marketing Site Styles
   Brand: Sharp / glass-effect SaaS, Teal + Deep Navy
   Type:  Inter (all weights - display + body)
══════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────── */
:root {
  /* ── Brand colours ─────────────────────── */
  --sage:         #3DAA8E;   /* primary teal accent */
  --sage-light:   #E8F7F3;   /* teal tint - section backgrounds, badges */
  --sage-mid:     #5BBDA3;   /* mid teal - borders, mid accents */
  --sage-dark:    #2D8A72;   /* dark teal - text on light, hover states */
  --navy:         #0D1823;   /* deep navy - dark sections, footer, buttons */
  --navy-mid:     #152130;   /* slightly lifted - hover states */
  --navy-light:   #1E3044;   /* tertiary dark surface */
  /* Aliases so existing var(--black) references resolve correctly */
  --black:        #0D1823;
  --black-soft:   #152130;

  /* ── Surfaces ──────────────────────────── */
  --white:        #FFFFFF;
  --surface:      #F0F4F8;   /* cool off-white - light sections */
  --surface-2:    #E8EEF4;   /* alternating sections */
  --border:       #DDE5EC;
  --border-light: #EBF0F5;

  /* ── Text ──────────────────────────────── */
  --ink:          #0D1117;   /* near-black - headlines */
  --ink-mid:      #3D5166;
  --ink-muted:    #6B7F94;
  --ink-light:    #9AAFC0;

  /* ── Status ────────────────────────────── */
  --status-green:       #22C55E;
  --status-green-light: #DCFCE7;
  --status-red:         #EF4444;
  --status-red-light:   #FEE2E2;

  /* Legacy status aliases */
  --green:        #22C55E;
  --green-light:  #DCFCE7;
  --red:          #EF4444;
  --red-light:    #FEE2E2;

  /* ── Typography ────────────────────────── */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* ── Layout ────────────────────────────── */
  --section-pad:  clamp(72px, 9vw, 120px);
  --inner-max:    1200px;
  --inner-px:     clamp(24px, 5vw, 64px);
  --radius:       10px;
  --radius-lg:    16px;

  /* ── Motion ────────────────────────────── */
  --ease: cubic-bezier(.25, .46, .45, .94);
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.32, .72, 0, 1);

  /* ── Shadows (layered ambient system) ──── */
  --shadow-xs:  0 1px 2px rgba(13,24,35,.04);
  --shadow-sm:  0 1px 3px rgba(13,24,35,.06), 0 1px 2px rgba(13,24,35,.04);
  --shadow-md:  0 4px 12px rgba(13,24,35,.06), 0 1px 3px rgba(13,24,35,.04);
  --shadow-lg:  0 8px 28px rgba(13,24,35,.08), 0 2px 6px rgba(13,24,35,.04);
  --shadow-xl:  0 16px 48px rgba(13,24,35,.10), 0 4px 12px rgba(13,24,35,.04);
  --shadow-hover: 0 12px 36px rgba(13,24,35,.10), 0 2px 8px rgba(13,24,35,.05);

  /* ── Glass ──────────────────────────────── */
  --glass-bg:     rgba(255,255,255,.06);
  --glass-border: rgba(255,255,255,.12);
  --glass-shadow: 0 8px 32px rgba(0,0,0,.2);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink-mid);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul { list-style: none; }

/* ── Typography ──────────────────────────── */
.section-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5.5vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--navy);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
.section-headline em {
  font-style: normal;
  color: var(--sage-dark);
}
.section-headline--light { color: var(--navy); }

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  display: inline-block;
  margin-bottom: 14px;
}
.section-label--light { color: var(--sage-dark); }

.section-sub {
  font-size: 18px;
  color: var(--ink-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-top: 16px;
}
.section-sub--light {
  color: var(--ink-mid);
  max-width: 600px;
  margin: 12px auto 0;
  text-align: center;
}

/* ── Utilities ───────────────────────────── */
.section-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 var(--inner-px);
}

/* Generic section - consistent vertical rhythm used on inner pages */
.section {
  padding: var(--section-pad) 0;
}
.section--surface { background: var(--surface); }
.section--white   { background: var(--white); }

.section-header {
  margin-bottom: 56px;
}

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  padding: 12px 24px;
  transition: all .35s var(--ease-spring);
  white-space: nowrap;
}
.btn:active {
  transform: scale(.97);
  transition-duration: .1s;
}

/* Primary dark button */
.btn--primary {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn--primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Legacy alias */
.btn--amber {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn--amber:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-1px);
}

/* Ghost button - on dark backgrounds */
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.08);
}

/* Outline - on light backgrounds */
.btn--outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--black);
}

/* Outline dark - SC card */
.btn--outline-dark {
  background: transparent;
  border: 2px solid var(--black);
  color: var(--black);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: border-color .15s, background .15s, color .15s;
  width: fit-content;
}
.btn--outline-dark:hover {
  background: var(--black);
  color: var(--white);
}

/* Sage button - secondary action */
.btn--sage {
  background: var(--sage);
  color: var(--black);
  border: 2px solid var(--sage);
  font-weight: 700;
}
.btn--sage:hover {
  background: var(--sage-mid);
  border-color: var(--sage-mid);
}

.btn--sm  { padding: 9px 18px; font-size: 14px; }
.btn--lg  { padding: 14px 28px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }


/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: 0 1px 0 rgba(13,24,35,.04), 0 4px 20px rgba(13,24,35,.06);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 var(--inner-px);
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logomark {
  width: 30px; height: 30px;
  background: var(--navy);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  color: var(--white);
  flex-shrink: 0;
}
.nav__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.nav__brand .logo-iq,
.footer__brand-name .logo-iq {
  color: var(--sage);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .12s, background .12s;
}
.nav__links a:hover { color: var(--navy); background: var(--surface); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav__login {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  transition: color .15s;
}
.nav__login:hover { color: var(--black); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.nav__hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink-mid);
  border-radius: 2px;
  transition: all .2s var(--ease);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px var(--inner-px) 20px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.nav__mobile a {
  color: var(--ink-mid);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color .15s;
}
.nav__mobile a:hover { color: var(--black); }
.nav__mobile .nav__mobile-login { font-size: 15px; }
.nav__mobile .btn { margin-top: 8px; }


/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(150deg, #FFFFFF 0%, #F4F9F4 50%, #EBF3EC 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  color: var(--ink);
}

/* Remove grid overlay */
.hero__grid {
  display: none;
}

/* Remove vignette */
.hero::after {
  display: none;
}

/* Remove grain noise */
.hero__noise {
  display: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: var(--section-pad) var(--inner-px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero content */
.hero__content { max-width: 560px; }

.hero__prehook {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--sage);
  border-radius: 6px;
  padding: 6px 14px;
  margin-bottom: 20px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--sage-dark);
  margin-bottom: 28px;
  animation: fadeInUp .6s var(--ease) both;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage-dark);
  animation: pulse 2s ease infinite;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--black);
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 28px;
}
.hero__hl-1 { animation: fadeInUp .6s var(--ease) .1s both; color: var(--black); }
.hero__hl-2 { animation: fadeInUp .6s var(--ease) .2s both; color: var(--black); }
.hero__hl-3 {
  color: var(--black);
  animation: fadeInUp .6s var(--ease) .3s both;
}

.hero__sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-mid);
  margin-bottom: 36px;
  animation: fadeInUp .6s var(--ease) .4s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  animation: fadeInUp .6s var(--ease) .5s both;
  flex-wrap: wrap;
}

.hero__demo-note {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 12px;
  font-style: italic;
}

.hero__trust {
  animation: fadeInUp .6s var(--ease) .6s both;
}
.hero__trust-label {
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 8px;
  letter-spacing: .04em;
}
.hero__trust-co {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__trust-co span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
}

/* ── CSS App Mockup ──────────────────────── */
.hero__visual {
  position: relative;
  animation: fadeInUp .8s var(--ease) .3s both;
}

.app-mock {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 24px 80px rgba(0,0,0,.12),
    0 4px 20px rgba(0,0,0,.06);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transform-origin: right center;
}

.app-mock__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.app-mock__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--sage-mid);
}
.app-mock__url {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--ink-muted);
  margin-left: 8px;
}

.app-mock__shell {
  display: flex;
  height: 380px;
}

/* Mock nav rail -- stays dark for premium look */
.app-mock__rail {
  width: 46px;
  background: var(--black);
  border-right: 1px solid rgba(255,255,255,.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  gap: 6px;
  flex-shrink: 0;
}
.app-mock__logo {
  width: 26px; height: 26px;
  background: var(--sage);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  color: var(--black);
  margin-bottom: 12px;
}
.app-mock__rail-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  align-items: center;
}
.app-mock__ri {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: rgba(194,216,196,.25);
}
.app-mock__ri--active {
  background: var(--sage);
  position: relative;
}
.app-mock__ri--active::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 6px; bottom: 6px;
  width: 3px;
  background: var(--sage);
  border-radius: 0 3px 3px 0;
}
.app-mock__ri--bottom { margin-top: auto; }

/* Mock content */
.app-mock__content {
  flex: 1;
  overflow: hidden;
  background: var(--surface);
  display: flex;
  flex-direction: column;
}

.app-mock__topbar {
  height: 40px;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  flex-shrink: 0;
}
.app-mock__topbar-title {
  width: 80px; height: 10px;
  background: var(--border);
  border-radius: 4px;
}
.app-mock__topbar-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.app-mock__topbar-btn {
  width: 52px; height: 22px;
  background: var(--black);
  border-radius: 5px;
}
.app-mock__topbar-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--black);
}

/* Mock tiles */
.app-mock__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 10px 12px 8px;
  flex-shrink: 0;
}
.app-mock__tile {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 8px 10px;
}
.app-mock__tile-label {
  width: 40px; height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin-bottom: 6px;
}
.app-mock__tile-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 6px;
}
.app-mock__tile-val--warn  { color: var(--sage-dark); }
.app-mock__tile-val--green { color: var(--green); }
.app-mock__tile-bar {
  height: 3px;
  background: var(--border-light);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 4px;
}
.app-mock__tile-fill        { height: 100%; background: var(--sage); border-radius: 2px; }
.app-mock__tile-fill--warn  { background: var(--sage-dark); }
.app-mock__tile-fill--green { background: var(--green); }
.app-mock__tile-sub {
  width: 30px; height: 5px;
  background: var(--border);
  border-radius: 3px;
}

/* Mock table */
.app-mock__table {
  flex: 1;
  padding: 0 12px 12px;
  overflow: hidden;
}
.app-mock__thead {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px 6px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 4px;
}
.app-mock__th {
  height: 7px;
  background: var(--border);
  border-radius: 3px;
}
.app-mock__th--name  { flex: 1; }
.app-mock__th--site  { width: 60px; }
.app-mock__th--badge { width: 40px; }

.app-mock__row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 6px;
}
.app-mock__row--alt { background: var(--surface); }

.app-mock__av {
  width: 22px; height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}
.app-mock__av--1 { background: linear-gradient(135deg, #1F4A32, #2B7A52); }
.app-mock__av--2 { background: linear-gradient(135deg, #1A3A6A, #2B5AA2); }
.app-mock__av--3 { background: linear-gradient(135deg, #4A1F1F, #8A2A2A); }
.app-mock__av--4 { background: linear-gradient(135deg, #3A2A1A, #7A5A2A); }

.app-mock__cell-name { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.app-mock__name { height: 7px; background: var(--ink-light); border-radius: 3px; width: 70px; }
.app-mock__name--sm { width: 50px; }
.app-mock__role { height: 5px; background: var(--border); border-radius: 3px; width: 45px; }
.app-mock__role--sm { width: 35px; }
.app-mock__site { height: 7px; background: var(--border); border-radius: 3px; width: 60px; }
.app-mock__site--sm { width: 48px; }

.app-mock__badge {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 100px;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.app-mock__badge--green { background: var(--green-light); color: var(--green); }
.app-mock__badge--amber { background: var(--sage-light); color: var(--sage-dark); }

/* Floating alert card */
.hero__alert {
  position: absolute;
  bottom: -16px;
  right: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--sage);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  animation: alertFloat 4s ease-in-out infinite;
  min-width: 220px;
  z-index: 2;
}
.hero__alert-icon {
  width: 28px; height: 28px;
  background: var(--sage-light);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__alert-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.hero__alert-detail {
  font-size: 11px;
  color: var(--ink-muted);
  margin-top: 2px;
}
.hero__alert-badge {
  font-size: 10px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-light);
  padding: 2px 8px;
  border-radius: 100px;
  white-space: nowrap;
  margin-left: auto;
}


/* ══════════════════════════════════════════
   LOGO BAR
══════════════════════════════════════════ */
.logobar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.logobar__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 var(--inner-px);
  display: flex;
  align-items: center;
  gap: 32px;
}
.logobar__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--ink-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.logobar__overflow { flex: 1; overflow: hidden; position: relative; }
.logobar__overflow::before,
.logobar__overflow::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 1;
}
.logobar__overflow::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.logobar__overflow::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }

.logobar__track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: scrollLogos 28s linear infinite;
  width: max-content;
}
.logobar__track span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-muted);
}
.logobar__track span[aria-hidden="true"]:not(:first-child) {
  font-size: 8px;
  color: var(--border);
}


/* ══════════════════════════════════════════
   FEATURES
══════════════════════════════════════════ */
.features {
  background: var(--white);
  padding: var(--section-pad) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feat-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: border-color .35s var(--ease-spring), transform .35s var(--ease-spring), box-shadow .35s var(--ease-spring);
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.feat-card:hover {
  border-color: var(--sage-mid);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.feat-card:hover::before { transform: scaleX(1); }

.feat-card__icon {
  width: 44px; height: 44px;
  background: var(--sage-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-dark);
  margin-bottom: 18px;
}

.feat-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .01em;
  color: var(--black);
  margin-bottom: 10px;
}

.feat-card__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.feat-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.feat-card__tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--sage-dark);
}

.feat-card__desc__line {
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  color: var(--sage-dark);
  margin-bottom: 8px;
  display: block;
}



/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
.how {
  background: var(--white);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.how__bg-grid {
  display: none;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  color: rgba(194,216,196,.5);
  letter-spacing: -.02em;
}

.step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--black);
  letter-spacing: .01em;
}

.step__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-mid);
  max-width: 300px;
}

.step__arrow {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--sage-mid);
  padding: 0 24px;
  margin-top: 20px;
  flex-shrink: 0;
  opacity: .7;
}

.steps--4 {
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
}


/* ══════════════════════════════════════════
   SUPPLY CHAIN
══════════════════════════════════════════ */
.sc {
  background: var(--surface);
  padding: var(--section-pad) 0;
}

.sc__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sc__desc {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-mid);
  margin-top: 16px;
  margin-bottom: 28px;
  max-width: 460px;
}

.sc__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.sc__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.5;
}
.sc__check {
  color: var(--sage-dark);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* SC info card */
.sc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.sc-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.sc-card__icon { font-size: 24px; flex-shrink: 0; }
.sc-card__info { flex: 1; }
.sc-card__company { font-weight: 700; font-size: 15px; color: var(--ink); }
.sc-card__sub { font-size: 12px; color: var(--ink-muted); margin-top: 2px; }
.sc-card__badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}
.sc-card__score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.sc-card__score-label { font-size: 12px; color: var(--ink-muted); }
.sc-card__score-val { font-weight: 700; font-size: 15px; color: var(--green); }
.sc-card__bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 18px;
}
.sc-card__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sage), var(--sage-dark));
  border-radius: 3px;
  transition: width .8s var(--ease);
}
.sc-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
}
.sc-card__stat {
  background: var(--white);
  text-align: center;
  padding: 12px 8px;
}
.sc-card__stat--warn .sc-stat__val { color: var(--sage-dark); }
.sc-stat__val { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--ink); }
.sc-stat__lbl { font-size: 11px; color: var(--ink-muted); margin-top: 2px; }

.sc-card__workers {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sc-worker {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 8px;
  background: var(--surface);
}
.sc-worker__av {
  width: 30px; height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sc-worker__av--1 { background: linear-gradient(135deg, #1F4A32, #2B7A52); }
.sc-worker__av--2 { background: linear-gradient(135deg, #1A3A6A, #2B5AA2); }
.sc-worker__av--3 { background: linear-gradient(135deg, #4A2A1A, #8A5A2A); }
.sc-worker__info { flex: 1; }
.sc-worker__name { height: 8px; background: var(--border); border-radius: 3px; width: 80px; margin-bottom: 4px; }
.sc-worker__name--sm { width: 60px; }
.sc-worker__role { height: 6px; background: var(--border-light); border-radius: 3px; width: 50px; }
.sc-worker__role--sm { width: 40px; }
.sc-worker__pill {
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.sc-worker__pill--pass { color: var(--green); }
.sc-worker__pill--warn { color: var(--sage-dark); }


/* ══════════════════════════════════════════
   STATS
══════════════════════════════════════════ */
.stats {
  background: var(--black);
  padding: 64px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat {
  text-align: center;
  flex: 1;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 6vw, 72px);
  color: var(--sage);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat__lbl {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .04em;
}
.stat__context {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  font-weight: 500;
}
.stat__count { display: inline; color: var(--sage); }
.stat__divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
  margin: 0 16px;
}


/* ══════════════════════════════════════════
   SOCIAL PROOF PULL-QUOTE STRIP
══════════════════════════════════════════ */
.pullquote-strip {
  background: var(--black);
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.pullquote-strip__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.pullquote-strip__quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.45;
  color: var(--white);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.pullquote-strip__quote::before {
  content: '\201C';
  font-size: 60px;
  color: var(--sage);
  line-height: 1;
  position: absolute;
  top: -12px;
  left: -16px;
  opacity: .35;
  font-style: normal;
}

.pullquote-strip__author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.pullquote-strip__av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

.pullquote-strip__author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-align: left;
}

.pullquote-strip__author span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  text-align: left;
}

.pullquote-strip__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

.pullquote-strip__sep {
  color: rgba(255,255,255,.3);
}


/* ══════════════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════════════ */
.problem {
  background: var(--surface);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.problem::before {
  display: none;
}

.problem__header { margin-bottom: 52px; max-width: 700px; }
.problem__header .section-headline { color: var(--black); }
.problem__sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin-top: 16px;
}

.problem__costs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.problem__cost {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: border-color .35s var(--ease-spring), box-shadow .35s var(--ease-spring);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.problem__cost:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  border-color: var(--sage-mid);
}

.problem__cost-icon {
  width: 40px; height: 40px;
  background: var(--sage-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-dark);
  margin-bottom: 16px;
}

.problem__cost-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: .01em;
}

.problem__cost-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-mid);
}
.problem__cost-desc strong {
  color: var(--ink);
  font-weight: 600;
}

.problem__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.problem__cta-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: .01em;
}


/* ══════════════════════════════════════════
   PHOTO STRIP (features page - supply chain)
══════════════════════════════════════════ */
.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}

.photo-strip__img {
  overflow: hidden;
  position: relative;
}

.photo-strip__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.photo-strip__content {
  background: var(--navy);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 5vw, 72px);
  gap: 24px;
}

.photo-strip__label {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--sage);
  align-self: flex-start;
}

.photo-strip__headline {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(26px, 3vw, 38px); color: var(--white);
  line-height: 1.1; letter-spacing: -0.03em;
  text-transform: uppercase;
}

.photo-strip__headline em { color: var(--sage); font-style: normal; }

.photo-strip__body {
  font-size: 15px; color: rgba(255,255,255,.65);
  line-height: 1.75; max-width: 440px;
}

.photo-strip__stat {
  display: flex; align-items: baseline; gap: 12px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
}

.photo-strip__stat-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 36px; color: var(--sage); line-height: 1;
  letter-spacing: -0.03em; flex-shrink: 0;
}

.photo-strip__stat-lbl {
  font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.5;
}

@media (max-width: 900px) {
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip__img { min-height: 300px; }
  .photo-strip__content { padding: 40px 24px; }
}


/* ══════════════════════════════════════════
   PHOTO BANNER (features page - above ROI)
══════════════════════════════════════════ */
.photo-banner {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.photo-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.photo-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,24,35,.85) 0%, rgba(13,24,35,.5) 50%, rgba(13,24,35,.2) 100%);
  display: flex; align-items: center;
}

.photo-banner__inner {
  max-width: var(--inner-max); margin: 0 auto;
  padding: 0 var(--inner-px); width: 100%;
}

.photo-banner__quote {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(20px, 2.5vw, 30px); color: var(--white);
  line-height: 1.3; max-width: 560px;
  font-style: italic;
  margin-bottom: 16px;
  padding-left: 20px;
  border-left: 3px solid var(--sage);
}

.photo-banner__attr {
  font-size: 13px; color: rgba(255,255,255,.5);
  padding-left: 20px; font-weight: 500;
}

@media (max-width: 700px) {
  .photo-banner { height: 280px; }
  .photo-banner__overlay {
    background: linear-gradient(0deg, rgba(13,24,35,.9) 0%, rgba(13,24,35,.5) 100%);
    align-items: flex-end;
  }
  .photo-banner__inner { padding-bottom: 32px; }
}


/* ══════════════════════════════════════════
   ROI SECTION
══════════════════════════════════════════ */
.roi {
  background: var(--surface);
  padding: var(--section-pad) 0;
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.roi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color .35s var(--ease-spring), box-shadow .35s var(--ease-spring);
  position: relative;
}
.roi-card:hover {
  border-color: var(--sage-mid);
  box-shadow: var(--shadow-hover);
}

.roi-card::after {
  content: '';
  display: block;
  grid-column: 1 / -1;
}

.roi-card__before,
.roi-card__after {
  flex: 1;
}

.roi-card__before-label,
.roi-card__after-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.roi-card__before-label { color: var(--ink-muted); }
.roi-card__after-label  { color: var(--sage-dark); }

.roi-card__before p,
.roi-card__after p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-mid);
}

.roi-card__before {
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
}

.roi-card__arrow {
  font-size: 24px;
  color: var(--sage-dark);
  font-weight: 700;
  text-align: center;
  padding: 8px 0;
  margin-bottom: 12px;
}

.roi-card__after {
  padding: 16px;
  background: var(--sage-light);
  border: 1px solid var(--sage-mid);
  border-radius: 10px;
  margin-bottom: 20px;
}

.roi-card__stat {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.roi-stat__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  color: var(--sage-dark);
  letter-spacing: -.01em;
  line-height: 1;
}
.roi-stat__lbl {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mid);
}


/* ══════════════════════════════════════════
   STAKEHOLDERS SECTION
══════════════════════════════════════════ */
.stakeholders {
  background: var(--white);
  padding: var(--section-pad) 0;
}

.stakeholders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.stakeholder-card {
  padding: 32px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.stakeholder-card--featured {
  background: var(--black);
  border-color: rgba(194,216,196,.3);
  grid-column: 1 / -1;
}
.stakeholder-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.stakeholder-card--featured:hover {
  border-color: rgba(194,216,196,.5);
}

.stakeholder-card__role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 10px;
}
.stakeholder-card--featured .stakeholder-card__role { color: var(--sage); }

.stakeholder-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: .01em;
  line-height: 1.15;
}
.stakeholder-card--featured .stakeholder-card__title { color: var(--white); }

.stakeholder-card__desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin-bottom: 20px;
}
.stakeholder-card--featured .stakeholder-card__desc { color: rgba(255,255,255,.6); }

.stakeholder-card__outcomes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stakeholder-card__outcomes li {
  font-size: 14px;
  color: var(--ink-mid);
  padding-left: 20px;
  position: relative;
  line-height: 1.45;
}
.stakeholder-card__outcomes li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--sage-dark);
  font-weight: 700;
}
.stakeholder-card--featured .stakeholder-card__outcomes li { color: rgba(255,255,255,.7); }
.stakeholder-card--featured .stakeholder-card__outcomes li::before { color: var(--sage); }


/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials {
  background: var(--surface);
  padding: var(--section-pad) 0;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease-spring);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
/* Featured card in brand black with sage accent */
.testi-card--featured {
  background: var(--black);
  border-color: var(--black);
}

.testi-card__context {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: .04em;
  display: inline-block;
  margin-bottom: 12px;
}
.testi-card--featured .testi-card__context {
  color: var(--sage);
}

.testi-card__stars {
  color: var(--sage-dark);
  font-size: 16px;
  letter-spacing: 2px;
}
.testi-card--featured .testi-card__stars { color: var(--sage); }

.testi-card__quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-mid);
  font-style: normal;
  flex: 1;
}
.testi-card--featured .testi-card__quote { color: rgba(255,255,255,.9); }

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.testi-av--1 { background: linear-gradient(135deg, #1F4A32, #3D9970); }
.testi-av--2 { background: linear-gradient(135deg, #1A3060, #3060A0); }
.testi-av--3 { background: linear-gradient(135deg, #4A1A20, #902030); }

.testi-card__name { font-weight: 700; font-size: 14px; color: var(--ink); }
.testi-card__role { font-size: 12px; color: var(--ink-muted); margin-top: 2px; }
.testi-card--featured .testi-card__name { color: var(--sage); }
.testi-card--featured .testi-card__role { color: var(--sage); }


/* ══════════════════════════════════════════
   PRICING
══════════════════════════════════════════ */
.pricing {
  background: var(--surface);
  padding: var(--section-pad) 0;
}

.pricing__toggle {
  display: inline-flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
  margin: 28px 0 48px;
  gap: 4px;
}
.pricing__toggle-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-muted);
  padding: 8px 20px;
  border-radius: 7px;
  transition: all .2s var(--ease);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing__toggle-btn--active {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.pricing__save-pill {
  font-size: 11px;
  font-weight: 700;
  color: var(--sage-dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color .2s var(--ease);
}
.pricing-card--popular {
  border: 2px solid var(--black);
}

.pricing-card__popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  white-space: nowrap;
}

.pricing-card__tier {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--black);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-card__curr { font-size: 20px; font-weight: 600; color: var(--ink-mid); }
.pricing-card__amt {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  color: var(--black);
}
.pricing-card__amt--custom { font-size: 36px; }
.pricing-card__per { font-size: 14px; color: var(--ink-muted); }

.pricing-card__desc { font-size: 14px; line-height: 1.55; color: var(--ink-muted); }

.pricing-card__feats {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.pricing-card__feats li {
  font-size: 14px;
  color: var(--ink-mid);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.pricing-card__feats li span { flex-shrink: 0; }
.feat--yes span { color: var(--sage-dark); font-weight: 700; }
.feat--no { color: var(--ink-light) !important; }
.feat--no span { color: var(--border); }
.feat--section {
  display: block !important;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-muted);
  padding-top: 14px;
  padding-bottom: 4px;
  border-top: 1px solid var(--border-light);
  margin-top: 6px;
}
.feat--section:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
/* Featured (dark) card section labels */
.pricing-card--featured .feat--section {
  color: rgba(255,255,255,.45);
  border-top-color: rgba(255,255,255,.12);
}

.pricing__footnote {
  text-align: center;
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 32px;
}

/* ── Pricing example cost table ─────────── */
.pricing__example {
  margin-top: 48px;
}
.pricing__example-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  text-align: center;
}
.pricing__example-inner .section-label {
  display: inline-block;
  margin-bottom: 24px;
}
.pricing__example-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.pricing__example-col {
  flex: 1;
  min-width: 160px;
  padding: 0 32px;
}
.pricing__example-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}
.pricing__example-workers {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.pricing__example-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  font-size: 15px;
}
.pricing__example-row span {
  color: var(--ink-mid);
}
.pricing__example-row strong {
  color: var(--black);
  font-weight: 700;
}
.pricing__example-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-muted);
}
@media (max-width: 600px) {
  .pricing__example-inner { padding: 24px 20px; }
  .pricing__example-col { padding: 16px 0; min-width: 100%; }
  .pricing__example-divider { width: 100%; height: 1px; }
  .pricing__example-grid { flex-direction: column; }
}

.pricing__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 32px;
}
.pricing__trust-sep { color: var(--border); }

.pricing-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
  .pricing-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

.pricing-card__persona {
  font-size: 12px;
  color: var(--ink-muted);
  font-style: italic;
  margin-bottom: 12px;
}

.pricing-card__perworker {
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.pricing-card__saving {
  color: var(--sage-dark);
  font-weight: 600;
}

.pricing__comparison-note {
  text-align: center;
  font-size: 14px;
  color: var(--ink-muted);
  margin-top: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.pricing__compare-link {
  color: var(--sage-dark);
  font-weight: 600;
}
.pricing__compare-link:hover { text-decoration: underline; }

/* Hardware callout */
.pricing__hardware {
  margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--sage-light);
}

.pricing__hardware-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
}

.pricing__hardware-icon {
  width: 44px;
  height: 44px;
  background: var(--black);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  flex-shrink: 0;
}

.pricing__hardware-inner strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.pricing__hardware-inner p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-mid);
  flex: 1;
}


/* ══════════════════════════════════════════
   CTA BANNER -- keeps dark for contrast
══════════════════════════════════════════ */
.cta-banner {
  background: var(--black);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
/* Subtle sage glow instead of grid */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(194,216,196,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner::after {
  display: none;
}
.cta-banner__grid {
  display: none;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-banner__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-top: 12px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
.cta-banner__headline em { font-style: normal; color: var(--sage); }

.cta-banner__sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.7);
  margin-top: 16px;
  max-width: 440px;
}

.cta-banner__badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-top: 16px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-form__fields { display: flex; flex-direction: column; gap: 10px; }
.cta-form__input {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  transition: border-color .15s var(--ease), background .15s;
  width: 100%;
}
.cta-form__input::placeholder { color: rgba(255,255,255,.4); }
.cta-form__input:focus {
  outline: none;
  border-color: var(--sage);
  background: rgba(255,255,255,.12);
}
.cta-form__privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.cta-form__success {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--green);
  background: rgba(26,122,63,.1);
  border: 1px solid rgba(26,122,63,.2);
  border-radius: 8px;
  padding: 12px 16px;
}
.cta-form__select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A09488' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}


/* ══════════════════════════════════════════
   SECURITY TRUST BAR
══════════════════════════════════════════ */
.trust-bar {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-bar__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 var(--inner-px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--ink-mid);
  white-space: nowrap;
}

.trust-bar__item svg { flex-shrink: 0; opacity: .7; color: var(--sage-dark); }


/* ══════════════════════════════════════════
   FOOTER -- stays dark
══════════════════════════════════════════ */
.footer {
  background: var(--black);
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 var(--inner-px) 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__logomark {
  width: 32px; height: 32px;
  background: var(--sage);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--black);
  flex-shrink: 0;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .08em;
  color: var(--white);
}
.footer__tagline { font-size: 14px; color: rgba(255,255,255,.5); margin-bottom: 8px; }
.footer__reg { font-size: 12px; color: rgba(255,255,255,.28); }

.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col-head {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color .15s;
}
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 20px var(--inner-px);
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer__bottom p { font-size: 13px; color: rgba(255,255,255,.4); }


/* ══════════════════════════════════════════
   DUAL AUDIENCE SECTION
══════════════════════════════════════════ */
.audience {
  background: var(--surface-2);
  padding: var(--section-pad) 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px;
}

.audience-card {
  border-radius: 18px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* PC card stays dark -- contrast element */
.audience-card--pc {
  background: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
}

.audience-card--sc {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink);
}

.audience-card__badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  width: fit-content;
}

.audience-card--pc .audience-card__badge {
  color: var(--sage-dark);
}

.audience-card--sc .audience-card__badge {
  color: var(--sage-dark);
}

.audience-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.2;
}

.audience-card--pc .audience-card__title { color: var(--white); }
.audience-card--sc .audience-card__title { color: var(--black); }

.audience-card__desc {
  font-size: 15px;
  line-height: 1.7;
  opacity: .85;
}

.audience-card--pc .audience-card__desc { color: rgba(255,255,255,.7); }
.audience-card--sc .audience-card__desc { color: var(--ink-mid); }

.audience-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.audience-card__list li {
  font-size: 14px;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}

.audience-card__list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 13px;
}

.audience-card--pc .audience-card__list li { color: rgba(255,255,255,.85); }
.audience-card--pc .audience-card__list li::before { color: var(--sage); }
.audience-card--sc .audience-card__list li { color: var(--ink-mid); }
.audience-card--sc .audience-card__list li::before { color: var(--sage-dark); }


/* ══════════════════════════════════════════
   GETTING STARTED JOURNEY
══════════════════════════════════════════ */
.journey {
  background: var(--white);
  padding: var(--section-pad) 0;
}

.journey-track {
  position: relative;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
}

.journey-track::before {
  content: '';
  position: absolute;
  left: 84px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: linear-gradient(to bottom, var(--sage), var(--sage-dark));
  opacity: .2;
}

.journey-step {
  display: flex;
  gap: 0;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.journey-step:last-child { border-bottom: none; }

.journey-step__marker {
  width: 168px;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  padding-right: 32px;
  padding-top: 4px;
  position: relative;
}

.journey-step__marker::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px rgba(194,216,196,.4);
}

.journey-step__day {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  white-space: nowrap;
}

.journey-step__content {
  flex: 1;
  padding-left: 32px;
}

.journey-step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 6px;
}

.journey-step__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-mid);
  max-width: 580px;
}

.journey__cta {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.journey__cta-note {
  font-size: 13px;
  color: var(--ink-muted);
  font-style: italic;
}

/* Journey 4-card grid (how-it-works page) */
.journey-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.journey-card {
  padding: 36px 32px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}
.journey-card__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 72px;
  color: rgba(61,170,142,.2);
  line-height: 1;
  margin-bottom: -8px;
  display: block;
  letter-spacing: -0.05em;
}
.journey-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.journey-card__body {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.7;
}
.journey-card__detail {
  margin-top: 18px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  color: var(--ink-mid);
}
.journey-card__detail strong { color: var(--sage-dark); }

/* 3-column variant for "Why choose" section */
.journey-steps-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* Scroll hint (hidden on desktop) */
.journey-scroll-hint {
  display: none;
  text-align: center;
  font-size: 13px;
  color: var(--ink-light);
  margin-top: 12px;
  font-weight: 500;
}



/* ══════════════════════════════════════════
   PRICING TEASER (homepage condensed)
══════════════════════════════════════════ */
.pricing-teaser {
  background: var(--white);
  padding: var(--section-pad) 0;
}
.pricing-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.pricing-teaser-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
  align-self: start;
}
/* Paid plan cards with feature lists align left */
.pricing-teaser-card:has(.pricing-card__feats) {
  text-align: left;
}
.pricing-teaser-card:hover {
  border-color: var(--sage-mid);
  transform: translateY(-2px);
}
.pricing-teaser-card--featured {
  border: 2px solid var(--sage-mid);
  background: var(--sage-light);
  box-shadow: 0 6px 32px rgba(194,216,196,.2);
}
.pricing-teaser-card__tier {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}
.pricing-teaser-card__from {
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.pricing-teaser-card__price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 42px;
  color: var(--black);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-teaser-card__price span {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink-mid);
}
.pricing-teaser-card__per {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.pricing-teaser__cta {
  text-align: center;
  margin-top: 36px;
}
.pricing-teaser__cta a {
  font-size: 14px;
  font-weight: 600;
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ══════════════════════════════════════════
   COMPARISON TABLE
══════════════════════════════════════════ */
.compare {
  background: var(--surface);
  padding: var(--section-pad) 0;
}

.compare-wrap {
  overflow-x: auto;
  margin-top: 48px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  background: var(--white);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.compare-table thead tr {
  background: var(--black);
}

.compare-table thead th {
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-align: left;
}

.compare-table__us {
  background: rgba(194,216,196,.15);
  color: var(--sage) !important;
}

.compare-table__other {
  color: rgba(255,255,255,.4) !important;
}

.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .12s;
}

.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--surface); }

.compare-table tbody td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--ink-mid);
}

.compare-table tbody td:first-child {
  font-weight: 500;
  color: var(--ink);
}

.compare-table tbody .compare-table__us {
  background: rgba(194,216,196,.06);
}

.cmp-yes  { color: var(--sage-dark); font-weight: 700; font-size: 16px; }
.cmp-no   { color: var(--ink-light); font-weight: 700; font-size: 16px; }
.cmp-partial { color: var(--ink-muted); font-weight: 600; font-size: 15px; }

.compare-table__note {
  font-size: 12px;
  color: var(--ink-muted);
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  font-style: italic;
}

.compare__cta {
  text-align: center;
  margin-top: 48px;
}

.compare__cta-pull {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 26px);
  color: var(--ink);
  font-style: italic;
  margin-bottom: 24px;
}


/* ══════════════════════════════════════════
   FAQ / OBJECTIONS
══════════════════════════════════════════ */
.faq {
  background: var(--white);
  padding: var(--section-pad) 0;
}

.faq-list {
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: none; }

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  transition: background .12s;
}

.faq-item__q:hover { background: var(--surface); }

.faq-item__q[aria-expanded="true"] {
  background: var(--surface);
  color: var(--sage-dark);
}

.faq-item__icon {
  flex-shrink: 0;
  transition: transform .2s var(--ease);
  color: var(--ink-muted);
}

.faq-item__q[aria-expanded="true"] .faq-item__icon {
  transform: rotate(180deg);
  color: var(--sage-dark);
}

.faq-item__a {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-mid);
}


/* ══════════════════════════════════════════
   PERSONA GRID
══════════════════════════════════════════ */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .persona-grid { grid-template-columns: 1fr; }
}

.persona-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.persona-card:hover {
  border-color: var(--sage-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.07);
}

.persona-card__icon {
  width: 44px;
  height: 44px;
  background: var(--sage-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  margin-bottom: 16px;
}

.persona-card__role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  display: inline-block;
  margin-bottom: 6px;
}

.persona-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.2;
}

.persona-card__list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.persona-card__list li {
  font-size: 13.5px;
  color: var(--ink-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.45;
}
.persona-card__list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--sage-dark);
  font-weight: 700;
  font-size: 12px;
}


/* ══════════════════════════════════════════
   FEATURE DETAIL LIST
══════════════════════════════════════════ */
.feat-detail-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}
.feat-detail-list li {
  font-size: 13.5px;
  color: var(--ink-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.45;
}
.feat-detail-list li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--sage-dark);
  font-weight: 700;
}


/* ══════════════════════════════════════════
   FEATURE DEEP-DIVE SECTION
══════════════════════════════════════════ */
.feature-deep {
  background: var(--surface);
  padding: var(--section-pad) 0;
}
.feature-deep--alt { background: var(--white); }

.feature-deep__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-deep__inner--flip { direction: rtl; }
.feature-deep__inner--flip > * { direction: ltr; }

.feature-deep__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  display: inline-block;
  margin-bottom: 12px;
}
.feature-deep__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 16px;
}
.feature-deep__title em { font-style: italic; color: var(--sage-dark); }
.feature-deep__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
  margin-bottom: 24px;
}
.feature-deep__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-deep__list li {
  font-size: 14px;
  color: var(--ink-mid);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.feature-deep__list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--sage-dark);
  font-weight: 700;
}

.feature-deep__visual {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 60px rgba(0,0,0,.12);
}
.feature-deep__visual-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 4px;
}
.feature-deep__forms-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feature-deep__form-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 10px 14px;
}
.feature-deep__form-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}
.feature-deep__form-dot--green { background: var(--green); }
.feature-deep__form-name {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  flex: 1;
}
.feature-deep__form-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--sage-dark);
}
.feature-deep__form-badge--green {
  color: var(--green);
}

@media (max-width: 1024px) {
  .feature-deep__inner { grid-template-columns: 1fr; gap: 40px; }
  .feature-deep__inner--flip { direction: ltr; }
}


/* ══════════════════════════════════════════
   BREADCRUMB / PAGE PATH
══════════════════════════════════════════ */
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
  justify-content: center;
}
.page-breadcrumb a { color: rgba(255,255,255,.5); transition: color .15s; }
.page-breadcrumb a:hover { color: rgba(255,255,255,.8); }
.page-breadcrumb--light { color: var(--ink-muted); }
.page-breadcrumb--light a { color: var(--ink-muted); }
.page-breadcrumb--light a:hover { color: var(--ink); }


/* ══════════════════════════════════════════
   INNER PAGE HERO - matches home page style
══════════════════════════════════════════ */
.hero-inner-page,
.hero-inner-page--light {
  background: linear-gradient(160deg, #FFFFFF 0%, #F2F6FA 45%, var(--sage-light) 100%);
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-inner-page::before,
.hero-inner-page::after,
.hero-inner-page__grid { display: none; }

.hero-inner-page__inner {
  position: relative;
  z-index: 1;
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 var(--inner-px);
}

.hero-inner-page__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 20px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* colour-only differentiation - no synthetic italic */
.hero-inner-page__headline em { font-style: normal; color: var(--sage-dark); }

.hero-inner-page__sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-mid);
  max-width: 640px;
  margin: 0 auto 32px;
}


/* ══════════════════════════════════════════
   CTA SECTION (standalone on sub-pages)
══════════════════════════════════════════ */
.cta-section {
  background: var(--black);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section__grid {
  display: none;
}
.cta-section__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--inner-px);
}
.cta-section__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 4.5vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
.cta-section__headline em { font-style: normal; color: var(--sage); }
.cta-section__sub {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin-bottom: 32px;
}
.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}


/* ══════════════════════════════════════════
   NAV DROPDOWN
══════════════════════════════════════════ */
.nav__item {
  position: relative;
}

.nav__item-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  transition: color .15s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  padding: 0;
}
.nav__item-trigger:hover { color: var(--black); }
.nav__item-trigger svg { transition: transform .2s var(--ease); }

.nav__item:hover .nav__item-trigger { color: var(--black); }
.nav__item:hover .nav__item-trigger svg { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: -16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  z-index: 100;
}

.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  transition: background .1s, color .1s;
}
.nav__dropdown a:hover {
  background: var(--sage-light);
  color: var(--black);
}

.nav__dropdown-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 8px 18px 4px;
}


/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes scrollLogos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes alertFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--sage-dark); }
  50%       { opacity: .6; box-shadow: 0 0 4px var(--sage-dark); }
}

/* Scroll-triggered reveal - heavier entrance with spring easing */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(4px);
  transition: opacity .7s var(--ease-out-expo), transform .7s var(--ease-spring), filter .7s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .40s; }


/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .sc__inner    { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; gap: 32px; }
  .step__arrow { display: none; }
  .cta-banner__inner { grid-template-columns: 1fr; }
  .cta-banner__sub { max-width: 100%; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .problem__costs { grid-template-columns: 1fr; }
  .roi-grid { grid-template-columns: 1fr; }
  .stakeholders-grid { grid-template-columns: 1fr; }
  .stakeholder-card--featured { grid-column: auto; }
}

@media (max-width: 768px) {
  .nav__links  { display: none; }
  .nav__actions { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: none; flex-direction: column; }
  .nav__mobile.open { display: flex; }

  .hero__headline { font-size: clamp(44px, 10vw, 64px); }

  .features-grid { grid-template-columns: 1fr; }
  .journey-steps-grid { grid-template-columns: 1fr; }
  .testi-grid    { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .pricing-grid--4 { grid-template-columns: 1fr; }

  .compare-table__other { display: none; }

  .stats-grid { flex-wrap: wrap; gap: 32px; }
  .stat { min-width: 45%; }
  .stat__divider { display: none; }

  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .logobar__inner { flex-direction: column; gap: 12px; align-items: flex-start; }

  .pullquote-strip__quote::before { display: none; }
  .pullquote-strip__trust { flex-direction: column; gap: 6px; }
  .pullquote-strip__sep { display: none; }

  .trust-bar__inner { gap: 16px; justify-content: flex-start; }

  .pricing__trust { flex-direction: column; gap: 6px; }
  .pricing__trust-sep { display: none; }

  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { padding: 28px 24px; }
  .journey-track::before { left: 32px; }
  .journey-step__marker { width: 80px; padding-right: 20px; }
  .journey-step__content { padding-left: 20px; }
  .journey-steps-grid { grid-template-columns: repeat(2, 1fr); }

  /* Horizontal scroll for 3-column journey grid on mobile */
  .journey-steps-grid--3 {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
  }
  .journey-steps-grid--3::-webkit-scrollbar { height: 6px; }
  .journey-steps-grid--3::-webkit-scrollbar-track { background: transparent; }
  .journey-steps-grid--3::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
  .journey-steps-grid--3 .journey-card {
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  .journey-scroll-hint { display: block; }

  .pricing__hardware-inner { flex-direction: column; }
  .steps--4 { grid-template-columns: 1fr; }
  .pricing-teaser-grid { grid-template-columns: 1fr; }
  .persona-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .pricing__toggle { width: 100%; }
  .pricing__toggle-btn { flex: 1; justify-content: center; }
  .faq-item__q { font-size: 14px; padding: 16px; }
  .faq-item__a { padding: 0 16px 16px; }
}

/* ── Reduced motion ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .logobar__track { animation: none; }
}

/* ══════════════════════════════════════════
   GLASS / POLISH UTILITIES
══════════════════════════════════════════ */

/* Glass card - on dark backgrounds */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* Glass card - on light backgrounds */
.glass--light {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 4px 24px rgba(13,24,35,.08);
}

/* Frosted stat card - overlaid on photos / dark sections */
.glass-stat {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.9);
}
.glass-stat__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 4px;
}
.glass-stat__value {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}
.glass-stat__sub {
  font-size: 11px;
  color: var(--ink-muted);
  margin-top: 3px;
}

/* Dark section with teal ambient glow */
.section--dark {
  background: var(--navy);
  background-image:
    radial-gradient(circle at 15% 50%, rgba(61,170,142,.05) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(61,170,142,.04) 0%, transparent 45%);
}

/* Dark CTA block - rounded card, not full-width */
.cta-block {
  background: var(--navy);
  border-radius: 24px;
  padding: clamp(48px, 6vw, 80px) clamp(32px, 6vw, 80px);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  background-image: radial-gradient(circle at 30% 50%, rgba(61,170,142,.07) 0%, transparent 55%);
  border: 1px solid rgba(255,255,255,.06);
}
.cta-block__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}
.cta-block__headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-block__sub {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.cta-block__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Trust strip - UK built · GDPR · 30 min */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px var(--inner-px);
}
.trust-strip__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-strip__item {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-strip__dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--border);
}
@media (max-width: 600px) { .trust-strip__dot { display: none; } }

/* ── Also Included capability grid ───────────────────────────────────── */
.also-included {
  background: var(--surface);
  padding: var(--section-pad) var(--inner-px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.also-included .section-inner {
  /* Centre the headline block */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-headline--sm {
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.also-included .section-sub {
  font-size: 18px;
  margin-top: 14px;
  max-width: 560px;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 16px;
  margin-top: 56px;
  width: 100%;
}

.cap-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 26px;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}

.cap-item:hover {
  border-color: var(--sage-mid);
  box-shadow: 0 6px 24px rgba(13,24,35,.07);
  transform: translateY(-2px);
}

.cap-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--sage-light);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.cap-item__text {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cap-item__text strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.cap-item__text span {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.65;
}

@media (max-width: 780px) {
  .cap-grid { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 640px) {
  .also-included { padding: 64px var(--inner-px); }
  .cap-grid { margin-top: 40px; }
}
