/* ==========================================================================
   Workhand Marketing Design System
   Single source of truth. Every marketing page loads this file.
   Tokens + components + utilities. Nothing else.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --wh-brand: #0EA5A0;
  --wh-brand-dark: #0B7F7B;
  --wh-brand-light: #E6F7F6;
  --wh-brand-glow: rgba(14, 165, 160, 0.12);

  /* Ink */
  --wh-ink-1: #0B1F2A;
  --wh-ink-2: #1F2937;
  --wh-ink-3: #6B7280;
  --wh-ink-4: #9CA3AF;

  /* Surface */
  --wh-surface-1: #FFFFFF;
  --wh-surface-2: #F5F7FA;
  --wh-surface-3: #E8ECF0;
  --wh-surface-navy: #0B1F2A;

  /* Accent */
  --wh-warn: #F59E0B;
  --wh-danger: #EF4444;
  --wh-success: #10B981;
  --wh-info: #2563EB;

  /* Type */
  --wh-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Radius */
  --wh-r-sm: 6px;
  --wh-r-md: 10px;
  --wh-r-lg: 12px;
  --wh-r-xl: 20px;
  --wh-r-full: 999px;

  /* Shadow */
  --wh-shadow-1: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02);
  --wh-shadow-2: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --wh-shadow-3: 0 10px 30px rgba(11, 31, 42, 0.10), 0 4px 12px rgba(11, 31, 42, 0.06);

  /* Motion */
  --wh-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --wh-fast: 150ms;
  --wh-normal: 250ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--wh-font);
  color: var(--wh-ink-2);
  background: var(--wh-surface-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--wh-brand-dark); text-decoration: none; transition: color var(--wh-fast) var(--wh-ease); }
a:hover { color: var(--wh-brand); }
button { font-family: inherit; }
p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

/* ---------- Typography ---------- */
.wh-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wh-brand-dark);
  margin-bottom: 12px;
}

.wh-h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--wh-ink-1);
  margin: 0 0 20px;
}

.wh-h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--wh-ink-1);
  margin: 0 0 16px;
}

.wh-h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--wh-ink-1);
  margin: 0 0 12px;
}

.wh-lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--wh-ink-2);
  margin: 0 0 24px;
}

.wh-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--wh-ink-2);
}

.wh-small {
  font-size: 14px;
  color: var(--wh-ink-3);
}

.wh-accent { color: var(--wh-brand); }

/* ---------- Layout ---------- */
.wh-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.wh-section {
  padding: 96px 0;
}
.wh-section--tight { padding: 64px 0; }
.wh-section--alt { background: var(--wh-surface-2); }
.wh-section--dark {
  background: var(--wh-surface-navy);
  color: #E6EDF2;
}
.wh-section--dark .wh-h1,
.wh-section--dark .wh-h2,
.wh-section--dark .wh-h3 { color: #FFFFFF; }
.wh-section--dark .wh-lead { color: #C7D1D9; }
.wh-section--dark .wh-eyebrow { color: var(--wh-brand); }

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

@media (max-width: 900px) {
  .wh-section { padding: 64px 0; }
  .wh-grid--3, .wh-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .wh-section { padding: 48px 0; }
  .wh-grid--2, .wh-grid--3, .wh-grid--4 { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.wh-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--wh-r-md);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--wh-fast) var(--wh-ease);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.wh-btn--primary {
  background: var(--wh-brand);
  color: #FFFFFF;
  box-shadow: 0 1px 2px rgba(11, 127, 123, 0.20);
}
.wh-btn--primary:hover {
  background: var(--wh-brand-dark);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(11, 127, 123, 0.25);
}
.wh-btn--secondary {
  background: transparent;
  color: var(--wh-brand-dark);
  border-color: var(--wh-surface-3);
}
.wh-btn--secondary:hover {
  border-color: var(--wh-brand);
  color: var(--wh-brand-dark);
  background: var(--wh-brand-light);
}
.wh-btn--ghost {
  background: transparent;
  color: var(--wh-ink-2);
}
.wh-btn--ghost:hover {
  background: var(--wh-surface-2);
  color: var(--wh-ink-1);
}
.wh-btn--lg { padding: 16px 28px; font-size: 16px; }
.wh-btn--sm { padding: 10px 16px; font-size: 14px; }

/* Dark section variants */
.wh-section--dark .wh-btn--secondary {
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.24);
}
.wh-section--dark .wh-btn--secondary:hover {
  border-color: #FFFFFF;
  background: rgba(255,255,255,0.08);
}

/* ---------- Cards ---------- */
.wh-card {
  background: var(--wh-surface-1);
  border: 1px solid var(--wh-surface-3);
  border-radius: var(--wh-r-lg);
  padding: 28px;
  box-shadow: var(--wh-shadow-1);
  transition: all var(--wh-normal) var(--wh-ease);
}
.wh-card--hover:hover {
  transform: translateY(-4px);
  border-color: var(--wh-brand);
  box-shadow: var(--wh-shadow-2);
}
.wh-card--soft { background: var(--wh-surface-2); border-color: transparent; }
.wh-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--wh-r-md);
  background: var(--wh-brand-light);
  color: var(--wh-brand-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.wh-card__icon svg { width: 22px; height: 22px; }

/* ---------- Navigation ---------- */
.wh-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--wh-surface-3);
}
.wh-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.wh-nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--wh-brand-dark);
  text-decoration: none;
}
.wh-nav__logo img { width: 32px; height: 32px; }
.wh-nav__items {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.wh-nav__item { position: relative; }
.wh-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--wh-ink-2);
  border-radius: var(--wh-r-md);
  transition: all var(--wh-fast) var(--wh-ease);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.wh-nav__link:hover { background: var(--wh-surface-2); color: var(--wh-ink-1); }
