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

    :root {
      --bg:       #16131f;
      --surface:  #221f30;
      --elevated: #1a1a24;
      --border:   rgba(255,255,255,0.08);
      --border2:  rgba(255,255,255,0.04);
      --primary:  #7c3aed;
      --primary2: #a78bfa;
      --green:    #10b981;
      --amber:    #f59e0b;
      --text:     #f0f0f5;
      --muted:    #8888aa;
    }

    html { scroll-behavior: smooth; }

    /* Textura de grano sutil sobre todo el fondo — evita el negro plano */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      opacity: 0.035;
      mix-blend-mode: overlay;
    }
    /* El contenido va por encima del grano */
    nav, .hero-bgwrap, .section, footer { position: relative; z-index: 1; }
    /* El hero necesita quedar por encima de la sección siguiente para que el
       popup de rutas de los chips de país (se despliega hacia abajo) no quede
       tapado por "Scenic trains" al superponerse */
    .hero-bgwrap { z-index: 5; }

    body {
      /* Fondo con profundidad: halos violeta sutiles en vez de negro plano */
      background:
        radial-gradient(ellipse 90% 70% at 50% 0%, rgba(124,58,237,0.16), transparent 60%),
        radial-gradient(ellipse 75% 55% at 85% 75%, rgba(124,58,237,0.12), transparent 55%),
        radial-gradient(ellipse 70% 50% at 12% 40%, rgba(99,102,241,0.10), transparent 55%),
        radial-gradient(ellipse 65% 45% at 50% 100%, rgba(124,58,237,0.10), transparent 60%),
        var(--bg);
      background-attachment: fixed;
      color: var(--text);
      font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ── Nav ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 40px;
      /* Glass translúcido con un toque violeta arriba, en vez de negro plano */
      background: linear-gradient(180deg, rgba(26,22,48,0.72) 0%, rgba(10,10,15,0.66) 100%);
      backdrop-filter: blur(22px) saturate(140%);
      -webkit-backdrop-filter: blur(22px) saturate(140%);
      border-bottom: 1px solid rgba(139,92,246,0.18);
      box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 30px rgba(0,0,0,0.35);
      transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    }
    nav.scrolled {
      padding-top: 12px; padding-bottom: 12px;
      background: linear-gradient(180deg, rgba(18,15,34,0.92) 0%, rgba(10,10,15,0.9) 100%);
      box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 10px 34px rgba(0,0,0,0.5);
    }
    .nav-logo {
      font-size: 20px; font-weight: 800; letter-spacing: -0.5px;
      background: linear-gradient(135deg, var(--primary2), #fff);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      text-decoration: none;
    }
    .nav-links { display: flex; gap: 32px; align-items: center; }
    .nav-links a {
      color: var(--muted); text-decoration: none; font-size: 14px;
      font-weight: 500; position: relative; transition: color 0.2s ease;
    }
    .nav-links a:not(.nav-cta)::after {
      content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
      height: 2px; border-radius: 2px;
      background: linear-gradient(90deg, var(--primary2), var(--primary));
      box-shadow: 0 0 10px rgba(168,85,247,0.7);
      transform: scaleX(0); transform-origin: center;
      transition: transform 0.25s ease;
    }
    .nav-links a:not(.nav-cta):hover { color: #fff; }
    .nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
    /* CTA principal del header */
    .nav-links a.nav-cta {
      background: rgba(124,58,237,0.18); color: #E9E3FB; font-weight: 700;
      padding: 9px 20px; border-radius: 100px;
      border: 1px solid rgba(139,92,246,0.65);
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 2px 12px rgba(124,58,237,0.25), inset 0 1px 0 rgba(255,255,255,0.07);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }
    .nav-links a.nav-cta:hover { color: #fff; transform: translateY(-1px); border-color: rgba(196,181,253,0.9); background: rgba(124,58,237,0.28); box-shadow: 0 4px 16px rgba(124,58,237,0.2), inset 0 1px 0 rgba(255,255,255,0.1); }

    /* ── Botón hamburguesa (solo móvil) ── */
    .nav-toggle {
      display: none;
      background: none; cursor: pointer; padding: 0;
      width: 42px; height: 42px; border-radius: 10px;
      border: 1px solid rgba(139,92,246,0.30);
      align-items: center; justify-content: center;
    }
    .nav-toggle svg { width: 24px; height: 24px; stroke: #fff; }

    /* ── Language selector ── */
    .lang-wrapper { position: relative; }
    .lang-btn {
      background: var(--surface); color: var(--text);
      border: 1px solid var(--border); border-radius: 100px;
      padding: 6px 12px; font-size: 13px; font-weight: 600;
      cursor: pointer; font-family: inherit;
      display: flex; align-items: center; gap: 6px;
      transition: border-color 0.2s;
    }
    .lang-btn:hover { border-color: rgba(255,255,255,0.2); }
    .lang-dropdown {
      position: absolute; top: calc(100% + 8px); right: 0;
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 12px; padding: 6px;
      min-width: 160px; z-index: 200;
      box-shadow: 0 20px 40px rgba(0,0,0,0.5);
      display: none;
    }
    .lang-dropdown.open { display: block; }
    .lang-option {
      display: flex; align-items: center; gap: 10px;
      padding: 8px 10px; border-radius: 8px;
      font-size: 13px; color: var(--text);
      cursor: pointer; transition: background 0.15s;
    }
    .lang-option:hover { background: rgba(124,58,237,0.15); }
    .lang-option.active { background: rgba(124,58,237,0.25); color: var(--primary2); }
    /* ── Partners dropdown (nav) ── */
    .partners-wrapper { position: relative; }
    .nav-partners-btn { cursor: pointer; }
    .partners-dropdown { position: absolute; top: calc(100% + 10px); left: 0; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 6px; min-width: 240px; z-index: 300; box-shadow: 0 24px 48px rgba(0,0,0,0.55); display: none; }
    .partners-dropdown.open { display: block; }
    .partner-row { display: flex; align-items: center; gap: 11px; padding: 9px 10px; border-radius: 9px; text-decoration: none; transition: background 0.15s; }
    .partner-row:hover { background: rgba(255,255,255,0.06); text-decoration: none; }
    .partner-logo { width: 22px; height: 22px; border-radius: 5px; object-fit: contain; background:#fff; padding:2px; flex-shrink:0; }
    .partner-name { font-size: 13px; font-weight: 700; }
    .partner-sub { font-size: 11px; color: var(--muted); margin-left: auto; }
    .partners-all { display:block; text-align:center; padding:8px; margin-top:4px; border-top:1px solid var(--border); font-size:12px; font-weight:600; color: var(--primary2); text-decoration:none; }

    /* ── Hero ── */
    /* Wrapper con el fondo del mapa: cubre hero + chips de países */
    .hero-bgwrap {
      position: relative;
    }
    /* Capa del mapa (detrás del contenido) — se disuelve hacia abajo con máscara
       para que el cambio de tono sea natural y no un corte plano */
    .hero-bgwrap::after {
      content: '';
      position: absolute; inset: 0; z-index: 0;
      pointer-events: none;   /* capa decorativa: nunca debe robar taps/clicks */
      background: url('/hero-bg.jpg') center 42% / cover no-repeat;
      -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 55%, rgba(0,0,0,0.85) 70%, rgba(0,0,0,0.55) 82%, rgba(0,0,0,0.25) 92%, transparent 100%);
      mask-image: linear-gradient(to bottom, #000 0%, #000 55%, rgba(0,0,0,0.85) 70%, rgba(0,0,0,0.55) 82%, rgba(0,0,0,0.25) 92%, transparent 100%);
    }
    .hero-bgwrap::before {
      content: '';
      position: absolute; inset: 0; z-index: 1;
      /* Glow violeta + leve oscurecido para legibilidad; se funde a transparente
         abajo para que el body asome de forma natural (sin corte) */
      background:
        radial-gradient(ellipse 80% 50% at 50% 22%,
          rgba(124,58,237,0.20) 0%, transparent 70%),
        linear-gradient(180deg,
          rgba(10,10,15,0.55) 0%,
          rgba(10,10,15,0.35) 40%,
          rgba(10,10,15,0.15) 75%,
          transparent 100%);
      pointer-events: none;
    }
    .hero-bgwrap > * { position: relative; }
    .hero {
      min-height: auto;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
      padding: 100px 24px 8px;
      position: relative;
      z-index: 20;
      overflow: visible;
    }
    /* Sin z-index propio: así NO crea un stacking-context que atrape la
       miniatura del chip (z-index 30) por detrás del hero. El calendario igual
       queda arriba porque .hero tiene z-index 20 (positivo gana sobre auto). */
    .countries { position: relative; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(124,58,237,0.22); border: 1px solid rgba(167,139,250,0.45);
      border-radius: 100px; padding: 6px 16px; margin-bottom: 16px;
      font-size: 13px; font-weight: 600; color: #E9E3FB;
      backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
      box-shadow: 0 4px 18px rgba(10,10,15,0.6);
    }
    .hero h1 {
      font-size: clamp(48px, 8vw, 88px);
      font-weight: 800; letter-spacing: -2px; line-height: 1.05;
      margin-bottom: 12px;
      filter: drop-shadow(0 4px 28px rgba(10,10,15,0.95));
    }
    .hero h1 span {
      background: linear-gradient(135deg, #C4B5FD 0%, #fff 55%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .hero p {
      font-size: clamp(15px, 2vw, 18px);
      color: rgba(209,213,219,0.85); font-weight: 400; max-width: 520px; line-height: 1.55;
      margin-bottom: 18px;
      text-shadow: 0 2px 10px rgba(10,10,15,1), 0 0 30px rgba(10,10,15,0.85);
    }

    .hero-ai-cta {
      position: relative;
      background: rgba(124,58,237,0.18);
      border: none;
      border-radius: 100px;
      color: #E9E3FB;
      font-size: 17px;
      font-weight: 700;
      letter-spacing: 0.02em;
      padding: 16px 40px;
      cursor: pointer;
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 4px 24px rgba(124,58,237,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
      transition: transform 0.2s, box-shadow 0.2s;
      z-index: 1;
    }
    /* Borde "aurora" — anillo de gradiente fino (1.5px) vía mask, look IA */
    .hero-ai-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1.5px;
      background: linear-gradient(115deg, #7c3aed, #f97066 30%, #22d3ee 60%, #a78bfa 85%, #7c3aed);
      background-size: 300% 300%;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
      opacity: 0.75;
      filter: drop-shadow(0 0 6px rgba(124,58,237,0.45)) drop-shadow(0 0 10px rgba(34,211,238,0.2));
      animation: auroraShift 7s ease infinite;
      transition: opacity 0.3s, filter 0.3s, animation-duration 0.3s;
      z-index: -1;
    }
    @keyframes auroraShift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }
    .hero-ai-cta:hover {
      transform: translateY(-2px);
      background: rgba(124,58,237,0.28);
      box-shadow: 0 4px 20px rgba(124,58,237,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
    }
    .hero-ai-cta:hover::before {
      opacity: 1;
      filter: drop-shadow(0 0 10px rgba(124,58,237,0.65)) drop-shadow(0 0 16px rgba(34,211,238,0.4));
      animation-duration: 2.5s;
    }
    .hero-search-link {
      font-size: 13px;
      font-weight: 500;
      color: rgba(196,181,253,0.75);
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: color 0.2s;
    }
    .hero-search-link:hover { color: rgba(196,181,253,1); }

    /* ── Hero device mockup ── */
    .hero-device-wrap {
      position: relative; display: flex; justify-content: center;
      margin: 44px auto 8px; padding: 0 24px;
    }
    .hero-device-wrap::before {
      content: ''; position: absolute; top: 50%; left: 50%;
      width: 380px; height: 380px; max-width: 90vw; transform: translate(-50%, -50%);
      background: radial-gradient(circle, rgba(124,58,237,0.38), transparent 65%);
      filter: blur(18px); z-index: 0; pointer-events: none;
    }
    .hero-device {
      position: relative; z-index: 1;
      width: 258px; max-width: 68vw;
      border-radius: 38px; padding: 9px;
      background: linear-gradient(160deg, #1b1b26, #0c0c14);
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: 0 30px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(124,58,237,0.25);
      animation: heroFloat 6s ease-in-out infinite;
    }
    .hero-device img { width: 100%; display: block; border-radius: 30px; }
    @keyframes heroFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }
    @media (prefers-reduced-motion: reduce) { .hero-device { animation: none; } }

    /* ── Search box ── */
    .search-box {
      width: 100%; max-width: 820px;
      background: rgba(124,58,237,0.12);
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(139,92,246,0.45);
      border-radius: 20px;
      padding: 20px;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr auto;
      gap: 8px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
      overflow: visible;
      position: relative; z-index: 10;
    }
    .search-field {
      position: relative;
      background: linear-gradient(180deg, rgba(30,27,58,0.75) 0%, rgba(18,16,38,0.75) 100%);
      border: none;
      border-radius: 12px;
      padding: 12px 14px;
      display: flex; flex-direction: column;
      text-align: left;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
      transition: border-color 0.2s, background 0.2s;
    }
    .search-field:hover { border-color: rgba(139,92,246,0.55); background: linear-gradient(180deg, rgba(36,32,68,0.85) 0%, rgba(22,20,46,0.85) 100%); }
    .search-field label {
      font-size: 10px; font-weight: 700; letter-spacing: 1px;
      color: #B7B9C9; text-transform: uppercase; margin-bottom: 4px;
    }
    .search-field input {
      background: transparent; border: none; outline: none;
      color: var(--text); font-size: 14px; font-weight: 600;
      font-family: inherit;
      width: 100%;
    }
    .search-field input::placeholder { color: var(--muted); opacity: 0.7; }
    .search-btn {
      background: rgba(124,58,237,0.18);
      color: #E9E3FB;
      border: 1px solid rgba(139,92,246,0.65); border-radius: 100px;
      padding: 15px 28px; white-space: nowrap;
      font-size: 15px; font-weight: 700;
      cursor: pointer;
      align-self: center;
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 4px 24px rgba(124,58,237,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
      transition: transform 0.15s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
      font-family: inherit;
    }
    .search-btn:hover {
      transform: translateY(-1px);
      border-color: rgba(196,181,253,0.9);
      background: rgba(124,58,237,0.28);
      box-shadow: 0 4px 20px rgba(124,58,237,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
    }

    .ac-dropdown {
      position: absolute; top: calc(100% + 6px); left: -1px; right: -1px;
      background: rgba(14,12,32,0.98);
      -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
      border: 1px solid rgba(168,85,247,0.38);
      border-radius: 10px; overflow: hidden; z-index: 9999;
      box-shadow: 0 8px 32px rgba(0,0,0,0.65), 0 0 16px rgba(168,85,247,0.1);
      display: none;
    }
    .ac-item {
      padding: 10px 14px; font-size: 13px; font-weight: 500;
      color: rgba(220,218,240,0.9); cursor: pointer;
      transition: background 0.1s;
    }
    .ac-item + .ac-item { border-top: 1px solid rgba(168,85,247,0.1); }
    .ac-item:hover, .ac-item.ac-active { background: rgba(168,85,247,0.2); color: #fff; }

    /* ── Countries strip ── */
    .countries {
      display: flex; gap: 12px; flex-wrap: wrap;
      justify-content: center; margin-top: 12px;
    }
    .country-chip {
      position: relative;
      z-index: 2;
      background: rgba(124,58,237,0.12);
      border: 1px solid rgba(139,92,246,0.45);
      border-radius: 100px; padding: 8px 16px;
      font-size: 13px; font-weight: 600; color: rgba(196,181,253,0.85);
      box-shadow: 0 2px 12px rgba(124,58,237,0.18), inset 0 1px 0 rgba(255,255,255,0.06);
      backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
      transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    }
    /* Panel que asoma al pasar el mouse (solo desktop con puntero fino): foto + rutas populares */
    .country-popup {
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      width: 220px;
      opacity: 0;
      transform: translate(-50%, -12px) scale(0.96);
      transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.22,1,0.36,1);
      pointer-events: none;
      z-index: 30;
      background: rgba(20,14,38,0.92);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 16px;
      box-shadow: 0 18px 40px rgba(0,0,0,0.55), 0 0 40px rgba(124,58,237,0.25);
      backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
      overflow: hidden;
      text-align: left;
    }
    .country-photo {
      display: block;
      width: 100%; height: 110px;
      object-fit: cover;
    }
    .country-routes {
      display: flex; flex-direction: column;
      padding: 8px;
      gap: 3px;
    }
    .country-routes a {
      display: block;
      padding: 6px 8px;
      border-radius: 8px;
      font-size: 12.5px; font-weight: 600;
      color: rgba(220,214,250,0.9);
      text-decoration: none;
      white-space: nowrap;
      overflow: hidden; text-overflow: ellipsis;
      transition: background 0.15s, color 0.15s;
    }
    @media (hover: hover) and (pointer: fine) {
      .country-routes a:hover { background: rgba(124,58,237,0.3); color: #fff; }
    }
    @media (hover: hover) and (pointer: fine) {
      .country-chip:hover {
        border-color: rgba(167,139,250,0.85);
        background: rgba(124,58,237,0.25);
        color: #fff;
        box-shadow: 0 4px 20px rgba(124,58,237,0.35), inset 0 1px 0 rgba(255,255,255,0.1);
        z-index: 40;
      }
      .country-chip:hover .country-popup {
        opacity: 1;
        transform: translate(-50%, 0) scale(1);
        pointer-events: auto;
      }
    }
    /* En touch se revela al tocar el chip (clase .show-photo vía JS) */
    .country-chip.show-photo { border-color: rgba(124,58,237,0.6); color: #fff; z-index: 40; }
    .country-chip.show-photo .country-popup {
      opacity: 1;
      transform: translate(-50%, 0) scale(1);
      pointer-events: auto;
    }

    /* ── Sections ── */
    .section {
      padding: 24px 24px;
      max-width: 1200px; margin: 0 auto;
    }
    .section-label {
      font-size: 12px; font-weight: 700; letter-spacing: 2px;
      color: var(--primary2); text-transform: uppercase; margin-bottom: 8px;
    }
    .section h2 {
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 800; letter-spacing: -1.5px; margin-bottom: 10px;
    }
    .section p.lead {
      font-size: 18px; color: var(--muted); max-width: 560px; line-height: 1.6;
      margin-bottom: 28px;
    }

    /* ── Scenic: encabezado + panel destacado (2 columnas) ── */
    .scenic-top {
      display: flex; gap: 28px; align-items: stretch;
      flex-wrap: wrap; margin-bottom: 28px;
    }
    .scenic-head { flex: 1 1 320px; min-width: 280px; align-self: center; }
    .scenic-feature {
      flex: 1 1 440px; min-width: 300px; min-height: 340px;
      border-radius: 22px; position: relative;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 28px; cursor: default;
      background-size: cover; background-position: center;
      transition: background-image 0.4s ease, background-color 0.4s ease;
      /* Funde la foto hacia el fondo (arriba y derecha) — no queda pegada */
      -webkit-mask-image:
        linear-gradient(to bottom, transparent 0%, #000 28%),
        linear-gradient(to left, transparent 0%, #000 24%);
      mask-image:
        linear-gradient(to bottom, transparent 0%, #000 28%),
        linear-gradient(to left, transparent 0%, #000 24%);
      -webkit-mask-composite: source-in;
      mask-composite: intersect;
    }
    .scenic-feature::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(10,8,24,0.05) 0%, rgba(10,8,24,0.45) 55%, rgba(10,8,24,0.88) 100%);
      pointer-events: none;
    }
    .sf-content { position: relative; z-index: 1; transition: opacity 0.25s ease; }
    .sf-badge {
      display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: #fff;
      background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.25);
      border-radius: 100px; padding: 5px 12px; margin-bottom: 14px; backdrop-filter: blur(6px);
    }
    .sf-name { font-size: 30px; font-weight: 800; color: #fff; letter-spacing: -0.5px; margin-bottom: 6px; }
    .sf-route { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 12px; }
    .sf-desc { font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.6; margin-bottom: 18px; max-width: 460px; }
    .sf-btn {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(124,58,237,0.18); color: #E9E3FB;
      font-size: 14px; font-weight: 700; padding: 11px 22px; border-radius: 12px;
      text-decoration: none; border: 1px solid rgba(139,92,246,0.65); cursor: pointer;
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 4px 16px rgba(124,58,237,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
      transition: transform 0.2s, border-color 0.2s, background 0.2s;
    }
    .sf-btn:hover { transform: translateY(-1px); border-color: rgba(196,181,253,0.9); background: rgba(124,58,237,0.28); }
    .scenic-wrapper.scenic-active {
      border-color: rgba(139,92,246,0.7);
      box-shadow: 0 14px 36px rgba(124,58,237,0.28), inset 0 1px 0 rgba(255,255,255,0.06);
    }
    @media (max-width: 720px) {
      .scenic-feature { min-height: 240px; padding: 22px; }
      .sf-name { font-size: 24px; }
    }

    /* ── Scenic trains carousel ── */
    .scenic-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
    }
    .scenic-wrapper {
      flex: 0 1 380px;
      position: relative;
      border-radius: 16px;
      border: 1px solid var(--border);
      background: linear-gradient(180deg, #1a1535 0%, #12102a 100%);
      box-shadow: 0 8px 24px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04);
      transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
      overflow: visible;
    }
    .scenic-wrapper:hover { box-shadow: 0 14px 36px rgba(124,58,237,0.18), inset 0 1px 0 rgba(255,255,255,0.06); }
    .scenic-wrapper:hover {
      border-color: rgba(124,58,237,0.4);
      border-radius: 16px 0 0 16px;
    }
    .scenic-wrapper.desc-left:hover {
      border-radius: 0 16px 16px 0;
    }
    .scenic-card {
      display: flex; align-items: center; gap: 16px;
      padding: 20px;
      text-decoration: none;
      width: 100%;
      box-sizing: border-box;
    }
    .scenic-desc {
      position: absolute;
      top: -1px;
      left: calc(100% - 1px);
      height: calc(100% + 2px);
      width: 220px;
      background: var(--surface);
      border: 1px solid rgba(124,58,237,0.4);
      border-left: none;
      border-radius: 0 16px 16px 0;
      padding: 16px;
      font-size: 12px; color: var(--muted); line-height: 1.5;
      display: flex; align-items: center;
      opacity: 0;
      transform: translateX(-8px);
      pointer-events: none;
      transition: opacity 0.3s ease, transform 0.3s ease;
      z-index: 10;
    }
    .scenic-wrapper:hover .scenic-desc {
      opacity: 1;
      transform: translateX(0);
      pointer-events: auto;
    }
    .scenic-wrapper.desc-left .scenic-desc {
      left: auto;
      right: calc(100% - 1px);
      border-radius: 16px 0 0 16px;
      border-left: 1px solid rgba(124,58,237,0.4);
      border-right: none;
      transform: translateX(8px);
    }
    .scenic-wrapper.desc-left:hover .scenic-desc {
      transform: translateX(0);
    }
    .scenic-icon {
      width: 48px; height: 48px;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }
    .scenic-body { flex: 1; min-width: 0; }
    .scenic-name {
      font-size: 15px; font-weight: 700; color: var(--text);
      margin-bottom: 4px;
    }
    .scenic-route {
      font-size: 12px; color: var(--muted); line-height: 1.4;
    }
    .scenic-cta {
      padding: 6px 14px;
      border-radius: 8px;
      font-size: 12px; font-weight: 700;
      color: var(--primary2);
      background: transparent;
      border: 1px solid rgba(124,58,237,0.6);
      flex-shrink: 0;
    }
    .scenic-toggle {
      background: transparent;
      color: var(--primary2);
      border: 1px solid rgba(124,58,237,0.6);
      padding: 10px 24px;
      border-radius: 10px;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
    }
    .scenic-toggle:hover {
      background: rgba(124,58,237,0.12);
      border-color: rgba(124,58,237,0.9);
    }

    /* ── Partner products ── */
    .partners-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }
    .partner-card {
      background: linear-gradient(180deg, #1c1c28 0%, var(--surface) 100%);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 28px;
      text-decoration: none;
      box-shadow: 0 8px 24px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04);
      transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
      position: relative;
      overflow: hidden;
    }
    .partner-card:hover {
      border-color: rgba(124,58,237,0.3);
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(124,58,237,0.20), inset 0 1px 0 rgba(255,255,255,0.06);
    }
    .partner-icon-badge {
      width: 56px; height: 56px;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 26px;
      margin-bottom: 20px;
    }
    .partner-title {
      font-size: 18px; font-weight: 700; color: var(--text);
      margin-bottom: 8px;
    }
    .partner-desc {
      font-size: 13px; color: var(--muted); line-height: 1.6;
      margin-bottom: 20px;
    }
    .partner-cta {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13px; font-weight: 700;
      color: var(--primary2);
    }

    /* ── Features ── */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }
    .feature-card {
      background: linear-gradient(180deg, #1a1535 0%, #12102a 100%);
      border: 1px solid var(--border);
      border-radius: 20px; padding: 32px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04);
      transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .feature-card:hover {
      border-color: rgba(124,58,237,0.3);
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(124,58,237,0.20), inset 0 1px 0 rgba(255,255,255,0.06);
    }
    .feature-icon {
      font-size: 36px; margin-bottom: 20px; display: block;
    }
    .feature-card h3 {
      font-size: 18px; font-weight: 700; margin-bottom: 10px;
    }
    .feature-card p {
      font-size: 14px; color: var(--muted); line-height: 1.6;
    }

    /* ── Download section ── */
    .download {
      padding: 80px 24px;
      text-align: center;
      background: linear-gradient(180deg, transparent, rgba(124,58,237,0.05) 60%, transparent);
      border-top: 1px solid var(--border);
    }
    .download h2 {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 800; letter-spacing: -1px; margin-bottom: 16px;
    }
    .download p {
      color: var(--muted); margin-bottom: 36px;
      max-width: 480px; margin-left: auto; margin-right: auto;
    }
    .download-cta {
      display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
    }
    .btn-primary {
      background: rgba(124,58,237,0.18); color: #E9E3FB;
      padding: 16px 32px; border-radius: 100px;
      font-size: 16px; font-weight: 700; text-decoration: none;
      border: 1px solid rgba(139,92,246,0.65);
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 4px 24px rgba(124,58,237,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      border-color: rgba(196,181,253,0.9);
      background: rgba(124,58,237,0.28);
      box-shadow: 0 4px 20px rgba(124,58,237,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
    }
    .btn-secondary {
      background: var(--surface); color: var(--text);
      padding: 16px 32px; border-radius: 100px;
      font-size: 16px; font-weight: 600; text-decoration: none;
      border: 1px solid var(--border); transition: border-color 0.2s;
    }
    .btn-secondary:hover { border-color: rgba(255,255,255,0.2); }

    /* ── Screenshots ── */
    .screenshots-row {
      display: flex;
      gap: 36px;
      justify-content: center;
      overflow-x: auto;
      padding: 50px 20px 70px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      align-items: flex-end;
      position: relative;
    }
    .screenshots-row::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 70%;
      height: 60%;
      background: radial-gradient(ellipse, rgba(124,58,237,0.18) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ── Item wrapper — recto + hover adelante ── */
    .screenshot-item {
      flex-shrink: 0;
      text-align: center;
      scroll-snap-align: center;
      position: relative;
      transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1);
    }
    .screenshot-item:hover {
      transform: translateY(-18px) scale(1.05) !important;
      z-index: 10;
    }

    /* ── Phone mockup (casing externo) ── */
    .phone-mockup {
      position: relative;
      display: inline-block;
    }
    /* Botón power (derecha) */
    .phone-mockup::after {
      content: '';
      position: absolute;
      right: -5px;
      top: 130px;
      width: 4px;
      height: 58px;
      background: linear-gradient(180deg, #2e2e30, #1c1c1e 40%, #2e2e30);
      border-radius: 0 3px 3px 0;
    }
    /* Botones volumen (izquierda) */
    .phone-mockup::before {
      content: '';
      position: absolute;
      left: -5px;
      top: 110px;
      width: 4px;
      height: 34px;
      background: linear-gradient(180deg, #2e2e30, #1c1c1e 40%, #2e2e30);
      border-radius: 3px 0 0 3px;
      box-shadow: 0 46px 0 #1c1c1e, 0 47px 0 #2a2a2c, 0 80px 0 #1c1c1e, 0 81px 0 #2a2a2c;
    }

    /* ── Pantalla iPhone ── */
    .screenshot-phone {
      width: 222px;
      height: 480px;
      border-radius: 48px;
      background: #000;
      /* Casing iPhone: capa interna + rim metálico + capa externa */
      box-shadow:
        0 0 0 8px #1c1c1e,
        0 0 0 9px rgba(255,255,255,0.18),
        0 0 0 11px #111114,
        0 28px 70px rgba(0,0,0,0.75),
        0 0 60px rgba(124,58,237,0.28);
      position: relative;
      overflow: hidden;
      transition: box-shadow 0.38s ease;
    }
    .screenshot-item:hover .screenshot-phone {
      box-shadow:
        0 0 0 8px #1c1c1e,
        0 0 0 9px rgba(255,255,255,0.22),
        0 0 0 11px #111114,
        0 45px 90px rgba(0,0,0,0.85),
        0 0 80px rgba(124,58,237,0.45);
    }

    /* Dynamic Island — oculta: tapaba el status bar de la captura */
    .phone-island {
      display: none;
      position: absolute;
      top: 14px;
      left: 50%;
      transform: translateX(-50%);
      width: 86px;
      height: 28px;
      background: #000;
      border-radius: 14px;
      z-index: 10;
      box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
    }

    .screenshot-statusbar { display: none; }

    .screenshot-phone img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      display: block;
    }
    .screenshot-caption {
      margin-top: 18px;
      font-size: 13px;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: 0.5px;
    }
    @media (max-width: 768px) {
      .screenshots-row { justify-content: flex-start; padding: 20px 16px 40px; gap: 20px; }
      .screenshot-phone { width: 170px; height: 368px; border-radius: 38px; }
      .phone-island { width: 70px; height: 22px; top: 10px; }
    }

    /* ── Stats (frase + cinta de rutas) ── */
    .stats { padding: 40px 24px; }
    .stats-prose {
      text-align: center; color: #a8a8bd; font-size: 19px; font-weight: 400;
      line-height: 1.6; margin: 0 auto 36px; max-width: 560px;
    }
    .stats-prose strong { color: #e9e3fb; font-weight: 600; }
    .stats-marquee {
      position: relative; overflow: hidden; padding: 6px 0;
      max-width: 1040px; margin: 0 auto;
    }
    .stats-marquee::before, .stats-marquee::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 70px; z-index: 2;
    }
    .stats-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
    .stats-marquee::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
    .stats-track {
      display: flex; gap: 14px; white-space: nowrap; width: max-content;
      animation: statsScroll 30s linear infinite;
    }
    .route-chip {
      color: #9d8fd6; font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
      background: rgba(167,139,250,0.06); border: 1px solid rgba(167,139,250,0.15);
      padding: 7px 16px; border-radius: 100px;
    }
    @keyframes statsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    @media (max-width: 600px) { .stats-prose { font-size: 16px; } }

    /* ── Essentials bar (partners, estilo glass horizontal) ── */
    .essentials-bar {
      max-width: 1180px; margin: 0 auto;
      background: rgba(12,13,20,0.40);
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 18px;
      padding: 12px;
      box-shadow: 0 24px 60px rgba(0,0,0,0.45);
    }
    .essentials-inner {
      display: flex; flex-wrap: wrap; justify-content: center;
      gap: 8px;
    }
    .essential-item {
      flex: 1 1 calc(33.333% - 6px); min-width: 220px;
      display: flex; align-items: center; gap: 16px;
      padding: 16px 20px; border-radius: 14px;
      border: 1px solid rgba(168,85,247,0.18);
      background: linear-gradient(90deg, rgba(99,102,241,0.05), rgba(168,85,247,0.05));
      box-shadow: 0 0 14px rgba(168,85,247,0.06);
      text-decoration: none; text-align: left; cursor: pointer;
      transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    }
    .essential-item:hover {
      background: linear-gradient(90deg, rgba(99,102,241,0.14), rgba(168,85,247,0.14));
      border-color: rgba(168,85,247,0.55);
      box-shadow: 0 0 26px rgba(168,85,247,0.22);
      transform: translateY(-2px);
    }
    .essential-icon {
      flex-shrink: 0; display: flex; align-items: center; justify-content: center;
      color: #b4a6d6;
      transition: color 0.3s ease, transform 0.3s ease;
    }
    .essential-item:hover .essential-icon { color: #c084fc; transform: scale(1.06); }
    .essential-text { display: flex; flex-direction: column; min-width: 0; }
    .essential-brand {
      font-size: 11px; font-weight: 600; letter-spacing: 1px;
      text-transform: uppercase; color: #a78bcf; margin-bottom: 3px;
      transition: color 0.3s ease;
    }
    .essential-item:hover .essential-brand { color: #c084fc; }
    .essential-title {
      font-size: 16px; font-weight: 700; color: #ececf3; line-height: 1.2;
      transition: color 0.3s ease;
    }
    .essential-item:hover .essential-title { color: #fff; }
    .essential-cta {
      font-size: 12px; color: #6b7280; margin-top: 3px;
      transition: color 0.3s ease;
    }
    .essential-item:hover .essential-cta { color: var(--primary2); }

    /* ── Descubramos juntos (comunidad · acento teal, estilo postal) ── */
    /* ── Infinite carousel ── */
    .discover-carousel {
      overflow: hidden;
      margin-top: 28px;
      -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
      mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
    }
    .discover-carousel-track {
      display: flex;
      gap: 20px;
      width: max-content;
      animation: dc-scroll 40s linear infinite;
    }
    .discover-carousel:hover .discover-carousel-track {
      animation-play-state: paused;
    }
    @keyframes dc-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .discover-grid {
      margin-top: 28px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 16px;
    }
    .discover-grid .discover-card {
      width: auto; flex: initial; height: auto; min-height: 150px;
    }
    .discover-grid .discover-card.is-featured {
      box-shadow: 0 12px 34px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(139,92,246,0.32);
    }
    .discover-grid .discover-card { min-height: 168px; }
    .discover-grid .discover-tip { margin-bottom: 8px; }
    .discover-grid .discover-watch {
      position: static; align-self: flex-end; margin-top: auto;
    }
    .discover-card {
      position: relative; isolation: isolate;
      width: 320px; flex: 0 0 320px;
      height: 140px; box-sizing: border-box; overflow: hidden;
      background-color: var(--surface);
      background-size: cover; background-position: center;
      border: none;
      border-radius: 18px; padding: 12px 16px;
      display: flex; flex-direction: column; justify-content: space-between;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      text-decoration: none; color: inherit;
      box-shadow: 0 12px 34px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(255,255,255,0.06);
    }
    .discover-card::before {
      content: ''; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
      background: linear-gradient(165deg, rgba(10,8,18,0.42) 0%, rgba(10,8,18,0.72) 52%, rgba(10,8,18,0.93) 100%);
      transition: background 0.25s ease;
    }
    .discover-card > * { position: relative; z-index: 1; }
    a.discover-card:hover { text-decoration: none; }
    .discover-watch {
      align-self: flex-end;
      display: inline-flex; align-items: center;
      font-size: 9.5px; font-weight: 800; letter-spacing: 0.6px; text-transform: uppercase;
      color: #a78bfa;
      background: rgba(139,92,246,0.13); border: 1px solid rgba(139,92,246,0.38);
      padding: 5px 12px; border-radius: 100px;
      -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
      transition: background 0.2s ease, box-shadow 0.2s ease;
    }
    .discover-card.is-featured .discover-watch {
      color: #c4b5fd; background: rgba(139,92,246,0.16); border-color: rgba(139,92,246,0.45);
    }
    .discover-card:hover {
      transform: translateY(-5px) scale(1.012);
      box-shadow: 0 24px 54px rgba(0,0,0,0.62), inset 0 0 0 1px rgba(255,255,255,0.08);
    }
    .discover-card:hover .discover-watch { background: rgba(139,92,246,0.24); box-shadow: 0 0 18px rgba(139,92,246,0.45); }
    .discover-card.is-featured:hover .discover-watch { background: rgba(139,92,246,0.28); box-shadow: 0 0 18px rgba(139,92,246,0.5); }
    .discover-card:hover::before {
      background: linear-gradient(165deg, rgba(10,8,18,0.28) 0%, rgba(10,8,18,0.6) 52%, rgba(10,8,18,0.9) 100%);
    }
    .discover-pin {
      position: absolute; top: 10px; right: 12px; font-size: 11px; opacity: 0.65;
    }
    .discover-country {
      font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
      color: #a78bfa; margin: 0;
    }
    .discover-place { font-size: 14px; font-weight: 800; color: var(--text); margin: 2px 0 4px; letter-spacing: -0.2px; text-shadow: 0 1px 8px rgba(0,0,0,0.8); }
    .discover-country, .discover-route, .discover-season, .discover-tip, .discover-watch { text-shadow: 0 1px 6px rgba(0,0,0,0.85); }
    .discover-route {
      display: flex; align-items: center; gap: 4px;
      font-size: 10.5px; color: #c9bdf0; font-weight: 600; margin-bottom: 3px;
    }
    .discover-season { font-size: 10px; color: #9e93cc; font-weight: 600; margin: 0; }
    .discover-tip {
      font-size: 0.8rem; color: #cfcfdb; line-height: 1.3; margin: 3px 0 0;
      display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    }
    .discover-by {
      display: inline-flex; align-items: center; gap: 3px;
      font-size: 8.5px; color: #5fae9f; margin: 0;
      letter-spacing: 0.3px; text-transform: uppercase; font-weight: 700; opacity: 0.75;
    }
    .discover-cta {
      position: relative; isolation: isolate; overflow: hidden;
      background-color: #16131f;
      background-image: url('/assets/img/discover-cta.jpg');
      background-size: cover; background-position: center 48%;
      border: none;
      border-radius: 18px; padding: 44px 28px; margin-top: 24px; text-align: center;
      box-shadow: 0 18px 44px rgba(0,0,0,0.45);
    }
    .discover-cta::before {
      content: ''; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
      background:
        radial-gradient(120% 130% at 50% 45%, transparent 55%, rgba(22,19,31,0.85) 90%, #16131f 100%),
        radial-gradient(ellipse 80% 130% at 50% 50%, rgba(16,12,26,0.4), rgba(16,12,26,0.78)),
        linear-gradient(180deg, rgba(16,12,26,0.5) 0%, rgba(16,12,26,0.78) 100%);
    }
    .discover-cta > * { position: relative; z-index: 1; }
    .discover-cta h3 { font-size: 21px; font-weight: 800; margin-bottom: 8px; text-shadow: 0 2px 14px rgba(0,0,0,0.7); }
    .discover-cta p { font-size: 15px; color: #e2e2ec; margin-bottom: 18px; text-shadow: 0 1px 10px rgba(0,0,0,0.7); }
    .discover-cta-btn {
      display: inline-block; background: rgba(124,58,237,0.18);
      color: #E9E3FB; font-weight: 800; padding: 12px 30px; border-radius: 100px;
      text-decoration: none; border: 1px solid rgba(139,92,246,0.65);
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 4px 16px rgba(124,58,237,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
      transition: transform 0.2s, border-color 0.2s, background 0.2s;
    }
    .discover-cta-btn:hover { transform: translateY(-2px); border-color: rgba(196,181,253,0.9); background: rgba(124,58,237,0.28); }

    /* ── Franja VIP "Trusted partners" (Booking / Tripadvisor) ── */
    .vip-bar { max-width: 1180px; margin: 0 auto 14px; }
    .vip-label {
      display: flex; align-items: center; gap: 7px;
      font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: #e7c66b; margin: 0 0 10px 4px;
    }
    .vip-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .vip-card {
      display: flex; align-items: center; gap: 12px;
      padding: 14px 16px; border-radius: 16px;
      border: 1px solid rgba(231,198,107,0.45);
      background: linear-gradient(100deg, rgba(26,21,53,0.95), rgba(18,16,42,0.98));
      box-shadow: 0 0 22px rgba(231,198,107,0.12);
      text-decoration: none; cursor: pointer;
      transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    }
    .vip-card:hover {
      border-color: rgba(231,198,107,0.85);
      box-shadow: 0 0 30px rgba(231,198,107,0.28);
      transform: translateY(-2px);
    }
    .vip-card-pulse { animation: vipCardPulse 0.9s ease 2; }
    @keyframes vipCardPulse {
      0%, 100% { border-color: rgba(231,198,107,0.45); box-shadow: 0 0 22px rgba(231,198,107,0.12); }
      50% { border-color: rgba(231,198,107,1); box-shadow: 0 0 34px rgba(231,198,107,0.55); }
    }
    .klook-city-picker { z-index: 10; }
    .klook-city-menu {
      display: none;
      position: absolute; top: calc(100% + 8px); left: 0; right: 0;
      max-height: 360px; overflow-y: auto;
      background: #181433; border: 1px solid rgba(231,198,107,0.35);
      border-radius: 14px; box-shadow: 0 16px 40px rgba(0,0,0,0.5);
      padding: 10px 0; z-index: 9999;
    }
    .klook-city-menu.open { display: block; }
    .klook-city-group-label {
      font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      color: rgba(231,198,107,0.75); padding: 10px 18px 4px;
    }
    .klook-city-item {
      display: block; width: 100%; text-align: left; padding: 8px 18px;
      background: none; border: none; color: rgba(255,255,255,0.85); font-size: 13px;
      font-family: inherit; cursor: pointer; transition: background 0.15s, color 0.15s;
    }
    .klook-city-item:hover { background: rgba(231,198,107,0.14); color: #fff; }
    .klook-city-menu::-webkit-scrollbar { width: 6px; }
    .klook-city-menu::-webkit-scrollbar-thumb { background: rgba(231,198,107,0.35); border-radius: 3px; }
    .vip-icon {
      flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(231,198,107,0.12); color: #e7c66b;
    }
    .vip-icon img { width: 100%; height: 100%; object-fit: contain; border-radius: 10px; background: #fff; padding: 5px; }
    .vip-text { display: flex; flex-direction: column; min-width: 0; }
    .vip-brand { font-size: 14px; font-weight: 800; color: #fff; line-height: 1.15; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .vip-sub { font-size: 11px; color: #cbb97e; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

    /* ── Panel de widget de partner (desplegable bajo la barra) ── */
    .partner-widgets { max-width: 1180px; margin: 14px auto 0; }
    .pw-panel {
      display: none; position: relative;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(168,85,247,0.22);
      border-radius: 16px; padding: 20px;
      box-shadow: 0 0 24px rgba(168,85,247,0.10);
    }
    .pw-panel.show { display: block; animation: pwIn 0.25s ease; }
    @keyframes pwIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
    .pw-close {
      position: absolute; top: 10px; right: 12px; z-index: 2;
      width: 30px; height: 30px; border-radius: 8px;
      background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.12);
      color: #fff; font-size: 16px; line-height: 1; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
    }
    .pw-close:hover { background: rgba(168,85,247,0.30); }
    /* Kiwitaxi: el buscador solo necesita ~210px; recorto el hueco gigante */
    #pw-kiwitaxi { max-height: 250px !important; overflow: hidden !important; }
    #pw-kiwitaxi > div { height: 210px !important; overflow: hidden !important; }
    #pw-kiwitaxi iframe { height: 210px !important; }

    /* ── Trust strip (fuentes de datos oficiales) ── */
    .trust-strip { text-align: center; padding: 10px 24px 38px; }
    .trust-label {
      font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--muted); margin-bottom: 16px;
    }
    .trust-ops {
      display: flex; flex-wrap: wrap; justify-content: center;
      gap: 8px 12px; max-width: 1120px; margin: 0 auto;
    }
    .op-chip {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75);
      letter-spacing: 0.3px;
      padding: 5px 14px 5px 7px; border-radius: 100px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(139,92,246,0.14);
      transition: background 0.2s ease, border-color 0.2s ease;
    }
    .op-chip:hover { background: rgba(255,255,255,0.06); border-color: rgba(139,92,246,0.4); }
    .op-chip img {
      width: 18px; height: 18px; border-radius: 4px; flex-shrink: 0;
      background: #fff; padding: 2px; object-fit: contain;
    }
    /* Badges de confianza (señales reales) — livianos, sin pastilla, a lo ancho */
    .trust-badges {
      display: flex; flex-wrap: wrap; justify-content: center;
      gap: 8px 26px; margin: 16px auto 0; max-width: 1120px;
    }
    .trust-badge {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7);
      padding: 0; background: none; border: none; box-shadow: none;
    }
    .trust-badge svg { width: 15px; height: 15px; color: var(--primary2); flex-shrink: 0; }

    /* ── Photo carousel ── */
    .photo-carousel {
      width: 100%;
      overflow: hidden;
      padding: 24px 0;
      background: var(--bg);
      position: relative;
    }
    .photo-carousel::before,
    .photo-carousel::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 120px;
      z-index: 2;
      pointer-events: none;
    }
    .photo-carousel::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
    .photo-carousel::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
    .carousel-track {
      display: flex;
      gap: 16px;
      width: max-content;
      animation: carousel-scroll 40s linear infinite;
    }
    .photo-carousel:hover .carousel-track {
      animation-play-state: paused;
    }
    @keyframes carousel-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .carousel-photo {
      width: 320px;
      height: 200px;
      border-radius: 16px;
      object-fit: cover;
      flex-shrink: 0;
      display: block;
      filter: brightness(0.85);
      transition: filter 0.3s;
    }
    .carousel-photo:hover { filter: brightness(1); }

    /* ── Footer ── */
    footer {
      border-top: 1px solid var(--border);
      padding: 60px 24px 40px;
      text-align: center;
    }
    .footer-links {
      display: flex; justify-content: center; gap: 24px;
      margin-bottom: 20px; flex-wrap: wrap;
    }
    .footer-links a {
      color: var(--muted); text-decoration: none; font-size: 13px;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--primary2); }
    footer p { font-size: 12px; color: var(--muted); }
    footer .disclaimer {
      margin-top: 16px; font-size: 11px; opacity: 0.7;
      max-width: 600px; margin-left: auto; margin-right: auto;
      line-height: 1.5;
    }

    /* ── Calendar glassmorphism ── */
    .cal-popup {
      position: absolute;
      top: 0; left: 0;
      z-index: 2000;
      width: 300px;
      background: #15112b;
      border: 1px solid rgba(167,139,250,0.35);
      border-radius: 20px;
      padding: 20px;
      box-shadow: 0 16px 50px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.05);
      display: none;
    }
    .cal-popup.open { display: block; }
    .cal-header {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 16px;
    }
    .cal-title {
      font-size: 15px; font-weight: 700; color: #fff;
      background: linear-gradient(135deg, #a78bfa, #fff);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .cal-nav {
      background: rgba(124,58,237,0.2); border: 1px solid rgba(124,58,237,0.4);
      color: #a78bfa; border-radius: 8px; width: 28px; height: 28px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-size: 14px; transition: background 0.2s;
    }
    .cal-nav:hover { background: rgba(124,58,237,0.4); }
    .cal-weekdays {
      display: grid; grid-template-columns: repeat(7,1fr);
      margin-bottom: 8px;
    }
    .cal-weekdays span {
      text-align: center; font-size: 10px; font-weight: 700;
      color: rgba(167,139,250,0.7); letter-spacing: 0.5px; padding: 4px 0;
    }
    .cal-days {
      display: grid; grid-template-columns: repeat(7,1fr); gap: 2px;
    }
    .cal-day {
      aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.8);
      border-radius: 8px; cursor: pointer; transition: background 0.15s, color 0.15s;
    }
    .cal-day:hover { background: rgba(124,58,237,0.3); color: #fff; }
    .cal-day.today { border: 1px solid rgba(167,139,250,0.5); color: #a78bfa; }
    .cal-day.selected {
      background: linear-gradient(135deg, #7c3aed, #a78bfa);
      color: #fff; font-weight: 700;
      box-shadow: 0 0 12px rgba(124,58,237,0.5);
    }
    .cal-day.other-month { color: rgba(255,255,255,0.2); cursor: default; }
    .cal-day.disabled { color: rgba(255,255,255,0.15); cursor: not-allowed; }
    .cal-day.disabled:hover { background: transparent; }

    /* ── FAQ ── */
    .faq-item {
      border-bottom: 1px solid var(--border);
      padding: 20px 0;
      cursor: pointer;
    }
    .faq-q {
      font-size: 16px; font-weight: 600; color: var(--text);
      display: flex; justify-content: space-between; align-items: center;
      gap: 16px;
    }
    .faq-arrow { color: var(--primary2); font-size: 18px; transition: transform 0.2s; flex-shrink: 0; }
    .faq-item.open .faq-arrow { transform: rotate(180deg); }
    .faq-a {
      font-size: 14px; color: var(--muted); line-height: 1.7;
      margin-top: 12px; display: none;
    }
    .faq-item.open .faq-a { display: block; }

    @media (max-width: 768px) {
      .search-box {
        grid-template-columns: 1fr;
        gap: 10px;
      }
      .search-btn { padding: 14px; }
    }
    @media (max-width: 600px) {
      .hero-bgwrap::after {
        -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 60%, rgba(0,0,0,0.7) 78%, rgba(0,0,0,0.3) 90%, transparent 100%);
        mask-image: linear-gradient(to bottom, #000 0%, #000 60%, rgba(0,0,0,0.7) 78%, rgba(0,0,0,0.3) 90%, transparent 100%);
        background-position: center 30%;
      }
      .hero-bgwrap::before {
        background:
          radial-gradient(ellipse 120% 60% at 50% 20%, rgba(124,58,237,0.25) 0%, transparent 70%),
          linear-gradient(180deg, rgba(10,10,15,0.25) 0%, transparent 70%);
      }
      nav { padding: 16px 20px; }
      .nav-toggle { display: inline-flex; }
      .nav-links {
        display: none;
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: linear-gradient(180deg, rgba(26,22,48,0.98) 0%, rgba(10,10,15,0.98) 100%);
        -webkit-backdrop-filter: blur(22px) saturate(140%);
        backdrop-filter: blur(22px) saturate(140%);
        border-bottom: 1px solid rgba(139,92,246,0.18);
        box-shadow: 0 8px 30px rgba(0,0,0,0.45);
        padding: 6px 20px 16px;
      }
      .nav-links.show { display: flex; }
      .nav-links a {
        padding: 15px 4px; font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
      }
      .hero { padding: 100px 20px 60px; }

      /* ── Essentials bar — 1 columna (móvil) ── */
      .essential-item { flex-basis: 100%; }
      /* ── VIP — 1 columna (móvil) ── */
      .vip-inner { grid-template-columns: 1fr; }
      /* ── Descubramos juntos — 1 columna (móvil) ── */
      .discover-carousel { -webkit-mask-image: none; mask-image: none; }
      .discover-card { width: 260px; flex: 0 0 260px; height: 130px; }
      .wt-route-btn { width: 100%; flex: 0 0 100%; height: 100px; }
      .section { padding: 30px 16px; }

      /* ── Fix overflow horizontal en mobile ── */
      html, body { overflow-x: hidden; max-width: 100vw; }
      * { max-width: 100%; box-sizing: border-box; }

      /* ── Scenic cards — ancho completo, sin panel lateral ── */
      .scenic-desc { display: none !important; }
      .scenic-grid { flex-direction: column; gap: 10px; padding: 0; }
      .scenic-wrapper { flex: none; width: 100%; overflow: hidden; }
      .scenic-wrapper:hover { border-radius: 16px; }
      .scenic-card { padding: 14px; width: 100%; }
      .scenic-name { font-size: 14px; }
      .scenic-route { font-size: 11px; }

      /* ── Essentials bar — ajuste de padding (móvil) ── */
      .essential-item { padding: 14px 16px; gap: 14px; }
      .essential-title { font-size: 15px; }

      /* ── Features grid — 1 columna ── */
      .features-grid { grid-template-columns: 1fr; }

      /* ── Selector de idioma — dentro del panel desplegable ── */
      .lang-wrapper { margin-top: 12px; }
    }

/* === WoW TRAIN · secciones nuevas (rutas Trainline + testimonios) === */
/* ===================== WoW TRAIN · secciones nuevas ===================== */

  /* ---- Tarea 2: Arma tu propia aventura ---- */
  .wt-route-buttons {
    display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 28px;
  }
  .wt-route-btn {
    position: relative; overflow: hidden;
    width: 320px; flex: 0 0 320px; height: 120px;
    display: flex; align-items: flex-end;
    border-radius: 15px;
    appearance: none; cursor: pointer;
    border: 2px solid rgba(168,85,247,0.25);
    padding: 0; background: #0d0d1a;
    font-family: inherit;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
  }
  .wt-route-btn::before {
    content: '';
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.4s ease;
    z-index: 0;
  }
  .wt-route-btn[data-route="classic"]::before {
    background-image: url('https://images.unsplash.com/photo-1673086636059-0f4abc8b853b?w=640&q=80&auto=format&fit=crop');
  }
  .wt-route-btn[data-route="alpine"]::before {
    background-image: url('https://images.unsplash.com/photo-1514970746-d4a465d514d0?w=640&q=80&auto=format&fit=crop');
  }
  .wt-route-btn[data-route="imperial"]::before {
    background-image: url('https://images.unsplash.com/photo-1700224982244-5164c097b79f?w=640&q=80&auto=format&fit=crop');
  }
  .wt-route-btn::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.72));
    z-index: 1;
    transition: background 0.3s ease;
  }
  .wt-route-btn span {
    position: relative; z-index: 2;
    display: block; padding: 0 16px 14px;
    color: #fff; font-size: 14px; font-weight: 700;
    text-shadow: 0 1px 6px rgba(0,0,0,0.85);
    letter-spacing: 0.1px;
  }
  .wt-route-btn:hover::before { transform: scale(1.06); }
  .wt-route-btn:hover { box-shadow: 0 0 15px rgba(168,85,247,0.4); border-color: #8b5cf6; }
  .wt-route-btn[aria-pressed="true"] { border-color: #a855f7; box-shadow: 0 0 20px rgba(168,85,247,0.55); }
  .wt-route-btn[aria-pressed="true"]::after {
    background: linear-gradient(rgba(0,0,0,0.15), rgba(55,10,100,0.65));
  }

  .wt-timeline-wrap {
    position: relative;
    background-color: rgba(10,10,15,0.95);
    background-image: url('/assets/img/route-bg.jpg');
    background-size: cover;
    background-position: center 38%;
    border: none;
    border-radius: 32px;
    padding: 30px clamp(22px, 4vw, 46px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.45);
    height: fit-content;
    overflow: hidden;
  }
  .wt-timeline-wrap::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(135% 130% at 50% 42%, transparent 60%, rgba(22,19,31,0.78) 90%, #16131f 100%),
      linear-gradient(90deg, rgba(8,6,18,0.85) 0%, rgba(8,6,18,0.55) 44%, rgba(8,6,18,0.08) 100%),
      linear-gradient(180deg, rgba(8,6,18,0.32) 0%, rgba(8,6,18,0.12) 38%, rgba(8,6,18,0.58) 100%);
    z-index: 0;
    border-radius: inherit;
    pointer-events: none;
  }
  .wt-timeline-head, #wt-timeline, #wt-cta-slot { position: relative; z-index: 1; }
  .wt-close { z-index: 2; }
  .wt-timeline-head { margin-bottom: 22px; }
  .wt-timeline-head h3 { font-size: 22px; font-weight: 800; margin: 0 0 6px; letter-spacing: -0.3px; text-shadow: 0 2px 14px rgba(0,0,0,0.75); }
  .wt-timeline-head .wt-route-meta { color: var(--primary2); font-weight: 600; font-size: 14px; text-shadow: 0 1px 10px rgba(0,0,0,0.6); }

  .wt-timeline { list-style: none; margin: 0; padding: 0; position: relative; }
  .wt-timeline::before {
    content: ""; position: absolute; left: 5px; top: 10px; bottom: 10px; width: 1.5px;
    background: rgba(168,85,247,0.4);
  }
  .wt-stop {
    position: relative; padding: 0 0 26px 32px;
    opacity: 0; transform: translateX(-10px);
    animation: wt-stop-in .45s ease forwards;
  }
  .wt-stop:last-child { padding-bottom: 0; }
  @keyframes wt-stop-in { to { opacity: 1; transform: translateX(0); } }
  .wt-stop::before {
    content: ""; position: absolute; left: 0; top: 6px;
    width: 12px; height: 12px; border-radius: 50%;
    background: #a855f7;
    box-shadow: 0 0 0 3px rgba(168,85,247,0.18);
  }
  .wt-stop-station { font-size: 18px; font-weight: 800; margin: 0 0 4px; letter-spacing: -0.3px; text-shadow: 0 2px 12px rgba(0,0,0,0.7); }
  .wt-stop-train {
    display: inline-block; font-size: 12.5px; font-weight: 600; color: var(--primary2);
    background: rgba(124,58,237,0.12); border: 1px solid rgba(139,92,246,0.25);
    border-radius: 100px; padding: 3px 11px; margin: 0 0 8px;
  }
  .wt-stop-desc { margin: 0; color: #cdcdda; font-size: 14px; line-height: 1.65; text-shadow: 0 1px 10px rgba(0,0,0,0.7); }
  .wt-stop-buy {
    display: inline-block; margin-top: 10px;
    font-family: inherit; font-size: 13px; font-weight: 700; color: #E9E3FB;
    cursor: pointer; padding: 8px 18px; border-radius: 100px;
    background: rgba(124,58,237,0.22); border: 1px solid rgba(139,92,246,0.45);
    transition: background 0.2s, border-color 0.2s;
  }
  .wt-stop-buy:hover { background: rgba(124,58,237,0.38); border-color: rgba(167,139,250,0.85); }

  /* Botón de cierre (X) de la tarjeta de rutas */
  .wt-close {
    position: absolute; top: 14px; right: 14px;
    width: 34px; height: 34px; padding: 0;
    display: none; place-items: center; cursor: pointer;
    font-family: inherit; font-size: 20px; line-height: 1; font-weight: 700;
    color: var(--primary2);
    border: 1px solid rgba(139,92,246,0.35); border-radius: 50%;
    background: rgba(124,58,237,0.10);
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
  }
  .wt-close:not([hidden]) { display: grid; }
  .wt-close:hover {
    color: #fff; border-color: transparent; transform: rotate(90deg);
    background: linear-gradient(135deg, var(--primary), var(--primary2));
    box-shadow: 0 6px 18px rgba(124,58,237,0.45);
  }
  .wt-close:focus-visible { outline: 2px solid var(--primary2); outline-offset: 2px; }

  /* CTA hacia Trainline al final de cada timeline */
  .wt-tl-cta {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 26px;
    font-family: inherit; font-size: 15px; font-weight: 700; color: #E9E3FB;
    text-decoration: none; cursor: pointer;
    padding: 14px 26px; border-radius: 100px;
    background: rgba(124,58,237,0.18);
    border: 1px solid rgba(139,92,246,0.65);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(124,58,237,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
    transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  }
  .wt-tl-cta:hover { transform: translateY(-2px); border-color: rgba(196,181,253,0.9); background: rgba(124,58,237,0.28); box-shadow: 0 4px 20px rgba(124,58,237,0.25), inset 0 1px 0 rgba(255,255,255,0.12); }
  .wt-tl-arrow { transition: transform .2s ease; }
  .wt-tl-cta:hover .wt-tl-arrow { transform: translateX(3px); }
  .wt-cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 26px; }
  .wt-cta-row .wt-tl-cta { margin-top: 0; }
  .wt-pdf-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: inherit; font-size: 14px; font-weight: 700; color: var(--primary2);
    cursor: pointer; padding: 13px 22px; border-radius: 100px;
    background: rgba(124,58,237,0.10); border: 1px solid rgba(139,92,246,0.5);
    transition: background .2s ease, transform .18s ease, border-color .2s ease;
  }
  .wt-pdf-btn svg { width: 16px; height: 16px; }
  .wt-pdf-btn:hover { background: rgba(124,58,237,0.22); transform: translateY(-2px); border-color: rgba(139,92,246,0.85); }
  .wt-pdf-btn:disabled { opacity: 0.6; cursor: wait; transform: none; }

  /* ---- Tarea 3: Valoraciones & experiencias ---- */
  .wt-reviews-grid {
    display: flex; gap: 14px; margin-top: 8px;
    max-width: 1200px; margin-left: auto; margin-right: auto;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 16px; -webkit-overflow-scrolling: touch;
    cursor: grab; scroll-behavior: smooth;
    scrollbar-width: thin; scrollbar-color: rgba(139,92,246,0.7) rgba(255,255,255,0.06);
  }
  .wt-reviews-grid.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
  .wt-reviews-grid.dragging .wt-review-card { pointer-events: none; }
  .wt-reviews-grid::-webkit-scrollbar { height: 10px; }
  .wt-reviews-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary), var(--primary2));
    border-radius: 100px; border: 2px solid transparent; background-clip: padding-box;
  }
  .wt-reviews-grid::-webkit-scrollbar-thumb:hover { background: var(--primary2); }
  .wt-reviews-grid::-webkit-scrollbar-track { background: rgba(255,255,255,0.06); border-radius: 100px; }
  .wt-review-card {
    position: relative;
    flex: 0 0 300px; scroll-snap-align: start;
    height: 140px; box-sizing: border-box; overflow: hidden;
    display: flex; flex-direction: column; justify-content: space-between;
    background:
      radial-gradient(120% 100% at 0% 0%, rgba(124,58,237,0.18), transparent 58%),
      linear-gradient(160deg, rgba(26,21,53,0.95) 0%, rgba(18,16,42,0.98) 75%);
    border: none; border-radius: 18px; padding: 13px 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(255,255,255,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .wt-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(167,139,250,0.42);
  }
  .wt-review-head { display: flex; align-items: center; gap: 8px; margin-bottom: 0; }
  .wt-avatar {
    width: 28px; height: 28px; border-radius: 50%; flex: 0 0 auto;
    display: grid; place-items: center; font-weight: 800; font-size: 10px; color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary2));
    box-shadow: 0 0 8px rgba(124,58,237,0.28);
  }
  .wt-review-name { font-size: 12px; font-weight: 800; margin: 0; letter-spacing: -0.1px; }
  .wt-review-route { font-size: 10px; color: var(--muted); margin: 1px 0 0; }
  .wt-momento {
    display: block; color: var(--primary2); font-weight: 700; font-size: 10px; margin-bottom: 2px;
    text-shadow: 0 0 8px rgba(167,139,250,0.35);
  }
  .wt-review-body {
    color: var(--text); font-size: 0.8rem; line-height: 1.3; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  }
  .wt-stars { color: #fbbf24; font-size: 11px; letter-spacing: 2px; margin: 0; text-shadow: 0 0 10px rgba(251,191,36,0.5); }

  /* ---- Responsive ---- */
  @media (max-width: 720px) {
    .wt-review-card { flex: 0 0 82%; height: auto; min-height: 130px; }
  }
  /* ── Review submission form ── */
  .wt-review-form {
    max-width: 1200px; margin: 24px auto 0;
    background: linear-gradient(160deg, rgba(26,21,53,0.95), rgba(18,16,42,0.98));
    border: none; border-radius: 20px; padding: 22px 20px 18px;
    box-shadow: 0 18px 44px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(139,92,246,0.18);
  }
  .wt-form-row { display: flex; gap: 10px; margin-bottom: 10px; align-items: center; }
  .wt-form-input {
    flex: 1; font-family: inherit; font-size: 12.5px; color: var(--text);
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 11px; padding: 11px 14px; outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  }
  .wt-form-input:focus { border-color: rgba(168,85,247,0.7); box-shadow: 0 0 0 3px rgba(124,58,237,0.2); background: rgba(255,255,255,0.07); }
  .wt-form-textarea {
    width: 100%; box-sizing: border-box; resize: none; height: 44px;
    font-family: inherit; font-size: 12.5px; color: var(--text);
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 11px; padding: 11px 14px; outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  }
  .wt-form-textarea:focus { border-color: rgba(168,85,247,0.7); box-shadow: 0 0 0 3px rgba(124,58,237,0.2); background: rgba(255,255,255,0.07); }
  .wt-submit-btn {
    background: rgba(124,58,237,0.18);
    color: #E9E3FB; border: 1px solid rgba(139,92,246,0.65); cursor: pointer; white-space: nowrap;
    font-family: inherit; font-size: 13px; font-weight: 700;
    padding: 11px 26px; border-radius: 100px; flex: 0 0 auto;
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 16px rgba(124,58,237,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
    transition: transform 0.2s, border-color 0.2s, background 0.2s, opacity 0.2s;
  }
  .wt-submit-btn:hover { transform: translateY(-2px); border-color: rgba(196,181,253,0.9); background: rgba(124,58,237,0.28); }
  .wt-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; filter: none; }
  .wt-char-row { display: flex; justify-content: space-between; align-items: center; margin-top: 5px; }
  .wt-char-count { font-size: 11px; color: var(--muted); }
  .wt-form-status { font-size: 12px; min-height: 16px; }
  .wt-star-row { display: flex; gap: 2px; align-items: center; }
  .wt-star-btn {
    appearance: none; border: none; background: none; padding: 2px 3px; cursor: pointer;
    color: rgba(255,255,255,0.18); transition: color 0.12s, transform 0.1s;
    line-height: 0;
  }
  .wt-star-btn:hover { transform: scale(1.18); color: #fcd34d; text-shadow: 0 0 10px rgba(251,191,36,0.5); }
  .wt-star-btn.lit { color: #fbbf24; text-shadow: 0 0 12px rgba(251,191,36,0.65); }

  @media (max-width: 768px) {
    .wt-review-form { padding: 15px; }
    .wt-form-row { flex-direction: column; align-items: stretch; }
    .wt-form-input { width: 100%; flex: none; }
    .wt-submit-btn { width: 100%; }
    .wt-star-row { justify-content: center; }
  }

  /* === AI Route Planner === */
  .ai-planner {
    padding: 40px 24px 60px;
    background: transparent;
    position: relative;
    overflow: hidden;
  }
  .ai-planner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 50%, rgba(124,58,237,0.22) 0%, transparent 70%),
      linear-gradient(180deg, rgba(10,6,25,0.55) 0%, rgba(10,6,25,0.4) 60%, transparent 100%);
    pointer-events: none;
    z-index: 0;
  }
  .ai-planner > * {
    position: relative;
    z-index: 1;
  }
  .ai-planner-header {
    text-align: center;
    margin-bottom: 40px;
  }
  .ai-label {
    display: inline-block;
    background: rgba(124,58,237,0.25);
    border: 1px solid rgba(167,139,250,0.5);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary2);
    text-transform: uppercase;
  }
  .ai-planner-header h2 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    line-height: 1.1;
    color: var(--text);
    text-shadow: 0 0 60px rgba(167,139,250,0.3);
  }
  .ai-subtitle {
    font-size: 17px;
    color: #FFFFFF;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
  }
  .ai-input-wrapper {
    max-width: 820px;
    margin: 0 auto;
    transition: all 0.4s ease;
  }
  .ai-input-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: nowrap;
  }
  .ai-input-aurora {
    position: relative;
    flex: 1;
    min-width: 0;
    border-radius: 100px;
  }
  .ai-input-aurora::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(115deg, #7c3aed, #f97066 30%, #22d3ee 60%, #a78bfa 85%, #7c3aed);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    filter: drop-shadow(0 0 6px rgba(124,58,237,0.45)) drop-shadow(0 0 10px rgba(34,211,238,0.2));
    animation: auroraShift 7s ease infinite;
    transition: opacity 0.3s, filter 0.3s, animation-duration 0.3s;
    z-index: 1;
  }
  .ai-input-aurora.active::before {
    opacity: 0.9;
    filter: drop-shadow(0 0 8px rgba(124,58,237,0.55)) drop-shadow(0 0 12px rgba(34,211,238,0.3));
    animation-duration: 2.5s;
  }
  .ai-input-container input {
    flex: 1;
    min-width: 0;
    width: 100%;
    font-family: inherit;
    font-size: 17px;
    color: var(--text);
    background: rgba(124,58,237,0.18);
    border: 1px solid rgba(139,92,246,0.65);
    border-radius: 100px;
    padding: 18px 52px 18px 28px;
    outline: none;
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(124,58,237,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  }
  .ai-input-container input::placeholder {
    color: rgba(196,181,253,0.65);
  }
  .ai-input-container input:focus {
    border-color: rgba(167,139,250,0.9);
    box-shadow: 0 0 0 4px rgba(124,58,237,0.18), 0 0 20px rgba(124,58,237,0.25);
    background: var(--elevated);
  }
  .ai-swap-btn {
    position: absolute;
    right: 8px; top: 50%;
    transform: translateY(-50%);
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(139,92,246,0.45);
    background: rgba(124,58,237,0.22);
    color: rgba(220,214,250,0.9);
    font-size: 15px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s, border-color 0.15s, transform 0.2s;
    z-index: 2;
  }
  .ai-swap-btn:hover {
    background: rgba(124,58,237,0.4);
    border-color: rgba(167,139,250,0.85);
  }
  .ai-swap-btn:active {
    transform: translateY(-50%) rotate(180deg);
  }
  /* Botón de acción sólido (a diferencia del CTA hero "etéreo" con aurora) */
  .ai-generate-btn {
    position: relative;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed 55%, #6d28d9);
    border: none;
    border-radius: 100px;
    padding: 18px 32px;
    box-shadow: 0 4px 20px rgba(124,58,237,0.45), inset 0 1px 0 rgba(255,255,255,0.18);
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    overflow: hidden;
  }
  .ai-generate-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 6px 26px rgba(124,58,237,0.55), inset 0 1px 0 rgba(255,255,255,0.22);
  }
  .ai-generate-btn.loading {
    cursor: wait;
  }
  .ai-generate-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
  }
  .ai-generate-btn.loading:disabled {
    opacity: 1;
    cursor: wait;
  }
  .ai-suggestions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .ai-suggestions-label {
    font-size: 12px;
    color: rgba(196,181,253,0.9);
    letter-spacing: 0.05em;
    margin-right: 4px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.8);
  }
  .ai-suggestion {
    font-size: 13px;
    color: rgba(196,181,253,0.85);
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 4px 0;
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: none;
    text-shadow: 0 1px 8px rgba(0,0,0,0.8);
    font-weight: 500;
  }
  .ai-suggestion + .ai-suggestion::before {
    content: '·';
    margin-right: 8px;
    color: rgba(196,181,253,0.5);
  }
  .ai-suggestion:hover {
    color: rgba(167,139,250,1);
    border-color: transparent;
    background: transparent;
  }
  .ai-restore-btn {
    display: block;
    margin: 24px auto 0;
    font-size: 15px;
    color: var(--primary2);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
  }
  .ai-restore-btn:hover {
    color: #fff;
  }
  .ai-results {
    max-width: min(900px, 92vw);
    margin: 0 auto;
    background: rgba(34,29,64,0.88);
    border: 1px solid rgba(139,92,246,0.25);
    border-radius: 24px;
    padding: 40px 48px;
    position: relative;
    animation: aiFadeIn 0.5s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  }
  @keyframes aiFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .ai-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 26px;
    color: var(--muted);
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
  }
  .ai-close-btn:hover {
    color: var(--text);
    background: var(--border);
  }
  .ai-results-header {
    text-align: center;
    margin-bottom: 16px;
  }
  .ai-results-header h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.2;
    color: var(--text);
  }
  .ai-results-header p {
    font-size: 14px;
    color: var(--muted);
  }
  .ai-route-line {
    height: 90px;
    margin: 12px 0;
    position: relative;
  }
  .route-svg {
    width: 100%;
    height: 100%;
  }
  .route-path {
    fill: none;
    stroke: url(#auroraLineGradient);
    stroke-width: 2.5;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    opacity: 0.9;
    filter: drop-shadow(0 0 6px rgba(124,58,237,0.5));
    animation: routeDraw 1.4s cubic-bezier(0.4,0,0.2,1) forwards;
  }
  @keyframes routeDraw {
    to { stroke-dashoffset: 0; }
  }
  .ai-route-meta {
    font-size: 12px;
    color: rgba(167,139,250,0.6);
    letter-spacing: 0.06em;
    text-align: center;
    margin-top: 6px;
  }
  .route-dot {
    fill: var(--primary);
    filter: drop-shadow(0 0 10px rgba(124,58,237,0.6));
    animation: routeDotPulse 2.4s ease-in-out infinite;
  }
  @keyframes routeDotPulse {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(124,58,237,0.5)); }
    50% { filter: drop-shadow(0 0 14px rgba(167,139,250,0.9)); }
  }
  .ai-stops {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    flex-wrap: wrap;
    gap: 10px;
  }
  .ai-stop {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: 10px;
    padding: 8px 14px;
    font-weight: 600;
    font-size: 13px;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
  }
  .ai-stop-num {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(167,139,250,0.6);
    text-transform: uppercase;
  }
  .ai-stop-hotel {
    font-size: 11px;
    font-weight: 700;
    color: #c9a84c;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s, background 0.2s;
    border-top: 1px solid rgba(231,198,107,0.2);
    padding-top: 6px;
    margin-top: 4px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  .ai-stop-hotel::before {
    content: '';
    display: inline-block;
    width: 12px; height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 20v-8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v8'/%3E%3Cpath d='M4 10V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4'/%3E%3Cpath d='M12 4v6'/%3E%3Cpath d='M2 20h20'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
  }
  .ai-stop-hotel:hover { color: #e7c66b; }
  .ai-stop:only-child { margin: 0 auto; }
  .ai-segments {
    margin: 16px auto;
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .ai-segments.cols-2 { grid-template-columns: 1fr 1fr; max-width: 860px; }
  .ai-segments.cols-3 { grid-template-columns: 1fr 1fr 1fr; max-width: 1100px; }
  .ai-segments.cols-2x2 { grid-template-columns: 1fr 1fr; max-width: 860px; }
  .ai-segment {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(124,58,237,0.18);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
  }
  .ai-segment .ai-segment-body { margin-top: auto; }
  .ai-segment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }
  .ai-segment-route {
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70%;
  }
  .ai-segment-time {
    color: var(--muted);
    font-size: 12px;
    white-space: nowrap;
    margin-left: 8px;
  }
  .ai-segment-train {
    display: inline-block;
    border-radius: 100px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .ai-segment-train.train-high  { background: rgba(124,58,237,0.25); border: 1px solid rgba(124,58,237,0.5); color: #c084fc; }
  .ai-segment-train.train-intl  { background: rgba(231,198,107,0.15); border: 1px solid rgba(231,198,107,0.45); color: #e7c66b; }
  .ai-segment-train.train-reg   { background: rgba(56,189,248,0.15);  border: 1px solid rgba(56,189,248,0.4);  color: #7dd3fc; }
  .ai-segment-stations {
    font-size: 10px;
    color: rgba(167,139,250,0.5);
    letter-spacing: 0.04em;
    margin-top: -6px;
    margin-bottom: 8px;
  }
  .ai-segment-stations span { color: rgba(167,139,250,0.35); margin: 0 4px; }
  .ai-segment-body { display: flex; align-items: center; gap: 10px; }
  .ai-segment-desc { flex: 1; color: var(--muted); line-height: 1.5; font-size: 12px; transition: opacity 0.3s; }
  .ai-segment-img-wrap {
    flex-shrink: 0; width: 80px; height: 52px; border-radius: 8px; overflow: hidden;
    transition: width 0.35s ease, height 0.35s ease;
    cursor: zoom-in;
  }
  .ai-segment:hover .ai-segment-img-wrap {
    width: 100%;
    height: 120px;
  }
  .ai-segment:hover .ai-segment-body { flex-direction: column; align-items: stretch; }
  .ai-segment:hover .ai-segment-desc { order: 2; }
  .ai-segment:hover .ai-segment-img-wrap { order: 1; }
  .ai-segment-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
  .ai-segment:hover .ai-segment-img { transform: scale(1.04); }
  .ai-plan-btn {
    background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(167,139,250,0.15));
    border: 1px solid rgba(124,58,237,0.5);
    border-radius: 100px;
    color: #c084fc;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 12px 32px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    text-transform: uppercase;
  }
  .ai-plan-btn:hover { background: rgba(124,58,237,0.4); border-color: rgba(167,139,250,0.7); }
  .trip-section-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8b5cf6;
    margin: 24px 0 12px;
  }
  .trip-tl-item { display: flex; gap: 14px; }
  .trip-tl-rail { display: flex; flex-direction: column; align-items: center; width: 32px; flex-shrink: 0; }
  .trip-tl-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: #f0ecfc; color: #7c3aed; margin-top: 14px; }
  .trip-tl-icon svg { width: 16px; height: 16px; }
  .trip-tl-icon-hotel { background: #ede4fb; color: #6d28d9; }
  .trip-tl-line { width: 2px; flex: 1; min-height: 10px; background: rgba(124,58,237,0.2); margin: 2px 0; }
  .trip-tl-content { flex: 1; min-width: 0; }
  .trip-tl-content .trip-section-title { margin: 0 0 12px; }
  .trip-tl-item:has(.trip-section-title) .trip-tl-content { padding-top: 4px; }
  .trip-segment-row {
    background: #f8f7fc;
    border: 1px solid rgba(124,58,237,0.12);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 8px;
  }
  .trip-segment-row strong { color: #16131f; font-size: 14px; }
  .trip-segment-row span { color: #6d6d80; font-size: 12px; display:block; margin-top:2px; }
  .trip-hotel-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f7fc;
    border: 1px solid rgba(124,58,237,0.1);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 8px;
    text-decoration: none;
  }
  .trip-hotel-row:hover { border-color: rgba(124,58,237,0.35); }
  .trip-hotel-city { color: #16131f; font-size: 14px; font-weight: 600; }
  .trip-hotel-cta { color: #7c3aed; font-size: 12px; font-weight: 600; }
  .trip-hotel-row.has-photo { align-items: center; gap: 12px; padding: 10px; }
  .trip-hotel-photo { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
  .trip-hotel-info { flex: 1; min-width: 0; }
  .trip-hotel-name { color: #16131f; font-size: 14px; font-weight: 700; display: block; }
  .trip-hotel-stars { color: #f5a623; font-size: 11px; display: block; letter-spacing: 1px; margin-top: 1px; }
  .trip-hotel-loc { color: #8888a0; font-size: 12px; display: block; margin-top: 1px; }
  .trip-ticket-btn {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border: none;
    border-radius: 100px;
    padding: 7px 14px;
    text-decoration: none;
    white-space: nowrap;
    transition: filter 0.2s;
  }
  .trip-ticket-btn:hover { filter: brightness(1.08); }
  .ai-kiwi-cta {
    display: inline-block;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(167,139,250,0.7);
    text-decoration: none;
    border: 1px solid rgba(124,58,237,0.25);
    border-radius: 100px;
    padding: 5px 14px;
    letter-spacing: 0.03em;
    transition: color 0.2s, border-color 0.2s;
  }
  .ai-kiwi-cta:hover { color: #c084fc; border-color: rgba(124,58,237,0.6); }
  @media (max-width: 600px) { .ai-segment-body { flex-direction: column; } .ai-segment-img-wrap { width: 100%; height: 140px; } }
  @media (max-width: 768px) {
    .ai-segments.cols-2,
    .ai-segments.cols-3,
    .ai-segments.cols-2x2 { grid-template-columns: 1fr; max-width: 520px; }
  }
  .ai-route-partners { margin-top: 32px; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; }
  .ai-route-partners-label { font-size: 11px; letter-spacing: 0.1em; color: rgba(167,139,250,0.5); text-transform: uppercase; margin-bottom: 14px; text-align: center; }
  .ai-vip-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
  .ai-vip-card {
    display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 12px;
    border: 1px solid rgba(231,198,107,0.22);
    background: rgba(255,255,255,0.03);
    text-decoration: none; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s, background 0.25s;
  }
  .ai-vip-card:hover { border-color: rgba(231,198,107,0.6); background: rgba(255,255,255,0.05); box-shadow: 0 0 16px rgba(231,198,107,0.12); transform: translateY(-1px); }
  .ai-vip-icon { width: 36px; height: 36px; border-radius: 9px; display:flex; align-items:center; justify-content:center; background: rgba(231,198,107,0.1); color: #e7c66b; flex-shrink:0; }
  .ai-vip-icon svg { width:18px; height:18px; }
  .ai-vip-icon img { width:100%; height:100%; object-fit:contain; border-radius:9px; background:#fff; padding:5px; }
  .ai-vip-name { font-size: 13px; font-weight: 600; color: #fff; }
  .ai-vip-sub { font-size: 11px; color: rgba(255,255,255,0.45); }
  .ai-essential-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .ai-ess-item {
    display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 12px 8px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03);
    text-decoration: none; transition: border-color 0.2s, background 0.2s;
  }
  .ai-ess-item:hover { border-color: rgba(167,139,250,0.4); background: rgba(167,139,250,0.06); }
  .ai-ess-icon { width: 30px; height: 30px; display:flex; align-items:center; justify-content:center; color: rgba(167,139,250,0.7); }
  .ai-ess-icon svg { width:16px; height:16px; }
  .ai-ess-icon img { width:100%; height:100%; object-fit:contain; border-radius:6px; background:#fff; padding:3px; }
  .ai-ess-name { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.7); text-align:center; }
  .ai-ess-cta { font-size: 9px; color: rgba(167,139,250,0.6); text-align:center; }
  @media (max-width: 600px) { .ai-vip-row { grid-template-columns: 1fr; } }
  .ai-partners {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 32px 0;
    flex-wrap: wrap;
  }
  .ai-partner-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--elevated);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 14px 28px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
  }
  .ai-partner-btn:hover {
    background: var(--surface);
    border-color: var(--primary);
    transform: translateY(-2px);
  }
  .ai-reset-btn {
    display: block;
    margin: 32px auto 0;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 16px 32px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .ai-reset-btn:hover {
    background: var(--elevated);
    border-color: var(--primary);
  }
  @media (max-width: 768px) {
    .ai-planner { padding: 60px 20px 40px; }
    .ai-planner-header h2 { font-size: 32px; }
    .ai-subtitle { font-size: 16px; }
    .ai-input-container { flex-direction: column; }
    .ai-generate-btn { width: 100%; }
    .ai-results { padding: 28px 22px; }
    .ai-results-header h3 { font-size: 26px; }
    .ai-results-header p { font-size: 15px; }
    .ai-stops { flex-direction: column; }
    .ai-segment { padding: 20px; }
    .ai-segment-route { font-size: 15px; }
    .ai-segment-desc { font-size: 14px; }
  }
