/* =============================================================
   Kiwi Data Recovery - homepage stylesheet
   Methodology: BEM (block__element--modifier)
   Fonts: Poppins (Google Fonts, loaded in <head>)
   ============================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* colour */
  --c-primary: #00a05a;
  --c-primary-2: #0cc96b;
  --c-primary-dark: #007a44;
  --c-primary-tint: #e8f7f0;
  --c-ink: #101828;
  --c-body: #535862;
  --c-muted: #8a919e;
  --c-surface: #fafafa;
  --c-line: #ececec;
  --c-dark: #0b0f0d;
  --c-white: #ffffff;
  --c-amber: #b45309;
  --c-amber-tint: #fdf4e7;
  --c-amber-line: #f3dcbc;
  --c-whatsapp: #25d366;
  --c-whatsapp-dark: #1ebe5b;

  /* type */
  --font-sans: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --fs-h1: clamp(1.75rem, 1.1rem + 2.6vw, 2.9rem);
  --fs-h2: clamp(1.45rem, 1.05rem + 1.6vw, 2.2rem);
  --fs-h3: 1.125rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;

  /* shape + depth */
  --radius: 15px;
  --radius-pill: 99px;
  --shadow-card: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  --shadow-soft: 0 8px 30px rgba(16, 24, 40, 0.08);
  --gradient-brand: linear-gradient(146deg, var(--c-primary) 35%, var(--c-primary-2) 100%);

  /* layout */
  --container: 1350px;
  --gutter: 20px;
  --header-h: 80px;
}

/* ---------- 2. Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--c-body);
  background-color: var(--c-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  color: var(--c-ink);
  font-weight: 500;
  line-height: 1.25;
}

p { margin: 0 0 1em; }

ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: var(--c-primary-dark); text-decoration: none; }
a:hover { color: var(--c-ink); }

/* Pages still to be built keep their markup and styling but carry no href -
   the intended target sits in data-page. Add href when the page goes live. */
a:not([href]) { cursor: default; }
a:not([href]):hover { transform: none; }
:where(p, li, .case-card__body, .faq__answer, .closer__note) a:not([href]):not(.button) {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--c-ink);
  color: var(--c-white);
  border-radius: 0 0 8px 8px;
}
.skip-link:focus { top: 0; color: var(--c-white); }

