/* =====================================================
   NAIKIT AI CONSULTING — style.css
   Brand: #1A1A1A bg · #E8632A accent · #FFFFFF text
   Fonts: Cabinet Grotesk (display) · Satoshi (body)
   ===================================================== */

/* --------------------------------------------------
   0. RESET & CUSTOM PROPERTIES
   -------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand Colors */
  --clr-bg:          #1A1A1A;
  --clr-bg-soft:     #222222;
  --clr-bg-card:     #242424;
  --clr-bg-elevated: #2C2C2C;
  --clr-accent:      #E8632A;
  --clr-accent-dark: #C44F1A;
  --clr-accent-glow: rgba(232, 99, 42, 0.18);
  --clr-white:       #FFFFFF;
  --clr-text:        #FFFFFF;
  --clr-text-muted:  #A0A0A0;
  --clr-text-subtle: #6E6E6E;
  --clr-border:      rgba(255, 255, 255, 0.08);
  --clr-border-accent: rgba(232, 99, 42, 0.30);

  /* Typography */
  --font-display: 'Cabinet Grotesk', system-ui, sans-serif;
  --font-body:    'Satoshi', system-ui, sans-serif;

  /* Type Scale */
  --text-xs:    0.75rem;    /* 12px */
  --text-sm:    0.875rem;   /* 14px */
  --text-base:  1rem;       /* 16px */
  --text-md:    1.125rem;   /* 18px */
  --text-lg:    1.25rem;    /* 20px */
  --text-xl:    1.5rem;     /* 24px */
  --text-2xl:   2rem;       /* 32px */
  --text-3xl:   2.5rem;     /* 40px */
  --text-4xl:   3.25rem;    /* 52px */
  --text-hero:  4.25rem;    /* 68px */

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container-max: 1180px;
  --container-pad: clamp(1.25rem, 5vw, 2.5rem);

  /* Border Radius */
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card:   0 2px 16px rgba(0,0,0,0.35);
  --shadow-popup:  0 8px 40px rgba(0,0,0,0.50);
  --shadow-accent: 0 0 32px rgba(232, 99, 42, 0.25);

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.7, 0, 0.84, 0);
  --dur-fast:   150ms;
  --dur-mid:    280ms;
  --dur-slow:   450ms;

  /* Nav height */
  --nav-h: 72px;
}

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

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

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* --------------------------------------------------
   1. UTILITY — CONTAINER
   -------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* --------------------------------------------------
   2. SECTION CHROME — labels, titles, subs
   -------------------------------------------------- */
.section-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--clr-white);
  margin-bottom: var(--space-5);
}

.section-sub {
  font-size: var(--text-md);
  color: var(--clr-text-muted);
  max-width: 680px;
  line-height: 1.7;
}

/* --------------------------------------------------
   3. BUTTONS
   -------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  padding: 0.65em 1.6em;
  transition:
    background var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}

.btn:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 3px;
}

/* Primary */
.btn-primary {
  background: var(--clr-accent);
  color: var(--clr-white);
  border: 2px solid var(--clr-accent);
}
.btn-primary:hover {
  background: var(--clr-accent-dark);
  border-color: var(--clr-accent-dark);
  box-shadow: var(--shadow-accent);
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  transform: translateY(-1px);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--clr-text-muted);
  border: 2px solid var(--clr-border);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.25);
  color: var(--clr-white);
}

/* Sizes */
.btn-lg {
  font-size: var(--text-base);
  padding: 0.8em 2em;
}

/* --------------------------------------------------
   4. NAVIGATION
   -------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--dur-mid) var(--ease-out);
}

.nav-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.logo-mark {
  flex-shrink: 0;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-display);
}

.logo-top {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--clr-white);
}

.logo-bottom {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--clr-text-muted);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--clr-text-muted);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}

.nav-links a:hover {
  color: var(--clr-white);
  background: rgba(255,255,255,0.06);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
}

.nav-cta {
  font-size: var(--text-xs);
  padding: 0.55em 1.2em;
}

/* Mobile toggle */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast);
}

