/* ================================================
   UNIVERSAL CSS — Shared components across layouts
   ================================================ */

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1;
  cursor: pointer;
  border: none;
  transition: transform var(--ease), opacity var(--ease), box-shadow var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn:active { transform: scale(0.97); }

/* Primary — Deep Navy */
.btn--primary {
  background-color: var(--navy);
  color: var(--on-navy);
}
.btn--primary:hover {
  opacity: 0.88;
}

/* CTA — Action Green (bookings / WhatsApp) */
.btn--cta {
  background-color: var(--cta);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.btn--cta:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px var(--cta-shadow);
}

/* Amber — "Book Now" exclusive */
.btn--amber {
  background-color: var(--amber);
  color: var(--on-amber);
  font-weight: 800;
}
.btn--amber:hover {
  opacity: 0.92;
}

/* Ghost — text link with underline expand */
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-bottom: 2px solid rgba(13, 28, 50, 0.2);
  border-radius: 0;
  padding-inline: 0;
}
.btn--ghost:hover {
  border-color: var(--amber);
  color: var(--navy);
}

/* Block (full width) modifier */
.btn--block {
  width: 100%;
  justify-content: center;
}

/* Large modifier */
.btn--lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.0625rem;
}

/* ── Badges / Chips ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge--verified {
  background-color: rgba(254, 214, 91, 0.3);
  color: #745c00;
}

.badge--popular {
  background-color: var(--amber);
  color: var(--on-amber);
}

/* ── Section typography ── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: var(--sp-sm);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--on-surface-var);
  max-width: 58ch;
  line-height: 1.7;
  margin-inline: auto; /* centra el subtítulo cuando el header es text-align: center */
}

/* ── Feature item (icon + text) ── */
.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-item__icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  background-color: var(--surface-container);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.feature-item__title {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.feature-item__text {
  font-size: 0.9rem;
  color: var(--on-surface-var);
  line-height: 1.6;
}

/* ── Fade-in animation ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Base: content is always visible — animates to full opacity on load */
.fade-in-element {
  animation: fadeUp 0.5s ease both;
}

/* JS enhances with scroll-triggered fade (added via IntersectionObserver) */
.fade-in-element[data-observe] {
  opacity: 0;
  transform: translateY(16px);
  animation: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in-element[data-observe].fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Skip to content (accessibility) ── */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--navy);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  z-index: 200;
  transition: top 0.2s;
}

/* ── Floating CTA Button ── */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  animation: bounce 2s infinite;
}

.floating-cta .btn {
  background-color: var(--cta);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px var(--cta-shadow);
  font-weight: 800;
  font-size: 0.875rem;
  min-width: auto;
}

.floating-cta .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px var(--cta-shadow);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ── Back to Top Button ── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 3rem;
  height: 3rem;
  background-color: var(--navy);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-float);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--amber);
  transform: scale(1.1);
}

.back-to-top .material-symbols-outlined,
.back-to-top .sys-icon {
  font-size: 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
}

.skip-to-content:focus {
  top: 0;
}

/* ================================================
   SISTEMA DE ICONOS SVG (.sys-icon)
   Base rule — overridden by context-specific selectors
   ================================================ */
.sys-icon {
  display: inline-block;
  vertical-align: -0.125em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: square;
  stroke-linejoin: miter;
  /* width/height set per-context via parent selectors */
}

/* ================================================
   HEADER / NAV CSS
   ================================================ */

/* ── Desktop Navigation links ── */
.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-headline);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  inset-block-end: -4px;
  inset-inline-start: 0;
  width: 0;
  height: 2px;
  background-color: var(--amber);
  transition: width var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ── Dropdown ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-headline);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  padding-block: 0.25rem; /* Align with nav-link footprint */
  transition: color var(--ease);
}

.nav-dropdown__toggle:hover {
  color: var(--amber);
}

.nav-dropdown__toggle .material-symbols-outlined,
.nav-dropdown__toggle .sys-icon {
  font-size: 1.1em;
  width: 1.1em;
  height: 1.1em;
  transition: transform var(--ease);
}

.nav-dropdown:is(:hover, :focus-within) .nav-dropdown__toggle {
  color: var(--amber);
}

.nav-dropdown:is(:hover, :focus-within) .nav-dropdown__toggle .material-symbols-outlined,
.nav-dropdown:is(:hover, :focus-within) .nav-dropdown__toggle .sys-icon {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  inset-block-start: calc(100% + 0.75rem);
  inset-inline-start: -1rem;
  min-width: 14rem;
  background-color: var(--surface-lowest);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  border: 1px solid rgba(197, 198, 205, 0.4);
  padding-block: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
  z-index: 10;
}

.nav-dropdown:is(:hover, :focus-within) .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__item {
  display: block;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-headline);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  transition: background-color var(--ease), color var(--ease);
}

.nav-dropdown__item:hover {
  background-color: var(--surface-low);
  color: var(--amber);
}

