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

/* ═══ DESIGN SYSTEM TOKENS — corrective v2 ═══ */
:root {
  color-scheme: dark;

  /* Surfaces — now visibly tiered */
  --bg-page:        #13131A;   /* page bg, distinctly lifted from black */
  --bg-section:     #0E0E14;   /* alternate band + nav, darker than page (reads as "inset") */
  --bg-card:        #1E1E28;   /* cards sit clearly above the page */
  --bg-elevated:    #25252F;   /* card hover state */
  --bg-input:       #0E0E14;   /* form inputs feel inset (matches section bg) */

  /* Borders — visible enough to read as borders, not guesses */
  --border-default: #2E2E3C;
  --border-strong:  #3D3D4F;
  --border-purple:  rgba(139, 92, 246, 0.30);
  --border-green:   rgba(52, 211, 153, 0.25);
  --border-red:     rgba(248, 113, 113, 0.25);
  --border-yellow:  rgba(251, 191, 36, 0.30);

  /* Text — unchanged */
  --text-primary:   #FFFFFF;
  --text-body:      #E5E7EB;
  --text-secondary: #9CA3AF;
  --text-muted:     #6B7280;
  --text-faint:     #4B5563;

  /* Brand — unchanged except purple-deep */
  --purple-500:     #8B5CF6;
  --purple-400:     #A78BFA;
  --purple-300:     #C4B5FD;
  --purple-deep:    #261142;   /* lifted from #1A0B2E so the tier-card header reads against new card tone */
  --purple-bg:      rgba(139, 92, 246, 0.10);

  /* Status — unchanged */
  --green-400:      #34D399;
  --green-bg:       rgba(52, 211, 153, 0.08);
  --red-400:        #F87171;
  --red-bg:         rgba(248, 113, 113, 0.08);
  --yellow-400:     #FBBF24;
  --yellow-bg:      rgba(251, 191, 36, 0.08);

  /* Type, spacing, radii — unchanged */
  --text-display:   clamp(2.5rem, 5vw, 4rem);
  --text-h1:        clamp(2rem, 4vw, 3rem);
  --text-h2:        clamp(1.5rem, 3vw, 2rem);
  --text-h3:        1.25rem;
  --text-stat:      clamp(2.5rem, 6vw, 4rem);
  --text-result:    clamp(2rem, 4vw, 3rem);

  --space-1: 0.25rem;  --space-2: 0.5rem;   --space-3: 0.75rem;
  --space-4: 1rem;     --space-6: 1.5rem;   --space-8: 2rem;
  --space-12: 3rem;    --space-16: 4rem;    --space-24: 6rem;

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-pill: 9999px;
  --shadow-card-hover: 0 8px 24px rgba(139, 92, 246, 0.12);

  /* ── Legacy aliases ──
     CRITICAL: --black is used as a CARD/PANEL background in all 14 of its
     usages (.card-black, .step-card, .included-card, .pricing-note, .who-card,
     .lp-problem-card, .lp-dual-value, .process-step, .pricing-col, .example-card,
     .roi-out, .roi-advanced, .rung-stop badge). It is NEVER the page void.
     So it aliases to --bg-card, NOT --bg-page. */
  --black:       var(--bg-card);
  --gray-900:    var(--bg-card);
  --gray-800:    var(--border-default);
  --gray-700:    var(--border-strong);
  --gray-600:    var(--text-faint);
  --gray-500:    var(--text-muted);
  --gray-400:    var(--text-secondary);
  --gray-300:    var(--text-body);
  --purple-950:  var(--purple-deep);
  --purple-900:  rgba(139, 92, 246, 0.14);
  --purple-800:  rgba(139, 92, 246, 0.35);
  --purple-700:  rgba(139, 92, 246, 0.35);
  --purple-600:  var(--purple-500);
  --purple-200:  #DDD6FE;
  --purple-100:  #EDE9FE;
  --green-500:   var(--green-400);
  --green-900:   var(--border-green);
  --orange-500:  var(--yellow-400);
  --orange-900:  var(--border-yellow);
  --red-900:     var(--border-red);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-feature-settings: 'ss01' on, 'cv11' on;
  background-color: var(--bg-page);
  /* Subtle film grain: depth without weight (design patch §2) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  color: var(--text-body);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  animation: page-fade 300ms ease-out;
  overflow-x: clip;            /* contain the off-canvas mobile drawer */
}
body.nav-open { overflow: hidden; }   /* lock scroll while the drawer is open */
@keyframes page-fade { from { opacity: 0 } to { opacity: 1 } }

/* ─── NAV (own surface: translucent, blurs content under it) ── */
nav[aria-label="Main"] {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14, 14, 20, 0.82);   /* ~82% of --bg-section #0E0E14 */
  border-bottom: 1px solid var(--border-default);
  -webkit-backdrop-filter: saturate(120%) blur(10px);
  backdrop-filter: saturate(120%) blur(10px);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
}
.nav-logo img { height: 2.25rem; width: auto; }
.nav-right { display: flex; align-items: center; gap: .75rem; }
.nav-link {
  color: var(--gray-400); text-decoration: none;
  font-size: .9375rem; font-weight: 400;
  transition: color .15s;
}
.nav-link:hover { color: #fff; }

/* ─── LANGUAGE DROPDOWN ──────────────────────────── */
.lang-dropdown {
  position: relative;
  display: inline-block;
}
.lang-dropdown-toggle {
  display: flex; align-items: center; gap: .25rem;
  color: var(--gray-400); text-decoration: none;
  font-size: .9375rem; font-weight: 600;
  cursor: pointer; padding: .5rem;
  transition: color .15s;
}
.lang-dropdown-toggle:hover { color: #fff; }
.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; right: 0;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: .5rem;
  min-width: 130px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.5);
  overflow: hidden;
  z-index: 100;
}
.lang-dropdown:hover .lang-dropdown-menu {
  display: block;
}
.lang-dropdown-item {
  display: block;
  padding: .5rem 1rem;
  color: var(--gray-300);
  text-decoration: none;
  font-size: .875rem;
  transition: background .15s, color .15s;
}
.lang-dropdown-item:hover {
  background: var(--gray-800);
  color: #fff;
}
.lang-dropdown-item.active {
  color: var(--purple-400);
  font-weight: 600;
  background: var(--purple-bg);
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.5rem;
  background: var(--purple-500); color: #fff;
  border-radius: var(--radius-sm); font-weight: 600;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  font-size: 1rem;
  transition: background-color 150ms;
}
.btn-primary:hover { background: var(--purple-400); }
.btn-primary:focus-visible { outline: 2px solid var(--purple-300); outline-offset: 3px; }

.btn-login {
  display: inline-flex; align-items: center;
  padding: .5rem 1rem;
  color: var(--gray-400);
  border-radius: .5rem; font-weight: 500;
  text-decoration: none; border: none; cursor: pointer;
  font-size: .9375rem; background: transparent;
  transition: color .15s;
}
.btn-login:hover { color: #fff; }

.btn-primary-lg {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--border-strong); color: var(--text-body);
  text-decoration: none; font-weight: 600; font-size: 1rem;
  cursor: pointer;
  transition: border-color 150ms, color 150ms;
}
.btn-secondary:hover { border-color: var(--purple-500); color: #fff; }
.btn-nav-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.5rem;
  border: 1px solid var(--border-strong); color: var(--text-body);
  border-radius: var(--radius-sm); font-weight: 600; font-size: 1rem;
  text-decoration: none; transition: border-color .15s, color .15s;
}
.btn-nav-outline:hover {
  border-color: var(--purple-500); color: #fff;
}
/* In the desktop header the action buttons should sit closer in weight to the
   text links beside them — smaller padding + matching font size. Mobile drawer
   keeps the full-size buttons (better tap targets). */
@media (min-width: 1140px) {
  nav[aria-label="Main"] .btn-primary,
  nav[aria-label="Main"] .btn-nav-outline {
    padding: .5rem 1.1rem;
    font-size: .9375rem;
  }
}

/* ─── LAYOUT ───────────────────────────────────────── */
.container    { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-md { max-width: 900px;  margin: 0 auto; padding: 0 1.5rem; }
.section      { padding: var(--space-24) 0; }
@media (max-width: 768px) { .section { padding: var(--space-16) 0; } }
/* Avoid double-padding when two same-band sections touch */
.section:not(.section-dark) + .section:not(.section-dark) { padding-top: 0; }
.section-dark, .section-alt { background: var(--bg-section); }
.text-center { text-align: center; }

/* ─── TYPOGRAPHY ───────────────────────────────────── */
h1 { font-size: var(--text-h1); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; color: var(--text-primary); }
h2 { font-size: var(--text-h2); font-weight: 700; line-height: 1.2; color: var(--text-primary); }
h3 { font-size: var(--text-h3); font-weight: 600; color: var(--text-primary); }
h4 { font-size: 1rem; font-weight: 600; color: var(--text-primary); }
.text-muted  { color: var(--gray-400); }
.text-sm     { font-size: .875rem; }
.text-lg     { font-size: 1.125rem; }
.text-xl     { font-size: 1.25rem; }
.text-2xl    { font-size: 1.5rem; }
.text-purple { color: var(--purple-400); }
.text-green  { color: var(--green-400); }
.text-orange { color: var(--orange-500); }
.text-red    { color: var(--red-400); }
.font-semibold { font-weight: 600; }

/* ─── SPACING HELPERS ──────────────────────────────── */
.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}
.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.mb-10{margin-bottom:2.5rem}
.mb-12{margin-bottom:3rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}
.mt-8{margin-top:2rem}.mt-10{margin-top:2.5rem}.mt-12{margin-top:3rem}

