:root {
  /* Brand palette – black, gold, grey, navy */
  --black: #0a0a0a;
  --navy: #1a2744;
  --navy-dark: #0f1829;
  --navy-light: #2a4068;
  --gold: #c9a227;
  --gold-dark: #a6851f;
  --gold-light: #dbb84a;
  --grey-900: #2d2d2d;
  --grey-700: #4b5563;
  --grey-500: #6b7280;
  --grey-300: #d1d5db;
  --grey-100: #f3f4f6;
  --grey-50: #f9fafb;
  --white: #ffffff;

  --black-rgb: 10, 10, 10;
  --navy-rgb: 26, 39, 68;
  --gold-rgb: 201, 162, 39;
  --grey-50-rgb: 249, 250, 251;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --whatsapp-deep: #075E54;
  --whatsapp-rgb: 37, 211, 102;

  --primary: var(--black);
  --secondary: var(--navy);
  --accent: var(--gold);
  --gray-50: var(--grey-50);
  --gray-700: var(--grey-700);

  --primary-light: var(--grey-900);
  --secondary-dark: var(--navy-dark);
  --secondary-light: var(--navy-light);
  --accent-dark: var(--gold-dark);
  --accent-light: var(--gold-light);

  --surface: var(--grey-100);
  --surface-alt: var(--white);
  --surface-muted: var(--grey-50);

  --text: var(--black);
  --text-muted: var(--grey-700);
  --text-subtle: var(--grey-500);
  --border: rgba(var(--black-rgb), 0.1);
  --shadow-sm: 0 4px 20px rgba(var(--black-rgb), 0.06);
  --shadow-md: 0 12px 40px rgba(var(--black-rgb), 0.08);
  --shadow-lg: 0 24px 60px rgba(var(--black-rgb), 0.12);

  /* Legacy aliases */
  --navy-950: var(--black);
  --navy-900: var(--navy);
  --navy-800: var(--navy-light);
  --navy-700: var(--navy-light);
  --nl-blue-950: var(--black);
  --nl-blue-900: var(--navy);
  --nl-blue-800: var(--navy-light);
  --nl-blue-700: var(--navy-light);
  --nl-blue-600: var(--navy);
  --nl-blue-500: var(--navy);
  --nl-blue-400: var(--navy-light);
  --nl-blue-300: #8fa3c4;
  --cream: var(--surface);
  --cream-dark: var(--surface-muted);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-ui: "Inter", system-ui, sans-serif;
  --header-h: 88px;
  --sticky-wa-height: 4.75rem;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --content-width: 65ch;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--sticky-wa-height) + 1rem);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul { list-style: none; }

.container {
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: clamp(5rem, 10vw, 7.5rem) 0;
}

.section--alt { background: var(--white); }

#services.section--alt {
  background: linear-gradient(180deg, var(--grey-50) 0%, var(--grey-100) 100%);
}
.section--dark {
  background: linear-gradient(155deg, var(--black) 0%, var(--navy) 55%, var(--grey-900) 100%);
  color: var(--white);
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.75rem;
}

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.875rem;
}

.section--dark .section__eyebrow { color: var(--accent-light); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section__subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  color: var(--text-subtle);
  line-height: 1.75;
  max-width: var(--content-width);
  margin-inline: auto;
}

.section--dark .section__subtitle { color: rgba(255, 255, 255, 0.72); }

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(var(--grey-50-rgb), 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.header.is-scrolled { box-shadow: var(--shadow-sm); }

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  max-width: calc(100% - 6.75rem);
}

.logo__img {
  display: block;
  min-height: 65px;
  height: 65px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.nav { display: none; }

.nav__list {
  display: flex;
  gap: 1.75rem;
}

.nav__link {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-subtle);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav__link:hover, .nav__link:focus-visible { color: var(--primary); }

.header__actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.5rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
}

.lang-switch__btn {
  border: none;
  background: transparent;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition);
}

.lang-switch__btn.is-active {
  background: var(--navy);
  color: var(--white);
}

.header__phone {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}

.header__phone-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.header__phone-number {
  font-weight: 700;
  color: var(--navy-900);
}

.header__cta {
  display: none;
  align-items: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-ui);
  font-size: 0.8438rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}

.header__cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.menu-toggle {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  background: rgba(var(--black-rgb), 0.55);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
}

.mobile-nav.is-open { opacity: 1; visibility: visible; }

.mobile-nav__panel {
  background: var(--white);
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  transform: translateY(-12px);
  transition: transform var(--transition);
}