/* ── Dropdown Wide (for Coverage menu) ── */
.nav-dropdown__menu--wide {
  min-width: 20rem;
  padding-block: 0.75rem;
}

.nav-dropdown__header {
  display: block;
  padding: 0.5rem 1.25rem 0.25rem;
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  pointer-events: none;
}

.nav-dropdown__divider {
  display: block;
  margin-block: 0.5rem;
  border-block-end: 1px solid var(--surface-container);
}

/* ── Nav CTA button (right side) ── */
.site-nav__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ── Hamburger button (mobile) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 1.5rem;
  height: 1.125rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}

.nav-hamburger__bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--navy);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease), width var(--ease);
  transform-origin: left center;
}

/* Hamburger → X animation */
.nav-hamburger[aria-expanded="true"] .nav-hamburger__bar:nth-child(1) {
  transform: rotate(45deg) translateY(-1px);
}
.nav-hamburger[aria-expanded="true"] .nav-hamburger__bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-hamburger[aria-expanded="true"] .nav-hamburger__bar:nth-child(3) {
  transform: rotate(-45deg) translateY(1px);
}

/* ── Mobile nav drawer ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset-block: var(--nav-h) 0;
  inset-inline: 0;
  background-color: var(--surface-lowest);
  padding: var(--sp-md) var(--container-pad);
  overflow-y: auto;
  z-index: 90;
  transform: translateX(100%);
  visibility: hidden; /* Prevent text visibility before transition */
  pointer-events: none;
  transition: transform var(--ease), visibility var(--ease);
}

.mobile-nav.active {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav__link {
  display: block;
  padding-block: 0.875rem;
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid var(--surface-container);
  transition: color var(--ease);
}

.mobile-nav__link:hover {
  color: var(--amber);
}

.mobile-nav__group {
  border-bottom: 1px solid var(--surface-container);
}

.mobile-nav__group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.875rem;
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.mobile-nav__sublinks {
  padding-left: var(--sp-sm);
  padding-bottom: var(--sp-sm);
  display: none;
}

.mobile-nav__group:has(.mobile-nav__group-title[aria-expanded="true"]) .mobile-nav__sublinks {
  display: block;
}

.mobile-nav__sublink {
  display: block;
  padding-block: 0.5rem;
  font-size: 0.9375rem;
  color: var(--on-surface-var);
  transition: color var(--ease);
}

.mobile-nav__sublink:hover {
  color: var(--amber);
}

/* ── Mobile nav subheader ── */
.mobile-nav__subheader {
  display: block;
  padding-block: 0.375rem;
  padding-inline: var(--sp-sm);
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  pointer-events: none;
  margin-block-start: 0.25rem;
}

.mobile-nav__cta {
  margin-top: var(--sp-md);
}

/* ── Responsive: show hamburger, hide desktop menu ── */
@media (max-width: 900px) {
  .site-nav__menu,
  .site-nav__cta .btn {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }
}

/* Body scroll lock when menu open */
body.menu-open {
  overflow: hidden;
}

/* ─────────────────────────────────────────
   SERVICE LAYOUT — styles-service.css
   Depends on: critical.css (tokens), universal.css (buttons, section-*)
   ───────────────────────────────────────── */


/* ══════════════════════════════════════════
   SERVICE HERO
   ══════════════════════════════════════════ */

.service-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: clip;
}

.service-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.service-hero__bg picture {
  display: block;
  width: min(100%, var(--container));
  height: 100%;
  margin-inline: auto;
  border-radius: clamp(1.5rem, 3vw, 2.5rem);
  overflow: hidden;
}

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

.service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(13, 28, 50, 0.95) 40%,
    rgba(13, 28, 50, 0.5) 80%,
    rgba(13, 28, 50, 0.2) 100%
  );
}

.service-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
  padding-block: calc(var(--nav-h) + var(--sp-xl)) var(--sp-xl);
}

.service-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-sm);
}

/* reuse hero__badge from critical.css */
.service-hero__content .hero__badge {
  margin-block-end: 0;
}

.service-hero__title {
  font-family: var(--font-headline);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--on-navy);
  margin: 0;
}

.service-hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 44ch;
  margin: 0;
}

/* ── Floating glassmorphism pricing card ── */
.service-hero__card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 40px;
  corner-shape: squircle;
  padding: var(--sp-md);
  box-shadow: var(--shadow-float);
}

.service-hero__card-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--outline);
  margin: 0 0 0.25rem;
}

.service-hero__card-price {
  font-family: var(--font-headline);
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}

.service-hero__card-period {
  font-size: 0.875rem;
  color: var(--on-surface-var);
  margin: 0.375rem 0 var(--sp-sm);
}

.service-hero__card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-sm);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.service-hero__card-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--on-surface);
  line-height: 1.45;
}

.service-hero__card-feature .material-symbols-outlined,
.service-hero__card-feature .sys-icon {
  color: var(--cta);
  font-size: 1.125rem;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  margin-top: 1px;
  stroke-width: 2;
}