/* ─── HERO (subpages: diagonal lines, no video) ────── */
.hero {
  padding: var(--space-24) 0 var(--space-16);
  background-image: repeating-linear-gradient(115deg,
    rgba(139, 92, 246, 0.04) 0, rgba(139, 92, 246, 0.04) 1px,
    transparent 1px, transparent 72px);
}

.trust-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem;
  margin-top: 2.5rem;
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .875rem; color: var(--gray-400);
}
.trust-item .icon-green { color: var(--green-500); display: flex; }

/* ─── CARDS ─────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: border-color 200ms, background-color 200ms;
}
.card:hover {
  border-color: var(--border-strong);
  background: var(--bg-elevated);
}
.card-black {
  background: var(--black);
  border: 1px solid var(--gray-800);
  border-radius: .75rem;
  padding: 2rem;
}
.card-green-border  { border: 2px solid var(--green-900)  !important; }
.card-orange-border { border: 2px solid var(--orange-900) !important; }
.card-red-border    { border: 2px solid var(--red-900)    !important; }
.card-purple-border { border: 2px solid var(--purple-600) !important; }

/* Service cards — clickable */
.card-service {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: .75rem; padding: 2rem;
  text-decoration: none; display: block;
  transition: border-color .2s, box-shadow .2s;
}
.card-service:hover {
  border-color: var(--purple-500);
  box-shadow: var(--shadow-card-hover);
}
.card-service:hover h3 { color: var(--purple-400); }
.card-service h3 { color: #fff; transition: color .2s; }

/* ─── ICON BOXES ─────────────────────────────────────── */
.icon-box {
  width: 3rem; height: 3rem;
  background: var(--purple-900);
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--purple-400);
}
.icon-circle {
  width: 4rem; height: 4rem;
  background: var(--purple-900); border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700; color: var(--purple-300);
  flex-shrink: 0;
}
.icon-sm {
  width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-500);
  flex-shrink: 0;
}
.icon-alert-purple {
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-400); flex-shrink: 0;
}

/* ─── GRIDS ──────────────────────────────────────────── */
.grid-2 { display: grid; gap: 2rem; }
.grid-3 { display: grid; gap: 2rem; }
.grid-4 { display: grid; gap: 2rem; }
@media(min-width:640px) {
  .grid-2 { grid-template-columns: repeat(2,1fr); }
}
@media(min-width:768px) {
  .grid-3 { grid-template-columns: repeat(3,1fr); }
  .grid-4 { grid-template-columns: repeat(4,1fr); }
}

/* ─── FLEX ───────────────────────────────────────────── */
.flex         { display: flex; }
.flex-col     { flex-direction: column; }
.flex-wrap    { flex-wrap: wrap; }
.items-start  { align-items: flex-start; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: .5rem; }  .gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }   .gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.flex-1        { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }

/* ─── SERVICE DETAIL BLOCKS ──────────────────────────── */
.service-block {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: .75rem; overflow: hidden; margin-bottom: 2rem;
}
.service-block-header {
  background: var(--purple-950);
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--gray-800);
}

/* ─── STEP CARDS ─────────────────────────────────────── */
.step-card {
  background: var(--black);
  border: 1px solid var(--gray-800);
  border-radius: .75rem; padding: 2rem;
  display: flex; gap: 1rem; align-items: flex-start;
}

/* ─── FAQ ────────────────────────────────────────────── */
.faq-item {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: .75rem; padding: 1.5rem;
}
.faq-q {
  display: flex; align-items: center; gap: .75rem;
  font-size: 1.25rem; font-weight: 600; margin-bottom: .75rem;
  color: #fff;
}

/* ─── HIGHLIGHT BOX ──────────────────────────────────── */
.highlight-box {
  background: var(--purple-950);
  border: 1px solid var(--purple-900);
  border-radius: .75rem; padding: 2rem;
}

/* ─── INCLUDED CARDS ─────────────────────────────────── */
.included-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media(min-width:500px)  { .included-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:900px)  { .included-grid { grid-template-columns: repeat(3,1fr); } }
.included-card {
  background: var(--black);
  border: 1px solid var(--gray-800);
  border-radius: .75rem; padding: 1.25rem 1.5rem;
}
.included-card h4 { color: #fff; margin-bottom: .25rem; font-size: 1rem; }
.included-card p  { color: var(--gray-400); font-size: .875rem; }

/* ─── SCENARIO CARDS ─────────────────────────────────── */
.scenario {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: .5rem; padding: 1.5rem;
}
.scenario strong { color: var(--text-primary); }

/* List total row (replaces inline styles on sales comparisons) */
.list-total {
  border-top: 1px solid var(--border-default);
  margin-top: .5rem;
  padding-top: .75rem !important;
  font-weight: 600;
  color: var(--text-primary);
}
.list-total.text-purple { color: var(--purple-400); }

/* ─── CTA BOTTOM ─────────────────────────────────────── */
.cta-section { padding: 4rem 0; }
.cta-badges {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  justify-content: center; color: var(--purple-200);
  font-size: .875rem; margin-top: 2rem;
}
.cta-badge { display: flex; align-items: center; gap: .5rem; }

/* ─── PRICING NOTE ────────────────────────────────────── */
.pricing-note {
  background: var(--black);
  border: 1px solid var(--gray-800);
  border-radius: .75rem; padding: 1.5rem;
  text-align: center; color: var(--gray-300);
}

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--gray-800);
  padding: 1.5rem;
  text-align: center;
  color: var(--gray-500);
  font-size: .875rem;
}

/* ─── LISTS ──────────────────────────────────────────── */
ul.check-list { list-style: none; }
ul.check-list li {
  padding: .35rem 0;
  color: var(--gray-300);
}
ul.check-list li::before { content: '• '; color: var(--gray-500); }
ul.dot-list { list-style: none; }
ul.dot-list li { padding: .2rem 0; font-size: .875rem; color: var(--gray-400); }
ul.dot-list li::before { content: '• '; }

/* ─── BADGE ──────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: .25rem .75rem;
  background: var(--purple-900); color: var(--purple-300);
  border-radius: 9999px; font-size: .8rem; font-weight: 600;
  margin-bottom: 1rem; letter-spacing: .02em;
}

/* ─── SCREEN READER ONLY ─────────────────────────────── */
@media(max-width:639px) { .sm-hidden { display: none !important; } }

/* ═══════════════════════════════════════════════════════
   HOME PAGE — NEW SECTIONS
   ═══════════════════════════════════════════════════════ */

/* ── Hero refinements ── */
.hero-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple-300);
  background: rgba(139, 92, 246, 0.10);
  border: 1px solid var(--border-purple);
  border-radius: 9999px;
  padding: .3rem .9rem;
  margin-bottom: 1.5rem;
}
.hero-headline {
  color: var(--text-primary);
  font-size: var(--text-display);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--gray-400);
  max-width: 680px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

/* ── Industry / Proof strip ── */
.section-proof {
  padding: 3rem 0;
  border-top: 1px solid var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
  background: var(--bg-section);
}
.proof-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 1.75rem;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
@media(min-width: 640px)  { .proof-grid { grid-template-columns: repeat(4, 1fr); } }
@media(min-width: 1024px) { .proof-grid { grid-template-columns: repeat(8, 1fr); } }