.nav-mobile-toggle:hover {
  background: rgba(255,255,255,0.08);
}

.nav-mobile-toggle span {
  display: block;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: transform var(--dur-mid) var(--ease-out), opacity var(--dur-mid) var(--ease-out);
  transform-origin: center;
}

/* Mobile menu open state — spans animate to X */
.nav-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile {
  background: var(--clr-bg-soft);
  border-top: 1px solid var(--clr-border);
  padding: var(--space-6) var(--container-pad) var(--space-8);
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-6);
}

.nav-mobile ul a {
  display: block;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--clr-text-muted);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
}

.nav-mobile ul a:hover {
  color: var(--clr-white);
  background: rgba(255,255,255,0.06);
}

.nav-mobile .btn {
  width: 100%;
}

/* --------------------------------------------------
   5. HERO
   -------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--nav-h) + var(--space-16));
  padding-bottom: var(--space-24);
  overflow: hidden;
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,0.95) 0%,
    rgba(26,26,26,0.80) 50%,
    rgba(26,26,26,0.70) 100%
  );
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
}

/* Founding banner */
.founding-banner {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--clr-accent-glow);
  border: 1px solid var(--clr-border-accent);
  color: var(--clr-accent);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-5);
  margin-bottom: var(--space-8);
}

.founding-star {
  font-size: 0.7em;
}

/* Hero headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, var(--text-hero));
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--clr-white);
  max-width: 820px;
  margin-bottom: var(--space-6);
}

.headline-accent {
  color: var(--clr-accent);
}

.br-lg {
  display: none;
}

@media (min-width: 768px) {
  .br-lg { display: inline; }
}

/* Hero sub */
.hero-sub {
  font-size: clamp(var(--text-base), 2vw, var(--text-md));
  color: rgba(255,255,255,0.70);
  max-width: 600px;
  margin-bottom: var(--space-10);
  line-height: 1.7;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

/* --------------------------------------------------
   6. REALITY — Pain Cards
   -------------------------------------------------- */
.reality {
  padding-block: var(--space-24);
  background: var(--clr-bg-soft);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.pain-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: border-color var(--dur-mid), box-shadow var(--dur-mid);
}

.pain-card:hover {
  border-color: var(--clr-border-accent);
  box-shadow: var(--shadow-accent);
}

.pain-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 900;
  color: rgba(232, 99, 42, 0.15);
  line-height: 1;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.pain-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.pain-card p {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------
   7. SERVICES / AUTOMATE
   -------------------------------------------------- */
.services {
  padding-block: var(--space-24);
}

.services > .container > .section-sub {
  margin-bottom: var(--space-10);
}

/* Plan Builder */
.plan-builder {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  margin-bottom: var(--space-10);
}

.plan-builder-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--clr-text-subtle);
  margin-bottom: var(--space-4);
}

.chip-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.chip {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--clr-text-muted);
  background: var(--clr-bg-elevated);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  padding: 0.4em 1em;
  cursor: pointer;
  transition:
    background var(--dur-fast),
    color var(--dur-fast),
    border-color var(--dur-fast);
  letter-spacing: 0.02em;
}

.chip:hover {
  background: rgba(232, 99, 42, 0.12);
  border-color: var(--clr-border-accent);
  color: var(--clr-accent);
}

.chip[aria-pressed="true"] {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-white);
}

.plan-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.plan-summary-text {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  font-style: italic;
  flex: 1;
}

.plan-cta-btn {
  font-size: var(--text-xs);
  padding: 0.55em 1.3em;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-5);
}

.service-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-7, 1.75rem);
  transition:
    border-color var(--dur-mid),
    box-shadow var(--dur-mid),
    transform var(--dur-mid) var(--ease-out);
}