.mobile-nav.is-open .mobile-nav__panel { transform: translateY(0); }

.mobile-nav__list { display: grid; gap: 0.25rem; }

.mobile-nav__link {
  display: block;
  padding: 0.85rem 0;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--black);
  box-shadow: 0 4px 16px rgba(var(--gold-rgb), 0.28);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(var(--gold-rgb), 0.35);
}

.btn--dark {
  background: var(--navy);
  color: var(--white);
}

.btn--dark:hover { background: var(--navy-light); }

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--ghost {
  background: var(--white);
  color: var(--navy);
  border-color: var(--border);
}

.btn--ghost:hover { border-color: var(--grey-500); }

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(var(--whatsapp-rgb), 0.28);
}

.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 8px 24px rgba(var(--whatsapp-rgb), 0.35);
}

.btn--whatsapp .wa-logo {
  width: 1.25em;
  height: 1.25em;
}

.btn--accent {
  background: var(--accent);
  color: var(--black);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(var(--gold-rgb), 0.35);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.btn--accent:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(var(--gold-rgb), 0.4);
}

.btn--hero-outline {
  color: var(--white);
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.btn--hero-whatsapp {
  background: var(--whatsapp);
  border: 1.5px solid var(--whatsapp);
  color: var(--white);
}

.btn--hero-whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
}

.btn--hero-email {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(var(--gold-rgb), 0.5);
  backdrop-filter: blur(6px);
}

.btn--hero-email:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(var(--gold-rgb), 0.75);
}