.proof-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .35rem;
  padding: 1rem .75rem;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: .625rem;
  transition: border-color .2s;
}
.proof-card:hover { border-color: var(--purple-700); }
.proof-icon { font-size: 1.5rem; line-height: 1; }
.proof-industry {
  font-size: .8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.proof-desc {
  font-size: .7rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* ── Section eyebrow ── */
.section-eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple-300);
  margin-bottom: .5rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 { color: #fff; }

/* ── The Shift layout ── */
.shift-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media(min-width: 768px) {
  .shift-block { grid-template-columns: 1fr 1fr; align-items: start; }
}
.shift-text h2 { color: #fff; margin-bottom: .75rem; }
.shift-text > p { color: var(--gray-400); margin-bottom: 1.75rem; font-size: 1rem; }
.shift-problems { display: flex; flex-direction: column; gap: 1rem; }
.shift-problem {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.shift-dot {
  width: .5rem; height: .5rem;
  border-radius: 9999px;
  flex-shrink: 0;
  margin-top: .4rem;
}
.shift-dot.red { background: var(--red-400); }
.shift-problem strong { display: block; color: #fff; font-size: .9375rem; margin-bottom: .2rem; }
.shift-problem p { color: var(--gray-400); font-size: .875rem; line-height: 1.5; margin: 0; }

.shift-solution-box {
  background: linear-gradient(135deg, var(--purple-950) 0%, var(--purple-deep) 100%);
  border: 1px solid var(--purple-800);
  border-radius: 1rem;
  padding: 2rem;
}
.solution-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple-300);
  border: 1px solid var(--purple-700);
  border-radius: 9999px;
  padding: .25rem .75rem;
  margin-bottom: 1.25rem;
}
.solution-headline {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .75rem;
  line-height: 1.4;
}
.solution-body { color: var(--gray-300); font-size: .9375rem; line-height: 1.6; margin: 0; }

/* ── Services grid ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media(min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }

.service-card {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: .875rem;
  padding: 1.75rem;
  text-decoration: none;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.service-card:hover {
  border-color: var(--purple-600);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-card-hover);
}
.service-icon-wrap {
  width: 2.75rem; height: 2.75rem;
  background: var(--purple-900);
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-400);
  flex-shrink: 0;
}
.service-content h3 { color: #fff; font-size: 1.0625rem; margin-bottom: .4rem; }
.service-content p  { color: var(--gray-400); font-size: .875rem; line-height: 1.55; margin: 0 0 .75rem; }
.service-link { color: var(--purple-400); font-size: .8125rem; font-weight: 600; }

/* ── Who grid ── */
.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media(min-width: 768px) { .who-grid { grid-template-columns: repeat(3, 1fr); } }

.who-card {
  background: var(--black);
  border: 1px solid var(--gray-800);
  border-radius: .875rem;
  padding: 1.75rem;
  position: relative;
}
.who-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--purple-900);
  line-height: 1;
  margin-bottom: .75rem;
}
.who-card h3 { color: #fff; font-size: 1.0625rem; margin-bottom: .4rem; }
.who-card p  { color: var(--gray-400); font-size: .875rem; line-height: 1.55; margin: 0; }

/* ── Steps row ── */
.steps-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media(min-width: 768px) { .steps-row { grid-template-columns: repeat(4, 1fr); } }

.step-item {
  position: relative;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: .875rem;
}
.step-num {
  width: 2.75rem; height: 2.75rem;
  background: var(--purple-900);
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; font-weight: 700; color: var(--purple-300);
  margin: 0 auto 1rem;
}
.step-item h4 { color: #fff; margin-bottom: .4rem; font-size: .9375rem; }
.step-item p  { color: var(--gray-400); font-size: .8125rem; line-height: 1.55; margin: 0; }

/* ═══════════════════════════════════════════════════════
   LANDING PAGE SHARED PATTERNS
   ═══════════════════════════════════════════════════════ */

/* Hero footnote */
.hero-footnote {
  margin-top: .75rem;
  font-size: .8125rem;
  color: var(--gray-500);
}

/* Section subheadline */
.section-subhead {
  color: var(--gray-400);
  font-size: 1rem;
  max-width: 600px;
  margin: .5rem auto 0;
  line-height: 1.6;
}

/* Problem context card */
.lp-problem-card {
  background: var(--black);
  border: 1px solid var(--gray-800);
  border-radius: 1rem;
  padding: 2rem 2.25rem;
  max-width: 760px;
  margin: 0 auto;
}
.lp-problem-card h2 { color: #fff; margin-bottom: 1rem; }
.lp-problem-card p  {
  color: var(--gray-300);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: .85rem;
}
.lp-problem-card p:last-child { margin-bottom: 0; }

/* Steps layout */
.lp-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.lp-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: .875rem;
  padding: 1.75rem;
}
.lp-step-num {
  width: 2.5rem; height: 2.5rem;
  background: var(--purple-900);
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: var(--purple-300);
  flex-shrink: 0;
}
.lp-step h3 { color: #fff; font-size: 1rem; margin-bottom: .4rem; }
.lp-step p  { color: var(--gray-400); font-size: .9rem; line-height: 1.6; margin-bottom: .75rem; }
.lp-result {
  background: var(--green-bg);
  border: 1px solid var(--border-green);
  border-radius: .5rem;
  padding: .75rem 1rem;
  color: var(--green-400);
  font-size: .875rem;
  line-height: 1.5;
}

/* Honest expectations box */
.lp-honest-box {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-left: 3px solid var(--purple-600);
  border-radius: .75rem;
  padding: 1.5rem 1.75rem;
}
.lp-honest-box h3 { color: #fff; margin-bottom: .75rem; font-size: 1.0625rem; }
.lp-honest-box p  { color: var(--gray-300); font-size: .9375rem; line-height: 1.6; margin-bottom: .6rem; }
.lp-honest-box p:last-child { margin-bottom: 0; }

/* Setup grid (marketing page) */
.lp-setup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media(min-width: 640px) { .lp-setup-grid { grid-template-columns: repeat(2, 1fr); } }

.lp-setup-item {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: .875rem;
  padding: 1.5rem;
}
.lp-setup-item h3 { color: #fff; font-size: 1rem; margin-bottom: .5rem; }
.lp-setup-item p  { color: var(--gray-400); font-size: .875rem; line-height: 1.6; margin-bottom: .75rem; }
.lp-what {
  background: var(--purple-bg);
  border: 1px solid var(--border-purple);
  border-radius: .5rem;
  padding: .65rem .875rem;
  color: var(--purple-300);
  font-size: .8125rem;
  line-height: 1.5;
}

.lp-list {
  list-style: none;
  margin-top: .75rem;
}
.lp-list li {
  padding: .3rem 0;
  color: var(--gray-300);
  font-size: .9375rem;
}
.lp-list li::before { content: '✓ '; color: var(--green-400); }

/* Dual value (chatbots) */
.lp-dual-value {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: var(--black);
  border: 1px solid var(--gray-800);
  border-radius: 1rem;
  padding: 2rem 2.25rem;
}
@media(min-width:768px) {
  .lp-dual-value {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
}
.lp-value-side p { color: var(--gray-300); font-size: .9375rem; line-height: 1.65; margin-top: .5rem; }
.lp-value-divider {
  width: 100%; height: 1px;
  background: var(--gray-800);
}
@media(min-width:768px) {
  .lp-value-divider { width: 1px; height: 100%; min-height: 80px; }
}

/* ═══════════════════════════════════════════════════════
   SALES PAGE PATTERNS
   ═══════════════════════════════════════════════════════ */

.scenarios-col {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}

/* Sales AI/You split */
.sales-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media(min-width:640px) { .sales-split { grid-template-columns: repeat(2, 1fr); } }

.sales-split-col {
  padding: 1.75rem;
  border-radius: .875rem;
  border: 1px solid var(--gray-800);
}
.green-col { background: var(--green-bg); border-color: var(--border-green); }
.red-col   { background: var(--red-bg); border-color: var(--border-red); }
.gray-col  { background: var(--gray-900); }

/* Services table */
.services-table {
  border: 1px solid var(--gray-800);
  border-radius: .875rem;
  overflow: hidden;
}
.st-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gray-800);
}
.st-row:last-child { border-bottom: none; }
@media(min-width:768px) {
  .st-row { grid-template-columns: 1.5fr 2fr 2fr; gap: 1.5rem; align-items: start; }
}
.st-header {
  background: var(--purple-950);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--purple-300);
  padding: .875rem 1.5rem;
}
.st-header span { display: block; }
@media(max-width:767px) { .st-header { display: none; } }
.st-title { font-weight: 600; color: #fff; font-size: .9375rem; padding-top: .2rem; }
.st-list { list-style: none; }
.st-list li { font-size: .8125rem; color: var(--gray-400); padding: .2rem 0; }
.st-list li::before { content: '· '; color: var(--purple-400); }
.st-time p { font-size: .8125rem; color: var(--gray-400); line-height: 1.5; margin-bottom: .4rem; }
.st-with { color: var(--green-400) !important; font-weight: 500; }

/* Process steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--black);
  border: 1px solid var(--gray-800);
  border-radius: .875rem;
  padding: 1.5rem;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.faq-item {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: .875rem;
  padding: 1.5rem;
}
.faq-q {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .75rem;
}

/* Pricing */
.pricing-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media(min-width:640px) { .pricing-compare { grid-template-columns: repeat(2, 1fr); } }

.pricing-col {
  padding: 1.75rem;
  border-radius: .875rem;
  border: 1px solid var(--gray-800);
  background: var(--black);
}
.pricing-col-ai { border-color: var(--purple-700); background: var(--purple-bg); }
.pricing-note {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: .75rem;
  padding: 1.25rem 1.5rem;
  text-align: center;
  color: var(--gray-300);
  font-size: .9375rem;
}

/* ═══════════════════════════════════════════════════════
   REBUILD 2026 — DESIGN SYSTEM EXTENSIONS
   (extends the tokens above; legacy classes stay intact)
   ═══════════════════════════════════════════════════════ */

/* ── Accessibility base ── */
[hidden] { display: none !important; }
:focus-visible {
  outline: 2px solid var(--purple-400);
  outline-offset: 2px;
  border-radius: .25rem;
}
.skip-hidden { position: absolute; left: -9999px; }

/* ── Nav: full menu + burger ── */
.nav-menu { display: flex; align-items: center; gap: 1.25rem; }
.nav-link.active { color: #fff; }
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem; height: 2.75rem;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: .5rem;
}
.nav-burger span {
  display: block; height: 2px; width: 100%;
  background: var(--gray-300); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}

/* Dimming backdrop behind the mobile drawer */
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 40;
}

@media (max-width: 1139px) {
  .nav-burger { display: flex; position: relative; z-index: 60; }
  /* Burger morphs into an X while open */
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Side panel that rolls in from the right */
  .nav-menu {
    display: flex;
    position: fixed;
    /* nav's backdrop-filter is this element's containing block, so anchor with
       an explicit height rather than bottom:0 (which would resolve to the bar). */
    top: 0; right: 0;
    height: 100vh; height: 100dvh;
    width: min(330px, 85vw);
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
    background: var(--gray-900);
    border-left: 1px solid var(--gray-800);
    padding: 5.25rem 1.5rem 1.5rem;
    box-shadow: -16px 0 40px rgba(0, 0, 0, .55);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    z-index: 45;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-overlay.open { display: block; opacity: 1; }

  .nav-menu .nav-link { padding: .5rem 0; font-size: 1rem; }
  .nav-menu .btn-primary,
  .nav-menu .btn-nav-outline { justify-content: center; margin-top: .25rem; }
  .nav-menu .lang-dropdown { margin-top: .5rem; }
}

/* ── Video hero ── */
.hero-video {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0 5.5rem;
  border-bottom: 1px solid var(--gray-800);
}
.hero-media {
  position: absolute; inset: 0;
  background: url('/static/hero-poster.svg') center/cover no-repeat, var(--black);
}
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 110%, rgba(147,51,234,.28), transparent 60%),
    linear-gradient(to bottom, rgba(0,0,0,.78), rgba(0,0,0,.55) 45%, rgba(0,0,0,.85));
}
.hero-inner { position: relative; z-index: 1; }

/* ── Stat strip (reference 1: big numbers, thin dividers) ── */
.stat-strip {
  background: var(--bg-page);
  padding: var(--space-24) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 0 var(--space-6);
  border-left: 1px solid var(--border-default);
}
.stat:first-child { border-left: none; }
.stat-value {
  display: block;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);   /* down from var(--text-stat) */
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-3);
  white-space: nowrap;          /* keep "11 % vs 41 %" on ONE line */
  font-variant-numeric: tabular-nums;
}
.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 22ch;
}
.stat-source {
  display: block;
  margin-top: var(--space-6);
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-faint);
}
@media (max-width: 768px) {
  .stat-strip { padding: var(--space-16) 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8) 0; }
  .stat { padding: 0 var(--space-4); }
  .stat:nth-child(3) { border-left: none; }
}

