/* Handover — shared styles
   Warm, editorial homeowner-service feel
   Palette from brand brief */

:root {
  /* Brand colors */
  --ivory: #F8F3EC;
  --beige: #EADCCB;
  --beige-soft: #F1E6D5;
  --taupe: #B99B7B;
  --taupe-dark: #9A7E5F;
  --brown: #2B2118;
  --brown-soft: #4A3D30;
  --olive: #7E8A6A;
  --olive-deep: #5F6B4F;
  --clay: #C9825B;
  --clay-deep: #A86440;
  --white: #FFFFFF;
  --border: #E4D6C7;
  --border-soft: #EFE3D2;
  --whatsapp: #25D366;
  --whatsapp-dark: #1FBA56;
  --surface-raised: #FFF9F2;
  --surface-soft: rgba(255, 249, 242, 0.92);
  --header-bg: rgba(248, 243, 236, 0.94);
  --header-bg-strong: rgba(248, 243, 236, 0.985);
  --focus-ring: rgba(168, 100, 64, 0.3);
  --focus-ring-strong: rgba(168, 100, 64, 0.48);
  --focus-fill: rgba(201, 130, 91, 0.14);
  --focus-stroke: #8E5A3C;
  --whatsapp-shadow: rgba(37, 211, 102, 0.24);

  /* Type */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --container-wide: 1280px;
  --gutter: 24px;
  --section-y: 112px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(43, 33, 24, 0.04);
  --shadow-sm: 0 4px 14px rgba(43, 33, 24, 0.06), 0 1px 3px rgba(43, 33, 24, 0.04);
  --shadow-md: 0 12px 32px rgba(43, 33, 24, 0.08), 0 2px 6px rgba(43, 33, 24, 0.05);
  --shadow-lg: 0 24px 60px rgba(43, 33, 24, 0.14), 0 4px 12px rgba(43, 33, 24, 0.06);
  --shadow-float: 0 18px 40px rgba(43, 33, 24, 0.12), 0 2px 6px rgba(43, 33, 24, 0.06);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--brown);
  background: var(--ivory);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

/* ---------- Type ---------- */

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--taupe);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--brown);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0;
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 50, "WONK" 0;
}
h1 { font-size: clamp(40px, 5vw, 68px); line-height: 1.04; letter-spacing: -0.025em; }
h2 { font-size: clamp(32px, 3.6vw, 48px); line-height: 1.08; letter-spacing: -0.02em; }
h3 { font-size: clamp(22px, 2vw, 26px); line-height: 1.2; }
h4 { font-size: 18px; line-height: 1.3; }

.lede {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--brown-soft);
  max-width: 620px;
}

.section-title-block { max-width: 740px; }
.section-title-block .lede { margin-top: 18px; }

