/* ============================================
   TEPEFI SEXATO · GLOBAL STYLESHEET
   Digital Brutalism Lite · 2026
   ============================================ */


:root {
  --base-dark: oklch(18% 0.02 250);
  --base-yellow: oklch(82% 0.16 90);
  --base-accent: oklch(45% 0.18 250);

  
  --surface-bg: color-mix(in oklch, var(--base-dark), white 92%);
  --surface-bg-2: color-mix(in oklch, var(--base-dark), white 96%);
  --surface-inset-bg: color-mix(in oklch, var(--base-dark), white 86%);
  --surface-card: color-mix(in oklch, var(--base-dark), white 98%);
  --surface-card-tint: color-mix(in oklch, var(--base-yellow), white 70%);
  --surface-dark-bg: color-mix(in oklch, var(--base-dark), white 8%);
  --surface-dark-card: color-mix(in oklch, var(--base-dark), white 14%);
  --accent: var(--base-accent);
  --accent-light: color-mix(in oklch, var(--base-accent), white 70%);
  --accent-dark: color-mix(in oklch, var(--base-accent), black 20%);
  --accent-bg: color-mix(in oklch, var(--base-accent), white 88%);
  --yellow: var(--base-yellow);
  --yellow-muted: color-mix(in oklch, var(--base-yellow), white 40%);
  --yellow-dark: color-mix(in oklch, var(--base-yellow), black 30%);

  
  --text-primary: color-mix(in oklch, var(--base-dark), white 5%);
  --text-secondary: color-mix(in oklch, var(--base-dark), white 35%);
  --text-muted: color-mix(in oklch, var(--base-dark), white 55%);
  --text-on-dark: color-mix(in oklch, white, var(--base-dark) 5%);
  --text-on-accent: oklch(98% 0 0);

  
  --border-light: color-mix(in oklch, var(--base-dark), white 82%);
  --border-medium: color-mix(in oklch, var(--base-dark), white 70%);
  --border-dark: color-mix(in oklch, var(--base-dark), white 55%);

  
  --shadow-sm: 0 1px 3px color-mix(in oklch, var(--base-dark), transparent 85%), 0 1px 2px color-mix(in oklch, var(--base-dark), transparent 90%);
  --shadow-md: 0 4px 6px color-mix(in oklch, var(--base-dark), transparent 85%), 0 2px 4px color-mix(in oklch, var(--base-dark), transparent 90%);
  --shadow-lg: 0 10px 25px color-mix(in oklch, var(--base-dark), transparent 80%), 0 4px 10px color-mix(in oklch, var(--base-dark), transparent 88%);
  --shadow-xl: 0 20px 40px color-mix(in oklch, var(--base-dark), transparent 75%), 0 8px 16px color-mix(in oklch, var(--base-dark), transparent 85%);
  --shadow-accent: 0 8px 24px color-mix(in oklch, var(--base-accent), transparent 70%);

  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'Courier New', Courier, monospace;

  
  --nav-height: 72px;
}


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

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

body {
  font-family: var(--font-body);
  background-color: var(--surface-bg);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease; }

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }


.text-display {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.text-body {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.75;
  color: var(--text-secondary);
}

.text-caption {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}


.surface { background-color: var(--surface-bg); }
.surface-raised {
  background-color: var(--surface-card);
  box-shadow: var(--shadow-md);
}
.surface-inset {
  background-color: var(--surface-inset-bg);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.surface-dark { background-color: var(--surface-dark-bg); }
.surface-raised-dark { background-color: var(--surface-dark-card); }
.surface-accent { background-color: var(--accent); }


.action-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent);
  color: var(--text-on-accent);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.action-primary:hover {
  background-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
  color: var(--text-on-accent);
}
.action-primary:active { transform: translateY(0); }

.action-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: transparent;
  color: var(--text-primary);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--border-medium);
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}
.action-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background-color: var(--accent-bg);
  transform: translateY(-1px);
}