.service-hero__card-divider {
  height: 1px;
  background: var(--surface-container);
  margin-block-end: var(--sp-sm);
}


/* ══════════════════════════════════════════
   SERVICE BODY (markdown content wrapper)
   ══════════════════════════════════════════ */

.service-body {
  /* transparent wrapper — sections inside handle their own bg/padding */
}


/* ══════════════════════════════════════════
   SERVICE INTRO / BENEFITS SECTION
   ══════════════════════════════════════════ */

.service-intro {
  padding-block: var(--sp-xl);
  background: var(--surface);
}

.service-intro__header {
  text-align: center;
  margin-block-end: var(--sp-lg);
}


/* ── Bento grid ── */
.service-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-sm);
}

.service-bento__item {
  background: var(--surface-lowest);
  border-radius: 40px;
  corner-shape: squircle;
  padding: var(--sp-md);
  box-shadow: var(--shadow-ambient);
}

.service-bento__item--wide {
  grid-column: span 2;
}

.service-bento__item--navy {
  background: var(--navy);
}

.service-bento__item--amber {
  background: var(--amber-container);
}

.service-bento__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-end: var(--sp-sm);
}

.service-bento__icon .material-symbols-outlined,
.service-bento__icon .sys-icon {
  color: var(--cta);
  font-size: 1.375rem;
  width: 1.375rem;
  height: 1.375rem;
}

.service-bento__icon--white {
  background: rgba(255, 255, 255, 0.12);
}

.service-bento__icon--white .material-symbols-outlined,
.service-bento__icon--white .sys-icon {
  color: #fff;
  width: 1.375rem;
  height: 1.375rem;
}

.service-bento__icon--amber {
  background: rgba(248, 168, 37, 0.2);
}

.service-bento__icon--amber .material-symbols-outlined,
.service-bento__icon--amber .sys-icon {
  color: #8a5a00;
  width: 1.375rem;
  height: 1.375rem;
}

.service-bento__title {
  font-family: var(--font-headline);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.625rem;
  line-height: 1.2;
}

.service-bento__item--navy .service-bento__title {
  color: var(--on-navy);
}

.service-bento__item--amber .service-bento__title {
  color: #241a00;
}

.service-bento__text {
  color: var(--on-surface-var);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}

.service-bento__item--navy .service-bento__text {
  color: rgba(255, 255, 255, 0.7);
}

.service-bento__item--amber .service-bento__text {
  color: #574500;
}

.service-bento__chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-block-start: var(--sp-sm);
}

/* Botones en service-bento */
.service-bento__item {
  text-align: center;
}

.service-bento__item .btn {
  margin-top: var(--sp-sm);
  display: inline-block;
}

/* Botón específico para la tarjeta wide - ajustar a ancho de contenido */
.service-bento__item--wide .btn--block {
  width: auto;
  max-width: fit-content;
  display: inline-block;
}

/* Centrar contenido del bloque bento ancho */
.service-bento__item--wide {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-bento__item--wide .service-bento__title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.service-bento__item--wide .service-bento__text {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-bento__item--wide .service-bento__chip-group {
  justify-content: center;
}

.service-bento__chip {
  background: rgba(255, 255, 255, 0.55);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #241a00;
}


/* ══════════════════════════════════════════
   SERVICE TIMELINE — how it works
   ══════════════════════════════════════════ */

.service-timeline {
  background: var(--surface-low);
  padding-block: var(--sp-xl);
}

.service-timeline__inner {
  max-width: 52rem;
  margin-inline: auto;
}

.service-timeline__header {
  text-align: center;
  margin-block-end: var(--sp-lg);
}

.service-timeline__steps {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

/* vertical connector line */
.service-timeline__steps::before {
  content: '';
  position: absolute;
  left: 1.1875rem;
  top: 1.25rem;
  bottom: 1.25rem;
  width: 1px;
  background: var(--outline-var);
  pointer-events: none;
}

.service-timeline__step {
  position: relative;
  padding-left: 3.75rem;
}

.service-timeline__dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 2.375rem;
  height: 2.375rem;
  border-radius: var(--radius-full);
  background: var(--surface-lowest);
  border: 2px solid var(--cta);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.service-timeline__dot-inner {
  width: 0.625rem;
  height: 0.625rem;
  background: var(--cta);
  border-radius: var(--radius-full);
}

.service-timeline__step-title {
  font-family: var(--font-headline);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.375rem;
  padding-top: 0.3125rem; /* optical align with dot */
}

.service-timeline__step-text {
  color: var(--on-surface-var);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}




/* ══════════════════════════════════════════
   SERVICE FINAL CTA
   ══════════════════════════════════════════ */

.service-cta-final {
  background: var(--navy);
  padding-block: var(--sp-xl);
}

.service-cta-final__inner {
  max-width: 48rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
  text-align: center;
}

.service-cta-final__title {
  font-family: var(--font-headline);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--on-navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

.service-cta-final__text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin: 0;
  max-width: 42ch;
}


/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

@media (max-width: 900px) {
  .service-bento {
    grid-template-columns: 1fr 1fr;
  }

  .service-bento__item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .service-hero__inner {
    grid-template-columns: 1fr;
    padding-block-start: calc(var(--nav-h) + var(--sp-lg));
  }

  .service-hero__card {
    display: none; /* bottom sheet on mobile via CTA instead */
  }

  .service-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(13, 28, 50, 0.88) 0%,
      rgba(13, 28, 50, 0.7) 100%
    );
  }
}

@media (max-width: 560px) {
  .service-bento {
    grid-template-columns: 1fr;
  }

  .service-bento__item--wide {
    grid-column: span 1;
  }
}

/* ================================================
   GEOGRAPHIC COVERAGE SECTION STYLES
   ================================================ */

.geo-coverage {
  padding: var(--sp-xl) 0;
  background: var(--surface-lowest);
  position: relative;
}

.geo-coverage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--surface-high), transparent);
}