/* ---------- Layout primitives ---------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-wide { max-width: var(--container-wide); }

section { padding: var(--section-y) 0; }
section.tight { padding: 80px 0; }

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

.hairline { height: 1px; background: var(--border); border: none; margin: 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-sans);
  transition: transform 180ms var(--ease), box-shadow 220ms var(--ease), background 200ms var(--ease), color 200ms var(--ease);
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn svg { width: 18px; height: 18px; }

.btn-wa {
  background: var(--whatsapp);
  color: var(--ivory);
  box-shadow: 0 8px 22px var(--whatsapp-shadow);
}
.btn-wa:hover { background: var(--whatsapp-dark); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(37, 211, 102, 0.34); }

.btn-primary {
  background: var(--brown);
  color: var(--ivory);
}
.btn-primary:hover { background: var(--brown-soft); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--brown);
}
.btn-secondary:hover { background: var(--brown); color: var(--ivory); }

.btn-ghost {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--border);
  background: var(--white);
}
.btn-ghost:hover { border-color: var(--taupe); }

.btn-sm { min-height: 44px; padding: 10px 18px; font-size: 14px; }

.btn:focus-visible,
.menu-toggle:focus-visible,
.nav-more-toggle:focus-visible,
.lang-switch-toggle:focus-visible,
.lang-switch-menu button:focus-visible,
.faq-q:focus-visible,
.nav-primary a:focus-visible,
.nav-more-menu a:focus-visible,
.footer-base a:focus-visible,
.footer-grid a:focus-visible {
  outline: 3px solid var(--focus-stroke);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--focus-ring);
}

.nav-primary a:focus-visible,
.nav-more-toggle:focus-visible,
.lang-switch-toggle:focus-visible,
.lang-switch-menu button:focus-visible,
.faq-q:focus-visible,
.nav-more-menu a:focus-visible {
  border-radius: 12px;
  background: var(--focus-fill);
}

.btn:focus-visible,
.menu-toggle:focus-visible {
  box-shadow: 0 0 0 6px var(--focus-ring), 0 0 0 1px var(--focus-ring-strong);
}

.lang-switch-menu button:focus-visible,
.nav-primary a:focus-visible,
.nav-more-menu a:focus-visible,
.faq-q:focus-visible {
  color: var(--brown);
}

.lang-switch-menu[hidden],
.nav-more-menu[hidden],
.faq-a[hidden] {
  display: none !important;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  background: var(--header-bg-strong);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.header-inner > * { min-width: 0; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--brown);
}
.site-header .brand {
  min-width: 0;
  max-width: 100%;
  flex-shrink: 0;
}
.site-header .brand span:last-child {
  min-width: 0;
  overflow: visible;
  text-overflow: clip;
  white-space: nowrap;
}
.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
}

.brand-logo {
  border-radius: 0;
  background: transparent;
}

.nav-primary {
  display: flex;
  gap: 6px;
  align-items: center;
  min-width: 0;
}
.nav-primary a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--brown-soft);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 160ms var(--ease), background 160ms var(--ease);
  font-weight: 450;
  line-height: 1.25;
  text-align: center;
}
.nav-primary a:hover { color: var(--brown); background: rgba(185, 155, 123, 0.12); }
.nav-primary a.active { color: var(--brown); font-weight: 500; }

.nav-more {
  position: relative;
}
.nav-more-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--brown-soft);
  padding: 8px 12px;
  border-radius: 8px;
}
.nav-more-toggle:hover { color: var(--brown); background: rgba(185, 155, 123, 0.12); }
.nav-more-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  display: none;
  flex-direction: column;
  gap: 2px;
}
.nav-more.open .nav-more-menu { display: flex; }
.nav-more-menu a {
  font-size: 14px;
  color: var(--brown-soft);
  padding: 10px 12px;
  border-radius: 8px;
}
.nav-more-menu a:hover { background: var(--ivory); color: var(--brown); }

.header-cta { display: flex; align-items: center; gap: 10px; min-width: 0; }
.header-cta .btn { max-width: 100%; }

.menu-toggle { display: none; }

/* ---------- Hero ---------- */

.hero {
  padding-top: 88px;
  padding-bottom: 140px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -10%; right: -8%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(201, 130, 91, 0.10), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-headline {
  font-size: clamp(44px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  margin: 0 0 26px;
  font-weight: 400;
}
.hero-headline em {
  font-style: italic;
  color: var(--clay-deep);
  font-feature-settings: "ss01";
}
.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--brown-soft);
  max-width: 540px;
  margin: 0 0 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-meta {
  margin-top: 32px;
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--brown-soft);
}
.hero-meta-item { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta-item svg { width: 16px; height: 16px; color: var(--olive); }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.hero-room {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #E8D5BD 0%, #D9C0A1 100%);
  box-shadow: var(--shadow-md);
}
/* Illustrated warm room placeholder */
.hero-room-svg { width: 100%; height: 100%; display: block; }

.float-card,
.hero-tag-pill {
  display: none !important;
}

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  padding: 14px 16px;
  box-shadow: var(--shadow-float);
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: 280px;
  opacity: 0;
  transform: translateY(14px);
  animation: floatIn 700ms var(--ease) forwards;
}
@keyframes floatIn { to { opacity: 1; transform: translateY(0); } }
@keyframes bobble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.float-card.bob { animation: floatIn 700ms var(--ease) forwards; }

.float-card .fc-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--ivory);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-card .fc-icon svg { width: 18px; height: 18px; color: var(--olive-deep); }
.float-card.is-clay .fc-icon { background: rgba(201, 130, 91, 0.12); }
.float-card.is-clay .fc-icon svg { color: var(--clay-deep); }
.float-card.is-brown .fc-icon { background: rgba(43, 33, 24, 0.08); }
.float-card.is-brown .fc-icon svg { color: var(--brown); }