.btn__arrow {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.wa-logo {
  display: block;
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
  object-fit: contain;
}

.wa-logo--lg {
  width: 1.5rem;
  height: 1.5rem;
}

.btn--lg { padding: 1rem 1.75rem; font-size: 1rem; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Mobile-first CTA layouts */
.btn-group--cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  width: 100%;
  max-width: 400px;
}

.btn-group--cta > .btn {
  width: 100%;
  min-height: 48px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.btn-group--cta > .btn:first-child {
  grid-column: 1 / -1;
}

.btn-group--pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
}

.btn-group--pair > .btn {
  width: 100%;
  min-height: 48px;
}

.btn-group--center {
  margin-inline: auto;
}

.btn--on-dark {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn--on-dark:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
}

@media (min-width: 768px) {
  .btn-group--cta,
  .btn-group--pair {
    display: flex;
    flex-wrap: wrap;
    max-width: none;
  }

  .btn-group--pair {
    flex-direction: row;
  }

  .btn-group--cta > .btn,
  .btn-group--pair > .btn {
    width: auto;
    min-height: auto;
  }

  .btn-group--cta > .btn:first-child {
    grid-column: auto;
  }

  .btn-group--center {
    justify-content: center;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100vh, 920px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2.5rem) 0 3rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(36rem 28rem at 78% 62%, rgba(var(--gold-rgb), 0.1), transparent 68%),
    linear-gradient(90deg, rgba(var(--black-rgb), 0.94) 0%, rgba(var(--navy-rgb), 0.82) 38%, rgba(var(--navy-rgb), 0.52) 58%, rgba(var(--black-rgb), 0.38) 100%),
    linear-gradient(180deg, rgba(var(--black-rgb), 0.5) 0%, rgba(var(--navy-rgb), 0.25) 45%, rgba(var(--black-rgb), 0.72) 100%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.hero__content {
  color: var(--white);
  max-width: 640px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.05rem;
  margin-bottom: 1.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.hero__eyebrow-dot {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(var(--gold-rgb), 0.22);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  max-width: 14ch;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2rem;
  max-width: 42ch;
  line-height: 1.75;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 0.75rem;
  margin-bottom: 2.25rem;
  max-width: 560px;
}

.stat-pill {
  min-width: 0;
  padding: 0.15rem 0;
}

.stat-pill__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
}

.stat-pill__label {
  margin-top: 0.25rem;
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.hero__actions {
  max-width: none;
}

.hero__actions.btn-group--cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__actions.btn-group--cta > .btn {
  width: auto;
  min-height: 52px;
  padding-inline: 1.5rem;
}

.hero__actions.btn-group--cta > .btn:first-child {
  grid-column: auto;
}

.hero__visual {
  display: none;
  position: relative;
  align-self: stretch;
  justify-self: end;
  width: 100%;
  max-width: 560px;
  pointer-events: none;
}

.hero__visual-frame {
  position: relative;
  width: 100%;
  min-height: clamp(240px, 42vw, 480px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0 0.5rem;
}

.hero__visual-geo--panel {
  position: absolute;
  inset: 8% 0 0 6%;
  background:
    linear-gradient(145deg, rgba(var(--navy-rgb), 0.96) 0%, rgba(var(--black-rgb), 0.92) 100%);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  border: 1px solid rgba(var(--gold-rgb), 0.28);
  box-shadow:
    0 24px 60px rgba(var(--black-rgb), 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero__visual-geo--panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -24deg,
      transparent,
      transparent 18px,
      rgba(255, 255, 255, 0.025) 18px,
      rgba(255, 255, 255, 0.025) 19px
    );
  clip-path: inherit;
  pointer-events: none;
}

.hero__visual-geo--accent {
  position: absolute;
  top: 5%;
  left: 14%;
  width: 42%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: skewX(-28deg);
  box-shadow: 0 0 18px rgba(var(--gold-rgb), 0.35);
}

.hero__visual-geo--stripe {
  position: absolute;
  bottom: 18%;
  right: 8%;
  width: 28%;
  height: 32%;
  border: 1px solid rgba(var(--gold-rgb), 0.22);
  border-left: none;
  border-bottom: none;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: 0.7;
}

.hero__visual-media {
  position: relative;
  z-index: 1;
  width: 92%;
  margin-left: 4%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero__visual-media img {
  width: 100%;
  height: auto;
  max-height: min(48vh, 440px);
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 12px 28px rgba(var(--black-rgb), 0.35));
}

@media (max-width: 767px) {
  :root {
    --header-h: 88px;
  }

  .header__inner {
    gap: 0.45rem;
  }

  .logo {
    flex: 1 1 auto;
    max-width: calc(100% - 6.25rem);
  }

  .logo__img {
    min-height: 65px;
    height: 65px;
  }

  .lang-switch {
    padding: 2px;
  }

  .lang-switch__btn {
    padding: 0.3rem 0.45rem;
    font-size: 0.625rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero__actions.btn-group--cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .hero__actions.btn-group--cta > .btn--accent {
    grid-column: 1 / -1;
  }

  .hero__actions.btn-group--cta > .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__visual {
    display: block;
    margin-top: 0.75rem;
    max-width: 100%;
  }

  .hero__visual-frame {
    min-height: 220px;
    padding-bottom: 0;
  }

  .hero__visual-geo--panel {
    inset: 6% 0 0 4%;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  }

  .hero__visual-geo--accent {
    top: 3%;
    left: 10%;
    width: 36%;
  }

  .hero__visual-media img {
    max-height: 200px;
  }
}

@media (min-width: 768px) {
  .hero {
    min-height: 100vh;
    padding-bottom: 4rem;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.5rem 2rem;
    align-items: center;
  }

  .hero__visual {
    display: block;
  }

  .hero__actions.btn-group--cta > .btn--accent {
    flex: 0 0 auto;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    max-width: 16ch;
  }

  .hero__visual-frame {
    min-height: 480px;
  }

  .hero__visual-media img {
    max-height: min(54vh, 500px);
  }
}

/* Trust bar */
.trust-bar {
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
  padding-bottom: 1rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform var(--transition);
}

.trust-card:hover { transform: translateY(-3px); }

.trust-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(var(--navy-rgb), 0.1), rgba(var(--gold-rgb), 0.12));
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.trust-card__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.trust-card__text {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Service cards – minimal icon + title inline layout */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, var(--white) 0%, rgba(var(--gold-rgb), 0.1) 100%);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: var(--radius-md);
  padding: 2rem;
  min-height: 100%;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent-light));
  opacity: 0.65;
  transition: opacity var(--transition);
}

.service-card:nth-child(odd) {
  background: linear-gradient(160deg, var(--black) 0%, var(--navy) 60%, var(--navy-dark) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.service-card:nth-child(odd)::before {
  background: linear-gradient(90deg, var(--gold-light), var(--accent));
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card:nth-child(even):hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--gold-rgb), 0.35);
}

.service-card:nth-child(odd):hover {
  border-color: transparent;
  box-shadow: 0 20px 48px rgba(var(--navy-rgb), 0.28);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.service-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-right: 4.5rem;
}

.service-card--featured .service-card__head {
  padding-right: 5.5rem;
}

.service-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--navy-rgb), 0.1);
  color: var(--secondary);
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  display: block;
  shape-rendering: geometricPrecision;
}