.action-light {
  background-color: var(--text-on-accent);
  color: var(--accent);
}
.action-light:hover {
  background-color: color-mix(in oklch, var(--text-on-accent), var(--accent) 10%);
  color: var(--accent-dark);
  box-shadow: 0 8px 20px color-mix(in oklch, black, transparent 75%);
}

.action-ghost-light {
  border-color: color-mix(in oklch, var(--text-on-accent), transparent 40%);
  color: var(--text-on-accent);
}
.action-ghost-light:hover {
  border-color: var(--text-on-accent);
  background-color: color-mix(in oklch, var(--text-on-accent), transparent 85%);
  color: var(--text-on-accent);
}


.space-section { padding: var(--space-2xl) 0; }
.space-card { padding: var(--space-md); }


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav-primary {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--surface-bg);
  border-bottom: 1px solid var(--border-light);
  height: var(--nav-height);
  transition: box-shadow 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  gap: var(--space-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img { width: 32px; height: 32px; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
  list-style: none;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent);
  background-color: var(--accent-bg);
}

.nav-chevron {
  font-size: 0.65rem;
  transition: transform 0.2s ease;
}

.nav-item-mega { position: relative; }
.nav-item-mega:hover .nav-chevron { transform: rotate(180deg); }

.nav-cta { margin-left: var(--space-sm); }


.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  min-width: 480px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  transform: translateX(-50%) translateY(-8px);
}
.nav-item-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: var(--space-md);
}
.mega-col { padding: var(--space-sm); }
.mega-col:first-child { border-right: 1px solid var(--border-light); }

.mega-heading {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--border-light);
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0.5rem;
  border-radius: var(--radius-md);
  transition: background-color 0.15s ease;
  margin-bottom: 0.25rem;
}
.mega-item:hover { background-color: var(--accent-bg); }
.mega-icon {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.mega-item-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}
.mega-item-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}


.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}
.nav-hamburger:hover { background-color: var(--surface-inset-bg); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}


.mobile-sheet-overlay {
  position: fixed;
  inset: 0;
  background-color: color-mix(in oklch, black, transparent 50%);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.mobile-sheet-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background-color: var(--surface-card);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: var(--space-sm) var(--space-md) calc(var(--space-md) + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 40px color-mix(in oklch, black, transparent 70%);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 85vh;
  overflow-y: auto;
}
.mobile-sheet.active { transform: translateY(0); }

.mobile-sheet-handle {
  width: 40px;
  height: 4px;
  background-color: var(--border-medium);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-md);
}

.mobile-sheet-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem var(--space-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.mobile-nav-link:hover { background-color: var(--accent-bg); color: var(--accent); }
.mobile-nav-link i { color: var(--accent); width: 20px; text-align: center; }

.mobile-sheet-cta {
  margin-top: var(--space-sm);
  justify-content: center;
  width: 100%;
  padding: 1rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: 0;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(var(--border-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-xl);
  align-items: end;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  padding-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.hero-content-left { max-width: 640px; }

.hero-eyebrow {
  display: block;
  margin-bottom: var(--space-md);
  color: var(--accent);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}
.hero-heading em {
  font-style: italic;
  color: var(--accent);
}

.hero-grid-line {
  width: 80px;
  height: 3px;
  background-color: var(--yellow);
  margin-top: var(--space-md);
}

.hero-content-right {
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-bottom: var(--space-sm);
}

.hero-desc { color: var(--text-secondary); }

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-meta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
}
.hero-meta i { color: var(--accent); }

.hero-image-block {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--space-md);
}

.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border: 1px solid var(--border-light);
  border-bottom: none;
  display: block;
}

.hero-img-label {
  position: absolute;
  bottom: var(--space-sm);
  right: calc(var(--space-md) + var(--space-sm));
  background-color: var(--yellow);
  color: var(--text-primary);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  border-top: 2px solid var(--border-medium);
  border-bottom: 2px solid var(--border-medium);
}

.stats-bar-inner {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-md) var(--space-lg);
  gap: 0.25rem;
}