.float-card .fc-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.float-card .fc-label { font-size: 11px; color: var(--taupe-dark); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.float-card .fc-title { font-size: 14px; color: var(--brown); font-weight: 500; letter-spacing: -0.01em; }
.float-card .fc-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--olive);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  flex-shrink: 0;
}
.float-card .fc-check svg { width: 12px; height: 12px; }

/* Hero floating card positions */
.fc-1 { top: 6%; left: -8%; animation-delay: 100ms; }
.fc-2 { top: 30%; right: -10%; animation-delay: 280ms; }
.fc-3 { top: 58%; left: -12%; animation-delay: 460ms; }
.fc-4 { bottom: 6%; right: -6%; animation-delay: 640ms; }

.hero-tag-pill {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brown);
  color: var(--ivory);
  font-size: 12px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  animation: floatIn 700ms var(--ease) 900ms forwards;
}
.hero-tag-pill .dot { width: 6px; height: 6px; background: var(--clay); border-radius: 50%; }

/* ---------- Cards ---------- */

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 200ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.card:hover {
  border-color: var(--taupe);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--ivory);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 22px; height: 22px; color: var(--brown); }
.card-icon.olive { background: rgba(126, 138, 106, 0.14); }
.card-icon.olive svg { color: var(--olive-deep); }
.card-icon.clay { background: rgba(201, 130, 91, 0.14); }
.card-icon.clay svg { color: var(--clay-deep); }
.card h3 { margin-bottom: 10px; }
.card p { margin: 0; color: var(--brown-soft); font-size: 15px; line-height: 1.6; }

/* ---------- Problems ---------- */

.problems-band {
  background: linear-gradient(180deg, var(--ivory), var(--beige-soft));
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 200ms var(--ease), transform 220ms var(--ease);
}
.problem-card:hover { border-color: var(--clay); transform: translateY(-2px); }
.problem-card .quote-mark {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.4;
  color: var(--clay);
  margin-top: 18px;
  height: 24px;
  font-weight: 400;
}
.problem-card p {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.35;
  color: var(--brown);
  font-style: italic;
  margin: 0;
  letter-spacing: -0.01em;
}
.problem-card .ctx {
  font-size: 13px;
  color: var(--taupe-dark);
  font-style: normal;
  font-family: var(--font-sans);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Problems — split layout + animated stream ---------- */

.problems-split {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 64px;
  align-items: center;
}
.problems-left {
  position: sticky;
  top: 120px;
  align-self: start;
}
.problems-left .lede { margin-top: 18px; }

.prob-stream {
  position: relative;
  height: 600px;
  overflow: hidden;
  /* soft fade at top & bottom */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
}
.prob-track {
  display: flex;
  flex-direction: column;
  gap: 22px;
  /* start shifted up by one full set, then drift down into place — seamless loop */
  animation: probDrift 60s linear infinite;
}
.prob-stream:hover .prob-track { animation-play-state: paused; }

@keyframes probDrift {
  0%   { transform: translateY(-50%); }
  100% { transform: translateY(0%); }
}

.stream-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 78%;
  flex-shrink: 0;
}
/* organic horizontal offsets so the column doesn't feel like a rigid list */
.stream-card:nth-child(7n+1) { margin-left: 0; align-self: flex-start; }
.stream-card:nth-child(7n+2) { margin-left: 14%; }
.stream-card:nth-child(7n+3) { margin-left: 6%; }
.stream-card:nth-child(7n+4) { margin-left: 20%; }
.stream-card:nth-child(7n+5) { margin-left: 2%; }
.stream-card:nth-child(7n+6) { margin-left: 16%; }
.stream-card:nth-child(7n+7) { margin-left: 9%; }