.wh-nav__link .wh-chev {
  width: 12px;
  height: 12px;
  transition: transform var(--wh-fast) var(--wh-ease);
}
.wh-nav__item--open .wh-chev { transform: rotate(180deg); }
.wh-nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* Mega-menu panel */
.wh-mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 720px;
  background: var(--wh-surface-1);
  border: 1px solid var(--wh-surface-3);
  border-radius: var(--wh-r-lg);
  box-shadow: var(--wh-shadow-3);
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--wh-normal) var(--wh-ease), transform var(--wh-normal) var(--wh-ease);
  z-index: 200;
}
.wh-nav__item--open .wh-mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.wh-mega__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.wh-mega__cols--3 { grid-template-columns: repeat(3, 1fr); }
.wh-mega__cols--2 { grid-template-columns: 1.5fr 1fr; }
.wh-mega__col-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--wh-brand-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.wh-mega__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wh-mega__link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--wh-r-md);
  color: var(--wh-ink-2);
  text-decoration: none;
  transition: background var(--wh-fast) var(--wh-ease);
  font-size: 14.5px;
}
.wh-mega__link:hover { background: var(--wh-surface-2); color: var(--wh-ink-1); }
.wh-mega__link-icon {
  width: 20px;
  height: 20px;
  color: var(--wh-brand-dark);
  flex-shrink: 0;
  margin-top: 1px;
}
.wh-mega__link-title {
  font-weight: 600;
  color: var(--wh-ink-1);
  display: block;
  line-height: 1.3;
}
.wh-mega__link-sub {
  font-size: 12.5px;
  color: var(--wh-ink-3);
  line-height: 1.3;
  margin-top: 2px;
}
.wh-mega__promo {
  background: linear-gradient(135deg, var(--wh-brand-light) 0%, #F0FAFA 100%);
  border-radius: var(--wh-r-md);
  padding: 16px;
}

/* Announcement bar */
.wh-announce {
  background: linear-gradient(90deg, var(--wh-brand-dark) 0%, var(--wh-brand) 100%);
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 500;
  text-align: center;
  padding: 10px 16px;
  position: relative;
}
.wh-announce a {
  color: #FFFFFF;
  text-decoration: underline;
  font-weight: 600;
}
.wh-announce__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--wh-r-sm);
}
.wh-announce__close:hover { color: #FFFFFF; background: rgba(255,255,255,0.1); }
.wh-announce--dismissed { display: none; }

/* Mobile nav */
.wh-nav__toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--wh-ink-1);
}
@media (max-width: 900px) {
  .wh-nav__inner { height: 60px; gap: 16px; }
  .wh-nav__items { display: none; }
  .wh-nav__cta .wh-btn:not(.wh-btn--primary) { display: none; }
  .wh-nav__toggle { display: inline-flex; }
  .wh-mega { position: static; transform: none; min-width: 0; box-shadow: none; border: none; padding: 12px 0 20px; }
  .wh-mega__cols { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Hero ---------- */
.wh-hero {
  padding: 72px 0 96px;
  background: linear-gradient(180deg, var(--wh-brand-light) 0%, #FFFFFF 100%);
}
.wh-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}
.wh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 16px;
}
.wh-hero__note {
  font-size: 14px;
  color: var(--wh-ink-3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.wh-hero__note svg { width: 16px; height: 16px; color: var(--wh-success); }
.wh-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
@media (max-width: 900px) {
  .wh-hero { padding: 48px 0 64px; }
  .wh-hero__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Trust bar ---------- */
.wh-trust {
  padding: 32px 0;
  background: var(--wh-surface-2);
  border-top: 1px solid var(--wh-surface-3);
  border-bottom: 1px solid var(--wh-surface-3);
}
.wh-trust__label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--wh-ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.wh-trust__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.wh-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--wh-ink-2);
  font-size: 14px;
  font-weight: 600;
}
.wh-trust__stars { color: #F59E0B; letter-spacing: 1px; font-size: 14px; }
.wh-trust__num { color: var(--wh-ink-1); font-weight: 800; }
.wh-trust__cap { color: var(--wh-ink-3); font-size: 12.5px; }

/* ---------- Pillar grid ---------- */
.wh-pillar {
  padding: 32px 28px;
  background: var(--wh-surface-1);
  border: 1px solid var(--wh-surface-3);
  border-radius: var(--wh-r-lg);
  transition: all var(--wh-normal) var(--wh-ease);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wh-pillar:hover {
  transform: translateY(-4px);
  border-color: var(--wh-brand);
  box-shadow: var(--wh-shadow-2);
}
.wh-pillar__eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--wh-brand-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.wh-pillar__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--wh-ink-1);
  margin: 0;
  letter-spacing: -0.01em;
}
.wh-pillar__list {
  list-style: none;
  padding: 0;
  margin: 4px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wh-pillar__list li {
  padding: 6px 12px;
  background: var(--wh-surface-2);
  border-radius: var(--wh-r-full);
  font-size: 13.5px;
  color: var(--wh-ink-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
}
.wh-pillar__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wh-brand);
}
.wh-pillar__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--wh-brand-dark);
  margin-top: auto;
}