.stat-label {
  display: block;
  color: var(--text-muted);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-divider {
  width: 1px;
  background-color: var(--border-medium);
  margin: var(--space-sm) 0;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  max-width: 640px;
  margin-bottom: var(--space-xl);
}

.section-tag {
  display: inline-block;
  background-color: var(--yellow-muted);
  color: var(--yellow-dark);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.section-intro {
  max-width: 560px;
  color: var(--text-secondary);
}

/* ============================================
   FEATURE GRID
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.feature-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
  transform-style: preserve-3d;
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--yellow));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.feature-card:hover::before { opacity: 1; }

.feature-card-num {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  color: var(--border-medium);
  font-size: 0.7rem;
  font-weight: 700;
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.feature-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

/* ============================================
   ALTERNATING FEATURES
   ============================================ */
.alt-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border-light);
}
.alt-feature:last-child { border-bottom: none; }

.alt-feature-reverse { direction: rtl; }
.alt-feature-reverse > * { direction: ltr; }

.alt-feature-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.alt-feature-tag {
  display: inline-block;
  background-color: var(--yellow-muted);
  color: var(--yellow-dark);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.alt-feature-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.alt-feature-text .text-body + .text-body { margin-top: var(--space-sm); }

/* ============================================
   CALCULATOR SECTION
   ============================================ */
.calculator-surface {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.calc-inputs { display: flex; flex-direction: column; gap: var(--space-md); }

.calc-field { display: flex; flex-direction: column; gap: 0.4rem; }

.calc-label {
  display: block;
  color: var(--text-muted);
}

.calc-input {
  padding: 0.75rem var(--space-sm);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  background-color: var(--surface-bg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.calc-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-bg);
}

.calc-btn { margin-top: var(--space-sm); }

.calc-result {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-sm);
  min-height: 200px;
  transition: all 0.3s ease;
}

.calc-result-icon {
  font-size: 2rem;
  color: var(--accent);
}

.calc-result-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ============================================
   SERIES GRID
   ============================================ */
.series-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.series-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.series-card:hover { box-shadow: var(--shadow-lg); }

.series-card-img-wrap { aspect-ratio: 16/9; overflow: hidden; }
.series-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.series-card:hover .series-card-img { transform: scale(1.04); }

.series-card-body { padding: var(--space-md); }

.series-num {
  display: block;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.series-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-text .text-body + .text-body { margin-top: var(--space-sm); }
.about-text .action-ghost { margin-top: var(--space-md); }
.about-text .section-tag { margin-bottom: var(--space-sm); display: inline-block; }

.about-visual { position: relative; }

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.about-visual-tag {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background-color: var(--surface-card);
  padding: 0.6rem var(--space-sm);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}
.about-visual-tag i { color: var(--yellow-dark); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner { padding: var(--space-xl) 0; }

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

.cta-banner-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text-on-accent);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.cta-banner-sub { color: color-mix(in oklch, var(--text-on-accent), transparent 25%); }

.cta-banner-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  margin-top: auto;
  padding: var(--space-xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  padding-bottom: var(--space-xl);
}

.footer-card {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in oklch, var(--surface-dark-card), white 10%);
}

.footer-card-heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.footer-about {
  color: color-mix(in oklch, var(--text-on-dark), transparent 35%);
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
}

.footer-address {
  color: color-mix(in oklch, var(--text-on-dark), transparent 45%);
}

.footer-links { display: flex; flex-direction: column; gap: 0.4rem; }

.footer-link {
  font-size: 0.875rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 35%);
  transition: color 0.2s ease;
}
.footer-link:hover { color: var(--yellow); }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.footer-icon {
  color: var(--yellow);
  font-size: 0.85rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-text {
  font-size: 0.875rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 35%);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid color-mix(in oklch, var(--surface-dark-card), white 15%);
  padding: var(--space-md) 0;
}