/* ---------- 3. Buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: background-position 0.4s ease, background-color 0.2s ease,
              color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }

.button__icon { width: 18px; height: 18px; flex: none; }

.button--primary {
  background-color: var(--c-primary);
  color: var(--c-white);
}
.button--primary:hover { background-color: var(--c-primary-dark); color: var(--c-white); }

.button--gradient {
  background-image: var(--gradient-brand);
  background-size: 200% auto;
  color: var(--c-white);
}
.button--gradient:hover { background-position: right center; color: var(--c-white); }

.button--white {
  background-color: var(--c-white);
  color: var(--c-ink);
}
.button--white:hover { background-color: var(--c-surface); color: var(--c-ink); }

.button--dark {
  background-color: var(--c-ink);
  color: var(--c-white);
}
.button--dark:hover { background-color: var(--c-dark); color: var(--c-white); }

.button--ghost {
  background-color: rgba(255, 255, 255, 0.14);
  color: var(--c-white);
  box-shadow: 0 6px 17px rgba(0, 0, 0, 0.08);
}
.button--ghost:hover { background-color: rgba(255, 255, 255, 0.24); color: var(--c-white); }

.button--outline {
  border-color: var(--c-primary);
  color: var(--c-primary-dark);
  background: transparent;
}
.button--outline:hover { background-color: var(--c-primary); color: var(--c-white); }

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--c-white);
  background: transparent;
}
.button--outline-light:hover { background-color: var(--c-white); color: var(--c-ink); }

.button--link,
.button--link-light {
  padding: 12px 4px;
  background: transparent;
}
.button--link { color: var(--c-primary-dark); }
.button--link:hover { color: var(--c-ink); }
.button--link-light { color: var(--c-white); }
.button--link-light:hover { color: rgba(255, 255, 255, 0.8); }

.button--whatsapp {
  background-color: var(--c-whatsapp);
  color: #06301a;
}
.button--whatsapp:hover { background-color: var(--c-whatsapp-dark); color: #06301a; }

.button--large { padding: 15px 32px; font-size: 1rem; }
.button--small { padding: 9px 18px; font-size: 0.85rem; }
.button--small .button__icon { width: 15px; height: 15px; }
.button--block { width: 100%; }

/* ---------- 4. Logo ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
}
.logo:hover { color: inherit; }

.logo__mark {
  width: 34px;
  height: 34px;
  color: var(--c-primary);
}
.logo__mark svg { width: 100%; height: 100%; }

.logo__text {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: inherit;
  white-space: nowrap;
}
.logo__text strong { font-weight: 600; color: var(--c-primary); }

/* ---------- 5. Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--c-white);
  background-color: transparent;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.header--solid {
  color: var(--c-ink);
  background-color: var(--c-white);
  box-shadow: 0 2px 14px rgba(16, 24, 40, 0.08);
}

.header__inner {
  position: relative; /* anchors the container-width mega menu */
  display: flex;
  align-items: center;
  gap: 28px;
  height: var(--header-h);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.header--solid .button--ghost {
  background-color: var(--c-primary-tint);
  color: var(--c-primary-dark);
  box-shadow: none;
}
.header--solid .button--ghost:hover { background-color: #d8f0e4; }

.header__burger { display: none; }

/* ---------- 6. Nav + dropdown ---------- */
.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__item { position: static; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  color: inherit;
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
  border-radius: 8px;
}
.nav__link:hover { color: var(--c-primary-2); }
.header--solid .nav__link:hover { color: var(--c-primary-dark); }

.nav__caret { width: 11px; height: 8px; opacity: 0.7; }

/* mega menu, anchored to .header__inner; width follows the live service count */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  width: min(880px, calc(100vw - 40px));
  transform: translateY(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

/* hover bridge across the sliver between link and menu */
.nav__dropdown::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
}

.nav__item--has-dropdown:hover .nav__dropdown,
.nav__item--has-dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown {
  display: flex;
  background: var(--c-white);
  color: var(--c-body);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(16, 24, 40, 0.18);
  overflow: hidden;
}

.dropdown__grid {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  align-content: center;
  gap: 2px;
  padding: 18px;
}

.dropdown__link {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  transition: background-color 0.15s ease;
}
.dropdown__link:hover { background-color: var(--c-primary-tint); }

.dropdown__title {
  display: block;
  font-weight: 500;
  color: var(--c-ink);
  font-size: 0.95rem;
}
.dropdown__desc {
  display: block;
  font-size: 0.82rem;
  color: var(--c-muted);
}

.dropdown__aside {
  flex: 0 0 226px;
  padding: 22px 20px;
  background-image: var(--gradient-brand);
  color: var(--c-white);
}
.dropdown__aside-title {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 10px;
}
.dropdown__aside-text {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}
.dropdown__aside-link { color: var(--c-white); font-weight: 500; font-size: 0.9rem; }
.dropdown__aside-link:hover { color: rgba(255, 255, 255, 0.85); }

/* ---------- 7. Burger + mobile menu ---------- */
.burger {
  display: none; /* shown ≤900px via .header__burger */
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.burger__line {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.burger--open .burger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger--open .burger__line:nth-child(2) { opacity: 0; }
.burger--open .burger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 90;
  background: var(--c-white);
  overflow-y: auto;
  padding: 24px var(--gutter) 48px;
}

.mobile-menu__label {
  margin: 22px 0 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.mobile-menu__label:first-child { margin-top: 0; }

.mobile-menu__list { border-top: 1px solid var(--c-line); }

.mobile-menu__link {
  display: block;
  padding: 12px 2px;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-ink);
  font-weight: 500;
}
.mobile-menu__link:hover { color: var(--c-primary-dark); }

.mobile-menu .button { margin-top: 14px; }

/* ---------- 8. Media placeholders (swap for real photos) ---------- */
.media-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 120px;
  background:
    linear-gradient(135deg, rgba(0, 160, 90, 0.07), rgba(0, 160, 90, 0.02)),
    repeating-linear-gradient(45deg, #f2f4f3 0 14px, #eceeed 14px 28px);
  border: 1px dashed #c8d2cc;
  border-radius: var(--radius);
  overflow: hidden;
}

.media-placeholder__label {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  color: #5d6b63;
  text-align: center;
}

.media-placeholder--dark {
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(0, 160, 90, 0.28), transparent 55%),
    radial-gradient(100% 80% at 85% 90%, rgba(12, 201, 107, 0.16), transparent 60%),
    #0b0f0d;
  border: 0;
  border-radius: 0;
}
.media-placeholder--dark .media-placeholder__label {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
}

/* keep the hero's placeholder label clear of the headline */
.hero__media .media-placeholder__label {
  position: absolute;
  top: calc(var(--header-h) + 28px);
  right: 28px;
}

/* ---------- 9. Sections + titles ---------- */
.section { padding-block: 70px; }
.section--grey { background-color: var(--c-surface); }
.section--flush-top { padding-top: 0; }

.section-title {
  font-size: var(--fs-h2);
  letter-spacing: -0.01em;
}
.section-title__accent { color: var(--c-primary); }
.section-title--light { color: var(--c-white); }

.section-lead {
  max-width: 720px;
  font-size: 1.05rem;
}

.section-header { margin-bottom: 36px; }
.section-footer { margin-top: 36px; text-align: center; }

/* ---------- 10. Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 90vh;
  padding-top: calc(var(--header-h) + 40px);
  color: var(--c-white);
  background-color: var(--c-dark);
}

.hero__bg { position: absolute; inset: 0; }
.hero__media { position: absolute; inset: 0; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 40%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: 56px;
  max-width: min(var(--container), 100%);
}

/* two-column hero: message left, booking form right */
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.hero__body { min-width: 0; }

.hero__eyebrow {
  margin-bottom: 14px;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: #c3c3c3;
}

.hero__title {
  margin-bottom: 18px;
  color: var(--c-white);
  font-size: var(--fs-h1);
  font-weight: 500;
}

.hero__lead {
  margin-bottom: 28px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Inner-page hero variant + breadcrumbs */
.hero--inner {
  min-height: 0;
  align-items: flex-start;
}
.hero--inner .hero__content {
  padding-top: 24px;
  padding-bottom: 56px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}
.breadcrumbs__link { color: rgba(255, 255, 255, 0.85); }
.breadcrumbs__link:hover { color: var(--c-white); }
.breadcrumbs__separator { opacity: 0.5; }
.breadcrumbs__current { color: rgba(255, 255, 255, 0.65); }

/* ---------- 11. Ticker ---------- */
.ticker {
  overflow: hidden;
  padding-block: 18px;
  background-color: var(--c-dark);
  color: var(--c-white);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 36s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }

.ticker__group {
  display: flex;
  align-items: center;
  flex: none;
}

.ticker__item {
  position: relative;
  padding-inline: 44px;
  font-size: 1.05rem;
  font-weight: 500;
  white-space: nowrap;
}
.ticker__item::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-primary);
  transform: translateY(-50%);
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- 12. Advisory callout ---------- */
.advisory {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 40px;
  padding: 26px 30px;
  background-color: var(--c-amber-tint);
  border: 1px solid var(--c-amber-line);
  border-radius: var(--radius);
}

.advisory__icon {
  flex: none;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--c-amber);
  background: var(--c-white);
  border: 1px solid var(--c-amber-line);
  border-radius: 50%;
}
.advisory__icon svg { width: 24px; height: 24px; }