.service-card:nth-child(even) .service-card__icon {
  background: rgba(var(--gold-rgb), 0.12);
  color: var(--accent-dark);
}

.service-card:nth-child(odd) .service-card__icon {
  background: rgba(var(--gold-rgb), 0.16);
  color: var(--accent-light);
}

.service-card:nth-child(odd) .service-card__title {
  color: var(--white);
}

.service-card:nth-child(odd) .service-card__text {
  color: rgba(255, 255, 255, 0.82);
}

.service-card:nth-child(odd) .service-card__list li {
  color: rgba(255, 255, 255, 0.78);
}

.service-card:nth-child(odd) .service-card__check {
  color: var(--accent-light);
}

.service-card:nth-child(odd) .service-card__link {
  color: var(--accent-light);
}

.service-card__title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.service-card__text {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-card__list {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
}

.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.service-card__check {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 0.2rem;
}

.service-card__check svg {
  width: 12px;
  height: 12px;
  display: block;
  shape-rendering: geometricPrecision;
}

.service-card__link {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: var(--secondary);
  transition: transform var(--transition), color var(--transition);
}

.service-card__link svg {
  width: 1rem;
  height: 1rem;
  display: block;
  shape-rendering: geometricPrecision;
}

.service-card:nth-child(even) .service-card__link {
  color: var(--accent-dark);
}

.service-card__link:hover {
  transform: translateX(4px);
}

.service-card:hover .service-card__link {
  transform: translateX(4px);
}

/* Legacy card styles (pricing badge) */
.card__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(var(--gold-rgb), 0.35);
}

.feature-list { display: grid; gap: 0.45rem; }

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text);
}

.feature-list li i { color: var(--nl-blue-500); font-size: 0.75rem; }

/* Split feature */
.split-feature {
  display: grid;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.split-feature__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-feature__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.split-feature__content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.split-feature__content p {
  color: var(--text-subtle);
  margin-bottom: 1.5rem;
  line-height: 1.75;
  max-width: var(--content-width);
}

/* Airport cards */
.airport-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.airport-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.airport-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--navy-rgb), 0.3);
}

.airport-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.airport-card__title {
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
}

.airport-card__title i {
  flex-shrink: 0;
  width: 2.375rem;
  height: 2.375rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(var(--navy-rgb), 0.1);
  color: var(--secondary);
  font-size: 0.9375rem;
  transition: background var(--transition), color var(--transition);
}

.airport-card__title i::before {
  display: block;
  transform: rotate(-45deg);
}

.airport-card:hover .airport-card__title i {
  background: var(--secondary);
  color: var(--white);
}

.airport-card__badge {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(var(--gold-rgb), 0.12);
  color: var(--accent-dark);
  border: 1px solid rgba(var(--gold-rgb), 0.22);
  white-space: nowrap;
}

.airport-card__text {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.airport-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.meta-item {
  background: var(--gray-50);
  border: 1px solid rgba(var(--black-rgb), 0.05);
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
}

.meta-item__label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.6563rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-subtle);
  margin-bottom: 0.25rem;
}

.meta-item__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  color: var(--secondary-dark);
}

/* Business section */
.business-section {
  background: var(--gray-50);
}

.business-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.business-split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.business-split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.business-split__badge {
  display: inline-block;
  padding: 0.5rem 1.125rem;
  margin-bottom: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.business-split__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.business-split__subtitle {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.business-split__desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 52ch;
}

.business-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 1.5rem;
}

.business-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.business-feature__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.625rem;
  height: 1.625rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: rgba(var(--navy-rgb), 0.12);
  color: var(--secondary);
}

.business-feature__icon svg {
  width: 0.875rem;
  height: 0.875rem;
}

.business-feature__text {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--primary);
}

@media (min-width: 640px) {
  .business-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .business-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem 4rem;
  }
}

/* Airport ring stats (inside split-feature content) */
.airport-rings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 0.75rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.airport-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.airport-ring__chart {
  position: relative;
  width: clamp(5.5rem, 16vw, 7.25rem);
  height: clamp(5.5rem, 16vw, 7.25rem);
}

.airport-ring__chart svg {
  width: 100%;
  height: 100%;
  display: block;
}

.airport-ring__track {
  fill: none;
  stroke: var(--grey-300);
  stroke-width: 3.2;
}

.airport-ring__fill {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: calc(100 - var(--ring, 100));
  transition: stroke-dashoffset 0.6s ease;
}