.footer-copy {
  text-align: center;
  color: color-mix(in oklch, var(--text-on-dark), transparent 50%);
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
  position: fixed;
  right: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.floating-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--accent);
  color: var(--text-on-accent);
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.floating-cta-btn:hover {
  background-color: var(--accent-dark);
  transform: translateX(-2px);
  box-shadow: var(--shadow-xl);
  color: var(--text-on-accent);
}
.floating-cta-btn i {
  writing-mode: horizontal-tb;
  font-size: 1rem;
}

.floating-cta-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.35;
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: var(--space-sm) 0 var(--space-md);
  max-width: 700px;
}

.page-hero-desc {
  max-width: 560px;
  color: var(--text-secondary);
}

/* ============================================
   WHAT SETS US APART PAGE
   ============================================ */
.wsa-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.wsa-icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--space-sm);
}

.wsa-icon-large {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background-color: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.wsa-vertical-line {
  width: 2px;
  flex: 1;
  min-height: 60px;
  background: linear-gradient(to bottom, var(--border-medium), transparent);
  margin-top: var(--space-sm);
}

.wsa-text-col .text-body + .text-body { margin-top: var(--space-sm); }
.wsa-text-col .section-tag { display: inline-block; margin-bottom: var(--space-sm); }

.wsa-callout {
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
}
.wsa-callout .text-body { color: var(--text-secondary); font-style: italic; margin: 0; }

.wsa-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.wsa-case {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.2s ease;
}
.wsa-case:hover { box-shadow: var(--shadow-lg); }

.wsa-case-tag {
  display: inline-block;
  background-color: var(--yellow-muted);
  color: var(--yellow-dark);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.wsa-case-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}


.structure-steps { margin-top: var(--space-lg); display: flex; flex-direction: column; gap: var(--space-sm); }

.structure-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-md);
  align-items: start;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-light);
}
.structure-step:last-child { border-bottom: none; }

.structure-step-num {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  padding-top: 0.15rem;
}

.structure-step-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}


.facilitator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.facilitator-card {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.2s ease;
}
.facilitator-card:hover { box-shadow: var(--shadow-lg); }

.facilitator-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.facilitator-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

/* ============================================
   CONSULTING PAGE
   ============================================ */
.consulting-intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.consulting-intro-split .text-body + .text-body { margin-top: var(--space-sm); }
.consulting-intro-split h2 { margin-bottom: var(--space-md); }

.consulting-intro-img-wrap { overflow: hidden; border-radius: var(--radius-lg); }
.consulting-intro-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
}

.consulting-formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.consulting-format {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.2s ease;
}
.consulting-format:hover { box-shadow: var(--shadow-lg); }

.consulting-format-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.consulting-format-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.consulting-format-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.consulting-format-list {
  list-style: none;
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.consulting-format-list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}
.consulting-format-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}


.process-track {
  max-width: 700px;
  margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-md);
  align-items: start;
}

.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background-color: var(--accent);
  color: var(--text-on-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-accent);
}

.process-connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--accent), color-mix(in oklch, var(--accent), transparent 60%));
  margin-left: 27px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.process-step-content { padding-top: 0.75rem; padding-bottom: var(--space-md); }

.process-step-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

/* ============================================
   COMMON CHALLENGES PAGE
   ============================================ */
.challenge-intro {
  max-width: 720px;
  margin-bottom: var(--space-xl);
}
.challenge-intro h2 { margin-bottom: var(--space-md); }
.challenge-intro .text-body + .text-body { margin-top: var(--space-sm); }

.challenges-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.challenge-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-md);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border-light);
  align-items: start;
}
.challenge-item:last-child { border-bottom: none; }

.challenge-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.challenge-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.challenge-content .text-body + .text-body { margin-top: var(--space-sm); }

.findings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.finding-card {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.2s ease;
}
.finding-card:hover { box-shadow: var(--shadow-lg); }

.finding-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.finding-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-xl);
  align-items: start;
}

.contact-form-col h2 { margin-bottom: var(--space-lg); }

.contact-form { display: flex; flex-direction: column; gap: var(--space-md); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }

.form-label {
  display: block;
  color: var(--text-muted);
}