/* ---------- Industry tiles ---------- */
.wh-industry {
  padding: 24px;
  background: var(--wh-surface-1);
  border: 1px solid var(--wh-surface-3);
  border-radius: var(--wh-r-lg);
  text-decoration: none;
  transition: all var(--wh-normal) var(--wh-ease);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wh-industry:hover {
  border-color: var(--wh-brand);
  transform: translateY(-3px);
  box-shadow: var(--wh-shadow-2);
}
.wh-industry__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--wh-r-md);
  background: var(--wh-brand-light);
  color: var(--wh-brand-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.wh-industry__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--wh-ink-1);
  margin: 0;
}
.wh-industry__sub {
  font-size: 13px;
  color: var(--wh-ink-3);
  line-height: 1.4;
}

/* ---------- Language callout ---------- */
.wh-lang {
  background: var(--wh-surface-navy);
  color: #FFFFFF;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.wh-lang::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--wh-brand-glow) 0%, transparent 70%);
}
.wh-lang__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.wh-lang__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.wh-lang__pill {
  padding: 6px 14px;
  background: rgba(255,255,255,0.10);
  border-radius: var(--wh-r-full);
  font-size: 13.5px;
  font-weight: 600;
  color: #FFFFFF;
}
.wh-lang__screens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.wh-lang__screen {
  aspect-ratio: 9/19;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.10);
}
@media (max-width: 900px) {
  .wh-lang__grid { grid-template-columns: 1fr; }
}

/* ---------- Testimonial ---------- */
.wh-quote {
  background: var(--wh-surface-1);
  border: 1px solid var(--wh-surface-3);
  border-radius: var(--wh-r-lg);
  padding: 32px;
  box-shadow: var(--wh-shadow-1);
}
.wh-quote__stars {
  color: #F59E0B;
  letter-spacing: 2px;
  font-size: 15px;
  margin-bottom: 12px;
}
.wh-quote__text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--wh-ink-1);
  font-weight: 500;
  margin: 0 0 20px;
  letter-spacing: -0.005em;
}
.wh-quote__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wh-quote__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wh-brand) 0%, var(--wh-brand-dark) 100%);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
}
.wh-quote__meta { line-height: 1.35; }
.wh-quote__name { font-size: 14px; font-weight: 700; color: var(--wh-ink-1); }
.wh-quote__title { font-size: 13px; color: var(--wh-ink-3); }

/* ---------- Integration strip ---------- */
.wh-integrations {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 24px 0;
  opacity: 0.75;
}
.wh-integrations__item {
  font-size: 15px;
  font-weight: 700;
  color: var(--wh-ink-3);
  letter-spacing: -0.01em;
  transition: color var(--wh-fast) var(--wh-ease);
}
.wh-integrations__item:hover { color: var(--wh-ink-1); }

/* ---------- Feature block (alternating) ---------- */
.wh-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.wh-feature--reverse .wh-feature__copy { order: 2; }
.wh-feature__visual {
  background: var(--wh-surface-2);
  border-radius: var(--wh-r-xl);
  padding: 40px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wh-feature__list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wh-feature__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: var(--wh-ink-2);
}
.wh-feature__list svg {
  width: 20px;
  height: 20px;
  color: var(--wh-brand);
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 900px) {
  .wh-feature { grid-template-columns: 1fr; gap: 32px; }
  .wh-feature--reverse .wh-feature__copy { order: 0; }
}