.airport-ring__value {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary);
  text-align: center;
  line-height: 1;
}

.split-feature__content .airport-ring__label {
  margin: 0.875rem 0 0;
  max-width: 10rem;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  color: var(--text);
}

@media (max-width: 479px) {
  .airport-rings {
    gap: 0.75rem 0.5rem;
  }

  .split-feature__content .airport-ring__label {
    font-size: 0.875rem;
    max-width: 7rem;
  }
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto 2.5rem;
}

.pricing-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card--featured {
  background: linear-gradient(160deg, var(--black) 0%, var(--navy) 60%, var(--navy-dark) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.pricing-card__header {
  padding: 1.75rem 1.75rem 1.25rem;
}

.pricing-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.5vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
  color: var(--text);
}

.pricing-card--featured .pricing-card__title { color: var(--white); }

.pricing-card__capacity {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(var(--navy-rgb), 0.1);
  color: var(--secondary-dark);
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 600;
}

.pricing-card--featured .pricing-card__capacity {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
}

.pricing-card__body {
  padding: 0 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}

.price-row:last-of-type { border-bottom: none; }

.pricing-card--featured .price-row {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.price-row__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.price-row__icon {
  flex-shrink: 0;
  width: 2.125rem;
  height: 2.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(var(--navy-rgb), 0.1);
  color: var(--secondary);
}

.pricing-card--featured .price-row__icon {
  background: rgba(var(--gold-rgb), 0.16);
  color: var(--accent-light);
}

.price-row__icon svg {
  width: 16px;
  height: 16px;
  display: block;
  shape-rendering: geometricPrecision;
}

.price-row__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.35;
}

.pricing-card--featured .price-row__label { color: rgba(255, 255, 255, 0.82); }

.price-row__value {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--secondary-dark);
}

.pricing-card--featured .price-row__value { color: var(--white); }

.pricing-card__note {
  margin-top: 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: var(--gray-50);
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

.pricing-card--featured .pricing-card__note {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
}

.note-grid {
  display: grid;
  gap: 1rem;
  max-width: 880px;
  margin: 0 auto;
}

.note-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--secondary);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.note-card:nth-child(2) { border-left-color: var(--accent); }

.note-card h4 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  margin-bottom: 0.65rem;
}

.note-card h4 i { color: var(--secondary); }

.note-card:nth-child(2) h4 i { color: var(--accent); }

.note-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(var(--black-rgb), 0.1);
  border-radius: 14px;
  padding: 2rem;
  min-height: 100%;
}

.testimonial-card__title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 1rem;
}

.testimonial-card__text {
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.testimonial-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-card__author strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
}

.testimonial-card__author span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.testimonial-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(var(--gold-rgb), 0.08);
  border: 1px solid rgba(var(--gold-rgb), 0.18);
}

.testimonial-card__stars {
  display: inline-flex;
  gap: 0.2rem;
}

.testimonial-card__stars svg {
  width: 0.875rem;
  height: 0.875rem;
  display: block;
  fill: var(--accent);
}

.testimonial-card__score {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-dark);
}

/* Form */
.booking-section {
  position: relative;
  background: linear-gradient(160deg, var(--black) 0%, var(--navy) 60%, var(--navy-dark) 100%);
  overflow: hidden;
}

.booking-section::before {
  content: "";
  position: absolute;
  top: -10rem;
  right: -8rem;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background: rgba(var(--navy-rgb), 0.16);
  filter: blur(72px);
  pointer-events: none;
}

.booking-section::after {
  content: "";
  position: absolute;
  bottom: -10rem;
  left: -8rem;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: rgba(var(--gold-rgb), 0.12);
  filter: blur(72px);
  pointer-events: none;
}

.booking-section .section__eyebrow { color: var(--accent-light); }
.booking-section .section__title { color: var(--white); }
.booking-section .section__subtitle { color: rgba(255, 255, 255, 0.72); }

.form-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(860px, 100%);
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 4vw, 2.75rem);
  box-shadow: 0 24px 64px rgba(2, 6, 23, 0.4);
  overflow-x: clip;
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  min-width: 0;
}

.form-field {
  min-width: 0;
}

.form-field label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  overflow-wrap: anywhere;
}

.form-field input,
.form-field select,
.form-field textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0.875rem 1.1rem;
  border: 1.5px solid var(--grey-300);
  border-radius: 12px;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--grey-500);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(var(--gold-rgb), 0.15);
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.75rem;
  cursor: pointer;
}