.service-card:hover {
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.service-card.featured {
  border-color: var(--clr-border-accent);
  background: linear-gradient(135deg, rgba(232,99,42,0.06) 0%, var(--clr-bg-card) 60%);
}

.service-card.selected {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 2px rgba(232, 99, 42, 0.25);
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.module-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  color: rgba(232, 99, 42, 0.35);
  letter-spacing: -0.03em;
  line-height: 1;
}

.service-card.selected .module-num {
  color: var(--clr-accent);
}

.module-select-btn {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--clr-text-muted);
  background: var(--clr-bg-elevated);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  padding: 0.3em 0.9em;
  cursor: pointer;
  transition:
    background var(--dur-fast),
    color var(--dur-fast),
    border-color var(--dur-fast);
}

.module-select-btn:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

.module-select-btn[aria-pressed="true"] {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-white);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-3);
  line-height: 1.2;
}

.service-card-details {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-slow) var(--ease-out);
}

.service-card-details.expanded {
  max-height: 400px;
}

.service-card-details p {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.service-card-details ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.service-card-details ul li {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  padding-left: var(--space-5);
  position: relative;
}

.service-card-details ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--clr-accent);
  font-size: 0.85em;
}

/* --------------------------------------------------
   8. SOCIAL PROOF
   -------------------------------------------------- */
.social-proof {
  padding-block: var(--space-20);
  background: var(--clr-bg-soft);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.proof-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

/* Quote */
.proof-quote-wrap {
  border-left: 3px solid var(--clr-accent);
  padding-left: var(--space-8);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--clr-accent);
  opacity: 0.5;
  margin-bottom: var(--space-2);
}

.proof-quote p {
  font-family: var(--font-display);
  font-size: clamp(var(--text-lg), 2.5vw, var(--text-2xl));
  font-weight: 500;
  line-height: 1.4;
  color: var(--clr-white);
  margin-bottom: var(--space-5);
  font-style: italic;
}

.quote-attribution {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
}

.quote-attribution strong {
  color: var(--clr-white);
  font-weight: 700;
}

/* Stats */
.proof-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stat-item {
  padding: var(--space-6) 0;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4vw, 3.5rem);
  font-weight: 900;
  color: var(--clr-white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-plus, .stat-pct {
  font-size: 0.55em;
  color: var(--clr-accent);
  vertical-align: super;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  font-weight: 500;
}

.stat-divider {
  height: 1px;
  background: var(--clr-border);
  width: 100%;
}

/* --------------------------------------------------
   9. PRICING
   -------------------------------------------------- */
.pricing {
  padding-block: var(--space-24);
}

.pricing > .container > .section-sub {
  margin-bottom: var(--space-12);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-10);
  align-items: start;
}

.pricing-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  transition: box-shadow var(--dur-mid), border-color var(--dur-mid), transform var(--dur-mid) var(--ease-out);
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

/* Popular card */
.pricing-card--popular {
  border-color: var(--clr-accent);
  background: linear-gradient(145deg, rgba(232, 99, 42, 0.08) 0%, var(--clr-bg-card) 50%);
  box-shadow: 0 0 0 1px rgba(232, 99, 42, 0.20), var(--shadow-accent);
  transform: scale(1.02);
  z-index: 1;
}

.pricing-card--popular:hover {
  transform: scale(1.02) translateY(-3px);
}

.popular-badge {
  display: inline-block;
  background: var(--clr-accent);
  color: var(--clr-white);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
  padding: 0.3em 0.9em;
  margin-bottom: var(--space-5);
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-3);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
  margin-bottom: var(--space-2);
}

.price-amount {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--clr-white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-period {
  font-size: var(--text-base);
  color: var(--clr-text-muted);
  font-weight: 400;
}

.pricing-modules {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--clr-accent);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}

.pricing-capacity {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--clr-border);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.pricing-features li {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.70);
  padding-left: var(--space-5);
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-accent);
  font-weight: 700;
}

.pricing-btn {
  width: 100%;
  text-align: center;
  font-size: var(--text-sm);
}

/* Founding callout */
.founding-callout {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  background: var(--clr-accent-glow);
  border: 1px solid var(--clr-border-accent);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
}