.advisory__title {
  margin-bottom: 4px;
  font-size: 1.15rem;
  color: var(--c-ink);
}
.advisory__text {
  margin: 0;
  font-size: 0.95rem;
  max-width: 78ch;
}
.advisory__action { flex: none; }

/* Info variant - green-tinted honesty strip (e.g. "check these first") */
.advisory--info {
  background-color: var(--c-primary-tint);
  border-color: #cfe9dc;
  align-items: flex-start;
}
.advisory--info .advisory__icon {
  color: var(--c-primary-dark);
  border-color: #cfe9dc;
}

.advisory__list { margin-top: 10px; }
.advisory__list-item {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 0.95rem;
}
.advisory__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--c-primary-dark);
}

/* ---------- 13. Services panel ---------- */
.panel {
  padding: clamp(20px, 4vw, 48px);
  background-color: var(--c-surface);
  border-radius: var(--radius);
}

.panel__header { margin-bottom: 30px; }

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  background-color: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
/* only the cards that lead somewhere react to the pointer */
.service-card:has(.service-card__link):hover {
  border-color: #cfe9dc;
  box-shadow: var(--shadow-card);
}

.service-card__link {
  display: flex;
  gap: 14px;
  height: 100%;
  padding: 16px 18px;
  color: inherit;
}

.service-card__icon {
  flex: none;
  width: 28px;
  height: 28px;
  color: var(--c-primary);
}
.service-card__icon svg { width: 100%; height: 100%; }

.service-card__title {
  display: block;
  margin-bottom: 3px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--c-ink);
}
.service-card__link:hover .service-card__title { color: var(--c-primary-dark); }

.service-card__text {
  display: block;
  font-size: 0.88rem;
  color: var(--c-body);
}