.stream-card .quote-mark {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 0.3;
  color: var(--clay);
  height: 18px;
  font-weight: 400;
}
.stream-card p {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.35;
  color: var(--brown);
  font-style: italic;
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.stream-card .ctx {
  font-size: 12.5px;
  color: var(--taupe-dark);
  font-family: var(--font-sans);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.01em;
}
.stream-card .ctx svg { width: 14px; height: 14px; color: var(--taupe); flex-shrink: 0; }

.stream-card.is-cta {
  background: var(--brown);
  border-color: var(--brown);
  box-shadow: var(--shadow-md);
}
.stream-card.is-cta .quote-mark { color: var(--taupe); }
.stream-card.is-cta p { color: var(--ivory); font-style: normal; font-size: 18px; line-height: 1.45; }
.stream-card.is-cta .ctx { color: var(--taupe); }
.stream-card.is-cta .ctx svg { color: var(--taupe); }

@media (prefers-reduced-motion: reduce) {
  .prob-track { animation: none; transform: translateY(-50%); }
}

@media (max-width: 960px) {
  .problems-split { grid-template-columns: 1fr; gap: 40px; }
  .problems-left { position: static; }
  .prob-stream { height: 480px; }
  .stream-card { width: 92%; }
  .stream-card:nth-child(n) { margin-left: 0; }
}

/* ---------- What Handover Does — Comparison ---------- */

.explain-band {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bold-statement {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  margin: 0 0 28px;
  max-width: 920px;
}
.bold-statement em { font-style: italic; color: var(--clay-deep); }
.explain-intro p { color: var(--brown-soft); font-size: 17px; line-height: 1.65; max-width: 740px; margin: 0; }

.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 36px;
  margin-top: 64px;
  align-items: stretch;
}
.compare-col {
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.compare-col.without { background: #FAF4EC; }
.compare-col.with {
  background: var(--brown);
  color: var(--ivory);
  border-color: var(--brown);
}
.compare-col h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: var(--taupe-dark);
  margin-bottom: 12px;
}
.compare-col.with h4 { color: var(--taupe); }
.compare-col h3 { margin-bottom: 24px; }
.compare-col.with h3 { color: var(--ivory); }
.compare-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.compare-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.55;
}
.compare-list li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.compare-col.without .compare-list li svg { color: var(--clay-deep); }
.compare-col.with .compare-list li svg { color: var(--olive); }
.compare-col.with .compare-list li { color: var(--beige-soft); }

.compare-vs {
  align-self: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--taupe-dark);
  box-shadow: var(--shadow-sm);
}

/* ---------- Services ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 200ms var(--ease), transform 220ms var(--ease);
  min-height: 280px;
}
.service-card:hover { border-color: var(--taupe); transform: translateY(-2px); }
.service-card .num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--taupe-dark);
  font-style: italic;
  letter-spacing: 0.04em;
}
.service-card h3 {
  font-size: 24px;
  line-height: 1.15;
}
.service-card p { color: var(--brown-soft); font-size: 14.5px; line-height: 1.6; margin: 0; }
.service-card .svc-icon {
  position: absolute;
  top: 28px; right: 28px;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--ivory);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
}
.service-card .svc-icon svg { width: 20px; height: 20px; }

/* ---------- How it works ---------- */