/* ── Ladder ── */
.ladder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: end;
}
@media (min-width: 768px) { .ladder { grid-template-columns: repeat(4, 1fr); } }
.rung {
  position: relative;
  display: block;
  text-decoration: none;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: .875rem;
  padding: 1.5rem;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.rung:hover {
  border-color: var(--purple-500);
  box-shadow: var(--shadow-card-hover);
}
.rung-bar {
  display: block;
  width: 100%;
  border-radius: .375rem .375rem 0 0;
  background: var(--purple-bg);
  border-top: 2px solid var(--purple-500);
  margin-bottom: 1rem;
}
.rung-1 .rung-bar { height: .9rem; }
.rung-2 .rung-bar { height: 1.9rem; }
.rung-3 .rung-bar { height: 3rem; }
.rung-4 .rung-bar { height: 4.2rem; }
.rung-num {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--gray-600);
}
.rung h3 { color: #fff; font-size: 1.05rem; margin: .2rem 0 .35rem; }
.rung p { color: var(--gray-400); font-size: .85rem; line-height: 1.5; margin: 0; }
.rung-stop {
  position: absolute;
  top: -.85rem; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange-500);
  background: var(--black);
  border: 1px dashed var(--orange-900);
  border-radius: 9999px;
  padding: .2rem .7rem;
}
.ladder-contrast {
  text-align: center;
  font-size: 1.1rem;
  color: var(--purple-300);
  font-weight: 600;
  font-style: italic;
  max-width: 560px;
  margin: 2.25rem auto 0;
}
.link-arrow {
  color: var(--purple-400);
  text-decoration: none;
  font-weight: 600;
  font-size: .9375rem;
}
.link-arrow:hover { color: var(--purple-300); }

/* ── Differentiator cards ── */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .diff-grid { grid-template-columns: repeat(3, 1fr); } }
.diff-card {
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  transition: border-color 200ms, background-color 200ms, box-shadow 200ms;
}
.diff-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .25rem .625rem;
  font-size: .6875rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .02em;
  color: #FDBA74;
  background: rgba(249, 115, 22, 0.14);
  border: 1px solid rgba(249, 115, 22, 0.4);
  border-radius: 999px;
  white-space: nowrap;
}
.diff-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FB923C;
  box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.6);
  animation: diff-badge-pulse 2s ease-out infinite;
}
@keyframes diff-badge-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.5); }
  70%  { box-shadow: 0 0 0 5px rgba(251, 146, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 146, 60, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .diff-badge::before { animation: none; }
}
.diff-card:hover {
  border-color: var(--purple-500);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-card-hover);
}
.diff-card .icon-box { margin-bottom: 1.1rem; }
.diff-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: .5rem; }
.diff-card p { color: var(--gray-400); font-size: .9rem; line-height: 1.6; margin: 0 0 1rem; }
.diff-card .service-link { font-size: .85rem; margin-top: auto; }