.geo-coverage__header {
  text-align: center;
  margin-bottom: var(--sp-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.geo-coverage__header .section-label {
  display: inline-block;
  background: var(--surface-low);
  color: var(--on-surface-var);
  padding: var(--sp-xs) var(--sp-md);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--sp-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--surface-high);
}

.geo-coverage__header .section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-sm);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.geo-coverage__header .section-subtitle {
  font-size: 1.25rem;
  color: var(--on-surface-var);
  line-height: 1.6;
  font-weight: 400;
}

.geo-coverage__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.geo-card {
  background: var(--surface-lowest);
  border-radius: 40px;
  corner-shape: squircle;
  padding: var(--sp-md);
  border: 1px solid var(--surface-high);
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}

.geo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--cta));
  opacity: 0;
  transition: opacity var(--ease);
}

.geo-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-float);
  border-color: var(--outline-var);
}

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

.geo-card--primary::before {
  background: linear-gradient(90deg, var(--navy), #1a3a52);
}

.geo-card--secondary::before {
  background: linear-gradient(90deg, var(--cta), #0d7d5f);
}

.geo-card--airport::before {
  background: linear-gradient(90deg, var(--amber), #d4941e);
}

.geo-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-sm);
  background: var(--surface-low);
  border: 1px solid var(--surface-high);
  transition: all var(--ease);
  color: var(--navy);
}

.geo-card:hover .geo-card__icon {
  background: linear-gradient(135deg, var(--navy), var(--cta));
  border-color: transparent;
  color: var(--on-navy);
  transform: scale(1.05);
}

.geo-card--secondary:hover .geo-card__icon {
  background: linear-gradient(135deg, var(--cta), #0d7d5f);
}

.geo-card--airport:hover .geo-card__icon {
  background: linear-gradient(135deg, var(--amber), #d4941e);
}

.geo-card__icon .material-symbols-outlined {
  font-size: 32px;
  transition: color var(--ease);
}

.geo-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--sp-sm);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.geo-card__text {
  font-size: 1rem;
  color: var(--on-surface-var);
  line-height: 1.7;
  margin-bottom: var(--sp-sm);
  font-weight: 400;
}

.geo-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.geo-card__feature {
  background: var(--surface-low);
  color: var(--on-surface-var);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--surface-high);
  transition: all var(--ease);
}

.geo-card:hover .geo-card__feature {
  background: var(--surface-container);
  border-color: var(--outline-var);
  transform: translateY(-2px);
}

.geo-card--primary .geo-card__feature {
  background: rgba(13, 28, 50, 0.05);
  color: var(--navy);
  border-color: rgba(13, 28, 50, 0.15);
}

.geo-card--primary:hover .geo-card__feature {
  background: rgba(13, 28, 50, 0.1);
  border-color: rgba(13, 28, 50, 0.25);
}

.geo-card--secondary .geo-card__feature {
  background: rgba(16, 185, 129, 0.05);
  color: var(--cta);
  border-color: rgba(16, 185, 129, 0.15);
}

.geo-card--secondary:hover .geo-card__feature {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.25);
}

.geo-card--airport .geo-card__feature {
  background: rgba(248, 168, 37, 0.05);
  color: var(--amber);
  border-color: rgba(248, 168, 37, 0.15);
}

.geo-card--airport:hover .geo-card__feature {
  background: rgba(248, 168, 37, 0.1);
  border-color: rgba(248, 168, 37, 0.25);
}