.form-field select option {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.65rem 1rem;
  background: var(--white);
  color: var(--text);
}

.form-field select option:checked {
  background: linear-gradient(0deg, rgba(var(--navy-rgb), 0.12), rgba(var(--navy-rgb), 0.12));
  color: var(--secondary-dark);
  font-weight: 700;
}

.form-field select option:hover {
  background: var(--gray-50);
}

.form-field select option:disabled,
.form-field select option[value=""] {
  color: var(--text-subtle);
}

.form-field textarea { min-height: 110px; resize: vertical; }

.form-field--error input,
.form-field--error select,
.form-field--error textarea {
  border-color: var(--secondary-light);
  background: #eef2f7;
}

.form-field--error input:focus,
.form-field--error select:focus,
.form-field--error textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(var(--navy-rgb), 0.12);
}

.field-error {
  display: none;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--secondary-dark);
}

.field-error.is-visible {
  display: block;
}

.form-field--full { grid-column: 1 / -1; }

.form-actions {
  margin-top: 0.75rem;
}

.form-actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 56px;
  border-radius: 12px;
  font-weight: 700;
  background: var(--accent);
  color: var(--black);
  box-shadow: none;
  transition: background var(--transition), transform var(--transition);
}

.form-actions .btn:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: none;
}

.form-message {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  display: none;
}

.form-message.is-visible { display: block; }
.form-message--success { background: #faf6e8; color: var(--accent-dark); border: 1px solid rgba(var(--gold-rgb), 0.3); }
.form-message--error { background: #eef2f7; color: var(--navy-dark); border: 1px solid rgba(var(--navy-rgb), 0.25); }

/* FAQ – Transfeero-style card grid */
.faq-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.faq-section__blur {
  pointer-events: none;
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}

.faq-section__blur--top {
  top: -6rem;
  left: -10%;
  width: 18rem;
  height: 18rem;
  background: var(--surface-muted);
}

.faq-section__blur--bottom {
  bottom: -6rem;
  right: -15%;
  width: 24rem;
  height: 24rem;
  background: rgba(var(--navy-rgb), 0.08);
}

.faq-section__inner {
  position: relative;
  z-index: 1;
}

.faq-section .section__header {
  max-width: 48rem;
}

.faq-section .section__title {
  font-family: var(--font-body);
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.faq-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(var(--black-rgb), 0.08);
  background: rgba(255, 255, 255, 0.95);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.faq-card__question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text);
}

.faq-card__question::-webkit-details-marker,
.faq-card__question::marker {
  display: none;
  content: "";
}

.faq-card__question > span:first-child {
  flex: 1;
}

.faq-card__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(var(--navy-rgb), 0.12);
  color: var(--secondary);
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.faq-card[open] .faq-card__icon {
  transform: rotate(180deg);
}

.faq-card__answer {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.faq-card__answer p {
  margin: 0;
}

.faq-card__answer a {
  color: var(--nl-blue-600);
  font-weight: 600;
  text-decoration: underline;
}

.faq-card__answer strong {
  color: var(--secondary-dark);
  font-weight: 600;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .faq-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: clamp(3.5rem, 7vw, 5rem);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.875rem;
}

.cta-band p { color: rgba(255, 255, 255, 0.78); margin-bottom: 0.5rem; line-height: 1.7; }

.cta-band__info {
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 1.75rem !important;
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.contact-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: left;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--secondary);
  opacity: 0;
  transition: opacity var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--navy-rgb), 0.25);
}

.contact-card:hover::before { opacity: 1; }

.contact-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 0 1.25rem;
  border-radius: 12px;
  background: rgba(var(--navy-rgb), 0.1);
  color: var(--secondary);
  display: grid;
  place-items: center;
  font-size: 1.125rem;
}

.contact-card:nth-child(2)::before { background: var(--whatsapp); }
.contact-card:nth-child(2):hover { border-color: rgba(var(--whatsapp-rgb), 0.35); }
.contact-card:nth-child(2) .contact-card__icon {
  background: rgba(var(--whatsapp-rgb), 0.12);
}

.contact-card:nth-child(2) .contact-card__icon .wa-logo {
  width: 1.75rem;
  height: 1.75rem;
}

.contact-card:nth-child(3)::before { background: var(--primary); }
.contact-card:nth-child(3) .contact-card__icon {
  background: rgba(var(--black-rgb), 0.07);
  color: var(--primary);
}