/* ── Sector cards ── */
.sector-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px)  { .sector-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sector-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }
.sector-card {
  display: block;
  text-decoration: none;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: .875rem;
  padding: 1.5rem;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.sector-card:hover { border-color: var(--purple-500); box-shadow: var(--shadow-card-hover); }
.sector-tag {
  display: inline-block;
  font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--purple-300);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-pill);
  padding: .2rem .6rem;
  margin-bottom: .75rem;
}
.sector-icon { font-size: 1.6rem; line-height: 1; display: block; margin-bottom: .75rem; }
.sector-card h3 { color: #fff; font-size: 1rem; line-height: 1.4; margin: 0; }
.sector-card:hover h3 { color: var(--purple-300); }
.sector-card p { color: var(--gray-400); font-size: .875rem; line-height: 1.55; margin: 0; }

/* ── Project case-study cards (Work page) ── */
.project-stack { display: flex; flex-direction: column; gap: var(--space-8); }
.project-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.015) 38%, rgba(255,255,255,0) 100%);
  box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.07);
  transition: border-color .2s, box-shadow .2s;
}
.project-card:hover { border-color: var(--purple-500); box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.07), var(--shadow-card-hover); }
@media (min-width: 860px) { .project-card { grid-template-columns: 0.85fr 1.15fr; gap: var(--space-12); } }
/* Multi-tag chips, color-coded by category (industry/tech/solution/arch) */
.project-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: var(--space-4); }
.project-tag {
  display: inline-block;
  font-size: .7rem; font-weight: 600; line-height: 1.3;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-pill);
  padding: .18rem .55rem;
  color: var(--text-secondary);
}
.project-tag[data-cat="industry"] { color: #93C5FD; border-color: rgba(96,165,250,.30); background: rgba(96,165,250,.10); }
.project-tag[data-cat="tech"]     { color: var(--green-400); border-color: var(--border-green); background: var(--green-bg); }
.project-tag[data-cat="solution"] { color: #FDBA74; border-color: rgba(251,146,60,.30); background: rgba(251,146,60,.10); }
.project-tag[data-cat="arch"]     { color: var(--purple-300); border-color: var(--border-purple); background: var(--purple-bg); }

/* ── Faceted filter sidebar + summary grid (Work page) ── */
.work-layout { display: flex; flex-direction: column; gap: var(--space-6); }
@media (min-width: 1025px) {
  .work-layout { display: grid; grid-template-columns: 232px minmax(0, 1fr); gap: var(--space-12); align-items: start; }
  .facet-sidebar { position: sticky; top: 5.5rem; }
}

.facet-sidebar { display: flex; flex-direction: column; gap: var(--space-6); }
.facet-sidebar-head {
  align-items: center; justify-content: space-between;
  color: var(--text-primary); font-weight: 600; font-size: .9375rem;
}
.facet-sidebar-close {
  font: inherit; font-size: 1.4rem; line-height: 1;
  background: none; border: 0; color: var(--text-secondary); cursor: pointer;
}
.facet-sidebar-close:hover { color: var(--text-primary); }

.facet-search {
  width: 100%;
  font: inherit; font-size: .875rem;
  color: var(--text-body);
  background: var(--bg-input);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  padding: .5rem .75rem;
}
.facet-search::placeholder { color: var(--text-muted); }
.facet-search:focus { outline: none; border-color: var(--purple-500); }

.facet-group { border-top: 1px solid var(--border-default); padding-top: var(--space-4); }
.facet-group:first-child { border-top: 0; padding-top: 0; }
.facet-head {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  font: inherit; font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  background: none; border: 0; padding: 0; cursor: pointer;
  margin-bottom: var(--space-3);
}
.facet-head svg { transition: transform .2s ease; color: var(--text-muted); flex: none; }
.facet-head[aria-expanded="false"] svg { transform: rotate(-90deg); }
.facet-head[aria-expanded="false"] { margin-bottom: 0; }
/* Category colors: group headers only (patch §3 — not every list item) */
.facet-head[data-cat="industry"] { color: #93C5FD; }
.facet-head[data-cat="tech"]     { color: var(--green-400); }
.facet-head[data-cat="solution"] { color: #FDBA74; }
.facet-head[data-cat="arch"]     { color: var(--purple-300); }

.facet-list { display: flex; flex-direction: column; gap: .35rem; }
.facet-item {
  display: flex; align-items: center; gap: .55rem;
  font-size: .85rem; color: var(--text-secondary);
  cursor: pointer; user-select: none;
}
.facet-item:hover { color: var(--text-body); }
.facet-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.facet-count { font-size: .7rem; font-weight: 600; color: var(--text-muted); font-variant-numeric: tabular-nums; }

/* Custom checkbox (patch §4): unchecked fill reuses the existing neutral
   --text-faint / --text-muted steps — light grey, not white, no new color. */
.facet-check {
  appearance: none; -webkit-appearance: none;
  width: 1rem; height: 1rem; flex: none;
  background: var(--text-faint);
  border: 1px solid var(--text-muted);
  border-radius: 4px;
  display: inline-grid; place-content: center;
  cursor: pointer; margin: 0;
  transition: background-color .15s, border-color .15s;
}
.facet-item:hover .facet-check { background: var(--text-muted); }
.facet-check:checked { background: var(--purple-500); border-color: var(--purple-500); }
.facet-check:checked::after {
  content: '';
  width: .3rem; height: .55rem;
  border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-1px);
}
.facet-check:focus-visible { outline: 2px solid var(--purple-400); outline-offset: 2px; }

.facet-more {
  font: inherit; font-size: .78rem; font-weight: 500;
  background: none; border: 0; padding: 0; margin-top: .35rem;
  color: var(--purple-300); cursor: pointer; text-align: left;
}
.facet-more:hover { color: var(--purple-200); }
.facet-hidden { display: none; }

/* Mobile "Filters" trigger */
.work-filters-trigger {
  display: inline-flex; align-items: center; gap: .5rem;
  align-self: flex-start;
  font: inherit; font-size: .875rem; font-weight: 500;
  color: var(--text-body);
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  padding: .45rem 1rem;
  cursor: pointer;
}
.work-filters-badge {
  min-width: 1.2rem; height: 1.2rem; padding: 0 .3rem;
  display: inline-grid; place-content: center;
  font-size: .7rem; font-weight: 600;
  color: #fff; background: var(--purple-500);
  border-radius: var(--radius-pill);
}
/* After the base rules so the same-specificity display wins on desktop */
@media (min-width: 1025px) {
  .work-filters-trigger, .facet-sidebar-head { display: none; }
}

/* Drawer form of the sidebar (<1025px) */
@media (max-width: 1024px) {
  .facet-sidebar {
    position: fixed; top: 0; left: 0; bottom: 0; z-index: 120;
    width: min(320px, 86vw);
    background: var(--bg-section);
    border-right: 1px solid var(--border-default);
    padding: var(--space-6);
    overflow-y: auto;
    transform: translateX(-103%);
    transition: transform .25s ease;
  }
  .facet-sidebar.open { transform: none; }
  .facet-sidebar-head { display: flex; }
}
.facet-scrim {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(14, 14, 20, 0.6);
}
body.work-lock { overflow: hidden; }

/* Selected-filter chips row + live count */
.work-active { display: flex; align-items: flex-start; gap: var(--space-4); margin-bottom: var(--space-4); }
.work-chips { display: flex; flex-wrap: wrap; gap: .4rem; flex: 1; min-width: 0; }
.work-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  font: inherit; font-size: .75rem; font-weight: 600; line-height: 1.3;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-pill);
  padding: .22rem .6rem;
  background: transparent; color: var(--text-secondary);
  cursor: pointer;
}
.work-chip .chip-x { font-size: .9rem; line-height: 1; opacity: .7; }
.work-chip:hover .chip-x { opacity: 1; }
/* Selected chips keep their category color (patch §3) */
.work-chip[data-cat="industry"] { color: #93C5FD; border-color: rgba(96,165,250,.30); background: rgba(96,165,250,.10); }
.work-chip[data-cat="tech"]     { color: var(--green-400); border-color: var(--border-green); background: var(--green-bg); }
.work-chip[data-cat="solution"] { color: #FDBA74; border-color: rgba(251,146,60,.30); background: rgba(251,146,60,.10); }
.work-chip[data-cat="arch"]     { color: var(--purple-300); border-color: var(--border-purple); background: var(--purple-bg); }
.work-clear {
  margin-left: auto; flex: none;
  font: inherit; font-size: .8rem; font-weight: 500;
  background: none; border: 0; padding: .2rem 0;
  color: var(--text-secondary); cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
}
.work-clear:hover { color: var(--text-primary); }
.work-count { font-size: .8rem; color: var(--text-muted); margin-bottom: var(--space-6); }
.work-empty { color: var(--text-secondary); font-size: .9375rem; padding: var(--space-8) 0; }

/* Summary cards (filtered list view, patch §2a) */
.project-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
@media (min-width: 640px) { .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.project-summary {
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.015) 38%, rgba(255,255,255,0) 100%);
  box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.07);
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.project-summary:hover, .project-summary:focus-visible {
  border-color: var(--purple-500);
  box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.07), var(--shadow-card-hover);
  outline: none;
}
.project-summary h3 { color: var(--text-primary); font-size: 1.1rem; line-height: 1.3; margin-bottom: var(--space-2); }
.project-summary[hidden] { display: none; }

/* Detail popup (patch §2b): the existing .project-card block, unchanged, in a dialog */
.work-modal {
  position: fixed; inset: 0; z-index: 130;
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-4);
}
.work-modal[hidden] { display: none; }
.work-modal-scrim {
  position: absolute; inset: 0;
  background: rgba(14, 14, 20, 0.78);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.work-modal-dialog {
  position: relative;
  width: 100%; max-width: 1080px;
  max-height: 88vh; overflow-y: auto;
  background: var(--bg-page);
  border-radius: var(--radius-lg);
}
.work-modal-body > .project-card { margin: 0; }
.work-modal-close {
  position: absolute; top: var(--space-3); right: var(--space-3); z-index: 1;
  width: 2rem; height: 2rem;
  display: grid; place-content: center;
  font: inherit; font-size: 1.25rem; line-height: 1;
  color: var(--text-secondary);
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  cursor: pointer;
}
.work-modal-close:hover { color: var(--text-primary); border-color: var(--purple-500); }

.project-aside h3 { color: var(--text-primary); font-size: 1.35rem; line-height: 1.25; margin-bottom: var(--space-2); }
.project-subtitle { color: var(--text-secondary); font-size: .9rem; line-height: 1.5; margin: 0; }
.project-impact {
  margin-top: var(--space-6);
  background: var(--green-bg);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-6);
}
.project-impact-label { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--green-400); margin-bottom: var(--space-2); }
.project-impact p { color: var(--text-body); font-size: .9rem; line-height: 1.6; margin: 0; }
.project-main { display: flex; flex-direction: column; gap: var(--space-6); }
.project-section h4 { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--purple-300); margin-bottom: var(--space-2); }
.project-section > p { color: var(--text-secondary); font-size: .9375rem; line-height: 1.7; margin: 0; max-width: 64ch; }
.project-caps { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.project-caps li { padding-left: var(--space-4); border-left: 2px solid var(--border-purple); }
.cap-name { display: block; color: var(--text-body); font-weight: 600; font-size: .9rem; margin-bottom: .15rem; }
.cap-desc { display: block; color: var(--text-secondary); font-size: .85rem; line-height: 1.55; }
.shot-placeholder {
  margin-top: 1.1rem;
  border: 1px dashed var(--gray-700);
  border-radius: .5rem;
  padding: 1.25rem;
  text-align: center;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-600);
  background: rgba(255,255,255,.015);
}

/* ── Final CTA panel (§3.8: defers to the page; button is the anchor) ── */
.cta-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 2.25rem var(--space-8);
  text-align: center;
}
.cta-panel h2 { color: var(--text-primary); margin-bottom: var(--space-6); }
.cta-sub { color: var(--text-secondary); max-width: 60ch; margin: 0 auto var(--space-6); }
.cta-note { color: var(--text-secondary); font-size: .875rem; margin-top: var(--space-4); }

/* ── Services: tier ladder page ── */
.tier-free {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  background: var(--green-bg);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  margin-bottom: 2.5rem;
}
.tier-free-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-400);
  border: 1px solid var(--green-900);
  border-radius: 9999px;
  padding: .25rem .75rem;
}
.tier-free h2 { color: #fff; font-size: 1.25rem; }
.tier-free p { color: var(--gray-300); font-size: .9375rem; line-height: 1.6; margin: 0; flex-basis: 100%; }

.tier {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.75rem;
  scroll-margin-top: 5.5rem;
}
.tier-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem 1rem;
  padding: var(--space-4) var(--space-6);
  background: var(--purple-deep);
  border-bottom: 1px solid var(--border-default);
}
.tier-badge {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple-300);
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-pill);
  padding: .25rem .75rem;
}
.tier-head h2 { color: var(--text-primary); font-size: 1.25rem; font-weight: 700; flex: 1; min-width: 200px; }
.tier-price {
  color: var(--text-primary);
  font-weight: 400;
  font-size: 1rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
@media (min-width: 900px) { .tier-head h2 { text-align: center; } }
.tier-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  padding: var(--space-8);
}
@media (min-width: 900px) {
  .tier-body { grid-template-columns: 1fr 1.4fr 1fr; }
  .tier-col + .tier-col {
    border-left: 1px solid var(--border-default);
    padding-left: var(--space-6);
  }
}
.tier-col h3 {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple-300);
  margin-bottom: .65rem;
}
.tier-col p { color: var(--text-secondary); font-size: .9375rem; line-height: 1.6; margin: 0; }
.tier-col ul { list-style: none; }
.tier-col li {
  color: var(--text-secondary);
  font-size: .9rem;
  line-height: 1.6;
  padding: .3rem 0 .3rem 1.4rem;
  position: relative;
}
.tier-col li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--purple-400);
  font-weight: 700;
}