.geo-coverage__note {
  background: var(--amber-container);
  border: 1px solid var(--amber);
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.geo-coverage__note::before {
  content: 'ℹ️';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.geo-coverage__note p {
  color: var(--on-amber);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

.geo-coverage__note strong {
  color: var(--on-amber);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .geo-coverage__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .geo-coverage {
    padding: 80px 0;
  }
  
  .geo-coverage__header {
    margin-bottom: 60px;
  }
  
  .geo-coverage__header .section-title {
    font-size: 2.5rem;
  }
  
  .geo-coverage__header .section-subtitle {
    font-size: 1.125rem;
  }
  
  .geo-coverage__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .geo-card {
    padding: 32px;
  }
  
  .geo-card__title {
    font-size: 1.25rem;
  }
  
  .geo-card__text {
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {
  .geo-coverage {
    padding: 60px 0;
  }
  
  .geo-coverage__header .section-title {
    font-size: 2rem;
  }
  
  .geo-coverage__header .section-subtitle {
    font-size: 1rem;
  }
  
  .geo-card {
    padding: 24px;
  }
  
  .geo-card__icon {
    width: 56px;
    height: 56px;
  }
  
  .geo-card__icon .material-symbols-outlined {
    font-size: 28px;
  }
  
  .geo-card__title {
    font-size: 1.125rem;
  }
  
  .geo-card__text {
    font-size: 0.875rem;
  }
  
  .geo-coverage__note {
    padding: 24px;
  }
}

/* ================================================
   HOME PAGE CSS — Sovereign Concierge
   ================================================ */

/* ══════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════ */
.hero {
  min-height: calc(100svh - var(--nav-h));
  background-color: var(--surface-lowest);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 3rem;
  align-items: center;
  padding-block: var(--sp-xl);
}

/* Left column */
.hero__content {
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(13, 28, 50, 0.9);
  color: #ffffff;
  padding: 0.4rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__badge .material-symbols-outlined,
.hero__badge .sys-icon {
  font-size: 0.9em;
  width: 0.9em;
  height: 0.9em;
  color: var(--amber);
  stroke-width: 2;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--amber);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--on-surface-var);
  max-width: 48ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Right column */
.hero__media {
  position: relative;
}

.hero__image-wrap {
  aspect-ratio: 4/5;
  max-width: 32rem;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(13, 28, 50, 0.18);
  position: relative;
  z-index: 2;
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating stat card */
.hero__stat-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: var(--surface-lowest);
  padding: 1.25rem 1.5rem;
  border-radius: 40px;
  corner-shape: squircle;
  box-shadow: var(--shadow-float);
  z-index: 10;
  min-width: 10rem;
}

.hero__stat-number {
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero__stat-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-surface-var);
}

/* Hero responsive */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-block: var(--sp-lg);
  }

  .hero__media {
    order: -1;
    max-width: 24rem;
    margin-inline: auto;
  }

  .hero__image-wrap {
    aspect-ratio: 3/2;
  }

  .hero__stat-card {
    bottom: -1rem;
    left: 1rem;
  }
}

/* ══════════════════════════════════════════════
   SERVICES / PRICING SECTION
   ══════════════════════════════════════════════ */
.services {
  background-color: var(--surface-low);
  padding-block: var(--sp-xl);
}

.services__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

/* Pricing card */
.price-card {
  background-color: var(--surface-lowest);
  padding: 2.5rem;
  border-radius: 40px;
  corner-shape: squircle;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease);
}

.price-card:hover {
  transform: translateY(-6px);
}

/* Featured card */
.price-card--featured {
  background-color: var(--navy);
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 24px 56px rgba(13, 28, 50, 0.28);
  position: relative;
}

.price-card--featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.price-card--featured .price-card__badge {
  display: inline-block;
}

.price-card__badge {
  display: none;
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--amber);
  color: var(--on-amber);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.price-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.price-card--featured .price-card__name {
  color: #fff;
}

.price-card__note {
  font-size: 0.825rem;
  font-style: italic;
  color: var(--on-surface-var);
  margin-bottom: 2rem;
}

.price-card--featured .price-card__note {
  color: rgba(255, 255, 255, 0.6);
}

.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  margin-bottom: 2rem;
}

.price-card__amount {
  font-family: var(--font-headline);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.price-card--featured .price-card__amount {
  color: #fff;
}

.price-card__period {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--on-surface-var);
}

.price-card--featured .price-card__period {
  color: rgba(255, 255, 255, 0.6);
}

.price-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.price-card__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.price-card__feature .material-symbols-outlined {
  color: var(--amber);
  font-size: 1.15em;
  flex-shrink: 0;
}

.price-card--featured .price-card__feature {
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin-inline: auto;
  }

  .price-card--featured {
    transform: scale(1);
    order: -1;
  }
  .price-card--featured:hover {
    transform: translateY(-4px);
  }
}

/* ══════════════════════════════════════════════
   TRUST / SECURITY SECTION
   ══════════════════════════════════════════════ */
.trust {
  background-color: var(--surface-lowest);
  padding-block: var(--sp-xl);
  overflow: clip; /* contiene el orbit spinner — evita scroll horizontal */
}