.contact-card:nth-child(4)::before { background: var(--accent); }
.contact-card:nth-child(4):hover { border-color: rgba(var(--gold-rgb), 0.35); }
.contact-card:nth-child(4) .contact-card__icon {
  background: rgba(var(--gold-rgb), 0.12);
  color: var(--accent-dark);
}

.contact-card h3 {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 0.4rem;
}

.contact-card__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.5rem;
  word-break: break-word;
}

.contact-card__value a { transition: color var(--transition); }
.contact-card__value a:hover { color: var(--secondary); }

.contact-card__desc {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Why us – editorial numbered columns on a top rule */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 2.25rem;
  padding-top: 1rem;
}

.why-item {
  position: relative;
  padding-top: 1.9rem;
  border-top: 3px solid rgba(var(--black-rgb), 0.12);
  transition: border-color var(--transition);
}

.why-item:hover { border-top-color: var(--secondary); }

.why-item__number {
  position: absolute;
  top: -1.05rem;
  left: 0;
  display: inline-block;
  background: var(--surface);
  padding-right: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 2.1rem;
  color: var(--secondary);
  letter-spacing: 0.02em;
}

.why-item__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.why-item__text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: linear-gradient(180deg, var(--black) 0%, var(--navy-dark) 100%);
  color: rgba(255, 255, 255, 0.72);
  padding: 4.5rem 0 0;
  font-size: 0.9rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  padding-bottom: 3.25rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.footer__logo span { color: var(--accent-light); }

.footer__tagline {
  margin-top: 0.85rem;
  max-width: 38ch;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.4rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid rgba(var(--whatsapp-rgb), 0.35);
  border-radius: 999px;
  background: rgba(var(--whatsapp-rgb), 0.12);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 700;
  transition: background var(--transition), border-color var(--transition);
}

.footer__wa:hover {
  background: rgba(var(--whatsapp-rgb), 0.22);
  border-color: rgba(var(--whatsapp-rgb), 0.6);
}

.footer__wa .wa-logo {
  width: 1.125rem;
  height: 1.125rem;
}

.footer__heading {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.15rem;
}

.footer__list li + li { margin-top: 0.7rem; }

.footer__list a {
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--transition);
}

.footer__list a:hover { color: var(--accent-light); }

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer__contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--white); }

@media (min-width: 640px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__brand { grid-column: 1 / -1; }
}

@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 2.1fr 1fr 1.1fr 1.5fr; gap: 2rem; }
  .footer__brand { grid-column: auto; padding-right: 2.5rem; }
}

/* Sticky WhatsApp */
.sticky-wa {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 55%, var(--whatsapp-deep) 100%);
  color: var(--white);
  padding: 0.875rem 1rem;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.2) inset, 0 -4px 20px rgba(var(--black-rgb), 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.sticky-wa__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.sticky-wa__content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.sticky-wa__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.sticky-wa__icon .wa-logo {
  width: 1.5rem;
  height: 1.5rem;
}

.sticky-wa__copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.sticky-wa__title {
  font-family: var(--font-display);
  font-size: clamp(0.9375rem, 2.4vw, 1.0625rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.sticky-wa__subtitle {
  font-size: clamp(0.75rem, 2vw, 0.8125rem);
  font-weight: 500;
  opacity: 0.92;
  line-height: 1.3;
}

.sticky-wa__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  padding: 0.8rem 1.35rem;
  background: var(--white);
  color: var(--whatsapp-deep);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9375rem;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(var(--black-rgb), 0.18);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.sticky-wa__btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(var(--black-rgb), 0.22);
  background: #f0fdf4;
}

.sticky-wa__btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 2px;
}

@media (max-width: 479px) {
  .sticky-wa {
    padding: 0.75rem 0.875rem;
  }

  .sticky-wa__subtitle {
    display: none;
  }

  .sticky-wa__icon {
    width: 2.35rem;
    height: 2.35rem;
  }

  .sticky-wa__icon .wa-logo {
    width: 1.25rem;
    height: 1.25rem;
  }

  .sticky-wa__btn {
    padding: 0.7rem 1rem;
    font-size: 0.875rem;
  }
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: calc(var(--sticky-wa-height) + 1rem);
  z-index: 999;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background: var(--navy);
  color: var(--accent-light);
  font-size: 1.125rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(var(--navy-rgb), 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.75rem);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--black);
  box-shadow: 0 12px 28px rgba(var(--black-rgb), 0.4);
}

.scroll-top:focus-visible {
  outline: 3px solid rgba(var(--gold-rgb), 0.45);
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .scroll-top {
    right: 1.5rem;
    width: 3.25rem;
    height: 3.25rem;
  }
}