.howitworks-band { background: var(--beige-soft); }
.steps {
  margin-top: 64px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--taupe) 0 6px, transparent 6px 14px);
  z-index: 0;
}
.step { position: relative; z-index: 1; }
.step-bubble {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--brown);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.step h4 {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.step p { font-size: 14.5px; color: var(--brown-soft); line-height: 1.6; margin: 0; }

/* ---------- Why choose Handover ---------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 200ms var(--ease), transform 220ms var(--ease);
}
.why-card:hover { border-color: var(--olive); transform: translateY(-2px); }
.why-card .why-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(126, 138, 106, 0.14);
  color: var(--olive-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.why-card .why-icon svg { width: 20px; height: 20px; }
.why-card .why-title { font-family: var(--font-display); font-size: 18px; line-height: 1.25; color: var(--brown); letter-spacing: -0.01em; }

.why-pullquote {
  margin: 80px auto 0;
  text-align: center;
  max-width: 820px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: var(--brown);
}
.why-pullquote em { font-style: italic; color: var(--clay-deep); }

/* ---------- Pricing ---------- */

.tiers-band {
  background:
    radial-gradient(circle at top center, rgba(201, 130, 91, 0.12), transparent 52%),
    linear-gradient(180deg, rgba(248, 243, 236, 0.98), rgba(241, 230, 213, 0.82));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tiers-head {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.tiers-head h2 {
  margin-top: 10px;
}
.tiers-head .lede {
  max-width: 760px;
  margin: 18px auto 0;
}
.tiers-main {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 52px;
  align-items: stretch;
}
.tier-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: none;
}
.tier-card-featured {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--ivory);
  transform: translateY(-2px);
}
.tier-card-focus {
  position: relative;
  padding-top: 34px;
  box-shadow: var(--shadow-md);
}
.tier-card-featured h3,
.tier-card-featured .tier-subhead,
.tier-card-featured .tier-price,
.tier-card-featured .tier-list li,
.tier-card-featured .tier-note,
.tier-card-featured .tier-bestfor {
  color: var(--ivory);
}
.tier-kicker {
  position: absolute;
  top: -14px;
  right: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--clay);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tier-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tier-card h3 {
  margin: 0;
  text-align: left;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.14;
  letter-spacing: -0.02em;
}
.tier-label {
  display: inline-flex;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe-dark);
}
.tier-card-featured .tier-label {
  color: rgba(241, 230, 213, 0.72);
}
.tier-subhead {
  margin: 0;
  text-align: left;
  color: var(--brown-soft);
  font-size: 14px;
  line-height: 1.55;
}
.tier-price {
  margin: 8px 0 0;
  text-align: left;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--brown);
}
.tier-list {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.tier-card-featured .tier-list {
  border-top-color: rgba(255, 255, 255, 0.12);
}
.tier-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  font-size: 14px;
  line-height: 1.45;
  color: var(--brown);
}
.tier-check {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--olive-deep);
  font-size: 15px;
  font-weight: 600;
}
.tier-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.tier-card-featured .tier-foot {
  border-top-color: rgba(255, 255, 255, 0.12);
}
.tier-note {
  margin: 0;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--brown);
}
.tier-bestfor {
  margin: 0;
  text-align: left;
  color: var(--brown-soft);
  font-size: 13px;
  line-height: 1.55;
}
.bestfor-label {
  display: inline;
  margin-bottom: 0;
  color: var(--clay-deep);
  font-weight: 700;
  font-size: 13px;
}
.addons-toggle {
  min-width: 220px;
}
.tier-card-featured .tier-cta {
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.22);
}
.addons-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
  padding: 0 4px;
}
.addons-bar .eyebrow {
  margin-bottom: 8px;
}
.addons-bar-text {
  margin: 0;
  font-size: 14px;
  color: var(--brown-soft);
}
.addons-bar-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.addons-drawer {
  margin-top: 18px;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 236, 0.98));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.addons-drawer-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}
.addons-drawer-head h3 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3vw, 36px);
}
.addons-close {
  border: 1px solid var(--border);
  background: var(--surface-raised);
  color: var(--brown);
  border-radius: var(--radius-pill);
  padding: 12px 18px;
  min-height: 44px;
  font: inherit;
  cursor: pointer;
}
.addons-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
  margin-top: 28px;
}
.addon-row {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid var(--border-soft);
}
.addon-bullet {
  width: 14px;
  height: 14px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--clay);
}
.addon-copy,
.addon-price {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--brown);
}
.addon-price {
  font-weight: 700;
  white-space: nowrap;
}

/* ---------- Proof / case studies ---------- */

.proof-band { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-metrics {
  display: none;
}
.proof-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 32px;
  margin-top: 56px;
}
.proof-note {
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.proof-note-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  font-weight: 600;
}
.proof-note p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--brown);
}
.metric {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  text-align: left;
}
.metric .num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  color: var(--brown);
  letter-spacing: -0.03em;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 4px;
  min-width: 78px;
}
.metric .num small {
  font-size: 0.4em;
  color: var(--clay);
  margin-top: 0.2em;
  font-style: italic;
}
.metric .label { font-size: 15px; color: var(--brown-soft); line-height: 1.45; max-width: 24ch; }

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.case-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms var(--ease), transform 220ms var(--ease);
}
.case-card:hover { border-color: var(--taupe); transform: translateY(-2px); }
.case-thumb {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}
.case-thumb svg { width: 100%; height: 100%; display: block; }
.case-meta { padding: 22px 24px 24px; }
.case-meta .tag { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--taupe-dark); font-weight: 500; }
.case-meta h4 { font-family: var(--font-display); font-size: 20px; line-height: 1.25; margin: 8px 0 10px; letter-spacing: -0.01em; }
.case-meta p { font-size: 14px; color: var(--brown-soft); margin: 0; line-height: 1.55; }