.trust__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.trust__content {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.trust__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.trust__subtitle {
  color: var(--on-surface-var);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.trust__features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item__icon .sys-icon {
  font-size: 2rem;
  width: 2rem;
  height: 2rem;
  stroke-width: 2;
}

/* Trust visual (circular image) */
.trust__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust__circle {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--surface-low);
  padding: 2.5rem;
  overflow: hidden;
  border: 0.5rem solid var(--surface-lowest);
  box-shadow: var(--shadow-ambient);
}

.trust__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.trust__orbit {
  position: absolute;
  inset: -5%;
  border: 2px dashed rgba(197, 198, 205, 0.5);
  border-radius: 50%;
  animation: spin 60s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .trust__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .trust__visual {
    max-width: 20rem;
    margin-inline: auto;
  }
}

/* ══════════════════════════════════════════════
   TESTIMONIALS SECTION
   ══════════════════════════════════════════════ */
.testimonials {
  background-color: var(--surface-low);
  padding-block: var(--sp-xl);
  overflow: hidden;
}

.testimonials__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.testimonials__nav {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.testimonials__arrow {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1.5px solid var(--outline-var);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background-color var(--ease), color var(--ease), border-color var(--ease);
}

.testimonials__arrow:hover {
  background-color: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Testimonial card */
.testimonial-card {
  background-color: var(--surface-lowest);
  padding: 2.5rem;
  border-radius: 40px;
  corner-shape: squircle;
  border: 1px solid rgba(197, 198, 205, 0.12);
}

.testimonial-card__stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 1.25rem;
  color: var(--amber);
}

.testimonial-card__stars .material-symbols-outlined {
  font-size: 1.1em;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.testimonial-card__quote {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--on-surface);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-card__avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: var(--surface-container);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__name {
  font-family: var(--font-headline);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.testimonial-card__role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-surface-var);
}

@media (max-width: 900px) {
  .testimonials__header {
    flex-direction: column;
    align-items: flex-start;
  }

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

/* ══════════════════════════════════════════════
   SEO + CTA SECTION
   ══════════════════════════════════════════════ */
.seo-cta {
  background-color: var(--surface-lowest);
  padding-block: var(--sp-xl);
  border-top: 1px solid var(--surface-container);
}

.seo-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.seo-cta__text-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 1.25rem;
}

.seo-cta__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--on-surface-var);
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.seo-cta__body strong {
  color: var(--on-surface);
}

.seo-cta__phone-block {
  display: inline-block;
  background-color: var(--surface-low);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-lg);
}

.seo-cta__phone-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-surface-var);
  display: block;
  margin-bottom: 0.375rem;
}

.seo-cta__phone {
  font-family: var(--font-headline);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  transition: color var(--ease);
}

.seo-cta__phone:hover {
  color: var(--amber);
}

/* CTA panel */
.seo-cta__panel {
  background-color: var(--surface-lowest);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-ambient);
  border: 1px solid rgba(197, 198, 205, 0.12);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.seo-cta__panel-icon .material-symbols-outlined {
  font-size: 3.5rem;
  color: var(--cta);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

.seo-cta__panel-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.seo-cta__panel-text {
  color: var(--on-surface-var);
  font-size: 0.9375rem;
  max-width: 28ch;
  line-height: 1.6;
}

.seo-cta__panel .btn {
  width: 100%;
  max-width: 22rem;
  padding-block: 1.25rem;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.seo-cta__assurance {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--on-surface-var);
}

.seo-cta__assurance .material-symbols-outlined {
  color: var(--cta);
  font-size: 1.1em;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

@media (max-width: 900px) {
  .seo-cta__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
/* ══════════════════════════════════════════════
   HOW IT WORKS (STEPS)
   ══════════════════════════════════════════════ */
.how-it-works {
  background-color: var(--surface-lowest);
  padding-block: var(--sp-xl);
}

.how-it-works__header {
  text-align: center;
  margin-bottom: 4rem;
}

.steps__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.step-item {
  position: relative;
  padding: 3rem 2rem;
  background-color: var(--surface-low);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform var(--ease);
}

.step-item:hover {
  transform: translateY(-8px);
}

.step-item__number {
  font-family: var(--font-headline);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--amber);
  opacity: 0.15;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.step-item__icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--surface-lowest);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  box-shadow: var(--shadow-float);
}

.step-item__icon .material-symbols-outlined,
.step-item__icon .sys-icon {
  font-size: 1.75rem;
  width: 1.75rem;
  height: 1.75rem;
}

.step-item__title {
  font-size: 1.25rem;
  font-weight: 700;
}

.step-item__text {
  font-size: 0.9375rem;
  color: var(--on-surface-var);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   USE CASES SECTION
   ══════════════════════════════════════════════ */
.use-cases {
  background-color: var(--surface-low);
  padding-block: var(--sp-xl);
}

.use-cases__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.use-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .use-cases__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .use-cases__grid {
    grid-template-columns: 1fr;
  }
}

.use-case-card {
  background-color: var(--surface-lowest);
  padding: 2.25rem;
  border-radius: 40px;
  corner-shape: squircle;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--ease);
  border: 1px solid transparent;
}

.use-case-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber-container);
  box-shadow: var(--shadow-ambient);
}

