  :root {
    --ink: #0b1f3a;
    --ink-soft: #122c52;
    --paper: #ffffff;
    --cream: #eef4fb;
    --cream-2: #d8e6f4;
    --terracotta: #2d6cdf;
    --terracotta-soft: #5b8ee8;
    --terracotta-deep: #1c4ea8;
    --line: rgba(11, 31, 58, 0.12);
    --line-soft: rgba(11, 31, 58, 0.06);
    --muted: #5a6b85;
    --shadow-sm: 0 1px 2px rgba(11,31,58,.06), 0 2px 6px rgba(11,31,58,.04);
    --shadow-md: 0 4px 12px rgba(11,31,58,.08), 0 12px 32px rgba(11,31,58,.06);
    --shadow-lg: 0 12px 32px rgba(11,31,58,.10), 0 32px 64px rgba(11,31,58,.08);
    --shadow-xl: 0 20px 50px rgba(11,31,58,.14), 0 40px 100px rgba(11,31,58,.10);
    --bevel-light: inset 0 1px 0 rgba(255,255,255,.9);
    --bevel-edge: 0 0 0 1px rgba(11,31,58,.06);
  }

  /* ───── STATS BAR — Cards tipo botones ───── */
  .stats-bar {
    background: linear-gradient(180deg, var(--ink) 0%, #0a172e 100%);
    padding: 32px 24px;
    border-top: 1px solid rgba(255,250,245,0.06);
    border-bottom: 1px solid rgba(255,250,245,0.06);
  }
  .stats-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .stat-cell {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 20px 14px;
    border: 1px solid rgba(255,250,245,0.08);
    border-radius: 16px;
    background:
      radial-gradient(circle at 50% 0%, rgba(45,108,223,0.12) 0%, transparent 60%),
      linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    overflow: hidden;
    isolation: isolate;
    transition:
      background 0.4s ease,
      border-color 0.4s ease,
      transform 0.3s ease,
      box-shadow 0.4s ease;
  }
  .stat-cell::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(120deg,
      transparent 0%,
      rgba(45,108,223,0.2) 45%,
      rgba(45,108,223,0.05) 55%,
      transparent 100%
    );
    transform: translateX(-110%);
    transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
  }
  .stat-cell:hover,
  .stat-cell:active {
    border-color: rgba(45,108,223,0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,.35), 0 0 0 1px rgba(45,108,223,0.15) inset;
  }
  .stat-cell:hover::before,
  .stat-cell:active::before {
    transform: translateX(110%);
  }
  .stat-cell-num {
    font-family: 'Instrument Serif', serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1;
    color: var(--terracotta-soft);
    letter-spacing: -0.02em;
    text-shadow: 0 4px 18px rgba(45,108,223,0.4);
  }
  .stat-cell-lbl {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,250,245,0.65);
  }

  /* ───── BADGES (Escáner 3D, Esterilización, Financiación) ───── */
  .stats-badges {
    max-width: 1100px;
    margin: 16px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .stat-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border: 1px solid rgba(255,250,245,0.06);
    border-radius: 100px;
    background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
  }
  .stat-badge:hover {
    background: linear-gradient(160deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border-color: rgba(45,108,223,0.3);
    transform: translateY(-2px);
  }
  .stat-badge-icon {
    font-size: 18px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  }
  .stat-badge-text {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,250,245,0.85);
    letter-spacing: 0.01em;
  }

  @media (max-width: 640px) {
    .stats-bar { padding: 24px 14px; }
    .stats-bar-inner { gap: 8px; }
    .stat-cell { padding: 14px 8px; gap: 4px; }
    .stat-cell-num { font-size: 28px; }
    .stat-cell-lbl { font-size: 10.5px; letter-spacing: 0.08em; }
    .stats-badges {
      margin-top: 10px;
      gap: 6px;
      grid-template-columns: repeat(3, 1fr);
    }
    .stat-badge {
      flex-direction: column;
      gap: 4px;
      padding: 10px 4px;
      border-radius: 14px;
    }
    .stat-badge-icon { font-size: 20px; }
    .stat-badge-text { font-size: 11.5px; text-align: center; line-height: 1.2; }
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html {
    scroll-behavior: smooth;
    overflow-x: clip;
    width: 100%;
  }
  body {
    font-family: 'Inter Tight', system-ui, sans-serif;
    font-weight: 400;
    color: var(--ink);
    background: var(--paper);
    overflow-x: clip;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    line-height: 1.7;
    font-size: 16px;
  }
  /* hero background defined below with enhanced gradient */
  .reviews { background: var(--cream); }
  .team { background: var(--paper); }
  .serif { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-style: italic; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  img, svg { display: block; max-width: 100%; }

  /* ───── TOPBAR — Estilo minimalista moderno ───── */
  .topbar {
    background: var(--ink);
    color: rgba(255,250,245,.7);
    font-size: 12px;
    padding: 10px 0;
    letter-spacing: 0.01em;
  }
  .topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .topbar-left, .topbar-right { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
  .topbar-left { gap: 24px; }
  .topbar a {
    color: rgba(255,250,245,.7);
    transition: color .25s ease, background .25s ease, transform .25s ease;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
  }
  .topbar a svg { transition: transform .25s ease; }
  .topbar a:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
  }
  .topbar a:hover svg { transform: scale(1.15); }
  .topbar-item { display: inline-flex; align-items: center; gap: 6px; }
  .topbar-item svg { width: 13px; height: 13px; opacity: .8; flex-shrink: 0; }

  /* ───── HEADER ───── */
  header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,250,245,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line-soft);
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s ease;
    will-change: transform;
  }
  /* Header se oculta al bajar en móvil/tablet */
  @media (max-width: 1024px) {
    header.header-hidden {
      transform: translateY(-100%);
    }
  }
  .header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    transition: height 0.3s ease;
  }
  .logo {
    display: flex; align-items: center; gap: 10px;
    color: var(--ink);
  }
  .logo-mark-img {
    width: 56px; height: 56px;
    display: block; flex-shrink: 0;
  }
  .logo-text {
    display: flex; flex-direction: column;
    font-weight: 700; font-size: 24px;
    letter-spacing: -0.03em;
    line-height: 1.1;
  }
  .logo-text small {
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.13em;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 2px;
  }
  nav { display: flex; align-items: center; gap: 4px; }
  nav a {
    font-size: 14px;
    font-weight: 500;
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--ink);
    transition: background .25s, color .25s, transform .25s;
  }
  nav a:hover { background: var(--cream); transform: translateY(-1px); }
  nav a:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 2px; border-radius: 999px; }
  nav .cta-nav {
    background: var(--ink); color: var(--paper);
    padding: 10px 20px;
    margin-left: 8px;
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 500;
    transition: background .25s, transform .25s, box-shadow .25s;
  }
  nav .cta-nav:hover { background: var(--terracotta); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(45,108,223,.3); }
  nav .cta-nav svg { width: 14px; height: 14px; }

  /* Mobile menu trigger + drawer */
  .menu-btn {
    display: none;
    appearance: none; -webkit-appearance: none;
    background: var(--ink); border: none;
    width: 44px; height: 44px; border-radius: 14px;
    align-items: center; justify-content: center;
    color: var(--paper); cursor: pointer;
    transition: transform .25s, box-shadow .25s, background .25s;
    box-shadow: 0 4px 14px rgba(11,31,58,.25);
    position: relative;
  }
  .menu-btn:hover { background: var(--terracotta); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(45,108,223,.35); }
  .menu-btn:active { transform: scale(.95); }
  .menu-btn svg { width: 18px; height: 18px; }
  .mobile-drawer {
    position: fixed; inset: 0; z-index: 100;
    pointer-events: none;
  }
  .mobile-drawer .drawer-backdrop {
    position: absolute; inset: 0;
    background: rgba(11,31,58,.55);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    opacity: 0; transition: opacity .3s ease;
  }
  .mobile-drawer .drawer-panel {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: min(380px, 90vw);
    background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.22,.68,.18,1.02);
    display: flex; flex-direction: column;
    padding: 28px 24px;
    overflow-y: auto;
  }
  .mobile-drawer.open { pointer-events: auto; }
  .mobile-drawer.open .drawer-backdrop { opacity: 1; }
  .mobile-drawer.open .drawer-panel { transform: translateX(0); }
  .drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 28px; padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }
  .drawer-close {
    appearance: none; background: var(--cream);
    border: none;
    width: 40px; height: 40px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--ink);
    transition: background .2s, transform .2s;
  }
  .drawer-close:hover { background: var(--cream-2); transform: rotate(90deg); }
  .drawer-close svg { width: 18px; height: 18px; }
  /* === LIQUID NAV BUTTONS — Drawer === */
  .drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 4px 0;
  }
  .drawer-nav a {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(11,31,58,0.08);
    background: linear-gradient(160deg, rgba(255,250,245,0.7) 0%, rgba(255,250,245,0.35) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
    opacity: 0;
    transform: translateX(20px);
    transition:
      opacity 0.35s ease,
      transform 0.35s cubic-bezier(0.4,0,0.2,1),
      background 0.35s ease,
      border-color 0.35s ease,
      box-shadow 0.35s ease,
      color 0.25s ease;
  }
  /* Brillo "liquid" shimmer */
  .drawer-nav a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
      120deg,
      transparent 0%,
      rgba(45,108,223,0.12) 45%,
      rgba(45,108,223,0.04) 55%,
      transparent 100%
    );
    transform: translateX(-110%);
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  }
  .mobile-drawer.open .drawer-nav a {
    opacity: 1;
    transform: translateX(0);
  }
  .mobile-drawer.open .drawer-nav a:nth-child(1) { transition-delay: .06s; }
  .mobile-drawer.open .drawer-nav a:nth-child(2) { transition-delay: .10s; }
  .mobile-drawer.open .drawer-nav a:nth-child(3) { transition-delay: .14s; }
  .mobile-drawer.open .drawer-nav a:nth-child(4) { transition-delay: .18s; }
  .mobile-drawer.open .drawer-nav a:nth-child(5) { transition-delay: .22s; }
  .mobile-drawer.open .drawer-nav a:nth-child(6) { transition-delay: .26s; }
  .mobile-drawer.open .drawer-nav a:nth-child(7) { transition-delay: .30s; }
  .drawer-nav a:hover,
  .drawer-nav a:active {
    background: linear-gradient(160deg, rgba(255,250,245,0.95) 0%, rgba(255,250,245,0.75) 100%);
    border-color: rgba(45,108,223,0.25);
    box-shadow: 0 8px 24px rgba(11,31,58,0.12), 0 2px 6px rgba(11,31,58,0.06);
    transform: translateX(-2px);
  }
  .drawer-nav a:hover::before,
  .drawer-nav a:active::before {
    transform: translateX(110%);
  }
  .drawer-nav .nav-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 12px;
    background: rgba(45,108,223,0.08);
    border: 1px solid rgba(45,108,223,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  }
  .drawer-nav a:hover .nav-icon {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--paper);
    transform: scale(1.05);
  }
  .drawer-nav .nav-icon svg { width: 18px; height: 18px; }
  .drawer-nav .nav-label { flex: 1; letter-spacing: 0.005em; }
  .drawer-nav .nav-arrow {
    color: var(--muted);
    opacity: 0.35;
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  }
  .drawer-nav a:hover .nav-arrow {
    opacity: 1;
    transform: translateX(3px);
    color: var(--terracotta);
  }
  .drawer-nav .nav-arrow svg { width: 16px; height: 16px; }

  /* CTA "Solicitar cita" destacado */
  .drawer-nav .drawer-cta {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
    margin-top: 14px;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(11,31,58,0.25);
    font-weight: 600;
    font-size: 16px;
    padding: 16px 20px;
    border-radius: 16px;
    gap: 10px;
  }
  .drawer-nav .drawer-cta::before {
    background: linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,0.25) 45%,
      rgba(255,255,255,0.08) 55%,
      transparent 100%
    );
  }
  .drawer-nav .drawer-cta .nav-icon {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.1);
    color: var(--paper);
  }
  .drawer-nav .drawer-cta:hover,
  .drawer-nav .drawer-cta:active {
    background: var(--terracotta);
    border-color: var(--terracotta);
    box-shadow: 0 14px 36px rgba(45,108,223,0.32);
    transform: translateY(-1px);
  }
  .drawer-nav .drawer-cta:hover .nav-icon {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.2);
    color: var(--paper);
    transform: scale(1.05);
  }
  .drawer-nav .drawer-cta .nav-arrow { color: var(--paper); opacity: 0.85; }
  /* === QUICK BUTTONS premium con gradiente === */
  .drawer-quick {
    display: flex;
    gap: 10px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line-soft);
  }
  .drawer-quick a {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 8px 14px;
    border-radius: 16px;
    background: linear-gradient(160deg, var(--paper) 0%, rgba(255,250,245,0.6) 100%);
    border: 1px solid var(--line-soft);
    box-shadow: 0 2px 10px rgba(11,31,58,0.05);
    font-size: 11px;
    font-weight: 700;
    color: var(--ink);
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    overflow: hidden;
    isolation: isolate;
    opacity: 0;
    transform: translateY(12px);
    transition:
      opacity 0.35s ease,
      transform 0.35s cubic-bezier(0.4,0,0.2,1),
      background 0.35s ease,
      border-color 0.35s ease,
      box-shadow 0.35s ease;
  }
  /* Halo radial color marca */
  .drawer-quick a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.4;
    transition: opacity 0.35s ease;
    background: radial-gradient(circle at 50% 0%, var(--quick-color, transparent) 0%, transparent 70%);
  }
  .mobile-drawer.open .drawer-quick a {
    opacity: 1;
    transform: translateY(0);
  }
  .mobile-drawer.open .drawer-quick a:nth-child(1) { transition-delay: .32s; }
  .mobile-drawer.open .drawer-quick a:nth-child(2) { transition-delay: .36s; }
  .mobile-drawer.open .drawer-quick a:nth-child(3) { transition-delay: .40s; }
  .drawer-quick a:hover,
  .drawer-quick a:active {
    border-color: var(--quick-color-border, var(--line));
    box-shadow: 0 10px 28px rgba(11,31,58,0.14);
    transform: translateY(-2px);
  }
  .drawer-quick a:hover::before,
  .drawer-quick a:active::before {
    opacity: 1;
  }
  .drawer-quick .quick-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
    position: relative;
  }
  .drawer-quick .quick-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
    position: relative;
    z-index: 1;
  }
  .drawer-quick a:hover .quick-icon {
    transform: scale(1.12) translateY(-1px);
  }
  /* Llamar — verde */
  .drawer-quick .quick-icon.qi-call {
    background: linear-gradient(135deg, #25a244 0%, #1b7f33 100%);
    color: #fff;
    box-shadow: 0 6px 18px rgba(37,162,68,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
  }
  .drawer-quick a:has(.qi-call) {
    --quick-color: rgba(37,162,68,0.22);
    --quick-color-border: rgba(37,162,68,0.4);
  }
  /* WhatsApp — verde WA */
  .drawer-quick .quick-icon.qi-wa {
    background: linear-gradient(135deg, #25D366 0%, #128c7e 100%);
    color: #fff;
    box-shadow: 0 6px 18px rgba(37,211,102,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
  }
  .drawer-quick a:has(.qi-wa) {
    --quick-color: rgba(37,211,102,0.22);
    --quick-color-border: rgba(37,211,102,0.4);
  }
  /* Mapa — azul corporativo dentística */
  .drawer-quick .quick-icon.qi-map {
    background: linear-gradient(135deg, #2d6cdf 0%, #1d4ba8 100%);
    color: #fff;
    box-shadow: 0 6px 18px rgba(45,108,223,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
  }
  .drawer-quick a:has(.qi-map) {
    --quick-color: rgba(45,108,223,0.22);
    --quick-color-border: rgba(45,108,223,0.4);
  }
  .drawer-foot {
    margin-top: auto; padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 12px; color: var(--muted);
    display: flex; flex-direction: column; gap: 5px;
    text-align: center;
  }
  .drawer-foot a { color: var(--ink); font-weight: 500; }
  body.drawer-open { overflow: hidden; }

  /* ── Drawer responsive: pantallas estrechas ── */
  @media (max-width: 420px) {
    .mobile-drawer .drawer-panel {
      width: 100vw;
      padding: 24px 16px;
    }
    .drawer-head { margin-bottom: 20px; padding-bottom: 16px; }
    .drawer-nav a { padding: 12px 12px; font-size: 15px; }
    .drawer-nav .nav-icon { width: 36px; height: 36px; min-width: 36px; }
    .drawer-quick { gap: 8px; }
    .drawer-quick a { padding: 12px 6px; font-size: 11px; gap: 6px; }
    .drawer-quick .quick-icon { width: 40px; height: 40px; font-size: 19px; }
    .drawer-foot { font-size: 11px; }
  }

  /* ───── HERO ───── */
  .hero {
    padding: 96px 64px 120px;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 600px;
  }
  .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-text {
    position: relative;
    z-index: 1;
    max-width: 640px;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 28px;
  }
  .hero-eyebrow::before {
    content: ''; width: 28px; height: 1px; background: var(--terracotta);
  }
  .hero h1 {
    font-size: clamp(44px, 6.5vw, 104px);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
    color: var(--ink);
    text-wrap: balance;
  }
  .hero h1 .serif {
    font-weight: 400;
    color: var(--terracotta);
    letter-spacing: -0.02em;
  }
  .hero-lede {
    font-size: 17px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 40px;
  }
  .hero-text {
    max-width: 640px;
  }
  .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    font-size: 15px; font-weight: 500;
    letter-spacing: -0.01em;
    transition: all .3s cubic-bezier(.2,.8,.2,1);
    cursor: pointer;
    min-height: 44px;
  }
  .btn:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; }
  .btn-primary {
    background: var(--ink); color: var(--paper);
  }
  .btn-primary:hover { background: var(--terracotta); transform: translateY(-3px); box-shadow: 0 14px 28px rgba(45, 108, 223, 0.35); }
  .btn-primary:active { transform: translateY(-1px); }
  .btn-ghost {
    background: transparent; color: var(--ink);
    border: 1px solid var(--line);
  }
  .btn-ghost:hover { background: var(--cream); border-color: var(--ink); transform: translateY(-2px); box-shadow: 0 6px 14px rgba(11,31,58,.08); }
  .btn-ghost:active { transform: translateY(0); }
  .btn svg { width: 16px; height: 16px; }
  .btn-arrow {
    width: 24px; height: 24px;
    background: rgba(255,250,245,.15);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .btn-primary .btn-arrow svg { width: 12px; height: 12px; }

  .hero-trust {
    display: flex; align-items: center; gap: 20px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--line-soft);
  }
  .trust-stars { display: flex; gap: 2px; }
  .trust-stars svg { width: 16px; height: 16px; fill: var(--terracotta); }
  .trust-text { font-size: 13px; color: var(--muted); }
  .trust-text strong { color: var(--ink); font-weight: 600; }

  /* Hero image / visual */
  .hero-visual {
    position: absolute;
    inset: 0;
    aspect-ratio: unset;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
    z-index: 0;
  }
  .hero-visual img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: blur(3px);
    transform: scale(1.06);
    opacity: 0.58;
  }
  .hero-visual-tag {
    position: absolute; top: 24px; left: 24px;
    background: var(--paper);
    padding: 8px 14px;
    border-radius: 999px;
    font-family: ui-monospace, 'SF Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.05em;
    z-index: 2;
  }
  .hero-visual-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(26, 20, 16, .7), transparent);
    color: var(--paper);
    z-index: 2;
  }
  .hero-visual-caption h4 {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 6px;
  }
  .hero-visual-caption p {
    font-size: 13px;
    opacity: .8;
  }

  /* Floating stat */
  .hero-stat-card {
    position: absolute;
    bottom: -20px; left: -20px;
    background: var(--paper);
    color: var(--ink);
    padding: 24px 28px;
    border-radius: 14px;
    z-index: 3;
    min-width: 200px;
    box-shadow: var(--shadow-lg), var(--bevel-edge), var(--bevel-light);
    border: 1px solid rgba(11,31,58,.06);
  }
  .hero-stat-card .num {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 56px;
    line-height: 1;
    color: var(--terracotta);
    margin-bottom: 4px;
  }
  .hero-stat-card .lbl {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* ───── MARQUEE ───── */
  .marquee {
    background: var(--ink);
    color: var(--paper);
    padding: 24px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.18);
  }
  .marquee-track {
    display: flex; gap: 64px;
    animation: scroll 38s linear infinite;
    white-space: nowrap;
    width: max-content;
  }
  .marquee-item {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 32px;
    color: var(--paper);
    display: inline-flex; align-items: center; gap: 64px;
  }
  .marquee-item::after {
    content: '◆';
    font-style: normal;
    font-family: 'Inter Tight', sans-serif;
    color: var(--terracotta);
    font-size: 14px;
  }
  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ───── SECTION COMMON ───── */
  .section { padding: 60px 32px; }
  .container { max-width: 1280px; margin: 0 auto; }
  /* === SECTION EYEBROW — Liquid pill premium === */
  .section-eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--terracotta-deep);
    margin-bottom: 28px;
    padding: 8px 18px 8px 10px;
    background: linear-gradient(160deg, #ffffff 0%, var(--cream) 100%);
    border-radius: 999px;
    border: 1px solid rgba(45,108,223,0.18);
    box-shadow:
      0 4px 14px rgba(45,108,223,0.12),
      0 1px 0 rgba(255,255,255,0.8) inset;
    overflow: hidden;
    isolation: isolate;
    transition:
      transform 0.3s cubic-bezier(0.4,0,0.2,1),
      box-shadow 0.35s ease,
      border-color 0.35s ease;
  }
  /* Shimmer "liquid" que cruza */
  .section-eyebrow::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
      120deg,
      transparent 0%,
      rgba(45,108,223,0.18) 45%,
      rgba(45,108,223,0.05) 55%,
      transparent 100%
    );
    transform: translateX(-110%);
    transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
  }
  .section-eyebrow:hover {
    transform: translateY(-2px);
    border-color: rgba(45,108,223,0.35);
    box-shadow:
      0 8px 22px rgba(45,108,223,0.2),
      0 1px 0 rgba(255,255,255,0.9) inset;
  }
  .section-eyebrow:hover::after {
    transform: translateX(110%);
  }
  /* Punto pulsante */
  .section-eyebrow::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--terracotta);
    box-shadow:
      0 0 0 4px rgba(45,108,223,.18),
      0 0 12px rgba(45,108,223,0.5);
    animation: pulse-eyebrow 2.4s ease-in-out infinite;
    flex-shrink: 0;
  }
  @keyframes pulse-eyebrow {
    0%, 100% {
      box-shadow:
        0 0 0 4px rgba(45,108,223,.18),
        0 0 12px rgba(45,108,223,0.5);
    }
    50% {
      box-shadow:
        0 0 0 6px rgba(45,108,223,.10),
        0 0 18px rgba(45,108,223,0.7);
    }
  }
  .section-title {
    font-size: clamp(40px, 5.5vw, 88px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 0.98;
    max-width: 16ch;
    text-wrap: balance;
  }
  .section-title .serif {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-style: italic;
    color: var(--terracotta);
    letter-spacing: -0.01em;
    /* Slight optical scale-up so the italic serif visually balances the sans-serif */
    font-size: 1.08em;
    line-height: 0.9;
  }
  .section-head {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: end;
    margin-bottom: 80px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
  }
  /* === SECTION SUB — Liquid card uniforme === */
  .section-sub {
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 44ch;
    background:
      radial-gradient(circle at 0% 0%, rgba(45,108,223,0.08) 0%, transparent 55%),
      linear-gradient(160deg, #ffffff 0%, var(--cream) 100%);
    border: 1px solid rgba(45,108,223,0.15);
    border-radius: 18px;
    padding: 22px 26px;
    box-shadow:
      0 1px 0 rgba(255,255,255,.85) inset,
      0 6px 18px rgba(45,108,223,0.08),
      0 1px 3px rgba(11,31,58,0.04);
    align-self: end;
    overflow: hidden;
    isolation: isolate;
    transition:
      transform 0.4s cubic-bezier(0.4,0,0.2,1),
      box-shadow 0.4s ease,
      border-color 0.4s ease;
  }
  /* Brillo "liquid" diagonal */
  .section-sub::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
      120deg,
      transparent 0%,
      rgba(45,108,223,0.12) 45%,
      rgba(45,108,223,0.04) 55%,
      transparent 100%
    );
    transform: translateX(-110%);
    transition: transform 0.9s cubic-bezier(0.4,0,0.2,1);
  }
  /* Barrita lateral con animación de brillo */
  .section-sub::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -1px;
    width: 3px;
    height: 60%;
    background: linear-gradient(180deg,
      transparent 0%,
      var(--terracotta) 30%,
      var(--terracotta) 70%,
      transparent 100%
    );
    border-radius: 0 3px 3px 0;
    opacity: 0.85;
  }
  .section-sub:hover {
    transform: translateY(-2px);
    border-color: rgba(45,108,223,0.3);
    box-shadow:
      0 1px 0 rgba(255,255,255,.9) inset,
      0 12px 30px rgba(45,108,223,0.15),
      0 2px 6px rgba(11,31,58,0.06);
  }
  .section-sub:hover::after {
    transform: translateX(110%);
  }

  /* === Variante para fondos oscuros === */
  .whyus .section-sub,
  .reviews .section-sub,
  .contact .section-sub {
    background:
      radial-gradient(circle at 0% 0%, rgba(91,142,232,0.18) 0%, transparent 55%),
      linear-gradient(160deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border-color: rgba(91,142,232,0.22);
    color: rgba(255,250,245,0.78);
    box-shadow:
      0 1px 0 rgba(255,255,255,0.08) inset,
      0 6px 18px rgba(0,0,0,0.25);
  }
  .whyus .section-sub::after,
  .reviews .section-sub::after,
  .contact .section-sub::after {
    background: linear-gradient(
      120deg,
      transparent 0%,
      rgba(91,142,232,0.22) 45%,
      rgba(91,142,232,0.06) 55%,
      transparent 100%
    );
  }
  .whyus .section-sub::before,
  .reviews .section-sub::before,
  .contact .section-sub::before {
    background: linear-gradient(180deg,
      transparent 0%,
      var(--terracotta-soft) 30%,
      var(--terracotta-soft) 70%,
      transparent 100%
    );
  }
  .whyus .section-sub:hover,
  .reviews .section-sub:hover,
  .contact .section-sub:hover {
    border-color: rgba(91,142,232,0.4);
    box-shadow:
      0 1px 0 rgba(255,255,255,0.1) inset,
      0 12px 30px rgba(0,0,0,0.3),
      0 2px 6px rgba(91,142,232,0.15);
  }

  /* ───── SERVICES (3D banners) ───── */
  .services { background: var(--paper); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 24px;
    perspective: 1600px;
  }
  .service {
    --accent: #2d6cdf;
    --accent-deep: #1c4ea8;
    --accent-soft: #e3edff;
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
    font-family: inherit;
    color: inherit;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform .45s cubic-bezier(.2,.8,.2,1);
    isolation: isolate;
  }
  /* offset color back-plate */
  .service::before {
    content: "";
    position: absolute;
    inset: 14px -8px -10px 8px;
    background: linear-gradient(160deg, var(--accent), var(--accent-deep));
    border-radius: 22px;
    z-index: -1;
    transition: transform .45s cubic-bezier(.2,.8,.2,1), filter .45s;
    box-shadow: 0 18px 40px -14px rgba(11,31,58,.45);
  }
  .service-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, var(--accent-soft) 140%);
    border: 1px solid rgba(11,31,58,.08);
    border-radius: 22px;
    padding: 26px 26px 24px;
    min-height: 320px;
    display: flex; flex-direction: column;
    gap: 14px;
    overflow: hidden;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.95),
      0 1px 0 rgba(11,31,58,.04),
      0 8px 22px -8px rgba(11,31,58,.18),
      0 24px 50px -20px rgba(11,31,58,.22);
    transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s;
  }
  /* corner fold */
  .service-card::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 78px; height: 78px;
    background:
      linear-gradient(135deg, transparent 49%, rgba(11,31,58,.08) 50%, transparent 52%),
      linear-gradient(225deg, var(--accent) 0%, var(--accent-deep) 100%);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    border-top-right-radius: 22px;
    box-shadow: -2px 2px 6px rgba(11,31,58,.15);
    transition: width .45s, height .45s;
  }
  /* watermark glyph */
  .service-glyph {
    position: absolute;
    bottom: -22px; right: -14px;
    font-size: 150px;
    line-height: 1;
    opacity: .08;
    pointer-events: none;
    transform: rotate(-12deg);
    filter: blur(.2px);
    transition: transform .5s cubic-bezier(.2,.8,.2,1), opacity .5s;
  }
  /* floating icon disc */
  .service-icon {
    position: relative;
    z-index: 2;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(160deg, #ffffff, var(--accent-soft));
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 30px;
    line-height: 1;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,1),
      inset 0 -2px 4px rgba(11,31,58,.06),
      0 1px 0 rgba(11,31,58,.04),
      0 8px 18px -6px rgba(11,31,58,.22);
    transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s;
    margin-bottom: 4px;
  }
  .service-num {
    position: absolute;
    top: 18px; left: 22px;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 22px;
    color: var(--accent);
    z-index: 2;
    letter-spacing: -0.01em;
  }
  .service-card h3 {
    position: relative; z-index: 2;
    font-size: 20px; font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-top: 4px;
  }
  .service-card p {
    position: relative; z-index: 2;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.55;
    flex: 1;
  }
  .service-link {
    position: relative; z-index: 2;
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    margin-top: auto;
    padding-top: 4px;
  }
  .service-link svg {
    width: 14px; height: 14px;
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
  }
  /* Hover: pop out, deeper shadow, glyph drift */
  .service:hover { transform: translateY(-8px) scale(1.01); }
  .service:hover .service-card {
    transform: translate(-5px, -5px);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,1),
      0 1px 0 rgba(11,31,58,.05),
      0 16px 36px -10px rgba(11,31,58,.25),
      0 44px 80px -24px rgba(11,31,58,.32);
  }
  .service:hover::before { transform: translate(8px, 8px); filter: brightness(1.08); }
  .service:hover .service-card::before { width: 96px; height: 96px; }
  .service:hover .service-glyph { transform: rotate(-6deg) scale(1.08); opacity: .16; }
  .service:hover .service-icon { transform: translateY(-5px) rotate(-8deg) scale(1.06); box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 12px 24px -8px rgba(11,31,58,.30); }
  .service:hover .service-link svg { transform: translateX(8px); }
  .service:focus-visible { outline: none; }
  .service:focus-visible .service-card { box-shadow: 0 0 0 3px var(--accent), 0 24px 50px -20px rgba(11,31,58,.22); }

  /* ───── WHY US ───── */
  .whyus {
    background: var(--ink);
    color: var(--paper);
  }
  .whyus .section-eyebrow {
    color: var(--paper);
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.14);
  }
  .whyus .section-eyebrow::before { background: var(--terracotta-soft); box-shadow: 0 0 0 4px rgba(91,142,232,.22); }
  .whyus .section-title { color: var(--paper); }
  .whyus .section-title .serif { color: var(--terracotta-soft); }
  .whyus .section-sub { color: rgba(255, 250, 245, 0.6); }
  .whyus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .why-list { display: flex; flex-direction: column; gap: 0; }
  .why-row {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,250,245,.1);
    align-items: start;
  }
  .why-row:first-child { border-top: 1px solid rgba(255,250,245,.1); }
  .why-num {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 36px;
    color: var(--terracotta-soft);
    line-height: 1;
  }
  .why-row h4 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
  .why-row p {
    font-size: 14px;
    color: rgba(255,250,245,.55);
    line-height: 1.6;
  }
  .why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
  }
  .why-stat {
    background: linear-gradient(165deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
    padding: 32px 28px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow:
      0 1px 0 rgba(255,255,255,.06) inset,
      0 20px 40px rgba(0,0,0,.25),
      0 4px 12px rgba(0,0,0,.15);
    transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
    text-align: center;
  }
  .why-stat:hover { transform: translateY(-6px); box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 28px 56px rgba(0,0,0,.32), 0 8px 20px rgba(0,0,0,.2); }
  .why-stat-featured {
    grid-column: 1 / -1;
    background:
      radial-gradient(ellipse at top right, rgba(91, 142, 232, .35), transparent 60%),
      linear-gradient(165deg, rgba(45, 108, 223, .25), rgba(28, 78, 168, .15));
    border-color: rgba(91, 142, 232, .3);
    padding: 36px 32px;
    overflow: hidden;
  }
  .why-stat-featured::before {
    content: '';
    position: absolute;
    top: -40%; right: -20%;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(91, 142, 232, .4), transparent 65%);
    pointer-events: none;
  }
  .why-stat-featured > * { position: relative; }
  .why-stat-num {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 72px;
    color: var(--paper);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    background: linear-gradient(180deg, var(--paper) 0%, var(--terracotta-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .why-stat-featured .why-stat-num { font-size: 108px; }
  .why-stat-lbl {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    font-weight: 500;
  }
  .why-stat-meta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 14px;
    font-size: 12px;
    color: rgba(255,255,255,.55);
  }
  .why-stat-meta svg { width: 12px; height: 12px; stroke: var(--terracotta-soft); fill: none; stroke-width: 2; }

  .why-quote {
    grid-column: 1 / -1;
    background: linear-gradient(165deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 20px 40px rgba(0,0,0,.2);
    display: flex; gap: 16px; align-items: flex-start;
  }
  .why-quote-mark {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 56px;
    line-height: .8;
    color: var(--terracotta-soft);
    flex-shrink: 0;
  }
  .why-quote-text {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.4;
    color: var(--paper);
    margin-bottom: 10px;
  }
  .why-quote-author {
    display: flex; align-items: center; gap: 10px;
    font-size: 12px;
    color: rgba(255,255,255,.6);
  }
  .why-quote-author .dot { width: 6px; height: 6px; background: var(--terracotta-soft); border-radius: 50%; }
  .why-quote-stars { display: inline-flex; gap: 1px; }
  .why-quote-stars svg { width: 11px; height: 11px; fill: var(--terracotta-soft); }

  .why-badge-strip {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 12px 32px rgba(0,0,0,.2);
  }
  .why-badge {
    background: rgba(11, 31, 58, .6);
    padding: 18px 14px;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
  }
  .why-badge-icon {
    font-size: 20px;
    line-height: 1;
  }
  .why-badge-label {
    font-size: 10px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    font-weight: 500;
  }

  /* ───── PROCESS ───── */
  .process { background: var(--cream); }
  .process-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
  }
  .step {
    background: var(--paper);
    padding: 36px 28px 32px;
    border-radius: 18px;
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,1),
      0 2px 4px rgba(11,31,58,.04),
      0 8px 24px -8px rgba(11,31,58,.10),
      0 20px 44px -16px rgba(11,31,58,.08);
  }
  /* top accent bar */
  .step::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta), var(--terracotta-soft));
    border-radius: 18px 18px 0 0;
  }
  /* step number watermark */
  .step::after {
    content: attr(data-num);
    position: absolute;
    top: -10px; right: 16px;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 120px;
    line-height: 1;
    color: var(--terracotta);
    opacity: .06;
    pointer-events: none;
    user-select: none;
  }
  .step:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,1),
      0 4px 8px rgba(11,31,58,.06),
      0 20px 40px -10px rgba(11,31,58,.16),
      0 40px 70px -20px rgba(11,31,58,.12);
  }
  .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(160deg, var(--cream) 0%, var(--cream-2) 100%);
    border: 1px solid var(--line);
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 24px;
    line-height: 1;
    color: var(--terracotta);
    margin-bottom: 24px;
    position: relative; z-index: 2;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 2px 6px rgba(11,31,58,.08);
  }
  .step h4 {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 10px;
    position: relative; z-index: 2;
  }
  .step p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    position: relative; z-index: 2;
  }

  /* ───── REVIEWS (Google) ───── */
  .reviews { background: var(--ink); }
  .reviews .section-eyebrow {
    color: var(--paper);
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.14);
  }
  .reviews .section-eyebrow::before { background: var(--terracotta-soft); box-shadow: 0 0 0 4px rgba(91,142,232,.22); }
  .reviews .section-title { color: var(--paper); }
  .reviews .section-title .serif { color: var(--terracotta-soft); }
  .reviews .section-sub { color: rgba(255,250,245,.6); }
  .reviews-header {
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
    margin-bottom: 64px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,250,245,.12);
  }
  .gscore {
    display: flex; align-items: center; gap: 24px;
    flex-wrap: wrap;
  }
  .gscore-badge {
    display: inline-flex; align-items: center; gap: 14px;
    background: rgba(255,255,255,.06);
    padding: 16px 22px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: none;
    transition: background .2s, transform .2s;
  }
  .gscore-badge:hover { background: rgba(255,255,255,.10); transform: translateY(-2px); }
  .gscore-badge-logo { display: flex; align-items: center; }
  .gscore-badge-text { display: flex; flex-direction: column; gap: 2px; }
  .gscore-badge-title { font-size: 13px; font-weight: 600; color: var(--paper); line-height: 1.2; }
  .gscore-badge-sub { font-size: 11px; color: rgba(255,250,245,.55); }
  .gscore-num {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 64px;
    line-height: 1;
    color: var(--paper);
  }
  .gscore-stars { display: flex; gap: 2px; margin-bottom: 4px; }
  .gscore-stars svg { width: 18px; height: 18px; fill: #f5a623; }
  .gscore-meta { font-size: 13px; color: rgba(255,250,245,.55); }
  .gscore-cta {
    background: rgba(255,255,255,.10); color: var(--paper);
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 14px; font-weight: 500;
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid rgba(255,255,255,.16);
    transition: background .2s;
  }
  .gscore-cta:hover { background: var(--terracotta); border-color: var(--terracotta); }
  .gscore-cta svg { width: 14px; height: 14px; }

  /* ───── CAROUSEL — Scroll snap nativo (fluido en móvil) ───── */
  .reviews-carousel-wrap {
    position: relative;
  }
  .reviews-carousel {
    overflow: hidden;
    border-radius: 20px;
  }
  .reviews-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 4px 8px;
    will-change: scroll-position;
  }
  .reviews-track::-webkit-scrollbar { display: none; }
  .reviews-track .review {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
    scroll-snap-align: start;
  }
  .carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
  }
  .carousel-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,250,245,.2);
    background: rgba(255,255,255,.08);
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .2s;
    color: var(--paper);
  }
  .carousel-btn:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    transform: translateY(-2px);
  }
  .carousel-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
  .carousel-dots {
    display: flex; gap: 8px; align-items: center;
  }
  .carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,250,245,.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .25s, width .25s;
  }
  .carousel-dot.active {
    background: var(--terracotta-soft);
    width: 24px;
    border-radius: 4px;
  }
  .review {
    background: #ffffff;
    border: 1px solid rgba(11,31,58,.09);
    padding: 28px 26px 22px;
    border-radius: 18px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
    display: flex; flex-direction: column; gap: 14px;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,1),
      0 2px 4px rgba(11,31,58,.04),
      0 8px 20px -8px rgba(11,31,58,.10),
      0 20px 40px -16px rgba(11,31,58,.08);
  }
  .review::before {
    content: "";
    position: absolute;
    inset: 0; bottom: auto;
    height: 3px;
    background: linear-gradient(90deg, var(--terracotta), var(--terracotta-soft));
    border-radius: 18px 18px 0 0;
    z-index: 1;
  }
  .review:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,1),
      0 4px 8px rgba(11,31,58,.06),
      0 18px 36px -10px rgba(11,31,58,.16),
      0 36px 64px -20px rgba(11,31,58,.14);
  }
  .review-top {
    display: flex; align-items: center; gap: 12px;
    position: relative; z-index: 2;
  }
  .review-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(160deg, var(--cream) 0%, var(--cream-2) 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--ink);
    font-size: 22px;
    line-height: 1;
    border: 1px solid var(--line);
    box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 2px 6px rgba(11,31,58,.08);
  }
  .review-name { font-size: 14px; font-weight: 600; color: var(--ink); }
  .review-date { font-size: 12px; color: var(--muted); }
  .review-stars { display: flex; gap: 1px; position: relative; z-index: 2; }
  .review-stars svg { width: 14px; height: 14px; fill: #f5a623; }
  .review-text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--ink-soft);
    flex: 1;
    position: relative; z-index: 2;
  }
  .review-google {
    display: inline-flex; align-items: center; gap: 8px;
    position: relative; z-index: 2;
    padding-top: 14px;
    margin-top: 4px;
    border-top: 1px solid var(--line-soft);
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
  }
  .review-google svg { flex-shrink: 0; }

  /* ───── TEAM ───── */
  .team {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border-top: 1px solid rgba(11,31,58,0.08);
    border-bottom: 1px solid rgba(11,31,58,0.08);
    position: relative;
  }
  .team::before {
    content: '';
    position: absolute;
    top: -10%; right: -5%;
    width: 50vw; height: 50vw;
    max-width: 600px; max-height: 600px;
    background: radial-gradient(circle, rgba(45,108,223,.05) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
  }
  .team::after {
    content: '';
    position: absolute;
    bottom: 5%; left: -10%;
    width: 40vw; height: 40vw;
    max-width: 500px; max-height: 500px;
    background: radial-gradient(circle, rgba(45,108,223,.03) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
  }
  .team > .container { position: relative; z-index: 1; }
  .team-feature {
    display: grid;
    grid-template-columns: 5fr 6fr;
    grid-template-areas:
      "photo info"
      "photo creds";
    column-gap: 56px;
    row-gap: 0;
    align-items: start;
    margin-top: 56px;
  }
  .team-feature-photo { grid-area: photo; align-self: center; }
  .team-feature-info  { grid-area: info; }
  .team-creds         { grid-area: creds; }
  .team-feature-photo {
    aspect-ratio: 4/5;
    border-radius: 18px;
    overflow: hidden;
    background: var(--cream-2);
    box-shadow: var(--shadow-lg), var(--bevel-edge);
    transition: transform .5s;
  }
  .team-feature-photo:hover { transform: translateY(-4px) rotate(-.5deg); }
  .team-feature-photo img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .team-feature-eyebrow {
    font-family: ui-monospace, monospace;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11px;
    color: var(--terracotta);
    margin-bottom: 18px;
  }
  .team-feature-info h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(40px, 4.5vw, 60px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.02;
    margin-bottom: 20px;
  }
  .team-feature-quote {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.5;
    color: var(--ink-2);
    padding-left: 20px;
    border-left: 2px solid var(--terracotta);
    margin-bottom: 28px;
  }
  .team-credentials {
    list-style: none;
    display: grid;
    gap: 8px;
    font-size: 14px;
    color: var(--ink-2);
  }
  .team-credentials li { padding-left: 4px; }
  .cred-bullet {
    color: var(--terracotta);
    font-weight: 700;
    margin-right: 6px;
  }
  @media (max-width: 900px) {
    .team-feature { grid-template-columns: 1fr; gap: 36px; }
  }

  /* ───── CERTIFICATIONS ───── */
  .certs { background: var(--cream); }
  .certs-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: start;
  }
  .cert-badge-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .cert-badge {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 32px 28px;
    display: flex;
    align-items: center;
    gap: 22px;
    box-shadow: var(--shadow-md);
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .cert-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
  .cert-badge-icon {
    width: 64px; height: 64px; min-width: 64px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    background: var(--cream);
    border: 1px solid var(--line-soft);
  }
  .cert-badge-body { flex: 1; }
  .cert-badge-name {
    font-size: 15px; font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 3px;
  }
  .cert-badge-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
  }
  .cert-badge-seal {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 10px;
    padding: 5px 10px;
    background: #e8f5e9;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: #2e7d32;
    letter-spacing: 0.04em;
  }
  .cert-badge-seal svg { width: 12px; height: 12px; }
  .cert-credentials-wrap {
    background: var(--paper);
    border-radius: 24px;
    border: 1px solid var(--line);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
  }
  .cert-credentials-title {
    font-size: 13px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line-soft);
  }
  .cert-cred-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .cert-cred-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .cert-cred-item:last-child { border-bottom: none; padding-bottom: 0; }
  .cert-cred-dot {
    width: 8px; height: 8px; min-width: 8px;
    border-radius: 50%;
    background: var(--terracotta);
    margin-top: 6px;
    box-shadow: 0 0 0 3px rgba(45,108,223,.15);
  }
  .cert-cred-text { flex: 1; }
  .cert-cred-label {
    font-size: 14px; font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
  }
  .cert-cred-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
  }
  @media (max-width: 768px) {
    .certs-grid { grid-template-columns: 1fr; gap: 28px; }
    .cert-credentials-wrap { padding: 24px 20px; }
  }

  /* ── Team credentials (inline) ── */
  .team-creds {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line-soft);
  }
  .team-creds-label {
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--muted);
    margin-bottom: 14px;
  }
  /* === FORMACIÓN ACADÉMICA — Liquid cards === */
  .team-creds-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .team-creds-list li {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px 14px 44px;
    background: linear-gradient(160deg, rgba(255,250,245,0.95) 0%, rgba(245,238,228,0.6) 100%);
    border-radius: 14px;
    border: 1px solid rgba(11,31,58,0.08);
    box-shadow: 0 2px 8px rgba(11,31,58,0.04);
    overflow: hidden;
    isolation: isolate;
    transition:
      background 0.35s ease,
      border-color 0.35s ease,
      transform 0.25s ease,
      box-shadow 0.35s ease;
  }
  /* Brillo "liquid" diagonal */
  .team-creds-list li::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
      120deg,
      transparent 0%,
      rgba(45,108,223,0.12) 45%,
      rgba(45,108,223,0.04) 55%,
      transparent 100%
    );
    transform: translateX(-110%);
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
  }
  /* Icono "diploma" decorativo */
  .team-creds-list li::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    width: 22px;
    height: 22px;
    background-color: var(--terracotta);
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 10v6M2 10l10-5 10 5-10 5z'/><path d='M6 12v5c3 3 9 3 12 0v-5'/></svg>");
            mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 10v6M2 10l10-5 10 5-10 5z'/><path d='M6 12v5c3 3 9 3 12 0v-5'/></svg>");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-size: contain;
            mask-size: contain;
    opacity: 0.85;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  }
  .team-creds-list li:hover {
    background: linear-gradient(160deg, #ffffff 0%, rgba(245,238,228,0.8) 100%);
    border-color: rgba(45,108,223,0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(11,31,58,0.12), 0 2px 6px rgba(11,31,58,0.06);
  }
  .team-creds-list li:hover::before {
    transform: translateX(110%);
  }
  .team-creds-list li:hover::after {
    transform: scale(1.15) rotate(-5deg);
    opacity: 1;
  }
  .tcred-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.35;
    letter-spacing: -0.005em;
  }
  .tcred-uni {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.4;
  }
  .team-sepa {
    margin-top: 14px;
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px;
    background: #e8f5e9;
    border-radius: 12px;
    font-size: 13px; color: #2e7d32;
    border: 1px solid rgba(46,125,50,.15);
  }
  .team-sepa svg { width: 16px; height: 16px; flex-shrink: 0; stroke: #2e7d32; }
  .team-sepa strong { font-weight: 700; }
  @media (max-width: 640px) {
    .team-creds-list { grid-template-columns: 1fr; }
  }

  /* ───── CTA ───── */
  .cta-band {
    background: var(--terracotta);
    color: var(--paper);
    padding: 96px 32px;
    text-align: center;
  }
  .cta-band h2 {
    font-size: clamp(40px, 6vw, 88px);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 32px;
    max-width: 18ch;
    margin-left: auto; margin-right: auto;
  }
  .cta-band h2 .serif {
    font-weight: 400;
    color: var(--cream);
  }
  .cta-band-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .cta-band .btn-primary { background: var(--ink); }
  .cta-band .btn-primary:hover { background: var(--paper); color: var(--ink); }
  .cta-band .btn-ghost { color: var(--paper); border-color: rgba(255,250,245,.4); }
  .cta-band .btn-ghost:hover { background: rgba(255,250,245,.1); border-color: var(--paper); }

  /* ───── TX MODAL ───── */
  .tx-modal {
    position: fixed; inset: 0; z-index: 200;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    animation: txFade .25s ease;
  }
  .tx-modal[hidden] { display: none; }
  .tx-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(15,15,15,.55);
    backdrop-filter: blur(4px);
  }
  .tx-modal-card {
    --tx-accent: #2d6cdf;
    --tx-accent-deep: #1c4ea8;
    --tx-accent-soft: #e3edff;
    position: relative;
    background: var(--paper);
    border-radius: 22px;
    max-width: 980px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.95);
    animation: txRise .35s cubic-bezier(.2,.8,.2,1);
  }
  .tx-modal-inner {
    padding: 0;
    overflow-y: auto;
    max-height: 90vh;
  }
  .tx-close {
    position: absolute; top: 20px; right: 20px;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.3);
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 10;
    transition: background .2s, transform .2s;
  }
  .tx-close:hover { background: rgba(255,255,255,.32); transform: rotate(90deg); }
  .tx-close svg { width: 16px; height: 16px; stroke: var(--paper); color: var(--paper); }

  /* Hero header */
  .tx-hero {
    position: relative;
    background:
      radial-gradient(ellipse at 80% -20%, rgba(255,255,255,.18), transparent 50%),
      linear-gradient(160deg, var(--tx-accent) 0%, var(--tx-accent-deep) 100%);
    color: var(--paper);
    padding: 56px 56px 48px;
    overflow: hidden;
  }
  .tx-glyph {
    position: absolute;
    top: -40px; right: -30px;
    font-size: 260px;
    line-height: 1;
    opacity: .12;
    transform: rotate(-12deg);
    pointer-events: none;
    user-select: none;
  }
  .tx-eyebrow {
    font-family: ui-monospace, monospace;
    text-transform: uppercase; letter-spacing: .18em;
    font-size: 11px;
    color: rgba(255,255,255,.85);
    margin-bottom: 14px;
    display: inline-flex; align-items: center; gap: 10px;
    position: relative;
  }
  .tx-eyebrow::before {
    content: ''; width: 28px; height: 1px;
    background: rgba(255,255,255,.7);
  }
  .tx-title {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--paper);
    position: relative;
    max-width: 18ch;
  }
  .tx-title .serif {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,.85);
  }
  .tx-lead {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 19px;
    line-height: 1.5;
    color: rgba(255,255,255,.92);
    max-width: 60ch;
    margin: 0;
    padding: 0;
    border: none;
    position: relative;
  }

  /* Q&A content */
  .tx-content {
    padding: 44px 56px 48px;
    background: var(--paper);
  }
  .tx-section-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 28px;
    display: flex; align-items: center; gap: 14px;
  }
  .tx-section-label::before, .tx-section-label::after {
    content: ''; flex: 1; height: 1px; background: var(--line);
  }
  .tx-body { display: grid; gap: 0; margin: 0 0 32px; }
  .tx-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 22px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
    transition: background .2s;
  }
  .tx-item:last-child { border-bottom: none; }
  .tx-item:hover { background: linear-gradient(90deg, var(--tx-accent-soft), transparent 70%); }
  .tx-item-num {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1;
    color: var(--tx-accent);
    background: var(--tx-accent-soft);
    border-radius: 50%;
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.9),
      0 4px 10px -4px rgba(11,31,58,.18);
  }
  .tx-q {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.3;
  }
  .tx-a {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--muted);
  }

  .tx-cta {
    display: flex; gap: 10px; flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }
  .tx-cta .btn-dark {
    background: var(--tx-accent);
    color: var(--paper);
    padding: 14px 24px;
    border-radius: 999px;
    display: inline-flex; align-items: center; gap: 10px;
    font-weight: 500;
    font-size: 14px;
    transition: background .25s, transform .25s, box-shadow .25s;
    box-shadow: 0 8px 18px -6px rgba(11,31,58,.25);
  }
  .tx-cta .btn-dark:hover {
    background: var(--tx-accent-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -6px rgba(11,31,58,.35);
  }
  .tx-cta .btn-dark svg { width: 14px; height: 14px; }
  .tx-cta .btn-ghost {
    border: 1px solid var(--line);
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 14px; font-weight: 500;
    color: var(--ink);
    transition: border-color .2s, background .2s;
  }
  .tx-cta .btn-ghost:hover { border-color: var(--ink); background: var(--cream); }

  @keyframes txFade { from { opacity: 0; } to { opacity: 1; } }
  @keyframes txRise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
  @media (max-width: 700px) {
    .tx-hero { padding: 44px 28px 36px; }
    .tx-glyph { font-size: 180px; top: -28px; right: -20px; }
    .tx-content { padding: 32px 28px 36px; }
    .tx-item { grid-template-columns: 44px 1fr; gap: 14px; }
    .tx-item-num { width: 36px; height: 36px; font-size: 18px; }
  }
  body.tx-open { overflow: hidden; }

  /* ───── BOOKING (multi-step) ───── */
  .booking { background: var(--cream); }
  .booking-shell {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 0;
    align-items: stretch;
    background: var(--paper);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl), var(--bevel-edge);
    border: 1px solid rgba(11,31,58,.06);
  }
  .booking-side {
    background: var(--ink);
    color: var(--paper);
    padding: 48px;
    display: flex; flex-direction: column; justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
  }
  .booking-side::before {
    content: '';
    position: absolute; inset: -50% -50% auto auto;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(184,92,56,.3), transparent 70%);
    pointer-events: none;
  }
  .booking-side > * { position: relative; }
  .booking-side h3 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 16px;
  }
  .booking-side h3 .serif {
    font-weight: 400; color: var(--terracotta-soft);
  }
  .booking-side p {
    font-size: 15px;
    color: rgba(255,250,245,.7);
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .booking-side ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .booking-side li { font-size: 14px; color: rgba(255,250,245,.8); display: flex; gap: 10px; align-items: flex-start; }
  .booking-side li svg { width: 14px; height: 14px; stroke: var(--terracotta-soft); flex-shrink: 0; margin-top: 4px; }
  .booking-call {
    border-top: 1px solid rgba(255,250,245,.15);
    padding-top: 24px;
    font-size: 13px;
    color: rgba(255,250,245,.6);
  }
  .booking-call a {
    display: block;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 32px;
    color: var(--paper);
    margin-top: 4px;
    transition: color .2s;
  }
  .booking-call a:hover { color: var(--terracotta-soft); }

  .booking-form {
    padding: 48px;
    display: flex; flex-direction: column;
  }
  .step-bar {
    display: flex; gap: 8px;
    margin-bottom: 32px;
  }
  .step-bar-item {
    flex: 1; height: 3px;
    background: var(--line);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
  }
  .step-bar-item::after {
    content: ''; position: absolute; inset: 0;
    background: var(--terracotta);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
  }
  .step-bar-item.active::after, .step-bar-item.done::after { transform: scaleX(1); }

  .step-label {
    font-family: ui-monospace, monospace;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.08em;
    margin-bottom: 8px;
  }
  .step-title {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
  }
  .step-title .serif { font-weight: 400; color: var(--terracotta); }

  .opt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
  }
  .opt {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px 16px;
    cursor: pointer;
    transition: all .2s;
    text-align: left;
    display: flex; flex-direction: column; gap: 6px;
    background: var(--paper);
    font-family: inherit;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
  }
  .opt:hover { border-color: var(--ink); background: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .opt.selected { border-color: var(--ink); background: var(--ink); color: var(--paper); box-shadow: var(--shadow-md); }
  .opt-icon { width: 24px; height: 24px; }
  .opt-icon svg { stroke: currentColor; fill: none; stroke-width: 1.5; }
  .opt-label { font-size: 14px; font-weight: 500; }
  .opt-sub { font-size: 12px; opacity: .65; }

  .field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
  .field label {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.04em;
    font-weight: 500;
  }
  .field input, .field select, .field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    background: var(--paper);
    outline: none;
    transition: border-color .2s, background .2s;
  }
  .field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--ink);
    background: var(--paper);
  }
  .field input.error { border-color: var(--terracotta); }
  .field-error { font-size: 12px; color: var(--terracotta); }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  .slot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 24px;
  }
  .slot {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 8px;
    font-size: 13px;
    font-family: inherit;
    color: var(--ink);
    cursor: pointer;
    transition: all .2s;
  }
  .slot:hover { border-color: var(--ink); }
  .slot.selected { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .slot.disabled { opacity: .3; cursor: not-allowed; text-decoration: line-through; }

  .day-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 16px;
  }
  .day {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px 8px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    background: var(--paper);
    font-family: inherit;
    box-shadow: var(--shadow-sm);
  }
  .day:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .day.selected { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .day-name { font-size: 11px; opacity: .6; letter-spacing: 0.04em; }
  .day-num { font-size: 18px; font-weight: 600; }
  .day-mon { font-size: 11px; opacity: .6; }

  .step-actions {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: auto;
    padding-top: 24px;
  }
  .step-back {
    font-size: 14px;
    color: var(--muted);
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 0;
    transition: color .2s;
  }
  .step-back:hover { color: var(--ink); }
  .step-back svg { width: 14px; height: 14px; }
  .step-next {
    background: var(--ink); color: var(--paper);
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 14px; font-weight: 500;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all .25s;
  }
  .step-next:hover { background: var(--terracotta); }
  .step-next:disabled { opacity: .35; cursor: not-allowed; }
  .step-next svg { width: 14px; height: 14px; }

  .summary { background: var(--cream); padding: 20px; border-radius: 4px; margin-bottom: 20px; }
  .summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; }
  .summary-row span:first-child { color: var(--muted); }
  .summary-row span:last-child { font-weight: 500; color: var(--ink); }

  .success {
    text-align: center;
    padding: 32px 0;
  }
  .success-icon {
    width: 72px; height: 72px;
    background: var(--cream); border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
  }
  .success-icon svg { width: 32px; height: 32px; stroke: var(--terracotta); fill: none; stroke-width: 1.5; }
  .success h3 {
    font-size: 32px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 12px;
  }
  .success h3 .serif { font-weight: 400; color: var(--terracotta); }
  .success p { color: var(--muted); margin-bottom: 24px; }

  /* ───── CONTACT ───── */
  .contact { background: var(--ink); padding: 120px 32px; }
  .contact .section-eyebrow {
    color: var(--paper);
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.14);
  }
  .contact .section-eyebrow::before { background: var(--terracotta-soft); box-shadow: 0 0 0 4px rgba(91,142,232,.22); }
  .contact .section-title { color: var(--paper); }
  .contact .section-title .serif { color: var(--terracotta-soft); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: center;
  }
  .contact-grid > .map-frame {
    justify-self: center;
    width: 100%;
    max-width: 720px;
  }
  .info-list { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
  .info-item {
    display: grid; grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
  }
  .info-item { border-bottom-color: rgba(255,250,245,.12); }
  .info-item:first-child { border-top-color: rgba(255,250,245,.12); }
  .info-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .info-icon svg { width: 18px; height: 18px; stroke: var(--terracotta-soft); fill: none; stroke-width: 1.5; }
  .info-item h5 {
    font-size: 11px; letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,250,245,.45); font-weight: 500;
    margin-bottom: 6px;
  }
  .info-item p, .info-item a { font-size: 16px; color: var(--paper); display: block; line-height: 1.5; }
  .info-item a:hover { color: var(--terracotta-soft); }
  .map-frame {
    border-radius: 16px; overflow: hidden;
    height: 540px;
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: var(--shadow-lg);
  }
  .map-frame iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.5) contrast(1.05); }

  /* ───── FOOTER ───── */
  footer {
    background: var(--ink); color: rgba(255,250,245,.6);
    padding: 80px 32px 32px;
  }
  .footer-inner { max-width: 1280px; margin: 0 auto; }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,250,245,.08);
    margin-bottom: 0;
  }
  .footer-brand .logo { color: var(--paper); margin-bottom: 16px; }
  .footer-brand .logo-mark { background: var(--paper); color: var(--ink); }
  .footer-brand p {
    font-size: 14px; line-height: 1.6;
    max-width: 320px;
    margin-top: 12px;
  }
  .footer-hours {
    margin-top: 24px;
  }
  .footer-hours strong {
    display: block;
    color: var(--terracotta-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .footer-hours h5 {
    color: var(--paper); font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .footer-hours p {
    margin-top: 0; font-size: 13px;
    color: rgba(255,250,245,.7);
  }
  .footer-credentials {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,250,245,.08);
    display: flex; flex-direction: column; gap: 4px;
    font-size: 11px; line-height: 1.5;
    color: rgba(255,250,245,.5);
    letter-spacing: 0.02em;
  }
  /* Descripción del brand */
  .footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,250,245,.6);
    margin-top: 4px;
    max-width: 360px;
  }

  /* Columnas de enlaces con emojis */
  .footer-links h4,
  footer h4 {
    color: var(--paper);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .footer-links ul,
  footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
  }
  .footer-links li a,
  footer ul a {
    font-size: 14px;
    color: rgba(255,250,245,.55);
    transition: color .2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .footer-links li a:hover,
  footer ul a:hover { color: var(--terracotta-soft); }

  /* Fila inferior con copyright */
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    font-size: 12px;
    color: rgba(255,250,245,.3);
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,250,245,.06);
  }

  /* Links legales */
  .footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 0 22px;
    border-top: 1px solid rgba(255,250,245,.05);
    font-size: 12px;
  }
  .footer-legal-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-legal-links a {
    color: rgba(255,250,245,.3);
    text-decoration: none;
    transition: color .2s ease;
  }
  .footer-legal-links a:hover {
    color: rgba(255,250,245,.7);
  }

  /* Barra de créditos abajo del todo */
  .footer-credits {
    text-align: center;
    font-size: 11px;
    padding: 12px 16px;
    background: #0a172e;
    color: rgba(255,250,245,.45);
    border-top: 1px solid rgba(255,250,245,.06);
  }
  .footer-credits a {
    color: rgba(255,250,245,.65);
    text-decoration: none;
    transition: color .2s ease;
  }
  .footer-credits a:hover {
    text-decoration: underline;
    color: #fff;
  }

  /* ───── BREAKPOINTS ───── */
  @media (max-width: 1180px) {
    .services-grid { grid-template-columns: repeat(4, 1fr); }
  }

  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-stat-card { left: auto; right: 24px; bottom: 24px; }
    .whyus-grid { grid-template-columns: 1fr; gap: 40px; }
    .booking-shell { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .process-row { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .section-head { grid-template-columns: 1fr; gap: 24px; }
    .section { padding: 60px 32px; }
    .contact { padding: 60px 32px; }

    /* Tablet: menú hamburguesa + logo compacto (evita overflow) */
    header nav a:not(.menu-btn) { display: none; }
    header nav .cta-nav { display: none; }
    .menu-btn { display: inline-flex; }
    header .logo-mark-img { width: 50px; height: 50px; }
    header .logo-text { font-size: 22px; }
    header .logo-text small { font-size: 8px; }
  }

  /* ───── WHATSAPP FAB ───── */
  .wa-fab {
    position: fixed; bottom: 24px; right: 24px; z-index: 90;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 4px 12px rgba(0,0,0,.15);
    transition: transform .25s, box-shadow .25s;
  }
  .wa-fab:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 12px 32px rgba(37,211,102,.5), 0 6px 16px rgba(0,0,0,.18); }
  .wa-fab svg { width: 30px; height: 30px; }
  .wa-fab .wa-pulse {
    position: absolute; inset: 0; border-radius: 50%;
    background: #25D366; opacity: .5;
    animation: waPulse 2.4s ease-out infinite;
    z-index: -1;
  }
  @keyframes waPulse {
    0% { transform: scale(1); opacity: .5; }
    100% { transform: scale(1.6); opacity: 0; }
  }
  /* wa-fab mobile handled in comprehensive mobile block below */

  /* ───── MODAL PRIVACIDAD ───── */
  #modalPrivacidad, #modalAvisoLegal, #modalCookies { position:fixed; inset:0; z-index:9000; display:flex; align-items:center; justify-content:center; }
  .modal-overlay { position:absolute; inset:0; background:rgba(0,0,0,.55); cursor:pointer; }
  .modal-box { position:relative; background:#fff; border-radius:12px; max-width:720px; width:calc(100% - 2rem); max-height:85vh; overflow:hidden; display:flex; flex-direction:column; box-shadow:0 20px 60px rgba(0,0,0,.25); }
  .modal-close { position:absolute; top:1rem; right:1rem; background:none; border:none; font-size:1.4rem; cursor:pointer; color:#666; line-height:1; padding:.25rem .5rem; z-index:1; }
  .modal-close:hover { color:#000; }
  .modal-content { padding:2.5rem 2rem 2rem; overflow-y:auto; }
  .modal-content h2 { font-size:1.5rem; margin-bottom:1.25rem; }
  .modal-content h3 { font-size:1.1rem; margin:1.5rem 0 .5rem; }
  .modal-content h4 { font-size:1rem; margin:1.25rem 0 .4rem; font-weight:600; }
  .modal-content p, .modal-content li { font-size:.93rem; line-height:1.65; color:#444; }
  .modal-content ul { padding-left:1.4rem; margin:.4rem 0 .8rem; }
  .modal-content a { color:var(--clr-accent, #1a6fc4); }

  /* ───── COOKIE BANNER ───── */
  .cookie-banner {
    position: fixed; bottom: 24px; left: 24px; right: 24px;
    max-width: 520px; z-index: 95;
    background: var(--ink); color: var(--paper);
    border-radius: 18px;
    padding: 24px 28px;
    box-shadow: var(--shadow-xl);
    display: none;
    transform: translateY(20px); opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
  }
  .cookie-banner.show { display: block; }
  .cookie-banner.in { transform: translateY(0); opacity: 1; }
  .cookie-banner h4 {
    font-size: 14px; font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    color: var(--paper);
  }
  .cookie-banner p {
    font-size: 13px; line-height: 1.55;
    color: rgba(255,250,245,.72);
    margin-bottom: 16px;
  }
  .cookie-banner p a { color: var(--paper); text-decoration: underline; text-underline-offset: 3px; }
  .cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
  .cookie-btn {
    appearance: none; border: none; cursor: pointer;
    font-family: inherit;
    font-size: 13px; font-weight: 500;
    padding: 10px 18px; border-radius: 999px;
    transition: background .2s, color .2s;
  }
  .cookie-btn.primary { background: var(--paper); color: var(--ink); }
  .cookie-btn.primary:hover { background: var(--terracotta); color: var(--paper); }
  .cookie-btn.ghost { background: transparent; color: var(--paper); border: 1px solid rgba(255,250,245,.25); }
  .cookie-btn.ghost:hover { background: rgba(255,250,245,.08); }
  /* cookie-banner mobile handled in comprehensive mobile block below */

  /* ───── FAQ — Cards estilo Noriega con colores Dentística ───── */
  .faq-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 860px;
    margin: 48px auto 0;
    border-top: none;
  }
  .faq-item {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(45,108,223,0.12);
    background: linear-gradient(160deg, #ffffff 0%, var(--cream) 100%);
    padding: 0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  }
  .faq-item:nth-child(odd) { padding-right: 0; border-right: 1px solid rgba(45,108,223,0.12); }
  .faq-item:nth-child(even) { padding-left: 0; }
  .faq-item:hover {
    border-color: rgba(45,108,223,0.3);
    box-shadow: 0 6px 18px rgba(45,108,223,0.08);
  }
  .faq-item[open] {
    border-color: rgba(45,108,223,0.35);
    background: linear-gradient(160deg, #ffffff 0%, rgba(227,237,255,0.5) 100%);
    box-shadow: 0 8px 24px rgba(45,108,223,0.12);
  }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.35;
    user-select: none;
    transition: color 0.25s ease;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary:hover { color: var(--terracotta); }
  .faq-item summary .faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(45,108,223,0.08);
    border: 1px solid rgba(45,108,223,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    transition:
      transform 0.35s cubic-bezier(0.4,0,0.2,1),
      background 0.3s ease,
      color 0.3s ease,
      border-color 0.3s ease;
  }
  .faq-item summary .faq-icon svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    transition: transform 0.3s ease;
  }
  .faq-item[open] summary .faq-icon {
    background: var(--terracotta);
    color: var(--paper);
    border-color: var(--terracotta);
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(45,108,223,0.35);
  }
  .faq-answer {
    padding: 0 22px 22px;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 56ch;
    margin-top: 0;
  }
  @media (max-width: 900px) {
    .faq-grid { grid-template-columns: 1fr; }
    .faq-item:nth-child(odd) { padding-right: 0; border-right: 1px solid rgba(45,108,223,0.12); }
    .faq-item:nth-child(even) { padding-left: 0; }
    .faq-item summary { font-size: 15px; padding: 18px 18px; gap: 12px; }
    .faq-answer { padding: 0 18px 18px; font-size: 14px; }
  }

  /* ───── SCROLL PROGRESS INDICATOR ───── */
  #scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--terracotta), var(--terracotta-soft));
    z-index: 200;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
  }

  /* ───── MOBILE STICKY CTA ───── */
  .mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 80;
    padding: 12px 16px 20px;
    background: linear-gradient(to top, var(--paper) 80%, transparent);
    pointer-events: none;
  }
  .mobile-sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--ink);
    color: var(--paper);
    font-size: 15px;
    font-weight: 600;
    padding: 16px 24px;
    border-radius: 16px;
    text-decoration: none;
    pointer-events: auto;
    box-shadow: 0 8px 24px rgba(11,31,58,.3);
    transition: background .25s, transform .25s, box-shadow .25s;
    min-height: 52px;
  }
  .mobile-sticky-cta a:hover { background: var(--terracotta); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(45,108,223,.35); }
  .mobile-sticky-cta a svg { width: 16px; height: 16px; }

  /* ───── SECTION BACKGROUND PATTERNS ───── */
  .process::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(11,31,58,.05) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
  }
  .process { position: relative; }

  .booking::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(11,31,58,.04) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
  }
  .booking { position: relative; }

  /* ───── HERO GRADIENT OVERLAY ───── */
  .hero {
    background: linear-gradient(135deg, #eef4fb 0%, #f4f9ff 50%, #eef4fb 100%);
    position: relative;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -10%; right: -5%;
    width: 60vw; height: 60vw;
    max-width: 700px; max-height: 700px;
    background: radial-gradient(circle, rgba(45,108,223,.07) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: 10%; left: -10%;
    width: 40vw; height: 40vw;
    max-width: 500px; max-height: 500px;
    background: radial-gradient(circle, rgba(45,108,223,.05) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
  }
  .hero-inner { position: relative; z-index: 1; }

  /* ───── IMPROVED FOCUS-VISIBLE ACCESSIBILITY ───── */
  *:focus-visible {
    outline: 2px solid var(--terracotta);
    outline-offset: 2px;
  }
  button:focus-visible, a:focus-visible, [tabindex]:focus-visible {
    outline: 2px solid var(--terracotta);
    outline-offset: 3px;
    border-radius: 4px;
  }

  /* ───── COMPACT HEADER ON SCROLL (via JS class) ───── */
  header.scrolled .header-inner {
    height: 60px;
  }
  header.scrolled .logo-mark-img {
    width: 36px; height: 36px;
  }

  /* ───── ENTRANCE ANIMATIONS ───── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  .fade-up { opacity: 0; transform: translateY(28px); transition: opacity .75s cubic-bezier(.2,.8,.2,1), transform .75s cubic-bezier(.2,.8,.2,1); }
  .fade-up.in { opacity: 1; transform: translateY(0); }

  /* ───── INTERACTIVE ELEMENT TRANSITIONS ───── */
  .opt { transition: all .3s cubic-bezier(.2,.8,.2,1); }
  .opt:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
  .slot { transition: all .25s ease; min-height: 44px; }
  .slot:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 2px; }
  .day { transition: all .3s cubic-bezier(.2,.8,.2,1); min-height: 44px; }
  .day:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 2px; }
  .gscore-badge { transition: background .25s, transform .3s cubic-bezier(.2,.8,.2,1); }
  .faq-item summary { transition: color .2s; }
  .faq-item summary:hover { color: var(--terracotta); }
  .faq-item summary .faq-icon { transition: transform .3s, background .25s, color .25s, border-color .25s; }
  .team-feature-photo { transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s; }
  .team-feature-photo:hover { transform: translateY(-6px) rotate(-.7deg); box-shadow: var(--shadow-xl), var(--bevel-edge); }

  /* ───── TABLET BREAKPOINT (1024–1280px) IMPROVEMENTS ───── */
  @media (min-width: 1025px) and (max-width: 1280px) {
    .section { padding: 100px 32px; }
    .hero { padding: 56px 32px 80px; }
  }

  /* ───── TABLET BREAKPOINT (768–1024px) ───── */
  @media (min-width: 769px) and (max-width: 1024px) {
    .section { padding: 80px 32px; }
    .hero { padding: 48px 32px 72px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .process-row { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  }

  /* ───── MOBILE ─── COMPREHENSIVE OVERRIDES ───── */
  @media (max-width: 640px) {
    .mobile-sticky-cta { display: block; }
    body { padding-bottom: 72px; }

    /* header */
    .header-inner { height: 60px; padding: 0 16px; }
    .logo-mark-img { width: 46px; height: 46px; }
    .logo-text { font-size: 20px; }
    .logo-text small { font-size: 9.5px; }

    /* sections */
    .section { padding: 56px 20px; }
    .contact { padding: 56px 20px; }
    .cta-band { padding: 56px 20px; }
    .container { padding: 0 16px; }
    /* Opiniones — menos padding y section-head más compacto */
    .reviews { padding: 36px 20px 40px !important; }
    .reviews .section-head { margin-bottom: 20px !important; gap: 10px !important; }
    .reviews .section-head > div { gap: 8px !important; }
    .reviews .section-eyebrow { margin-bottom: 10px !important; }
    .reviews .section-title { font-size: clamp(28px, 8vw, 40px) !important; }
    .reviews .section-sub { padding: 14px 16px !important; font-size: 13.5px !important; line-height: 1.55 !important; }
    .reviews-header { gap: 14px !important; margin-bottom: 18px !important; }
    .reviews-carousel-wrap { margin-top: 8px; }
    .carousel-nav { margin-top: 16px !important; }

    /* hero mobile: image as blurred background */
    .hero { padding: 64px 20px 80px; overflow: hidden; }
    .hero-inner {
      grid-template-columns: 1fr;
      gap: 0;
      position: relative;
      z-index: 1;
    }
    .hero-text { order: 1; }
    .hero-visual {
      position: absolute;
      inset: 0;
      aspect-ratio: unset;
      border-radius: 0;
      box-shadow: none;
      z-index: 0;
      overflow: hidden;
    }
    .hero-visual img {
      filter: blur(1.5px);
      transform: scale(1.04);
      opacity: 0.78;
    }
    /* Velo gradient para legibilidad del texto sobre la foto */
    .hero-visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg,
        rgba(255,250,245,0.55) 0%,
        rgba(255,250,245,0.35) 35%,
        rgba(255,250,245,0.5) 70%,
        rgba(255,250,245,0.85) 100%
      );
      pointer-events: none;
      z-index: 1;
    }
    .hero-text {
      position: relative;
      z-index: 1;
      max-width: 100%;
    }
    .hero-stat-card {
      position: relative;
      bottom: auto; left: auto;
      display: inline-flex; flex-direction: column;
      min-width: 0; width: auto;
      padding: 16px 20px;
      margin-top: 16px;
    }
    .hero-stat-card .num { font-size: 40px; }
    .hero-ctas { flex-direction: column; gap: 10px; align-items: stretch; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .hero-lede { font-size: 16px; text-align: center; max-width: 100%; }
    .hero h1 { text-align: center; font-size: clamp(46px, 12.5vw, 72px); line-height: 0.98; letter-spacing: -0.035em; }
    .hero-eyebrow { justify-content: center; }
    .hero-text { text-align: center; }
    .hero-trust { justify-content: center; flex-wrap: wrap; padding-top: 24px; margin-top: 28px; }

    /* section head stack */
    .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; text-align: center; }
    .section-title { font-size: clamp(32px, 9vw, 48px); text-align: center; margin: 0 auto; max-width: 100%; }
    .section-eyebrow { justify-content: center; }
    .section-sub { margin: 0 auto; max-width: 100%; }
    .section-sub::before { display: none; }

    /* services */
    /* === SERVICIOS — Grid compacto + liquid premium en móvil === */
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    .service { isolation: isolate; }
    .service::before {
      inset: 8px -4px -6px 4px;
      border-radius: 16px;
      box-shadow: 0 10px 22px -10px rgba(11,31,58,.4);
    }
    .service-card {
      min-height: 200px;
      padding: 16px 14px 14px;
      border-radius: 16px;
      gap: 8px;
    }
    .service-card::before {
      width: 50px;
      height: 50px;
      border-top-right-radius: 16px;
    }
    .service-glyph {
      font-size: 100px;
      bottom: -18px;
      right: -10px;
    }
    .service-icon {
      width: 44px;
      height: 44px;
      font-size: 22px;
      margin-bottom: 2px;
    }
    .service-num {
      top: 10px;
      left: 14px;
      font-size: 16px;
    }
    .service-card h3 {
      font-size: 15px;
      letter-spacing: -0.01em;
      line-height: 1.2;
      margin-top: 2px;
    }
    .service-card p {
      font-size: 12.5px;
      line-height: 1.45;
    }
    .service-link {
      font-size: 12px;
      gap: 4px;
    }
    .service-link svg { width: 12px; height: 12px; }
    /* Touch active: efecto liquid bouncy */
    .service:active { transform: translateY(-4px) scale(.99); }
    .service:active::before { transform: translate(4px, 4px); }
    .service:active .service-card { transform: translate(-3px, -3px); }
    .service:active .service-icon {
      transform: translateY(-3px) rotate(-6deg) scale(1.06);
    }

    /* CTA Band — botón centrado y en columna en móvil */
    .cta-band-ctas {
      flex-direction: column;
      gap: 12px;
      align-items: center;
      justify-content: center;
    }
    .cta-band-ctas .btn {
      width: 100%;
      max-width: 360px;
      justify-content: center;
      text-align: center;
    }

    /* whyus */
    .whyus-grid { grid-template-columns: 1fr; gap: 40px; }
    .why-stats { grid-template-columns: 1fr; gap: 12px; }
    .why-stat-featured { grid-column: auto; }
    .why-stat-featured .why-stat-num { font-size: 72px; }
    .why-row { gap: 16px; }
    .why-list { gap: 0; }

    /* === PROCESS: Grid 2x2 con cards liquid premium === */
    .process-row {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-top: 28px;
    }
    .step {
      padding: 18px 14px 16px;
      border-radius: 16px;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,1),
        0 4px 14px rgba(45,108,223,0.08),
        0 1px 3px rgba(11,31,58,.04);
      background: linear-gradient(160deg, #ffffff 0%, var(--cream) 100%);
      border: 1px solid rgba(45,108,223,0.12);
      isolation: isolate;
    }
    /* Brillo "liquid" diagonal */
    .step > * { position: relative; z-index: 1; }
    .step::before {
      height: 3px;
      border-radius: 16px 16px 0 0;
    }
    /* Marca de agua del número más sutil en móvil */
    .step::after {
      font-size: 80px;
      top: -6px;
      right: 8px;
      opacity: 0.08;
    }
    /* Shimmer al tocar */
    .step {
      overflow: hidden;
      position: relative;
      transition:
        transform 0.3s cubic-bezier(0.4,0,0.2,1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    }
    .step .step-shimmer,
    .step::before {
      pointer-events: none;
    }
    .step:active {
      transform: translateY(-3px);
      border-color: rgba(45,108,223,0.3);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,1),
        0 10px 24px rgba(45,108,223,0.18),
        0 2px 6px rgba(11,31,58,.06);
    }
    .step-num {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      font-size: 18px;
      margin-bottom: 12px;
      background: linear-gradient(135deg, var(--terracotta) 0%, #1c4ea8 100%);
      color: #ffffff;
      border: none;
      box-shadow:
        0 4px 10px rgba(45,108,223,0.35),
        inset 0 1px 0 rgba(255,255,255,0.25);
    }
    .step h4 {
      font-size: 14.5px;
      line-height: 1.2;
      margin-bottom: 6px;
      letter-spacing: -0.01em;
    }
    .step p {
      font-size: 12.5px;
      line-height: 1.5;
    }

    /* reviews carousel — 1 card al 100% con snap centrado */
    .reviews-track {
      gap: 16px;
      padding: 4px 0 12px;
    }
    .reviews-track .review {
      flex: 0 0 calc(100% - 32px);
      scroll-snap-align: center;
      margin: 0 16px;
      box-sizing: border-box;
    }
    .reviews-header { flex-direction: column; gap: 24px; align-items: center; text-align: center; }
    .gscore { justify-content: center; }
    .gscore-stars { justify-content: center; }

    /* team — compacto y reordenado: presentación → foto → formación */
    .team { padding: 36px 20px 48px !important; }
    .team-feature {
      grid-template-columns: 1fr;
      grid-template-areas:
        "info"
        "photo"
        "creds";
      gap: 14px;
    }
    .team-feature-photo {
      aspect-ratio: 3/4;
      max-height: 420px;
      width: 100%;
      margin: 0 auto;
      display: block;
    }
    .team-feature-photo img {
      object-fit: cover;
      object-position: center 20%;
      width: 100%;
      height: 100%;
    }
    .team-feature-eyebrow { font-size: 11.5px; margin-bottom: 6px; }
    .team-feature-info h3 {
      font-size: clamp(26px, 7vw, 36px) !important;
      line-height: 1 !important;
      margin-bottom: 12px !important;
    }
    /* === QUOTE PREMIUM más grande y visual === */
    .team-feature-quote {
      position: relative;
      font-family: 'Instrument Serif', serif;
      font-style: italic;
      font-size: 16px !important;
      line-height: 1.55 !important;
      color: var(--ink) !important;
      padding: 22px 22px 22px 52px !important;
      margin: 14px 0 0 !important;
      background: linear-gradient(160deg, #ffffff 0%, var(--cream) 100%);
      border-left: 3px solid var(--terracotta) !important;
      border-radius: 14px;
      box-shadow:
        0 6px 20px rgba(45,108,223,0.08),
        0 1px 0 rgba(255,255,255,0.9) inset;
      letter-spacing: -0.005em;
    }
    /* Comilla decorativa grande */
    .team-feature-quote::before {
      content: '"';
      position: absolute;
      top: 6px;
      left: 16px;
      font-family: 'Instrument Serif', serif;
      font-style: italic;
      font-size: 58px;
      line-height: 1;
      color: var(--terracotta);
      opacity: 0.7;
      pointer-events: none;
    }
    .team-creds {
      margin-top: 6px;
      padding-top: 16px;
    }
    .team-creds-label { margin-bottom: 10px; font-size: 11.5px; }
    /* Section head MUY compacto en team */
    .team .section-head {
      margin-bottom: 16px !important;
      gap: 8px !important;
      padding-bottom: 16px !important;
      border-bottom: 1px solid var(--line-soft);
    }
    .team .section-head > div { gap: 8px !important; }
    .team .section-eyebrow { margin-bottom: 10px !important; }
    .team .section-title {
      font-size: clamp(32px, 9vw, 48px) !important;
      line-height: 0.98 !important;
      margin: 0 !important;
    }
    .team .section-sub {
      font-size: 13px !important;
      padding: 10px 14px !important;
      max-width: 100% !important;
      margin-top: 6px !important;
    }

    /* contact */
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .map-frame { height: 300px; }

    /* booking */
    .booking-shell { grid-template-columns: 1fr; }
    .booking-side { padding: 28px 20px; }
    .booking-form { padding: 28px 20px; }
    .booking-side h3 { font-size: 28px; }
    .field input, .field select, .field textarea { font-size: 16px; padding: 14px 14px; min-height: 52px; }
    .step-next { width: 100%; justify-content: center; padding: 16px 24px; }
    .opt-grid { grid-template-columns: 1fr; }
    .opt { min-height: 64px; }
    .field-row { grid-template-columns: 1fr; }
    .slot-grid { grid-template-columns: 1fr 1fr; }
    .day-grid { grid-template-columns: repeat(3, 1fr); }

    /* CTA band */
    .cta-band-ctas { flex-direction: column; gap: 10px; }
    .cta-band-ctas .btn { width: 100%; justify-content: center; }

    /* footer — alineado a la izquierda, gap compacto */
    .footer-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 36px; }
    footer { padding: 44px 20px 12px; }
    .footer-bottom { justify-content: center; text-align: center; flex-direction: column; align-items: center; gap: 4px; padding: 16px 0; }
    .footer-brand p,
    .footer-desc { max-width: 100%; font-size: 13px; line-height: 1.65; }
    .footer-hours { margin-top: 18px; }
    .footer-credentials { margin-top: 18px; }

    /* FAQ */
    .faq-grid { grid-template-columns: 1fr; }
    .faq-item:nth-child(odd) { padding-right: 0; border-right: none; }
    .faq-item:nth-child(even) { padding-left: 0; }

    /* wa fab stays above sticky cta */
    .wa-fab { bottom: 92px; }
    /* Cookie banner full-width sobre la sticky CTA, sin solaparse con el WA fab */
    .cookie-banner {
      bottom: 88px;
      left: 12px;
      right: 12px;
      max-width: none;
      padding: 16px 18px;
      border-radius: 14px;
    }
    .cookie-banner h4 { font-size: 13px; margin-bottom: 6px; }
    .cookie-banner p { font-size: 12.5px; margin-bottom: 12px; line-height: 1.5; }
    .cookie-actions { gap: 6px; }
    /* Cuando el cookie banner está visible, oculta el WA fab para evitar solape */
    body.cookie-visible .wa-fab { opacity: 0; pointer-events: none; }

    /* topbar — oculto en móvil para más limpieza */
    .topbar { display: none; }
    header nav a:not(.cta-nav) { display: none; }
    header nav .cta-nav { display: none; }
    .menu-btn { display: inline-flex; }

    /* nav drawer larger tap areas */
    .drawer-nav a { padding: 18px 24px; min-height: 64px; }
    .drawer-nav .nav-icon { width: 44px; height: 44px; min-width: 44px; }
  }

  /* WhatsApp more prominent on mobile */
  @media (max-width: 640px) {
    .wa-fab { width: 62px; height: 62px; bottom: 92px; right: 16px; }
    .wa-fab svg { width: 32px; height: 32px; }
  }

  /* ───── MOBILE CENTERING IMPROVEMENTS ───── */
  @media (max-width: 640px) {

    /* ── Process steps: center text y número ── */
    .step { text-align: center; }
    .step-num { margin: 0 auto 20px; }

    /* ── Why-Us: centrar encabezado + rows ── */
    .whyus-grid > div:first-child { text-align: center; }
    .why-row {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 6px;
      padding: 24px 0;
    }
    .why-num { font-size: 30px; }
    .why-row h4 { font-size: 18px; }

    /* ── Why stats: ya tienen text-align:center, ajustar tamaño ── */
    .why-stat { padding: 24px 20px; }
    .why-stat-featured .why-stat-num { font-size: 80px; }

    /* === CONTACT: Título y subtítulo centrados === */
    .contact .contact-grid > div:first-child {
      text-align: center;
    }
    .contact .section-eyebrow {
      margin-left: auto;
      margin-right: auto;
    }
    .contact .section-title {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
    .contact .section-sub {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    /* === CONTACT: Cards a lo largo (1 columna) === */
    .info-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 28px;
    }
    .info-item {
      position: relative;
      display: flex !important;
      flex-direction: row;
      align-items: center;
      grid-template-columns: unset;
      justify-items: flex-start;
      text-align: left;
      gap: 14px;
      padding: 18px 18px 18px 18px;
      border: 1px solid rgba(91,142,232,0.22);
      border-bottom: 1px solid rgba(91,142,232,0.22);
      border-radius: 16px;
      background:
        radial-gradient(circle at 0% 0%, rgba(91,142,232,0.18) 0%, transparent 60%),
        linear-gradient(160deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%);
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      overflow: hidden;
      isolation: isolate;
      transition:
        background 0.4s ease,
        border-color 0.4s ease,
        transform 0.3s ease,
        box-shadow 0.4s ease;
    }
    .info-item:first-child { border-top: 1px solid rgba(91,142,232,0.22); }
    /* Brillo liquid */
    .info-item::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(45,108,223,0.18) 45%,
        rgba(45,108,223,0.06) 55%,
        transparent 100%
      );
      transform: translateX(-110%);
      transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
    }
    .info-item:active,
    .info-item:hover {
      background:
        radial-gradient(circle at 0% 0%, rgba(45,108,223,0.18) 0%, transparent 60%),
        linear-gradient(160deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
      border-color: rgba(45,108,223,0.4);
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(0,0,0,.3), 0 0 0 1px rgba(45,108,223,0.15) inset;
    }
    .info-item:active::before,
    .info-item:hover::before {
      transform: translateX(110%);
    }
    .info-icon {
      position: relative;
      top: auto;
      left: auto;
      margin: 0;
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--terracotta) 0%, #1c4ea8 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow:
        0 4px 12px rgba(45,108,223,0.35),
        inset 0 1px 0 rgba(255,255,255,0.2);
      transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    }
    .info-item:hover .info-icon,
    .info-item:active .info-icon {
      transform: scale(1.08) rotate(-4deg);
    }
    .info-icon svg {
      width: 20px;
      height: 20px;
      stroke: #fff !important;
      stroke-width: 2 !important;
    }
    .info-item > div {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 3px;
    }
    .info-item h5 {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.13em;
      color: var(--terracotta-soft);
      margin-bottom: 2px;
      text-align: left;
    }
    .info-item p {
      font-size: 15px;
      line-height: 1.45;
      text-align: left;
      color: var(--paper);
      font-weight: 500;
    }
    .info-item a {
      font-size: 15px;
      text-align: left;
      font-weight: 500;
      color: var(--paper) !important;
      transition: color 0.25s ease;
      line-height: 1.45;
    }
    .info-item a:hover {
      color: var(--terracotta-soft) !important;
    }
    /* Email — break word */
    .info-item:nth-child(3) a {
      word-break: break-word;
    }
    /* Facebook con flecha */
    .info-item:nth-child(5) a {
      color: var(--terracotta-soft) !important;
      font-weight: 600;
    }
    .info-item:nth-child(5) a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 600;
      color: var(--terracotta-soft) !important;
    }
    .info-item:nth-child(5) a::after {
      content: "→";
      transition: transform 0.3s ease;
    }
    .info-item:nth-child(5):hover a::after {
      transform: translateX(4px);
    }
    /* Mapa — destacado con borde gradient */
    .map-frame {
      margin-top: 24px;
      border-radius: 18px;
      overflow: hidden;
      box-shadow:
        0 12px 32px rgba(0,0,0,.35),
        0 0 0 1px rgba(45,108,223,0.18);
      position: relative;
    }
    .map-frame iframe { min-height: 240px; display: block; }
    .map-frame::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      border-radius: 18px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
      z-index: 2;
    }

    /* === WHY US: Cards liquid en lugar de filas planas === */
    .why-list { margin-top: 28px !important; display: flex; flex-direction: column; gap: 10px; }
    .why-row {
      position: relative;
      grid-template-columns: 1fr;
      text-align: left;
      gap: 6px;
      padding: 18px 18px 18px 64px;
      border: 1px solid rgba(255,250,245,.1);
      border-top: 1px solid rgba(255,250,245,.1) !important;
      border-radius: 14px;
      background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
      overflow: hidden;
      isolation: isolate;
      transition:
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.25s ease,
        box-shadow 0.35s ease;
    }
    .why-row::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(45,108,223,0.15) 45%,
        rgba(45,108,223,0.05) 55%,
        transparent 100%
      );
      transform: translateX(-110%);
      transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
    }
    .why-row:active::before {
      transform: translateX(110%);
    }
    .why-row:active {
      background: linear-gradient(160deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
      border-color: rgba(45,108,223,0.35);
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(0,0,0,.25);
    }
    .why-num {
      position: absolute;
      top: 14px;
      left: 14px;
      font-size: 28px;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(45,108,223,0.25) 0%, rgba(45,108,223,0.1) 100%);
      color: var(--terracotta-soft);
      border-radius: 10px;
      font-weight: 700;
      font-family: 'Instrument Serif', serif;
      font-style: italic;
      letter-spacing: -0.02em;
    }
    .why-row h4 { font-size: 16px; text-align: left; line-height: 1.2; }
    .why-row p { text-align: left; font-size: 13px; line-height: 1.55; }

    /* Why stats: grid 2x2 más compacto */
    .why-stats { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
    .why-stat { padding: 18px 14px; }
    .why-stat-featured {
      grid-column: 1 / -1 !important;
      padding: 22px 18px;
    }
    .why-stat-featured .why-stat-num { font-size: 64px !important; }
    .why-stat-num { font-size: 32px; }
    .why-stat-lbl { font-size: 12px; }
    /* Quote y badge strip full width */
    .why-quote { grid-column: 1 / -1; padding: 18px; }
    .why-badge-strip { grid-column: 1 / -1; }

    /* ── Team section: centrar info ── */
    .team-feature-info { text-align: center; }
    .team-feature-eyebrow { text-align: center; }
    .team-feature-quote { text-align: center; }
    .team-creds { text-align: center; }
    .team-creds-label { text-align: center; }
    .team-creds-list li { align-items: center; }
    .tcred-title { text-align: center; }
    .tcred-uni { text-align: center; }
    .team-sepa { justify-content: center; }

    /* ── Footer columnas: alineadas a la izquierda (estilo Noriega) ── */
    .footer-top > div { text-align: left; }
    .footer-top h4 { text-align: left; margin-bottom: 14px; }
    .footer-top ul { padding-left: 0; list-style: none; align-items: flex-start; }
    .footer-top ul li { text-align: left; }
    .footer-links ul { gap: 9px; }
    .footer-links li a { font-size: 13.5px; }
    .footer-brand p,
    .footer-desc { text-align: left; }
    .footer-hours { text-align: left; align-items: flex-start; }
    .footer-credentials { text-align: left; flex-direction: column; align-items: flex-start; font-size: 11px; }
    .footer-legal { padding: 14px 0 12px; }
    .footer-legal-links { gap: 16px; font-size: 11px; }

    /* ── Booking side: centrar encabezado ── */
    .booking-side { text-align: center; }
    .booking-side h3 { text-align: center; }
    .booking-side p { text-align: center; }

    /* ── Reviews: score ya centrado ── */
    .gscore-badge { flex-direction: column; align-items: center; text-align: center; gap: 8px; }

    /* ── Service cards: centrar texto ── */
    .service-card { text-align: center; }
    .service-link { justify-content: center; }
  }

  /* ───── MOBILE ─── FIXES DE LEGIBILIDAD Y ACCESIBILIDAD (post-auditoría) ───── */
  @media (max-width: 640px) {
    /* Subir fuentes pequeñas a tamaño legible (≥12px) */
    .review-google { font-size: 12px; }
    .step-label { font-size: 12px; letter-spacing: 0.06em; }
    .tcred-uni { font-size: 12px; }
    .footer-credits { font-size: 12px; padding: 14px 16px; }
    .footer-credentials { font-size: 12px; }
    .footer-legal-links { font-size: 12px; }

    /* Carousel dots: compactos y centrados en móvil */
    .carousel-nav {
      justify-content: center !important;
      margin-top: 20px !important;
    }
    .carousel-dots {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      max-width: 100%;
    }
    .carousel-dot {
      width: 8px;
      height: 8px;
      min-width: 8px;
      background: rgba(255,250,245,.22);
      border: none;
      border-radius: 50%;
      padding: 0;
      cursor: pointer;
      transition: background .25s ease, width .25s ease, transform .25s ease;
      display: inline-block;
    }
    .carousel-dot:hover,
    .carousel-dot:active {
      background: rgba(255,250,245,.4);
      transform: scale(1.2);
    }
    .carousel-dot.active {
      background: var(--terracotta-soft);
      width: 22px;
      min-width: 22px;
      border-radius: 4px;
      transform: scale(1);
      box-shadow: 0 0 12px rgba(45,108,223,0.5);
    }

    /* Cookie buttons: altura mínima accesible */
    .cookie-btn {
      min-height: 44px;
      padding: 12px 18px;
      flex: 1 1 auto;
    }

    /* Modal legal: padding más compacto en móvil para aprovechar espacio */
    .modal-content { padding: 2.25rem 1.25rem 1.5rem; }
    .modal-content h2 { font-size: 1.35rem; }
    .modal-content p, .modal-content li { font-size: .95rem; }
  }