/* Non-link variant of the service card (inner-page coverage grid) */
.service-card__static {
  display: flex;
  gap: 14px;
  height: 100%;
  padding: 16px 18px;
}
.service-card--static { box-shadow: none; }

/* CTA row inside the panel */
.panel-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding: 30px 34px;
  background-image: var(--gradient-brand);
  border-radius: var(--radius);
  color: var(--c-white);
}

.panel-cta__title {
  margin-bottom: 4px;
  color: var(--c-white);
  font-size: 1.5rem;
}
.panel-cta__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}
.panel-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

/* ---------- 14. Split layouts ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}

.split--reverse .split__content { order: 2; }
.split--reverse .split__media { order: 1; }

.split__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

/* photo collage */
.collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(150px, auto);
  gap: 15px;
}
.collage__item { min-height: 190px; }
.collage__item--tall { grid-row: span 2; min-height: 0; }
.collage--single { grid-template-columns: 1fr; }
.collage--single .collage__item { min-height: 340px; }

/* ---------- 15. Process / courier ---------- */
.process {
  position: relative;
  padding-block: 80px;
  color: var(--c-white);
  background-color: var(--c-primary);
  overflow: hidden;
}

.process__bg { position: absolute; inset: 0; }
.process__media { position: absolute; inset: 0; }
.process__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 140, 78, 0.9);
}

.process__content { position: relative; z-index: 1; }

.process__header {
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 48px;
  text-align: center;
}
.process__lead { color: rgba(255, 255, 255, 0.94); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}

.step {
  position: relative;
  text-align: center;
  padding-top: 8px;
}

/* connector line between step numbers */
.step::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: rgba(255, 255, 255, 0.55);
}
.steps__item:last-child::before { display: none; }

.step__number {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  background: var(--c-white);
  color: var(--c-ink);
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 50%;
}

.step__title {
  margin-bottom: 6px;
  color: var(--c-white);
  font-size: 1.1rem;
}
.step__text {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
}

.process__cta {
  margin-top: 40px;
  text-align: center;
}

/* stats row */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 56px 0 0;
}

.stats__item {
  padding: 8px 20px;
  text-align: center;
}
.stats__item + .stats__item { border-left: 2px solid rgba(255, 255, 255, 0.35); }

.stats__label {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
}

.stats__value {
  margin: 4px 0 0;
  font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--c-white);
}

/* ---------- 15b. Scenario groups (service pages) ---------- */
.scenarios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.scenario-group {
  padding: 30px 32px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
}

.scenario-group--dark {
  grid-column: 1 / -1;
  background:
    radial-gradient(110% 130% at 12% 0%, rgba(0, 160, 90, 0.35), transparent 55%),
    var(--c-dark);
  border: 0;
  color: rgba(255, 255, 255, 0.88);
}

.scenario-group__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.scenario-group__icon {
  flex: none;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--c-primary);
  background: var(--c-primary-tint);
  border-radius: 12px;
}
.scenario-group__icon svg { width: 24px; height: 24px; }
.scenario-group--dark .scenario-group__icon {
  color: var(--c-primary-2);
  background: rgba(255, 255, 255, 0.08);
}

.scenario-group__title { margin: 0; font-size: 1.2rem; }
.scenario-group--dark .scenario-group__title { color: var(--c-white); }

.scenario-list__item {
  position: relative;
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid var(--c-line);
  font-size: 0.93rem;
}
.scenario-list__item:last-child { border-bottom: 0; padding-bottom: 0; }
.scenario-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--c-primary);
}
.scenario-group--dark .scenario-list__item { border-color: rgba(255, 255, 255, 0.12); }
.scenario-group--dark .scenario-list__item::before { background: var(--c-primary-2); }

.scenario-list__lead { color: var(--c-ink); font-weight: 500; }
.scenario-group--dark .scenario-list__lead { color: var(--c-white); }

.scenario-group__note {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--c-line);
  font-size: 0.9rem;
  color: var(--c-muted);
}
.scenario-group--dark .scenario-group__note {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- 16. Price card ---------- */
.price-card {
  padding: 36px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.price-card__eyebrow {
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-primary-dark);
}

.price-card__list { margin-bottom: 20px; }

.price-card__item {
  position: relative;
  padding: 9px 0 9px 34px;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-ink);
  font-weight: 500;
  font-size: 0.98rem;
}
.price-card__item:last-child { border-bottom: 0; }
.price-card__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    var(--c-primary-tint)
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 12.5 10 17.5 19 7" fill="none" stroke="%23007a44" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>')
    center / 12px no-repeat;
}