.use-case-card__icon {
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.use-case-card__icon .material-symbols-outlined,
.use-case-card__icon .sys-icon {
  font-size: 2rem;
  width: 2rem;
  height: 2rem;
}

.use-case-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
}

.use-case-card__text {
  font-size: 0.875rem;
  color: var(--on-surface-var);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   CITIES SECTION
   ══════════════════════════════════════════════ */
.cities {
  background-color: var(--surface-lowest);
  padding-block: var(--sp-xl);
}

.cities__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.cities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.city-card {
  overflow: hidden;
  border-radius: 40px;
  corner-shape: squircle;
  background-color: var(--surface-low);
  transition: transform var(--ease);
}

.city-card:hover {
  transform: scale(1.02);
}

.city-card__image-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.city-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.city-card:hover img {
  transform: scale(1.1);
}

.city-card__body {
  padding: 1.75rem;
}

.city-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.city-card__text {
  font-size: 0.875rem;
  color: var(--on-surface-var);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   CLIENTS SECTION
   ══════════════════════════════════════════════ */
.clients {
  background-color: var(--surface-low);
  padding-block: var(--sp-lg);
  border-top: 1px solid var(--outline-var);
}

.clients__header {
  text-align: center;
  margin-bottom: 3rem;
}

.clients__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.client-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background-color: var(--surface-lowest);
  border-radius: var(--radius);
  color: var(--navy);
  transition: all var(--ease);
}

.client-item:hover {
  background-color: var(--navy);
  color: #fff;
}

.client-item__icon .material-symbols-outlined,
.client-item__icon .sys-icon {
  font-size: 2rem;
  width: 2rem;
  height: 2rem;
  stroke-width: 2;
  color: var(--amber);
}

.client-item__name {
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--font-headline);
}


/* ══════════════════════════════════════════
   REUSABLE FAQ — Static Card Grid
   ══════════════════════════════════════════ */

.faqs {
  padding-block: var(--sp-xl);
  background-color: var(--surface-low); /* Slight contrast background */
}

.faqs__header {
  text-align: center;
  margin-block-end: var(--sp-lg);
}

.faqs__list {
  display: grid;
  /* 2 columns on desktop, 1 on mobile */
  grid-template-columns: repeat(auto-fit, minmax(Min(100%, 480px), 1fr));
  gap: var(--sp-md);
  align-items: start;
}

/* ══════════════════════════════════════════
   FAQ CARD
   ══════════════════════════════════════════ */

.faq-card {
  background-color: var(--surface-lowest);
  padding: var(--sp-md);
  border-radius: 40px;
  corner-shape: squircle;
  box-shadow: var(--shadow-ambient);
  transition: transform var(--ease), box-shadow var(--ease);
  height: 100%;
}

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

.faq-card__question {
  margin: 0 0 var(--sp-sm) 0;
  font-family: var(--font-headline);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.faq-card__answer {
  color: var(--on-surface-var);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.faq-card__answer p {
  margin: 0;
}

/* ================================================
   FOOTER CSS
   ================================================ */

.site-footer {
  background-color: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  padding-top: var(--sp-lg);
  padding-bottom: var(--sp-md);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: var(--sp-lg);
}

/* Brand column */
.site-footer__brand-name {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-sm);
}

.site-footer__brand-name span {
  color: var(--amber);
}

.site-footer__brand-text {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 28ch;
  margin-bottom: var(--sp-md);
}

/* Column headings */
.site-footer__col-title {
  font-family: var(--font-headline);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}

/* Links */
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.site-footer__link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--ease);
}

.site-footer__link:hover {
  color: var(--amber);
}

/* Contact items */
.site-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.site-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer__contact-item .material-symbols-outlined,
.site-footer__contact-item .sys-icon {
  color: var(--cta);
  font-size: 1.1em;
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

/* Bottom bar */
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer__copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__legal {
  display: flex;
  gap: 1.5rem;
}

.site-footer__legal-link {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--ease);
}
.site-footer__legal-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 540px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

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

/* ================================================
   TYPEFORM-STYLE DIALOG — form-modal.css
   Solo visible al abrir: dialog[open]
   ================================================ */

/* ── Base dialog — OCULTO por defecto ── */
.tf-dialog {
  /* El navegador aplica display:none cuando no tiene [open].
     Solo sobreescribimos cuando SÍ está abierto. */
  border: none;
  padding: 0;
  margin: auto;
  width: min(92vw, 38rem);
  max-height: min(92svh, 46rem);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(13, 28, 50, 0.24);
  overflow: hidden;
  background: var(--surface-lowest);
}

/* Solo cuando está abierto */
.tf-dialog[open] {
  display: flex;
  flex-direction: column;
}

.tf-dialog::backdrop {
  background: rgba(13, 28, 50, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ── Progress bar ── */
.tf-progress {
  height: 3px;
  background-color: var(--surface-container);
  flex-shrink: 0;
}

.tf-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--cta));
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