/* ---------- Testimonials ---------- */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial p {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.35;
  color: var(--brown);
  font-style: italic;
  margin: 0;
  letter-spacing: -0.013em;
}
.testimonial .who {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--brown);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 17px;
}
.testimonial .meta { display: flex; flex-direction: column; gap: 2px; font-size: 13px; }
.testimonial .meta .name { font-weight: 500; color: var(--brown); font-family: var(--font-sans); }
.testimonial .meta .ctx { color: var(--taupe-dark); }

/* ---------- Common Problems Teaser ---------- */

.commonprob-band {
  background: linear-gradient(180deg, var(--beige-soft), var(--ivory));
}
.cp-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--border);
}
.cp-row {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 18px;
  align-items: center;
}
.cp-row:nth-child(odd) { padding-right: 32px; border-right: 1px solid var(--border); }
.cp-row:nth-child(even) { padding-left: 32px; }
.cp-row .num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--taupe-dark);
  font-size: 18px;
}
.cp-row .text { font-size: 16px; color: var(--brown); font-family: var(--font-display); letter-spacing: -0.01em; }
.cp-row .arr { color: var(--taupe); }
.cp-row .arr svg { width: 18px; height: 18px; }

/* ---------- FAQ ---------- */

.faq-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  text-align: left;
  padding: 28px 8px 28px 0;
  background: transparent;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--brown);
  letter-spacing: -0.012em;
  gap: 24px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.faq-q .icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  transition: transform 240ms var(--ease), background 240ms var(--ease);
}
.faq-q .icon svg { width: 16px; height: 16px; color: var(--brown); transition: transform 240ms var(--ease); }
.faq-item.open .faq-q .icon { background: var(--brown); }
.faq-item.open .faq-q .icon svg { color: var(--ivory); transform: rotate(45deg); }
.faq-a { overflow: hidden; }
.faq-a-inner {
  padding: 0 0 28px;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--brown-soft);
}

/* ---------- Closing CTA ---------- */

.cta-band {
  padding: 120px 0;
}
.cta-card {
  background: linear-gradient(160deg, #F4E3CB 0%, #E9D2B3 100%);
  border-radius: 28px;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.cta-card::before {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 130, 91, 0.22), transparent 70%);
}
.cta-card h2 { font-size: clamp(36px, 4vw, 56px); line-height: 1.05; margin-bottom: 18px; }
.cta-card h2 em { font-style: italic; color: var(--clay-deep); }
.cta-card p { font-size: 17px; line-height: 1.6; color: var(--brown-soft); max-width: 480px; margin: 0 0 32px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.cta-illu { position: relative; }

.cta-side {
  background: rgba(248, 243, 236, 0.88);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.cta-side .row { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px dashed rgba(43, 33, 24, 0.12); font-size: 14px; }
.cta-side .row:last-child { border-bottom: none; }
.cta-side .row svg { width: 18px; height: 18px; color: var(--olive-deep); flex-shrink: 0; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--brown);
  color: var(--beige-soft);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-grid .brand { color: var(--ivory); }
.footer-grid .brand-mark { filter: none; }
.footer-grid h5 {
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--taupe);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-grid ul a { font-size: 14px; color: rgba(241, 230, 213, 0.7); transition: color 160ms var(--ease); }
.footer-grid ul a:hover { color: var(--ivory); }
.footer-blurb { font-size: 14px; color: rgba(241, 230, 213, 0.7); line-height: 1.6; margin: 18px 0 24px; max-width: 320px; }
.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 13px;
  color: rgba(241, 230, 213, 0.55);
}
.footer-base .legal { display: flex; gap: 24px; }
.footer-note { font-size: 12px; color: rgba(241, 230, 213, 0.5); margin: 18px 0 0; line-height: 1.6; }

/* ---------- Section header common ---------- */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.section-head .right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
[data-reveal-stagger].in > * { opacity: 1; transform: translateY(0); }
[data-reveal-stagger].in > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal-stagger].in > *:nth-child(2) { transition-delay: 80ms; }
[data-reveal-stagger].in > *:nth-child(3) { transition-delay: 160ms; }
[data-reveal-stagger].in > *:nth-child(4) { transition-delay: 240ms; }
[data-reveal-stagger].in > *:nth-child(5) { transition-delay: 320ms; }
[data-reveal-stagger].in > *:nth-child(6) { transition-delay: 400ms; }
[data-reveal-stagger].in > *:nth-child(7) { transition-delay: 480ms; }
[data-reveal-stagger].in > *:nth-child(8) { transition-delay: 560ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal], [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; }
}