.price-card__note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--c-muted);
}

/* ---------- 17. Case studies ---------- */
.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.case-card__media { aspect-ratio: 16 / 10; border: 0; border-radius: 0; }

.case-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.case-card__tag {
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-primary-dark);
}

.case-card__title {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.case-card__text {
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.case-card__link {
  margin-top: auto;
  font-weight: 500;
  font-size: 0.92rem;
}

/* ---------- 18. Guides ---------- */
.guides {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.guide-card {
  padding: 28px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  transition: box-shadow 0.2s ease;
}
.guide-card:hover { box-shadow: var(--shadow-card); }

.guide-card__tag {
  margin-bottom: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-primary-dark);
}

.guide-card__title { font-size: 1.1rem; margin-bottom: 8px; }
.guide-card__link { color: var(--c-ink); }
.guide-card__link:hover { color: var(--c-primary-dark); }
.guide-card__text { margin: 0; font-size: 0.9rem; }

/* ---------- 19. FAQ ---------- */
.faq {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.faq__item {
  margin-bottom: 10px;
  background: var(--c-surface);
  border-radius: 10px;
  padding: 4px 18px;
}

.faq__question {
  position: relative;
  padding: 13px 40px 13px 0;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--c-ink);
  cursor: pointer;
  list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--c-body);
  transition: transform 0.2s ease;
}
.faq__item[open] .faq__question::after { content: "\2212"; }

.faq__answer { padding: 2px 6px 16px 0; font-size: 0.95rem; }
.faq__answer p { margin: 0; }

/* ---------- 20. Closer (final CTA) ---------- */
.closer {
  position: relative;
  padding-block: 90px;
  background-color: var(--c-surface);
  overflow: hidden;
}

.closer__bg { position: absolute; inset: 0; }
.closer__media { position: absolute; inset: 0; border-radius: 0; border: 0; }

.closer__content { position: relative; z-index: 1; }

.closer__card {
  max-width: 480px;
  padding: 40px;
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.closer__title { font-size: var(--fs-h2); margin-bottom: 10px; }
.closer__accent { color: var(--c-primary); }
.closer__text { margin-bottom: 22px; }

.closer__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.closer__note { margin: 0; font-size: 0.85rem; color: var(--c-muted); }

/* ---------- 21. Footer ---------- */
.footer {
  padding-top: 80px;
  background: var(--c-white);
  border-top: 1px solid var(--c-line);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__logo { color: var(--c-ink); }

.footer__tagline {
  margin-top: 16px;
  max-width: 34ch;
  font-size: 0.9rem;
}

.footer__heading {
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer__list li { margin-bottom: 8px; }

.footer__link {
  color: var(--c-body);
  font-size: 0.88rem;
}
.footer__link:hover { color: var(--c-primary-dark); }

/* services/pages that don't have their own page yet: text, not links */
.footer__text {
  color: var(--c-body);
  font-size: 0.88rem;
}

.footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer__contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}

.footer__contact-icon {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--c-primary);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-block: 20px;
  border-top: 1px solid var(--c-line);
}

.footer__bottom--single { justify-content: center; }

.footer__copyright,
.footer__legal {
  margin: 0;
  font-size: 0.78rem;
  color: var(--c-muted);
}

/* ---------- 22. Booking form ---------- */
.booking-form {
  padding: clamp(20px, 3vw, 30px);
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  color: var(--c-body);
}

.booking-form__header { margin-bottom: 18px; }

.booking-form__title {
  margin-bottom: 4px;
  font-size: 1.25rem;
  color: var(--c-ink);
}

.booking-form__note {
  margin: 0;
  font-size: 0.86rem;
  color: var(--c-muted);
}

.booking-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.booking-form__field { min-width: 0; }
.booking-form__field--full { grid-column: 1 / -1; }

/* placeholders carry the labelling visually; labels stay for screen readers */
.booking-form__label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.booking-form__input,
.booking-form__select,
.booking-form__textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #d7dbd9;
  border-radius: 10px;
  background-color: var(--c-white);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--c-ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.booking-form__input::placeholder,
.booking-form__textarea::placeholder { color: #8b918e; }

.booking-form__input:focus,
.booking-form__select:focus,
.booking-form__textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(0, 160, 90, 0.16);
}

.booking-form__select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 40px;
  font-weight: 500;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 8"><path d="M1 1.5 6 6.5 11 1.5" fill="none" stroke="%23101828" stroke-width="1.8" stroke-linecap="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
}

.booking-form__textarea {
  min-height: 104px;
  resize: vertical;
}

.booking-form__footnote {
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: var(--c-muted);
  text-align: center;
}

/* "Prefer to talk?" row under the submit button */
.booking-form__alt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--c-line);
}