/* ── Close button ── */
.tf-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--surface-low);
  border: none;
  cursor: pointer;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-surface-var);
  transition: background-color var(--ease), color var(--ease);
  z-index: 10;
}

.tf-close:hover {
  background-color: var(--surface-container);
  color: var(--navy);
}

/* ── Body: steps container ── */
.tf-body {
  flex: 1;
  overflow: hidden;
  position: relative;
}

/* ── Individual step ── */
.tf-step {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2.5rem 1rem;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.32s ease, transform 0.32s ease;
  pointer-events: none;
}

.tf-step.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
  position: relative;
}

.tf-step.exit {
  opacity: 0;
  transform: translateX(-40px);
  pointer-events: none;
  position: absolute;
}

.tf-step__inner {
  width: 100%;
  max-width: 28rem;
}

/* Step number */
.tf-step__num {
  display: block;
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

/* Question label */
.tf-step__question {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}

/* ── Text/Tel/Date/Time inputs ── */
.tf-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--outline-var);
  border-radius: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--on-surface);
  padding: 0.625rem 0;
  outline: none;
  transition: border-color var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.tf-input:focus {
  border-color: var(--amber);
}

.tf-input::placeholder {
  color: var(--outline-var);
}

.tf-input[aria-invalid="true"] {
  border-color: #ba1a1a;
}

.tf-input--date,
.tf-input--time {
  font-size: 1.5rem;
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
}

/* Hint text */
.tf-hint {
  font-size: 0.8125rem;
  color: var(--on-surface-var);
  line-height: 1.55;
  margin-top: 0.875rem;
}

.tf-error {
  font-size: 0.8rem;
  color: #ba1a1a;
  margin-top: 0.375rem;
  display: block;
}

/* ── Radio option cards (service selection) ── */
.tf-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}

.tf-option {
  cursor: pointer;
}

.tf-option input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.tf-option__box {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--outline-var);
  background: var(--surface-lowest);
  transition: border-color var(--ease), background-color var(--ease);
}

.tf-option__box .material-symbols-outlined,
.tf-option__box .sys-icon {
  font-size: 1.3em;
  width: 1.3em;
  height: 1.3em;
  color: var(--on-surface-var);
  transition: color var(--ease);
}

.tf-option__label {
  font-family: var(--font-headline);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.tf-option__sub {
  font-size: 0.725rem;
  color: var(--on-surface-var);
}

/* Selected state */
.tf-option input:checked + .tf-option__box {
  border-color: var(--amber);
  background-color: rgba(248, 168, 37, 0.08);
}

.tf-option input:checked + .tf-option__box .material-symbols-outlined,
.tf-option input:checked + .tf-option__box .sys-icon {
  color: var(--amber);
}

.tf-option:hover .tf-option__box {
  border-color: rgba(248, 168, 37, 0.5);
}

/* ── Confirmation step ── */
.tf-step__inner--confirm {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tf-summary {
  background-color: var(--surface-low);
  border-radius: var(--radius);
  padding: 1.125rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--on-surface-var);
}

.tf-summary strong {
  color: var(--navy);
  font-weight: 600;
}

.tf-trust {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tf-trust__item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--on-surface-var);
}

.tf-trust__item .material-symbols-outlined,
.tf-trust__item .sys-icon {
  color: var(--cta);
  font-size: 1em;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

/* ── Success screen */
.tf-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1rem;
  min-height: 18rem;
}

.tf-success:not([hidden]) {
  display: flex;
}

.tf-success__icon {
  font-size: 4rem;
  color: var(--cta);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

.tf-success__title {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--navy);
}

.tf-success__text {
  color: var(--on-surface-var);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 26ch;
}

/* ── Footer: back + next buttons ── */
.tf-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--surface-container);
  flex-shrink: 0;
  gap: 1rem;
}

.tf-btn-back {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--on-surface-var);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  transition: background-color var(--ease), color var(--ease);
  flex-shrink: 0;
}

.tf-btn-back:hover:not(:disabled) {
  background-color: var(--surface-low);
  color: var(--navy);
}

.tf-btn-back:disabled {
  opacity: 0.28;
  cursor: default;
}

.tf-btn-next {
  flex: 1;
  max-width: 16rem;
  margin-left: auto;
  justify-content: center;
}

.tf-btn-close-success {
  flex: 1;
  max-width: 16rem;
  margin-left: auto;
  justify-content: center;
  background-color: var(--cta);
  border-color: var(--cta);
  color: white;
}

.tf-btn-close-success:hover {
  background-color: var(--cta-dark);
  border-color: var(--cta-dark);
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .tf-dialog {
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 92svh;
    position: fixed;
    bottom: 0;
    top: auto;
    margin: 0;
  }

  .tf-step {
    padding: 2rem 1.5rem 1rem;
  }

  .tf-options {
    grid-template-columns: 1fr;
  }

  .tf-footer {
    padding: 0.875rem 1.25rem 1.25rem;
  }
}