/* ---------- Language switcher ---------- */

.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lang-switch-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1px solid var(--border);
  color: var(--brown-soft);
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: 450;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease);
}
.lang-switch-toggle:hover {
  color: var(--brown);
  border-color: var(--taupe);
  background: rgba(255, 255, 255, 0.55);
}
.lang-switch-toggle svg {
  color: var(--taupe-dark);
  transition: transform 240ms var(--ease), color 160ms var(--ease);
}
.lang-switch-toggle:hover svg { color: var(--brown); }
.lang-switch-toggle .chev { width: 11px; height: 11px; }
.lang-switch.open .lang-switch-toggle .chev { transform: rotate(180deg); }
.lang-switch-toggle [data-lang-current] {
  font-weight: 500;
  color: var(--brown);
  min-width: 22px;
  text-align: center;
}

.lang-switch-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-md);
  z-index: 60;
  animation: lsFadeIn 180ms var(--ease);
}
@keyframes lsFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lang-switch.open .lang-switch-menu { display: flex; }

.lang-switch-menu button {
  text-align: left;
  min-height: 44px;
  padding: 11px 14px;
  font-size: 14px;
  background: transparent;
  border: none;
  border-radius: 9px;
  color: var(--brown-soft);
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background 140ms var(--ease), color 140ms var(--ease);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  letter-spacing: -0.005em;
}
.lang-switch-menu button:hover {
  background: var(--ivory);
  color: var(--brown);
}
.lang-switch-menu button.active,
.lang-switch-menu button[aria-checked="true"] {
  background: var(--brown);
  color: var(--ivory);
  font-weight: 500;
}
.lang-switch-menu button.active::after,
.lang-switch-menu button[aria-checked="true"]::after {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--clay);
  border-radius: 50%;
  display: inline-block;
}

/* ---------- Chinese / CJK font fallback ---------- */
[data-lang="zh"] {
  --font-display: "Fraunces", "Noto Serif SC", "Source Han Serif SC", "Songti SC", "STSong", serif;
  --font-sans: "Inter", "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
}
/* Chinese has no italic tradition — keep emphasis as color/weight, not slant */
[data-lang="zh"] em {
  font-style: normal;
  font-weight: 500;
}
[data-lang="zh"] .problem-card p,
[data-lang="zh"] .testimonial p,
[data-lang="zh"] .hw-msg .text {
  font-style: normal;
}
/* BM — small letter-spacing tweak for readability with longer words */
[data-lang="ms"] h1, [data-lang="ms"] h2 { letter-spacing: -0.022em; }