/* ---------- Stat carousel ---------- */
.wh-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.wh-stat__num {
  font-size: 40px;
  font-weight: 800;
  color: var(--wh-brand-dark);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.wh-stat__label {
  font-size: 14px;
  color: var(--wh-ink-3);
  line-height: 1.35;
}
@media (max-width: 700px) {
  .wh-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Pricing teaser ---------- */
.wh-pricing-teaser {
  background: linear-gradient(135deg, var(--wh-brand-light) 0%, #F0FAFA 100%);
  border: 1px solid rgba(14, 165, 160, 0.20);
  border-radius: var(--wh-r-xl);
  padding: 48px;
  text-align: center;
}
.wh-pricing-teaser__price {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: var(--wh-ink-1);
  letter-spacing: -0.02em;
  margin: 16px 0;
}
.wh-pricing-teaser__price small {
  font-size: 18px;
  color: var(--wh-ink-3);
  font-weight: 500;
}

/* ---------- FAQ ---------- */
.wh-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.wh-faq__item {
  background: var(--wh-surface-1);
  border: 1px solid var(--wh-surface-3);
  border-radius: var(--wh-r-md);
  padding: 4px 20px;
  transition: border-color var(--wh-fast) var(--wh-ease);
}
.wh-faq__item[open] { border-color: var(--wh-brand); }
.wh-faq__q {
  padding: 16px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--wh-ink-1);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.wh-faq__q::-webkit-details-marker { display: none; }
.wh-faq__q::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--wh-brand);
  transition: transform var(--wh-fast) var(--wh-ease);
}
.wh-faq__item[open] .wh-faq__q::after {
  transform: rotate(45deg);
}
.wh-faq__a {
  padding: 0 0 20px;
  color: var(--wh-ink-2);
  line-height: 1.65;
}

/* ---------- Final CTA ---------- */
.wh-cta {
  background: linear-gradient(135deg, var(--wh-brand-dark) 0%, var(--wh-brand) 100%);
  color: #FFFFFF;
  padding: 96px 0;
  text-align: center;
}
.wh-cta .wh-h2 { color: #FFFFFF; }
.wh-cta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.wh-cta .wh-btn--primary {
  background: #FFFFFF;
  color: var(--wh-brand-dark);
}
.wh-cta .wh-btn--primary:hover {
  background: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.wh-cta .wh-btn--secondary {
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.32);
}
.wh-cta .wh-btn--secondary:hover {
  background: rgba(255,255,255,0.10);
  border-color: #FFFFFF;
}

/* ---------- Footer ---------- */
.wh-footer {
  background: var(--wh-surface-navy);
  color: #B8C4CE;
  padding: 72px 0 32px;
}
.wh-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.wh-footer__brand {
  color: #FFFFFF;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.wh-footer__tag {
  font-size: 14px;
  line-height: 1.6;
  color: #8A97A2;
  margin: 0 0 20px;
  max-width: 260px;
}
.wh-footer__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.wh-footer__badge {
  padding: 6px 12px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--wh-r-sm);
  font-size: 12px;
  color: #C7D1D9;
}
.wh-footer__col-title {
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.wh-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wh-footer__list a {
  color: #B8C4CE;
  font-size: 14px;
  transition: color var(--wh-fast) var(--wh-ease);
}
.wh-footer__list a:hover { color: #FFFFFF; }
.wh-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #8A97A2;
}
.wh-footer__bottom a { color: #B8C4CE; margin: 0 8px; }
@media (max-width: 900px) {
  .wh-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .wh-footer__grid { grid-template-columns: 1fr; }
}

/* ---------- Related links (cluster overlay) ---------- */
.wh-related {
  padding: 64px 0;
  background: var(--wh-surface-2);
}
.wh-related__title {
  font-size: 12px;
  font-weight: 700;
  color: var(--wh-brand-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ---------- Utility ---------- */
.wh-center { text-align: center; }
.wh-mt-1 { margin-top: 8px; }
.wh-mt-2 { margin-top: 16px; }
.wh-mt-3 { margin-top: 24px; }
.wh-mt-4 { margin-top: 32px; }
.wh-mb-1 { margin-bottom: 8px; }
.wh-mb-2 { margin-bottom: 16px; }
.wh-mb-3 { margin-bottom: 24px; }
.wh-mb-4 { margin-bottom: 32px; }
.wh-header-block { max-width: 720px; margin: 0 auto 48px; text-align: center; }

/* Phone mockup */
.wh-phone {
  background: var(--wh-ink-1);
  border-radius: 40px;
  padding: 8px;
  box-shadow: var(--wh-shadow-3);
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9/19.5;
}
.wh-phone__screen {
  background: var(--wh-surface-1);
  border-radius: 32px;
  height: 100%;
  overflow: hidden;
}