.booking-form__alt-text {
  font-size: 0.85rem;
  color: var(--c-muted);
}

.booking-form__status {
  margin: 12px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--c-primary-tint);
  font-size: 0.88rem;
  color: var(--c-primary-dark);
}
.booking-form__status[hidden] { display: none; }

/* ---------- 23. Booking modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.modal[hidden] { display: none; }

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 10, 0.68);
  animation: modal-fade 0.2s ease;
}

.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: auto;
  animation: modal-rise 0.25s ease;
}

.modal__close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--c-white);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  color: var(--c-ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.modal__close:hover { background: var(--c-surface); }

.modal .booking-form { box-shadow: none; }

@keyframes modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modal-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- 24. Floating contact widget ---------- */
.floating-widget {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  transform: translateY(-50%);
  border-radius: 14px 0 0 14px;
  box-shadow: -4px 6px 24px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.floating-widget__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  padding: 16px 0;
  border: 0;
  color: var(--c-white);
  font-family: inherit;
  cursor: pointer;
  transition: filter 0.15s ease;
}
.floating-widget__item + .floating-widget__item {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.floating-widget__item:hover { filter: brightness(1.12); color: var(--c-white); }

.floating-widget__item svg { width: 24px; height: 24px; }

.floating-widget__item--call { background-color: #17233a; }
.floating-widget__item--whatsapp { background-color: var(--c-whatsapp); }
.floating-widget__item--book {
  background-color: var(--c-primary);
  padding: 22px 0;
}

.floating-widget__label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---------- 25. Responsive ---------- */
@media (max-width: 1080px) {
  .header__phone span { display: none; }
  .header__phone { padding: 12px 14px; }

  .services { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .step::before { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .header__burger { display: inline-flex; }
  .header .button--primary { display: none; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__form { max-width: 560px; }

  /* side rail becomes a bottom action bar */
  body { padding-bottom: 64px; }

  .floating-widget {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    flex-direction: row;
    transform: none;
    border-radius: 0;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.18);
  }

  .floating-widget__item {
    flex: 1;
    width: auto;
    gap: 8px;
    padding: 16px 0;
    font-size: 0.9rem;
    font-weight: 600;
  }

  .floating-widget__item--book { padding: 16px 0; }

  .floating-widget__label {
    writing-mode: horizontal-tb;
    transform: none;
    letter-spacing: 0.04em;
  }

  .modal__close { top: 8px; right: 8px; }

  .split { grid-template-columns: 1fr; }
  .split--reverse .split__content { order: 1; }
  .split--reverse .split__media { order: 2; }

  .faq { grid-template-columns: 1fr; }
  .cases, .guides { grid-template-columns: 1fr 1fr; }
  .scenarios { grid-template-columns: 1fr; }

  .advisory { flex-direction: column; align-items: flex-start; }

  .panel-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .section { padding-block: 44px; }

  .hero { min-height: 82vh; }
  .hero--inner { min-height: 0; }
  .hero__actions .button { width: 100%; }
  .hero__media .media-placeholder__label { display: none; } /* dev label collides with content on small screens */

  .ticker__item { font-size: 0.95rem; padding-inline: 30px; }

  .services { grid-template-columns: 1fr; }
  .cases, .guides { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }

  .stats { grid-template-columns: 1fr 1fr; row-gap: 26px; }
  .stats__item:nth-child(3) { border-left: 0; }

  .collage { grid-template-columns: 1fr; }
  .collage__item--tall { grid-row: auto; min-height: 220px; }

  .closer__card { padding: 28px; }

  .booking-form__grid { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { justify-content: center; text-align: center; }
}

/* ---------- 23. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .ticker__track { animation: none; flex-wrap: wrap; width: 100%; }
  .ticker__group[aria-hidden="true"] { display: none; }
  .ticker__group { flex-wrap: wrap; row-gap: 8px; }

  .button,
  .service-card,
  .nav__dropdown,
  .guide-card,
  .booking-form__input,
  .booking-form__select,
  .booking-form__textarea,
  .floating-widget__item,
  .burger__line { transition: none; }

  .modal__overlay,
  .modal__dialog { animation: none; }
}