.founding-callout-star {
  font-size: var(--text-2xl);
  color: var(--clr-accent);
  flex-shrink: 0;
  line-height: 1;
}

.founding-callout strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-2);
}

.founding-callout p {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------
   10. HOW IT WORKS
   -------------------------------------------------- */
.how-it-works {
  padding-block: var(--space-24);
  background: var(--clr-bg-soft);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
  counter-reset: none;
  position: relative;
}

/* Connector line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 60px;
  right: 60px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--clr-border-accent) 15%,
    var(--clr-border-accent) 85%,
    transparent 100%
  );
  pointer-events: none;
}

.step {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  transition: border-color var(--dur-mid), box-shadow var(--dur-mid);
}

.step:hover {
  border-color: var(--clr-border-accent);
  box-shadow: var(--shadow-accent);
}

.step-number {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--clr-accent);
  background: var(--clr-accent-glow);
  border: 1px solid var(--clr-border-accent);
  border-radius: var(--radius-full);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.step p {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------
   11. ABOUT / FOUNDERS
   -------------------------------------------------- */
.about {
  padding-block: var(--space-24);
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  margin-top: var(--space-12);
}

.founder-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .founder-card {
    grid-template-columns: 160px 1fr;
  }
}

/* Photo */
.founder-photo {
  width: 160px;
  height: 160px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--clr-border);
  flex-shrink: 0;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Info */
.founder-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: var(--space-1);
}

.founder-role {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-4);
}

.founder-bio {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-5);
}

.founder-bio strong {
  color: var(--clr-white);
  font-weight: 600;
}

/* CompTIA badge */
.comptia-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--clr-bg-elevated);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
}

.comptia-badge span {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--clr-text-muted);
}

/* --------------------------------------------------
   12. FAQ ACCORDION
   -------------------------------------------------- */
.faq {
  padding-block: var(--space-24);
  background: var(--clr-bg-soft);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.faq-list {
  max-width: 760px;
  margin: var(--space-12) auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--clr-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--clr-white);
  padding: var(--space-5) var(--space-2);
  cursor: pointer;
  user-select: none;
  transition: color var(--dur-fast);
}

.faq-question:hover {
  color: var(--clr-accent);
}

.faq-question:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.faq-icon {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--clr-accent);
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--dur-mid) var(--ease-out);
  display: inline-block;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  line-height: 1.8;
  padding: 0 var(--space-2) var(--space-6);
}

/* --------------------------------------------------
   13. FINAL CTA
   -------------------------------------------------- */
.final-cta {
  padding-block: var(--space-32);
  text-align: center;
  background: linear-gradient(
    180deg,
    var(--clr-bg) 0%,
    rgba(232, 99, 42, 0.06) 50%,
    var(--clr-bg) 100%
  );
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,99,42,0.10) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.final-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--clr-white);
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--space-5);
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.final-cta-sub {
  font-size: clamp(var(--text-base), 2vw, var(--text-md));
  color: var(--clr-text-muted);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.final-cta .btn {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-6);
}

.final-cta-footnote {
  font-size: var(--text-sm);
  color: var(--clr-text-subtle);
  position: relative;
  z-index: 1;
}

.final-cta-footnote a {
  color: var(--clr-text-muted);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.25);
  transition: color var(--dur-fast);
}

.final-cta-footnote a:hover {
  color: var(--clr-accent);
}

/* --------------------------------------------------
   14. FOOTER
   -------------------------------------------------- */
.site-footer {
  background: var(--clr-bg-soft);
  border-top: 1px solid var(--clr-border);
  padding-block: var(--space-10);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  opacity: 0.75;
  transition: opacity var(--dur-fast);
}

.footer-logo:hover {
  opacity: 1;
}

.footer-logo .logo-top,
.footer-logo .logo-bottom {
  color: rgba(255,255,255,0.85);
}