/* ── Tier ladder: vertical stack ── */
.tier-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);   /* generous breathing room between tiers */
}
.tier-stack .tier {
  margin-bottom: 0;      /* gap handles spacing */
}

/* ── Tier add-on: a "power-up" card nested under its parent tier ── */
/* .tier.tier-addon (not just .tier-addon) so the glow beats the later frosted-glass .tier shadow */
.tier.tier-addon {
  border-color: var(--purple-500);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.07),
    0 0 0 1px rgba(139, 92, 246, 0.30),
    0 0 34px rgba(139, 92, 246, 0.22);
}
.tier-stack .tier-addon {
  /* Pull up tight under the tier above so it reads as that tier's extension.
     Full width to match the other tiers; the glow + tight gap signal the link. */
  margin-top: calc(-1 * var(--space-8) + 0.6rem);
}
.tier-addon .tier-head { padding: var(--space-3) var(--space-6); }
.tier-addon-head h2 { font-size: 1.1rem; }
.tier-addon-badge {
  color: #fff;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-400));
  border-color: transparent;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.55);
}
.tier-addon .tier-price { font-size: .9375rem; text-align: right; }
.tier-price-note {
  display: block;
  max-width: 18ch;
  margin-top: .2rem;
  margin-left: auto;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-secondary);
  white-space: normal;
}
/* Collapsible disclosure: header stays visible, body rolls out on click (mirrors .tier-examples) */
.tier-addon-details summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .5rem 1rem;
  padding: var(--space-4) var(--space-6);
  cursor: pointer;
  list-style: none;
}
.tier-addon-details summary::-webkit-details-marker { display: none; }
.tier-addon-details[open] > summary { border-bottom: 1px solid var(--border-default); }
.tier-addon-hook {
  flex: 1 1 auto;
  margin: 0;
  color: var(--purple-300);
  font-size: .95rem;
  font-style: italic;
  font-weight: 500;
}
.tier-addon-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color .15s;
}
.tier-addon-details summary:hover .tier-addon-toggle { color: var(--text-body); }
.tier-addon-toggle::after {
  content: '+';
  color: var(--purple-400);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
}
.tier-addon-details[open] .tier-addon-toggle::after { content: '\2212'; }
.tier-addon-details .lbl-close { display: none; }
.tier-addon-details[open] .lbl-open { display: none; }
.tier-addon-details[open] .lbl-close { display: inline; }
.tier-addon .tier-body { padding: var(--space-6); }
/* Deliverable examples: collapsed disclosure inside the tier card */
.tier-examples {
  border-top: 1px solid var(--border-default);
}
.tier-examples summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: var(--space-4) var(--space-8);
  cursor: pointer;
  list-style: none;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.tier-examples summary::-webkit-details-marker { display: none; }
.tier-examples summary:hover { color: var(--text-body); }
.tier-examples summary::after {
  content: '+';
  color: var(--purple-400);
  font-size: 1.05rem;
  font-weight: 600;
}
.tier-examples[open] summary::after { content: '\2212'; }
.tier-examples-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .875rem;
  padding: 0 var(--space-8) var(--space-8);
}
@media (min-width: 700px) { .tier-examples-grid { grid-template-columns: repeat(2, 1fr); } }
.example-card {
  display: block;
  text-decoration: none;
  background: var(--black);
  border: 1px solid var(--gray-800);
  border-radius: .75rem;
  padding: 1.1rem 1.25rem;
  transition: border-color .2s;
}
.example-card h4 {
  color: #fff;
  font-size: .9rem;
  margin-bottom: .35rem;
}
.example-card p {
  color: var(--gray-400);
  font-size: .8125rem;
  line-height: 1.55;
  margin: 0;
}
.example-arrow { color: var(--purple-400); }
a.example-card:hover { border-color: var(--purple-500); }
a.example-card:hover h4 { color: var(--purple-300); }

/* ── Pricing ── */
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px)  { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .price-grid { grid-template-columns: repeat(5, 1fr); } }
.price-card {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: .875rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: border-color .2s;
}
.price-card:hover { border-color: var(--purple-600); }
.price-card h3 { color: #fff; font-size: .95rem; margin-bottom: .75rem; }
.price-figure {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--purple-300);
  margin-bottom: .4rem;
  letter-spacing: -.01em;
}
.price-card p { color: var(--gray-500); font-size: .8rem; margin: 0; }
.price-caveat {
  text-align: center;
  font-size: .85rem;
  color: var(--gray-500);
  font-style: italic;
  margin-top: 1.5rem;
}

/* ── ROI calculator ── */
.roi-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  scroll-margin-top: 5.5rem;
}
@media (min-width: 960px) { .roi-wrap { grid-template-columns: 1fr 1.05fr; align-items: start; } }
.roi-form, .roi-results {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 1rem;
  padding: 1.85rem;
}
.roi-field { margin-bottom: 1.1rem; }
.roi-field label {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-300);
  margin-bottom: .4rem;
}
.roi-optional {
  font-weight: 400;
  color: var(--gray-600);
  font-size: .75rem;
}
.roi-tip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem; height: 1rem;
  border-radius: 9999px;
  border: 1px solid var(--gray-600);
  color: var(--gray-500);
  font-size: .65rem;
  font-style: normal;
  cursor: help;
}
.roi-field input[type="number"],
.roi-field input[type="text"],
.roi-field input[type="email"],
.roi-field select {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  padding: .75rem 1rem;
  transition: border-color 150ms;
}
.roi-field input:hover, .roi-field select:hover { border-color: var(--border-strong); }
.roi-field input:focus, .roi-field select:focus {
  outline: none;
  border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}
.roi-field input::placeholder { color: var(--text-faint); }
/* Strip number spinners (§3.7) */
.roi-field input[type="number"] { appearance: textfield; -moz-appearance: textfield; }
.roi-field input[type="number"]::-webkit-outer-spin-button,
.roi-field input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.roi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.roi-advanced {
  border: 1px solid var(--gray-800);
  border-radius: .625rem;
  margin: 1.25rem 0;
  background: var(--black);
}
.roi-advanced summary {
  cursor: pointer;
  padding: .75rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-400);
  list-style: none;
}
.roi-advanced summary::before { content: '⚙ '; }
.roi-advanced[open] summary { border-bottom: 1px solid var(--gray-800); }
.roi-advanced-body { padding: 1rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
@media (max-width: 560px) { .roi-advanced-body { grid-template-columns: 1fr; } }
.roi-optblock {
  border-top: 1px solid var(--gray-800);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
}
.roi-optblock > p {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-600);
  font-weight: 700;
  margin-bottom: .85rem;
}
.roi-email-note { font-size: .75rem; color: var(--gray-500); margin-top: .35rem; }

.roi-out-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .875rem;
  margin-bottom: 1.25rem;
}
.roi-out {
  background: var(--black);
  border: 1px solid var(--gray-800);
  border-radius: .75rem;
  padding: 1.1rem 1.2rem;
}
.roi-out-label { display: block; font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: .35rem; }
.roi-out-value {
  display: block;
  font-size: var(--text-result);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -.01em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.roi-out-unit { font-size: 1rem; font-weight: 600; color: var(--text-secondary); margin-left: .25rem; }
.roi-out-value.pos { color: var(--green-400); }
.roi-out-value.neg { color: var(--red-400); }
.roi-bars { margin: .5rem 0 1.25rem; }
.roi-bar-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr auto;
  gap: .75rem;
  align-items: center;
  margin-bottom: .6rem;
}
.roi-bar-label { font-size: .8125rem; color: var(--text-secondary); text-align: right; }
.roi-bar-value { font-size: .8125rem; color: var(--text-body); font-variant-numeric: tabular-nums; min-width: 4.5rem; text-align: right; }
.roi-bar-track {
  background: var(--bg-input);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-pill);
  overflow: hidden;
  height: 12px;
}
.roi-bar {
  height: 100%;
  border-radius: var(--radius-pill);
  min-width: 6px;
  transition: width .5s ease;
}
.roi-bar.now { background: var(--text-muted); }
.roi-bar.after { background: var(--green-400); }
.roi-verdict {
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  font-size: .9375rem;
  line-height: 1.55;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}
.roi-verdict-label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.roi-verdict.green  { background: var(--green-bg);  border: 1px solid var(--border-green); }
.roi-verdict.green .roi-verdict-label { color: var(--green-400); }
.roi-verdict.yellow { background: var(--yellow-bg); border: 1px solid var(--border-yellow); }
.roi-verdict.yellow .roi-verdict-label { color: var(--yellow-400); }
.roi-verdict.red    { background: var(--red-bg); border: 1px solid var(--border-red); }
.roi-verdict.red .roi-verdict-label { color: var(--red-400); }
.roi-results > div > .btn-primary, #roiOut .btn-primary { width: 100%; }
@media (max-width: 560px) { .roi-actions .btn-primary, .roi-actions .btn-secondary { width: 100%; } }
.roi-empty { color: var(--gray-500); font-size: .9rem; text-align: center; padding: 2.5rem 1rem; }
.roi-actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