/* ---------- Sub-page hero ---------- */
.subhero {
  padding: 88px 0 64px;
}
.subhero .crumbs {
  font-size: 13px;
  color: var(--taupe-dark);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.subhero .crumbs a { color: var(--taupe-dark); }
.subhero .crumbs a:hover { color: var(--brown); }
.subhero h1 { font-size: clamp(40px, 4.6vw, 60px); margin-bottom: 18px; max-width: 880px; }
.subhero h1 em { color: var(--clay-deep); font-style: italic; }
.subhero .lede { font-size: 18px; max-width: 700px; }

/* ---------- Mobile ---------- */
@media (max-width: 960px) {
  :root { --section-y: 72px; }
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas:
      "brand lang menu"
      "cta cta cta";
    align-items: center;
    gap: 12px 10px;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .brand {
    grid-area: brand;
    min-width: 0;
    font-size: 20px;
  }
  .site-header .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .lang-switch {
    grid-area: lang;
    justify-self: end;
  }
  .header-cta {
    grid-area: cta;
    width: 100%;
    justify-self: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .header-cta .btn-wa {
    width: min(100%, 280px);
    min-height: 44px;
    justify-content: center;
  }
  .nav-primary { grid-area: nav; }
  .nav-primary, .nav-more { display: none; }
  .menu-toggle {
    display: inline-flex;
    grid-area: menu;
    justify-self: end;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0 14px;
  }
  .site-header.nav-open .header-inner {
    grid-template-areas:
      "brand lang menu"
      "cta cta cta"
      "nav nav nav";
  }
  .site-header.nav-open .nav-primary {
    display: grid;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    min-width: 0;
  }
  .site-header.nav-open .nav-primary a,
  .site-header.nav-open .nav-more-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--surface-raised);
    color: var(--brown);
    text-align: center;
  }
  .site-header.nav-open .nav-more {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .site-header.nav-open .nav-more-toggle { display: none; }
  .site-header.nav-open .nav-more-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right {
    display: flex;
    justify-content: center;
    padding-inline: 18px;
  }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .problems-grid, .services-grid, .why-grid, .case-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .compare-vs { transform: rotate(90deg); margin: 0 auto; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }
  .proof-metrics { grid-template-columns: 1fr 1fr; }
  .proof-notes { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; padding: 48px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-base { flex-direction: column; gap: 12px; align-items: flex-start; }
  .cp-list { grid-template-columns: 1fr; }
  .cp-row:nth-child(odd) { border-right: none; padding-right: 0; }
  .cp-row:nth-child(even) { padding-left: 0; }
  .hero-headline { font-size: clamp(36px, 8vw, 48px); }
  .header-cta .btn:not(.btn-wa) { display: none; }
  .tiers-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .addons-drawer {
    width: 100%;
    margin-top: 18px;
  }
  .addons-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .addons-list { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .header-inner {
    gap: 10px 8px;
  }

  .brand {
    gap: 8px;
    font-size: 18px;
  }

  .lang-switch-toggle {
    min-height: 44px;
    padding: 0 10px;
    font-size: 12px;
    gap: 6px;
  }

  .header-cta .btn-wa {
    width: 100%;
    padding: 10px 16px;
    font-size: 14px;
  }

  .why-grid,
  .proof-metrics,
  .footer-grid { grid-template-columns: 1fr; }
  .tiers-main { grid-template-columns: 1fr; }

  .metric {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .metric .num { min-width: 0; }

  .hero-right {
    padding-inline: 22px;
  }

  .hero-visual {
    width: min(100%, 360px);
    transform: scale(0.86);
    transform-origin: center top;
    margin-bottom: -48px;
  }
  .proof-note p {
    font-size: 21px;
  }
  .tier-card,
  .addons-drawer {
    border-radius: 18px;
  }
  .tier-card-focus {
    transform: none;
  }
  .addons-drawer-head {
    flex-direction: column;
  }
  .addons-close,
  .addons-toggle {
    width: 100%;
    justify-content: center;
  }
  .tier-kicker {
    position: static;
    margin: 0 0 2px;
  }
}

@media (max-width: 420px) {
  :root { --gutter: 16px; }
  .header-inner { gap: 8px 6px; }

  .brand {
    font-size: 17px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .menu-toggle {
    padding: 0 12px;
  }

  .lang-switch-toggle {
    padding: 0 9px;
  }

  .hero-right {
    padding-inline: 18px;
  }

  .hero-visual {
    width: min(100%, 332px);
    transform: scale(0.8);
    margin-bottom: -72px;
  }
  .case-meta,
  .testimonial,
  .service-card,
  .cta-card {
    padding-left: 22px;
    padding-right: 22px;
  }
  .proof-note-kicker {
    font-size: 10px;
  }
  .proof-note p {
    font-size: 19px;
  }
  .tier-card,
  .addons-drawer {
    padding-left: 22px;
    padding-right: 22px;
  }
  .tier-card h3 {
    font-size: 28px;
  }
  .tier-subhead,
  .tier-bestfor,
  .tier-list li,
  .addon-copy,
  .addon-price,
  .addons-bar-text {
    font-size: 13px;
  }
  .tier-price {
    font-size: 28px;
  }
  .addon-row {
    grid-template-columns: 14px minmax(0, 1fr);
  }
  .addon-price {
    grid-column: 2;
  }
}