/* Cookie banner – stacks above sticky WhatsApp bar */
.cookie-banner {
  position: fixed;
  bottom: var(--sticky-wa-height, 4.75rem);
  left: 0;
  right: 0;
  z-index: 1100;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.1);
  padding: 1.25rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  visibility: hidden;
  pointer-events: none;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.cookie-banner.is-dismissed {
  transform: translateY(100%);
  visibility: hidden;
  pointer-events: none;
}

body:has(.cookie-banner.is-visible) .sticky-wa {
  z-index: 900;
  pointer-events: none;
}

body:has(.cookie-banner.is-visible) .scroll-top {
  bottom: calc(var(--sticky-wa-height, 4.75rem) + var(--cookie-banner-height, 9rem) + 1rem);
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.cookie-banner p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.cookie-banner a {
  color: var(--nl-blue-600);
  font-weight: 600;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}

body:has(.cookie-banner.is-visible) {
  padding-bottom: calc(var(--sticky-wa-height) + 11rem);
}

@media (min-width: 640px) {
  body:has(.cookie-banner.is-visible) {
    padding-bottom: calc(var(--sticky-wa-height) + 7rem);
  }
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(var(--black-rgb), 0.65);
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.modal.is-open { opacity: 1; visibility: visible; }

.modal__content {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: min(720px, 100%);
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(16px);
  transition: transform var(--transition);
}

.modal.is-open .modal__content { transform: translateY(0); }

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.modal__close {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--gray-50);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-muted);
}

.modal__body {
  padding: 1.5rem;
  overflow-y: auto;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.modal__body h3 {
  color: var(--text);
  font-size: 1rem;
  margin: 1.25rem 0 0.5rem;
}

.modal__body h3:first-child { margin-top: 0; }

.modal__body ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
}

.modal__body li { margin-bottom: 0.35rem; }

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (min-width: 640px) {
  .hero__stats {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    max-width: 100%;
  }

  .stat-pill {
    flex: 1;
    padding: 0 0.85rem;
  }

  .stat-pill:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .stat-pill:first-child {
    padding-left: 0;
  }

  .stat-pill:last-child {
    padding-right: 0;
  }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .note-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .cookie-banner__inner { grid-template-columns: 1fr auto; align-items: center; }
}

@media (max-width: 379px) {
  .logo {
    max-width: calc(100% - 5.75rem);
  }

  .logo__img {
    min-height: 65px;
    height: 65px;
  }

  .lang-switch__btn {
    padding: 0.28rem 0.4rem;
    font-size: 0.5625rem;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    font-size: 0.9375rem;
  }
}

@media (min-width: 480px) {
  .header__inner { gap: 0.65rem; }
  .header__actions { gap: 0.65rem; }
  .logo { max-width: calc(100% - 7.75rem); }
  .lang-switch__btn {
    padding: 0.35rem 0.65rem;
    font-size: 0.75rem;
  }
  .menu-toggle {
    width: 44px;
    height: 44px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    --header-h: 92px;
  }

  .logo {
    flex: 0 1 auto;
    max-width: min(300px, 42vw);
  }

  .logo__img {
    min-height: 65px;
    height: 68px;
  }
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .airport-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .split-feature { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  :root {
    --header-h: 96px;
  }

  .header__inner { gap: 1rem; }

  .logo {
    flex: 0 1 auto;
    max-width: min(360px, 30vw);
  }

  .logo__img {
    min-height: 65px;
    height: 72px;
  }

  .nav { display: block; min-width: 0; }

  .nav__list { gap: 1.25rem; }

  .nav__link { font-size: 0.875rem; }

  .menu-toggle { display: none; }

  .header__phone { display: flex; }

  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .airport-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: repeat(4, 1fr); }
  .header__cta { display: inline-flex; }
}

@media (min-width: 1024px) and (max-width: 1100px) {
  .header__phone { display: none; }

  .nav__list { gap: 0.85rem; }

  .nav__link { font-size: 0.8125rem; }

  .logo { max-width: min(300px, 28vw); }

  .logo__img {
    min-height: 65px;
    height: 68px;
  }
}

@media (min-width: 1200px) {
  .logo { max-width: min(440px, 34vw); }

  .logo__img {
    min-height: 65px;
    height: 76px;
  }

  .nav__list { gap: 1.75rem; }

  .nav__link { font-size: 0.9375rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}