/* ── Insights ── */
.post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
.post-card {
  display: block;
  text-decoration: none;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.post-card:hover { border-color: var(--purple-500); box-shadow: var(--shadow-card-hover); }
.post-cover {
  height: 9.5rem;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, .18), transparent 55%),
    linear-gradient(135deg, var(--purple-deep), var(--bg-page));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: .5rem;
  padding: 1rem 1.5rem;
}
.post-readtime {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--gray-300);
  border: 1px solid var(--gray-700);
  border-radius: 9999px;
  padding: .2rem .7rem;
  background: rgba(0,0,0,.45);
  white-space: nowrap;
}
.post-category {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple-300);
  border: 1px solid var(--purple-700);
  border-radius: 9999px;
  padding: .2rem .7rem;
  background: rgba(0,0,0,.45);
}
.post-body { padding: 1.4rem 1.5rem 1.6rem; }
.post-date { font-size: .75rem; color: var(--gray-600); display: block; margin-bottom: .45rem; }
.post-card h3 { color: #fff; font-size: 1.1rem; line-height: 1.4; margin-bottom: .55rem; }
.post-card p { color: var(--gray-400); font-size: .9rem; line-height: 1.6; margin: 0 0 .9rem; }

.article { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }
.article-header { margin: 3.5rem 0 2.25rem; }
.article-meta { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.article-meta .post-date { margin: 0; }
.article h1 { margin-bottom: 0; }
.article-body p {
  color: var(--text-body);
  font-size: 1.04rem;
  line-height: 1.8;
  margin-bottom: 1.4rem;
  max-width: 65ch;
}
/* Rendered Markdown elements inside an article */
.article-body > :first-child { margin-top: 0; }
.article-body h2 { color: #fff; font-size: 1.5rem; font-weight: 700; line-height: 1.3; margin: 2.4rem 0 1rem; }
.article-body h3 { color: #fff; font-size: 1.2rem; font-weight: 600; margin: 2rem 0 .8rem; }
.article-body ul, .article-body ol {
  color: var(--text-body); font-size: 1.04rem; line-height: 1.8;
  margin: 0 0 1.4rem; padding-left: 1.4rem; max-width: 65ch;
}
.article-body li { margin-bottom: .5rem; }
.article-body li::marker { color: var(--purple-400); }
.article-body a { color: var(--purple-300); text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { color: var(--purple-400); }
.article-body strong { color: var(--text-primary); font-weight: 600; }
.article-body blockquote {
  margin: 1.6rem 0; padding: .25rem 0 .25rem 1.25rem;
  border-left: 3px solid var(--purple-500); color: var(--text-secondary); font-style: italic;
}
.article-body blockquote p { margin-bottom: .6rem; }
.article-body img { display: block; max-width: 100%; height: auto; border-radius: var(--radius-md); margin: 1.8rem 0; }
.article-body hr { border: none; border-top: 1px solid var(--border-default); margin: 2.2rem 0; }
.article-body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .9em;
  background: var(--bg-card); border: 1px solid var(--border-default); border-radius: .4rem; padding: .1rem .4rem;
}
.article-body pre {
  background: var(--bg-card); border: 1px solid var(--border-default); border-radius: var(--radius-md);
  padding: 1rem 1.25rem; overflow-x: auto; margin: 0 0 1.4rem;
}
.article-body pre code { background: none; border: none; padding: 0; }
/* Optional cover image (from frontmatter) */
.article-cover { display: block; width: 100%; height: auto; border-radius: var(--radius-lg); margin: 2.5rem 0 0; }
.post-cover-img { background-size: cover !important; background-position: center !important; }

/* ── Referral ── */
.referral-terms {
  text-align: left;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 1rem;
  padding: 1.85rem;
  margin: 2.25rem 0 1.25rem;
}
.referral-terms h2 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-500);
  margin-bottom: 1rem;
}
.referral-terms ul { list-style: none; }
.referral-terms li {
  position: relative;
  padding: .45rem 0 .45rem 1.6rem;
  color: var(--gray-300);
  font-size: .9375rem;
  line-height: 1.6;
}
.referral-terms li::before {
  content: '✓';
  position: absolute; left: 0; top: .45rem;
  color: var(--purple-400);
  font-weight: 700;
}

/* ── About: vision quote ── */
.vision-quote {
  margin: 3rem 0 0;
  padding: 2.25rem 2.25rem 2rem;
  background: var(--purple-bg);
  border: 1px solid var(--border-purple);
  border-left: 4px solid var(--purple-500);
  border-radius: var(--radius-lg);
}
.vision-quote-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--purple-300);
  margin-bottom: 1rem;
}
.vision-quote blockquote {
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.01em;
}
.vision-quote figcaption {
  margin-top: 1.1rem;
  font-size: 1rem;
  color: var(--purple-200);
  font-weight: 500;
}
@media (min-width: 768px) {
  .vision-quote blockquote { font-size: 1.5rem; }
}

/* ── FAQ accordion (native details, click to reveal) ── */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.faq-acc-item {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: .875rem;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-acc-item[open] { border-color: var(--purple-700); }
.faq-acc-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.faq-acc-item summary::-webkit-details-marker { display: none; }
.faq-acc-item summary:hover { color: var(--purple-300); }
.faq-acc-icon {
  position: relative;
  flex-shrink: 0;
  width: 1.1rem; height: 1.1rem;
}
.faq-acc-icon::before,
.faq-acc-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 1.1rem; height: 2px;
  background: var(--purple-400);
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}
.faq-acc-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-acc-item[open] .faq-acc-icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq-acc-answer {
  padding: 0 1.5rem 1.4rem;
}
.faq-acc-answer p {
  color: var(--gray-300);
  font-size: .9375rem;
  line-height: 1.7;
  margin: 0;
  max-width: 60ch;
}

/* ═══ Scroll-reveal animations: "dealt cards" ═══ */
.reveal {
  opacity: 0;
  transform: translateY(28px) rotate(-1.2deg) scale(0.985);
  transition:
    opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: calc(var(--reveal-i, 0) * 90ms);
  will-change: transform, opacity;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0) rotate(0deg) scale(1);
}

/* Even-indexed cards tilt the opposite way for a natural "dealt" feel */
.reveal-group > .reveal:nth-child(even) {
  transform: translateY(28px) rotate(1.2deg) scale(0.985);
}
.reveal-group > .reveal:nth-child(even).is-in {
  transform: translateY(0) rotate(0deg) scale(1);
}

/* Headlines & prose: simpler reveal — no rotation, smaller travel */
.reveal-text {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 600ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 600ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: calc(var(--reveal-i, 0) * 60ms);
  will-change: transform, opacity;
}
.reveal-text.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion: show immediately, no movement */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-text {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero-media video { display: none; }
}

/* ═══ FINAL PATCH — page hero, About sticky, footer, forms, education ═══ */

/* ── Page hero (left-aligned content pages: contact, careers, privacy, individuals) ── */
.hero-page { padding-bottom: var(--space-12); }
.hero-page .hero-headline { margin-left: 0; margin-right: 0; max-width: 24ch; }
.hero-page .hero-sub { margin-left: 0; margin-right: 0; max-width: 60ch; }

/* ── About: sticky media + categorized blocks ── */
.about-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-12); align-items: start; }
.about-media { align-self: start; }
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 0.85fr 1.15fr; gap: var(--space-16); }
  .about-media-inner { position: sticky; top: 6rem; }
}
.about-media-inner {
  background: var(--bg-card); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); padding: var(--space-12);
  display: flex; flex-direction: column; align-items: flex-start;
}
.about-logo { width: 100%; max-width: 340px; height: auto; margin: 0 auto var(--space-8); display: block; animation: about-float 6s ease-in-out infinite; }
.about-media-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple-300); }
.about-media-name { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-top: 0.25rem; }
.about-blocks { display: flex; flex-direction: column; gap: var(--space-24); }
.about-block h2 { color: var(--text-primary); margin-bottom: var(--space-4); }
.about-block p { color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--space-4); max-width: 60ch; }
.about-block-eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple-300); margin-bottom: var(--space-3); }
.about-values { list-style: none; margin-top: var(--space-4); display: flex; flex-direction: column; gap: var(--space-4); }
.about-values li { display: flex; gap: var(--space-4); color: var(--text-secondary); line-height: 1.6; }
.about-value-num { color: var(--purple-400); font-weight: 700; font-variant-numeric: tabular-nums; flex-shrink: 0; }
.about-values strong { color: var(--text-body); font-weight: 600; }
@keyframes about-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) { .about-logo { animation: none; } }

/* ── Footer ── */
.site-footer { background: var(--bg-section); border-top: 1px solid var(--border-default); padding: var(--space-12) 0 var(--space-8); margin-top: var(--space-16); text-align: left; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-8) var(--space-12); }
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-logo { height: 2rem; width: auto; margin-bottom: var(--space-4); }
.footer-tagline { color: var(--text-secondary); font-size: 0.875rem; line-height: 1.6; max-width: 32ch; margin-bottom: var(--space-6); }
.footer-copy { color: var(--text-muted); font-size: 0.8rem; margin-bottom: var(--space-3); }
.footer-legal { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.footer-legal a { color: var(--text-muted); font-size: 0.8rem; text-decoration: none; }
.footer-legal a:hover { color: var(--text-secondary); }
.footer-col { text-align: left; }
.footer-col h3 {
  text-align: left;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-faint);
  margin-bottom: var(--space-3);
}
.footer-col a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.18rem 0;
  transition: color 150ms;
}
.footer-col a:hover { color: var(--text-primary); }
/* Kill any stray separator lines inside footer columns */
.footer-col a, .footer-col a:last-child { border: none !important; }
.site-footer hr { display: none; }