.footer-nav {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: var(--text-sm);
  color: var(--clr-text-subtle);
  transition: color var(--dur-fast);
}

.footer-nav a:hover {
  color: var(--clr-white);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  text-align: right;
}

.footer-email {
  font-size: var(--text-sm);
  color: var(--clr-accent);
  transition: opacity var(--dur-fast);
}

.footer-email:hover {
  opacity: 0.8;
}

.footer-compliance {
  font-size: var(--text-xs);
  color: var(--clr-text-subtle);
  letter-spacing: 0.04em;
}

.footer-copy {
  font-size: var(--text-xs);
  color: var(--clr-text-subtle);
}

/* --------------------------------------------------
   15. FADE-IN ANIMATION
   -------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for grid children */
.pain-grid .fade-in:nth-child(1),
.services-grid .service-card:nth-child(1),
.pricing-grid .pricing-card:nth-child(1),
.steps-grid .step:nth-child(1),
.founders-grid .founder-card:nth-child(1) { transition-delay: 0ms; }

.pain-grid .fade-in:nth-child(2),
.services-grid .service-card:nth-child(2),
.pricing-grid .pricing-card:nth-child(2),
.steps-grid .step:nth-child(2),
.founders-grid .founder-card:nth-child(2) { transition-delay: 80ms; }

.pain-grid .fade-in:nth-child(3),
.services-grid .service-card:nth-child(3),
.pricing-grid .pricing-card:nth-child(3),
.steps-grid .step:nth-child(3) { transition-delay: 160ms; }

.pain-grid .fade-in:nth-child(4),
.services-grid .service-card:nth-child(4),
.pricing-grid .pricing-card:nth-child(4),
.steps-grid .step:nth-child(4) { transition-delay: 240ms; }

.services-grid .service-card:nth-child(5) { transition-delay: 320ms; }
.services-grid .service-card:nth-child(6) { transition-delay: 400ms; }

/* --------------------------------------------------
   16. SCROLLED NAV STATE
   -------------------------------------------------- */
.site-nav.scrolled {
  background: rgba(26, 26, 26, 0.98);
  box-shadow: 0 1px 24px rgba(0,0,0,0.35);
}

/* --------------------------------------------------
   17. RESPONSIVE — Tablet & Mobile
   -------------------------------------------------- */

/* Tablet ≤ 1024px */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .pricing-card--popular {
    transform: none;
    order: -1;
  }

  .pricing-card--popular:hover {
    transform: translateY(-3px);
  }

  .proof-inner {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

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

  .steps-grid::before {
    display: none;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a {
    font-size: 0.8rem;
    padding: var(--space-2);
  }
}

/* Mobile ≤ 768px */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .hero {
    padding-top: calc(var(--nav-h) + var(--space-8));
    padding-bottom: var(--space-16);
    min-height: auto;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-badges {
    gap: var(--space-3);
  }

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

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

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

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

  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    width: 120px;
    height: 120px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-6);
  }

  .footer-legal {
    text-align: left;
  }

  .footer-nav {
    flex-direction: column;
    gap: var(--space-3);
  }

  .plan-builder {
    padding: var(--space-5);
  }

  .plan-summary-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .plan-cta-btn {
    width: 100%;
    text-align: center;
  }

  .proof-inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .founding-callout {
    flex-direction: column;
    gap: var(--space-3);
  }
}

/* Mobile ≤ 480px */
@media (max-width: 480px) {
  .hero-headline {
    font-size: 2rem;
  }

  .section-title {
    font-size: var(--text-2xl);
  }

  .final-cta-heading {
    font-size: var(--text-2xl);
  }

  .stat-value {
    font-size: var(--text-3xl);
  }
}

/* --------------------------------------------------
   18. ACCESSIBILITY — REDUCED MOTION
   -------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------
   19. PRINT
   -------------------------------------------------- */
@media print {
  .site-nav,
  .nav-mobile-toggle,
  .hero-ctas,
  .plan-builder,
  .module-select-btn,
  .final-cta .btn {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}