.form-input {
  padding: 0.8rem var(--space-sm);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  background-color: var(--surface-bg-2);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  min-height: 44px;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-bg);
}

.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23666' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

.form-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }

.form-privacy { flex-direction: row; align-items: flex-start; gap: 0; }

.privacy-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
}

.privacy-checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-sm);
  accent-color: var(--accent);
  margin-top: 0.15rem;
  cursor: pointer;
}

.form-link { color: var(--accent); text-decoration: underline; }

.form-error {
  color: oklch(50% 0.2 25);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem var(--space-sm);
  background-color: color-mix(in oklch, oklch(50% 0.2 25), white 90%);
  border-radius: var(--radius-md);
  border: 1px solid color-mix(in oklch, oklch(50% 0.2 25), white 70%);
}

.form-submit { align-self: flex-start; }

.contact-info-card {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  margin-bottom: var(--space-md);
}

.contact-info-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.contact-info-list { display: flex; flex-direction: column; gap: var(--space-sm); }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background-color: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-info-label {
  display: block;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.contact-info-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
  transition: color 0.2s ease;
}
a.contact-info-value:hover { color: var(--accent); }

.office-description {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
}

.office-desc-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}
.office-description .text-body + .text-body { margin-top: var(--space-sm); }

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.map-iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* ============================================
   THANKS PAGE
   ============================================ */
.thanks-body { display: flex; flex-direction: column; min-height: 100vh; }

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  min-height: 70vh;
}

.thanks-content {
  text-align: center;
  max-width: 560px;
}

.thanks-icon {
  font-size: 4rem;
  color: var(--text-on-accent);
  margin-bottom: var(--space-md);
  opacity: 0.9;
}

.thanks-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-on-accent);
  margin-bottom: var(--space-md);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.thanks-desc {
  font-size: 1.05rem;
  color: color-mix(in oklch, var(--text-on-accent), transparent 20%);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.thanks-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--text-on-accent);
  color: var(--text-on-accent);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.thanks-btn:hover {
  background-color: var(--text-on-accent);
  color: var(--accent);
  transform: translateY(-1px);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-section { padding: var(--space-xl) 0 var(--space-2xl); }

.legal-container { max-width: 800px; }

.legal-preamble {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.accordion-legal {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  background-color: var(--surface-card);
  text-align: left;
  gap: var(--space-sm);
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  border: none;
}
.accordion-trigger:hover { background-color: var(--accent-bg); color: var(--accent); }
.accordion-trigger.active { background-color: var(--accent-bg); color: var(--accent); }
.accordion-trigger.active .acc-icon { transform: rotate(180deg); }

.acc-icon {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  color: var(--text-muted);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background-color: var(--surface-bg-2);
}
.accordion-body.open { max-height: 2000px; }

.accordion-body .text-body {
  padding: 0 var(--space-md);
  margin-bottom: var(--space-sm);
}
.accordion-body .text-body:first-child { padding-top: var(--space-md); }
.accordion-body .text-body:last-child { padding-bottom: var(--space-md); }

/* ============================================
   COOKIE CONSENT — BOTTOM SPLIT
   ============================================ */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--surface-dark-bg);
  border-top: 2px solid var(--yellow);
  box-shadow: 0 -8px 32px color-mix(in oklch, black, transparent 60%);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.cookie-consent-banner.visible { transform: translateY(0); }

.cookie-left {
  padding: var(--space-md) var(--space-lg);
  border-right: 1px solid color-mix(in oklch, var(--surface-dark-card), white 15%);
}

.cookie-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 0.5rem;
}

.cookie-desc {
  font-size: 0.83rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 35%);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.cookie-desc a {
  color: var(--yellow);
  text-decoration: underline;
}

.cookie-right {
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.cookie-toggle-label {
  font-size: 0.83rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 20%);
}

.cookie-toggle-label small {
  display: block;
  font-size: 0.7rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 50%);
  margin-top: 0.1rem;
}

.toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background-color: var(--surface-dark-card);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background-color 0.2s ease;
  border: 1px solid color-mix(in oklch, var(--surface-dark-card), white 20%);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 2px;
  top: 2px;
  background-color: var(--text-on-dark);
  border-radius: var(--radius-full);
  transition: transform 0.2s ease;
}
.toggle-switch input:checked + .toggle-slider { background-color: var(--accent); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(18px); }
.toggle-switch input:disabled + .toggle-slider { opacity: 0.5; cursor: not-allowed; }

.cookie-buttons {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.cookie-btn-accept {
  flex: 1;
  background-color: var(--yellow);
  color: var(--text-primary);
  border: none;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  font-family: var(--font-body);
}
.cookie-btn-accept:hover { background-color: var(--yellow-dark); transform: translateY(-1px); }

.cookie-btn-save {
  flex: 1;
  background-color: transparent;
  color: color-mix(in oklch, var(--text-on-dark), transparent 25%);
  border: 1px solid color-mix(in oklch, var(--surface-dark-card), white 25%);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  font-family: var(--font-body);
}
.cookie-btn-save:hover { border-color: var(--text-on-dark); color: var(--text-on-dark); }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .series-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .consulting-formats { grid-template-columns: 1fr; }
  .wsa-cases-grid { grid-template-columns: 1fr 1fr; }
  .facilitator-grid { grid-template-columns: 1fr 1fr; }
  .calculator-surface { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  :root {
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding-top: calc(var(--nav-height) + var(--space-lg)); min-height: auto; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
  }
  .hero-content-right { max-width: 100%; }
  .hero-img { height: 240px; }

  .stats-bar-inner {
    flex-direction: column;
    gap: 0;
  }
  .stat-item { padding: var(--space-sm) var(--space-md); }
  .stat-divider { width: 100%; height: 1px; margin: 0; }

  .feature-grid { grid-template-columns: 1fr; }
  .series-grid { grid-template-columns: 1fr; }
  .alt-feature { grid-template-columns: 1fr; gap: var(--space-md); }
  .alt-feature-reverse { direction: ltr; }
  .alt-feature-img { height: 220px; }

  .about-split { grid-template-columns: 1fr; }
  .about-img { height: 260px; }

  .cta-banner-inner { flex-direction: column; align-items: flex-start; }
  .cta-banner-actions { width: 100%; }
  .cta-banner-actions .action-primary,
  .cta-banner-actions .action-ghost { width: 100%; justify-content: center; }

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

  .floating-cta { display: none; }

  .wsa-block { grid-template-columns: 1fr; }
  .wsa-icon-col { flex-direction: row; align-items: center; }
  .wsa-vertical-line { width: 100%; height: 2px; min-height: auto; margin: 0 0 0 var(--space-sm); }

  .wsa-cases-grid { grid-template-columns: 1fr; }
  .facilitator-grid { grid-template-columns: 1fr; }

  .consulting-intro-split { grid-template-columns: 1fr; }
  .consulting-intro-img { height: 240px; }

  .challenge-item { grid-template-columns: 1fr; gap: var(--space-sm); }
  .challenge-icon { width: 48px; height: 48px; }

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

  .form-row { grid-template-columns: 1fr; }

  .cookie-consent-banner { grid-template-columns: 1fr; }
  .cookie-left { border-right: none; border-bottom: 1px solid color-mix(in oklch, var(--surface-dark-card), white 15%); padding: var(--space-sm) var(--space-md); }
  .cookie-right { padding: var(--space-sm) var(--space-md); }

  .page-hero { padding-top: calc(var(--nav-height) + var(--space-lg)); }
  .page-hero-heading { font-size: clamp(2rem, 6vw, 3rem); }

  .calculator-surface { padding: var(--space-md); }

  .structure-step { grid-template-columns: 60px 1fr; }
  .process-track { padding: 0 var(--space-sm); }
}

@media (max-width: 480px) {
  .hero-heading { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .section-heading { font-size: clamp(1.5rem, 5vw, 2rem); }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-buttons { flex-direction: column; }
}