/* ── Shared forms (contact, careers) ── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-8); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.4fr 1fr; } }
.contact-form { display: flex; flex-direction: column; gap: var(--space-4); }
.contact-info { display: flex; flex-direction: column; gap: var(--space-4); }
.contact-card-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple-300); display: block; margin-bottom: var(--space-2); }
.contact-info a { color: var(--text-body); text-decoration: none; }
.contact-info a:hover { color: var(--purple-400); }
.contact-card-cta p { color: var(--text-secondary); font-size: 0.875rem; margin: 0.5rem 0 1rem; }
.form-consent { color: var(--text-muted); font-size: 0.8rem; line-height: 1.5; }
textarea.input { resize: vertical; min-height: 7rem; }
.careers-intro p { color: var(--text-secondary); line-height: 1.75; margin-bottom: var(--space-4); max-width: 60ch; }
.form-checkbox { display: flex; gap: var(--space-3); align-items: flex-start; color: var(--text-secondary); font-size: 0.85rem; line-height: 1.5; cursor: pointer; }
.form-checkbox input { margin-top: 0.2rem; accent-color: var(--purple-500); flex-shrink: 0; width: 1rem; height: 1rem; }

/* ── Emphasized free-audit line ── */
.audit-emphasis {
  border-left: 3px solid var(--purple-500); background: var(--purple-bg);
  padding: var(--space-4) var(--space-6); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-body); font-size: 1.05rem; font-weight: 500; line-height: 1.5; margin: var(--space-4) 0 0;
}

/* ── Services pricing disclaimer ── */
.price-disclaimer { display: flex; gap: var(--space-4); align-items: flex-start; background: var(--yellow-bg); border: 1px solid var(--border-yellow); border-radius: var(--radius-md); padding: var(--space-6); margin-bottom: var(--space-8); }
.price-disclaimer-icon { color: var(--yellow-400); font-size: 1.25rem; line-height: 1.4; flex-shrink: 0; }
.price-disclaimer p { color: var(--text-body); line-height: 1.6; margin: 0 0 var(--space-2); }

/* ── Pricing-education prose + drivers ── */
.prose p { color: var(--text-secondary); line-height: 1.75; margin-bottom: var(--space-4); max-width: 68ch; }
.prose h3 { color: var(--text-primary); margin: var(--space-8) 0 var(--space-3); font-size: 1.15rem; }
.driver-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-4); }
.driver-list li { color: var(--text-secondary); line-height: 1.6; padding-left: var(--space-4); border-left: 2px solid var(--border-purple); }
.driver-list strong { color: var(--text-body); font-weight: 600; }

/* ═══ Glossy block treatment (experimental — delete this block to revert) ═══ */
.card, .card-black, .sector-card, .diff-card, .tier, .cta-panel, .faq-item,
.about-media-inner, .price-card, .included-card, .lp-step, .lp-problem-card,
.lp-setup-item, .step-item, .who-card, .example-card, .roi-out, .roi-advanced,
.process-step, .scenario, .pricing-col, .tier-free, .lp-honest-box {
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.015) 38%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.07);
}
/* Slightly stronger sheen on interactive cards when hovered */
.card:hover, .sector-card:hover, .diff-card:hover, .example-card:hover, .service-card:hover {
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.02) 38%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* ═══ Motto banner (closing statement on About) ═══ */
.motto-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
  background:
    radial-gradient(120% 140% at 100% 50%, rgba(139,92,246,0.18), transparent 60%),
    var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-16) var(--space-12);
  margin: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .motto-banner { grid-template-columns: 1.4fr 1fr; }
}
.motto-text blockquote {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin: 0 0 var(--space-6);
}
.motto-text figcaption {
  color: var(--purple-300);
  font-size: 1rem;
  font-weight: 500;
}
.motto-visual img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 0 40px rgba(139,92,246,0.35));
}

/* ═══ Frosted-glass treatment (translucency + blur; pairs with the gloss sheen above) ═══ */
.card, .card-black, .sector-card, .diff-card, .tier, .cta-panel, .faq-item, .faq-acc-item,
.about-media-inner, .price-card, .included-card, .lp-step, .lp-problem-card,
.lp-setup-item, .step-item, .who-card, .example-card, .roi-out, .roi-advanced,
.process-step, .scenario, .pricing-col, .lp-honest-box, .lp-dual-value,
.roi-form, .roi-results, .project-card, .project-summary {
  background-color: rgba(30, 30, 40, 0.55);   /* --bg-card #1E1E28 at ~55% → glass */
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  backdrop-filter: blur(14px) saturate(125%);
}
/* Hover lifts the glass: brighter pane + keep the purple corner highlight (border + glow) */
.card:hover, .sector-card:hover, .diff-card:hover, .example-card:hover,
.service-card:hover, .price-card:hover, .post-card:hover, .project-card:hover,
.project-summary:hover {
  background-color: rgba(42, 42, 56, 0.6);
}

/* ═══ Nav dropdown (Služby → Pre firmy / Pre jednotlivcov / Kalkulačka) ═══ */
.nav-dd { position: relative; display: inline-flex; }
.nav-dd-toggle { display: inline-flex; align-items: center; gap: .25rem; }
.nav-dd-toggle svg { transition: transform .2s ease; }
.nav-dd:hover .nav-dd-toggle svg, .nav-dd:focus-within .nav-dd-toggle svg { transform: rotate(180deg); }
.nav-dd-menu {
  display: none;
  position: absolute; top: 100%; left: 0;
  margin-top: .25rem;
  min-width: 230px;
  padding: .4rem;
  background: rgba(14, 14, 20, 0.95);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 30px rgba(0,0,0,.5);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  backdrop-filter: blur(12px) saturate(120%);
  z-index: 100;
}
.nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu { display: block; }
.nav-dd-menu a {
  display: block;
  padding: .55rem .75rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: .9rem;
  transition: background-color .15s, color .15s;
}
.nav-dd-menu a:hover { background: var(--bg-card); color: var(--text-primary); }
@media (max-width: 1139px) {
  /* Inside the drawer: sub-links collapse into a click-to-open accordion */
  .nav-dd { display: block; width: 100%; }
  .nav-dd-toggle { padding: .5rem 0; justify-content: space-between; }
  .nav-dd.open .nav-dd-toggle svg { transform: rotate(180deg); }
  .nav-dd-menu {
    display: block; position: static; margin-top: 0;
    min-width: 0; padding: 0 0 0 .9rem;
    background: transparent; border: none; box-shadow: none;
    -webkit-backdrop-filter: none; backdrop-filter: none;
    max-height: 0; overflow: hidden;
    transition: max-height .28s ease;
  }
  .nav-dd.open .nav-dd-menu { max-height: 240px; }
  .nav-dd-menu a { padding: .4rem 0; font-size: 1rem; }

  /* Language switcher: same click-to-open accordion, in flow */
  .lang-dropdown { width: 100%; }
  .lang-dropdown-toggle { padding: .5rem 0; justify-content: space-between; }
  .lang-dropdown-toggle svg { transition: transform .2s ease; }
  .lang-dropdown.open .lang-dropdown-toggle svg { transform: rotate(180deg); }
  .lang-dropdown-menu {
    display: block; position: static; top: auto; right: auto;
    min-width: 0; padding: 0 0 0 .9rem;
    background: transparent; border: none; box-shadow: none;
    max-height: 0; overflow: hidden;
    transition: max-height .28s ease;
  }
  .lang-dropdown.open .lang-dropdown-menu { max-height: 160px; }
  .lang-dropdown-item { padding: .4rem 0; font-size: 1rem; }
}

/* ═══ Open-ended option: full-width purple band beneath the offering cards ═══ */
.individuals-more {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  align-items: center;
  background:
    radial-gradient(120% 180% at 0% 50%, rgba(139,92,246,0.16), transparent 55%),
    rgba(139, 92, 246, 0.07);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}
@media (min-width: 768px) {
  .individuals-more { grid-template-columns: minmax(0, 0.85fr) 1.25fr; gap: var(--space-12); }
}
.individuals-more .contact-card-label { display: block; color: var(--purple-300); margin-bottom: var(--space-2); }
.individuals-more h3 { color: var(--text-primary); margin: 0; }
.individuals-more p { color: var(--text-secondary); line-height: 1.65; margin: 0; }

/* ═══ ConAI Dashboard preview: four function cards (color-coded by module) ═══ */
.fn-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
@media (min-width: 700px) { .fn-grid { grid-template-columns: repeat(2, 1fr); } }
.fn-card { position: relative; overflow: hidden; padding-left: calc(var(--space-6) + 3px); }
.fn-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--border-strong); }
.fn-card h3 { color: var(--text-primary); margin-bottom: var(--space-2); }
.fn-card p { color: var(--text-secondary); line-height: 1.65; margin: 0; }
.fn-advisor::before { background: #10B981; }
.fn-chatbot::before { background: #F87C63; }
.fn-social::before  { background: #F59E0B; }
.fn-docs::before    { background: #3B82F6; }
