:root {
      --radius: 16px;
      --background: #f7f9fc;
      --foreground: #253047;
      --surface: #f1f5f9;
      --surface-elev: #ffffff;
      --ink: #253047;
      --ink-soft: #6a7486;
      --border: #e2e8f0;
      --brand: #4cb0e4;
      --brand-soft: #e7f6fb;
      --paw: #ff9f43;
      --paw-soft: #fff3df;
      --sos: #ff6b6b;
      --sos-soft: #ffe9e9;
      --vet: #3ddc97;
      --vet-soft: #e8fff6;
      --adopt: #8e7cff;
      --adopt-soft: #f1eeff;
      --service: #ff9f43;
      --service-soft: #fff4e6;
      --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
      --font-body: "DM Sans", ui-sans-serif, system-ui, sans-serif;
      color-scheme: light;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      overflow-x: hidden;
      background: var(--background);
      color: var(--foreground);
      font-family: var(--font-body);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    body.menu-open { overflow: hidden; }
    /* Accessibility: skip link + visible focus ring */
    .skip-link { position: absolute; left: 12px; top: -64px; z-index: 100; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 999px; font-size: 14px; font-weight: 700; transition: top .2s ease; }
    .skip-link:focus { top: 12px; }
    :focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 4px; }
    .btn:focus-visible, .nav-cta:focus-visible, a.btn:focus-visible, .motion-toggle:focus-visible, .hero-floating:focus-visible { outline-offset: 3px; }
    @media (prefers-reduced-motion: reduce) { .skip-link { transition: none; } }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button { font: inherit; }
    h1, h2, h3, h4, p { margin: 0; }

    .page { min-height: 100vh; background: var(--background); }
    .container { width: min(100% - 48px, 1152px); margin: 0 auto; }
    .section { padding: 80px 0; }
    .section, .hero, .final-cta-section { scroll-margin-top: 96px; }
    .surface { background: var(--surface); }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: var(--surface-elev);
      padding: 5px 12px;
      color: var(--ink-soft);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
    }
    .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--brand); flex: 0 0 auto; }
    .dot-pulse {
      position: relative;
      animation: dotPulse 1.8s ease-in-out infinite;
    }
    .dot-pulse::after {
      content: "";
      position: absolute;
      inset: -2px;
      border-radius: 999px;
      background: currentColor;
      color: var(--brand);
      opacity: .6;
      animation: dotPulseRing 1.8s ease-out infinite;
      pointer-events: none;
    }
    @keyframes dotPulse {
      0%, 100% { transform: scale(1); }
      50%      { transform: scale(1.18); }
    }
    @keyframes dotPulseRing {
      0%   { transform: scale(.9);  opacity: .55; }
      70%  { transform: scale(2.4); opacity: 0; }
      100% { transform: scale(2.4); opacity: 0; }
    }
    @media (prefers-reduced-motion: reduce) {
      .dot-pulse, .dot-pulse::after { animation: none; }
    }
    /* Lucide-style inline icons */
    .ic { width: 1em; height: 1em; flex: 0 0 auto; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; vertical-align: middle; }
    .eyebrow .ic { width: 13px; height: 13px; color: var(--brand); }
    .eyebrow.eb-sos .ic { color: var(--sos); }
    .eyebrow.eb-vet .ic { color: #1fa579; }
    .eyebrow.eb-adopt .ic { color: #6b57e0; }
    .eyebrow.eb-service .ic { color: #d97a1f; }
    .chip-icon .ic { width: 18px; height: 18px; }
    .chip-icon.t-brand { background: color-mix(in srgb, var(--brand) 14%, transparent); color: var(--brand); }
    .chip-icon.t-vet { background: color-mix(in srgb, var(--vet) 14%, transparent); color: #1fa579; }
    .chip-icon.t-sos { background: color-mix(in srgb, var(--sos) 14%, transparent); color: var(--sos); }
    .chip-icon.t-adopt { background: color-mix(in srgb, var(--adopt) 14%, transparent); color: #6b57e0; }
    .chip-icon.t-service, .chip-icon.t-paw { background: color-mix(in srgb, var(--service) 14%, transparent); color: #d97a1f; }
    .chip-icon.t-ink { background: color-mix(in srgb, var(--ink) 10%, transparent); color: var(--ink); }
    .hero-pills .ic, .mini-tag .ic { width: 14px; height: 14px; }
    .check-dot .ic { width: 12px; height: 12px; stroke-width: 3; }
    .title {
      margin-top: 20px;
      font-family: var(--font-display);
      font-size: clamp(2.25rem, 4.8vw, 3.25rem);
      line-height: 1.05;
      letter-spacing: -.035em;
      text-wrap: balance;
      font-weight: 700;
    }
    .desc { margin-top: 16px; color: var(--ink-soft); line-height: 1.7; }
    .muted { color: var(--ink-soft); }
    .text-brand { color: var(--brand); }
    .text-paw { color: var(--paw); }
    .center { max-width: 680px; margin: 0 auto; text-align: center; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 0;
      border-radius: 999px;
      padding: 14px 24px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn .ic { width: 16px; height: 16px; }
    .btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 30px -10px rgba(76,176,228,.6); }
    .btn-ink { background: var(--ink); color: var(--background); }
    .btn-outline { background: var(--surface-elev); border: 1px solid var(--border); color: var(--ink); }
    .btn-on-dark { background: #ffffff; color: var(--ink); border: 1px solid #ffffff; }
    .btn-on-dark:hover { background: rgba(255,255,255,.92); }
    .btn-quiet { background: transparent; color: var(--ink-soft); }

    .site-header { position: fixed; inset: 0 0 auto; z-index: 50; pointer-events: none; }
    .nav-shell {
      pointer-events: auto;
      width: min(100% - 32px, 1152px);
      margin: 16px auto 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      border: 1px solid rgba(226,232,240,.85);
      border-radius: 999px;
      background: rgba(247,249,252,.72);
      padding: 8px 12px 8px 16px;
      backdrop-filter: blur(18px);
      box-shadow: inset 0 1px rgba(255,255,255,.7), 0 8px 30px -12px rgba(0,0,0,.12);
      transition: margin .25s ease, padding .25s ease, background .25s ease, box-shadow .25s ease;
    }
    .nav-shell.scrolled {
      margin-top: 8px;
      padding: 5px 8px 5px 14px;
      background: rgba(247,249,252,.94);
      box-shadow: inset 0 1px rgba(255,255,255,.7), 0 14px 34px -16px rgba(0,0,0,.18);
    }
    .brand-link { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-size: 15px; font-weight: 700; letter-spacing: -.02em; }
    .brand-link img { width: 28px; height: 28px; object-fit: contain; transition: width .25s ease, height .25s ease; }
    .nav-shell.scrolled .brand-link img { width: 24px; height: 24px; }
    .nav-links { display: flex; align-items: center; gap: 28px; }
    .nav-links a { color: var(--ink-soft); font-size: 14px; transition: color .2s ease; }
    .nav-links a:hover { color: var(--ink); }
    .nav-cta { padding: 10px 16px; font-size: 13px; transition: background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease, padding .25s ease; }
    /* While the hero is visible (not scrolled), nav CTA stays low-key so it does not compete with the hero CTA */
    .nav-shell:not(.scrolled) .nav-cta.btn-primary {
      background: transparent;
      color: var(--ink);
      box-shadow: inset 0 0 0 1px var(--border);
    }
    .nav-shell:not(.scrolled) .nav-cta.btn-primary:hover {
      background: var(--surface-elev);
      color: var(--ink);
    }
    /* When user has scrolled, CTA becomes a strong primary button again (same as .btn-primary) */
    .nav-shell.scrolled .nav-cta.btn-primary {
      background: var(--brand);
      color: #fff;
      box-shadow: 0 10px 30px -10px rgba(76,176,228,.6);
    }
    /* Active nav link (scroll-spy) */
    .nav-links a[aria-current="page"] { color: var(--ink); font-weight: 700; }
    .nav-links a[aria-current="page"]::after {
      content: "";
      display: block;
      width: 16px; height: 2px;
      margin: 4px auto 0;
      border-radius: 2px;
      background: var(--brand);
    }
    /* Scroll progress bar inside the header */
    .scroll-progress {
      position: fixed;
      left: 0; right: 0; top: 0;
      height: 2px;
      z-index: 51;
      pointer-events: none;
    }
    .scroll-progress::before {
      content: "";
      display: block;
      height: 100%;
      width: var(--p, 0%);
      background: linear-gradient(90deg, var(--brand), var(--adopt));
      box-shadow: 0 0 12px rgba(76,176,228,.45);
      transition: width .12s linear;
    }
    .menu-btn { display: none; width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 999px; background: var(--surface-elev); color: var(--ink); transition: background .2s ease, transform .2s ease; }
    .menu-btn:hover { background: var(--surface); }
    .menu-btn[aria-expanded="true"] { background: var(--surface); transform: rotate(90deg); }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 128px 0 96px;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        radial-gradient(60% 50% at 80% 5%, rgba(76,176,228,.22), transparent 60%),
        radial-gradient(45% 40% at 0% 25%, rgba(142,124,255,.14), transparent 60%);
      pointer-events: none;
      animation: heroDrift 16s ease-in-out infinite;
      animation-play-state: paused;
      will-change: transform;
    }
    @keyframes heroDrift {
      0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
      50% { transform: translate3d(-12px, 6px, 0) scale(1.03); }
    }
    .hero[data-anim="on"]::before { animation-play-state: running; }
    .hero[data-anim="off"]::before,
    .hero[data-anim="off"] .dot-pulse,
    .hero[data-anim="off"] .dot-pulse::after,
    .hero[data-anim="off"] .hero-phone,
    .hero[data-anim="off"] .hero-scan-line,
    .hero[data-anim="off"] .hero-floating,
    body.motion-paused .hero::before,
    body.motion-paused .hero .dot-pulse,
    body.motion-paused .hero .dot-pulse::after,
    body.motion-paused .hero .hero-phone,
    body.motion-paused .hero .hero-scan-line,
    body.motion-paused .hero .hero-floating {
      animation-play-state: paused !important;
    }
    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      align-items: center;
      gap: 56px;
    }
    .hero h1 {
      margin-top: 24px;
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 6vw, 4.6rem);
      line-height: 1.02;
      letter-spacing: -.04em;
      font-weight: 700;
    }
    .hero h1 em { color: var(--ink-soft); font-style: italic; font-weight: 400; }
    .hero-copy { margin-top: 24px; max-width: 580px; color: var(--ink-soft); font-size: 17px; line-height: 1.72; }
    .hero-actions { margin-top: 36px; display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
    .hero-actions.compact { margin-top: 22px; }
    .hero-pills { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 10px 24px; color: var(--ink-soft); font-size: 12px; }
    .hero-pills span { display: inline-flex; align-items: center; gap: 7px; }
    .hero-pills .dot { width: 5px; height: 5px; }
    .hero-pills .dot-pulse::after { inset: -1px; }
    .motion-toggle {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border: 0;
      background: transparent;
      color: var(--ink-soft);
      padding: 0;
      font-size: 12px;
      cursor: pointer;
      transition: color .2s ease;
    }
    .motion-toggle:hover { color: var(--ink); }
    .motion-toggle .ic { width: 14px; height: 14px; }
    .motion-toggle[aria-pressed="true"] { color: var(--ink); font-weight: 700; }
    .hero-art {
      position: relative;
      width: min(100%, 480px);
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    /* Foundation text link (debajo de los CTAs) */
    .hero-foundation-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 18px;
      color: var(--ink-soft);
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      transition: color .2s ease, gap .2s ease;
    }
    .hero-foundation-link:hover { color: var(--brand); gap: 10px; }
    .hero-foundation-link .ic { width: 14px; height: 14px; }

    /* ── Mini-escena: viewfinder card con celular + popovers ──────── */
    .hero-scene {
      position: relative;
      width: 100%;
      min-height: 300px;
      padding: 40px 24px;
      background: transparent;
      overflow: visible;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-viewfinder {
      position: relative;
      width: 144px;
      height: 240px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    /* 4 esquinas dashed estilo visor — apretadas al teléfono */
    .viewfinder-corner {
      position: absolute;
      width: 22px;
      height: 22px;
      border: 2px dashed rgba(76,176,228,.55);
      pointer-events: none;
    }
    .viewfinder-corner-tl {
      top: 0; left: 0;
      border-right: 0; border-bottom: 0;
      border-top-left-radius: 12px;
    }
    .viewfinder-corner-tr {
      top: 0; right: 0;
      border-left: 0; border-bottom: 0;
      border-top-right-radius: 12px;
    }
    .viewfinder-corner-bl {
      bottom: 0; left: 0;
      border-right: 0; border-top: 0;
      border-bottom-left-radius: 12px;
    }
    .viewfinder-corner-br {
      bottom: 0; right: 0;
      border-left: 0; border-top: 0;
      border-bottom-right-radius: 12px;
    }
    .hero-phone {
      position: relative;
      width: 120px;
      height: 218px;
      border-radius: 22px;
      background: linear-gradient(180deg, #1f2937, #0f172a);
      box-shadow:
        0 22px 50px -20px rgba(15,23,42,.40),
        inset 0 0 0 2px rgba(255,255,255,.04);
      animation: heroPhoneFloat 6s ease-in-out infinite;
    }
    .hero-phone-notch {
      position: absolute;
      top: 5px; left: 50%;
      transform: translateX(-50%);
      width: 32px; height: 6px;
      border-radius: 999px;
      background: #0b1220;
    }
    .hero-phone-screen {
      position: absolute;
      inset: 12px 7px 10px;
      border-radius: 15px;
      background: linear-gradient(170deg, #f1f5f9, #e0ecf7);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-qr {
      width: 72%;
      height: auto;
      filter: drop-shadow(0 4px 12px rgba(30,41,59,.18));
    }
    .hero-scan-line {
      position: absolute;
      left: 10%; right: 10%;
      top: 12%;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, transparent, var(--brand), transparent);
      box-shadow: 0 0 12px rgba(76,176,228,.55);
      animation: heroScan 2.8s ease-in-out infinite;
    }
    /* Popovers flotantes */
    .hero-floating {
      position: absolute;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 9px 12px;
      border-radius: 14px;
      background: var(--surface-elev);
      border: 1px solid var(--border);
      box-shadow: 0 14px 30px -14px rgba(37,48,71,.18);
      font-size: 12px;
    }
    .hero-floating:focus-visible {
      box-shadow:
        0 14px 30px -14px rgba(37,48,71,.18),
        0 0 0 3px rgba(76,176,228,.22);
    }
    .hero-floating-label {
      display: block;
      font-size: 9px;
      font-weight: 900;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: #59657a;
      line-height: 1;
    }
    .hero-floating-text {
      display: block;
      margin-top: 3px;
      font-size: 12px;
      font-weight: 800;
      color: var(--ink);
      line-height: 1.15;
    }
    .hero-floating-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 26px; height: 26px;
      border-radius: 9px;
      background: var(--sos-soft);
      color: var(--sos);
    }
    .hero-floating-sos .hero-floating-label { color: #a94747; }
    .hero-floating-icon-vet { background: var(--vet-soft); color: #12845f; }
    .hero-floating-icon .ic { width: 14px; height: 14px; }
    .hero-floating-sos    { left: 10%;  top: 50%; animation: heroPopFloatA 6s ease-in-out infinite; }
    .hero-floating-perfil { right: 10%; top: 22%; animation: heroPopFloatB 7s ease-in-out infinite; }
    .hero-floating-chapa {
      right: 18px; top: 18px;
      padding: 7px 12px;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--ink);
      animation: heroPopFloatC 8s ease-in-out infinite;
    }
    .hero-chapa-qr { width: 16px; height: 16px; color: var(--ink); }
    @keyframes heroPhoneFloat {
      0%, 100% { transform: translateY(0) rotate(-3deg); }
      50%      { transform: translateY(-10px) rotate(-3deg); }
    }
    @keyframes heroScan {
      0%   { transform: translateY(0); opacity: 0; }
      10%  { opacity: 1; }
      90%  { opacity: 1; }
      100% { transform: translateY(180px); opacity: 0; }
    }
    @keyframes heroPopFloatA {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-6px); }
    }
    @keyframes heroPopFloatB {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-8px); }
    }
    @keyframes heroPopFloatC {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50%      { transform: translateY(-5px) rotate(2deg); }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero::before,
      .hero-phone,
      .hero-scan-line,
      .hero-floating,
      .hero .dot-pulse,
      .hero .dot-pulse::after { animation: none !important; }
    }

    /* ── Promesas: día a día + si algo pasa ───────────────────────── */
    .promise-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
      align-items: stretch;
    }
    @media (min-width: 520px) {
      .promise-grid { grid-template-columns: 1fr 1fr; }
    }
    .promise-card {
      position: relative;
      display: flex;
      flex-direction: column;
      padding: 28px 24px;
      border-radius: 22px;
      background: var(--surface-elev);
      border: 1px solid var(--border);
      box-shadow: 0 10px 32px -16px rgba(37,48,71,.10);
      transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;
      overflow: hidden;
    }
    /* Tinte interno sutil siempre visible — azul en care, rojo en SOS */
    .promise-card-care {
      background:
        radial-gradient(120% 80% at 90% 0%, rgba(76,176,228,.10), transparent 55%),
        var(--surface-elev);
    }
    .promise-card-sos {
      background:
        radial-gradient(120% 80% at 90% 0%, rgba(255,107,107,.10), transparent 55%),
        var(--surface-elev);
    }
    .promise-card::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 22px;
      background: radial-gradient(120% 60% at 50% -10%, rgba(76,176,228,.0), transparent 60%);
      transition: background .35s ease;
      pointer-events: none;
    }
    /* Microinteracción card 1 (cuidado): icono respira, sombra azul al hover */
    .promise-card-care:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 60px -22px rgba(76,176,228,.30);
      border-color: rgba(76,176,228,.22);
    }
    .promise-card-care:hover::after {
      background: radial-gradient(120% 60% at 50% -10%, rgba(76,176,228,.16), transparent 65%);
    }
    .promise-card-care:hover .promise-icon-care {
      animation: careBreath 1.6s ease-in-out infinite;
    }
    .promise-card-care:hover .promise-chip-bell {
      animation: bellRing .9s ease-in-out infinite;
      transform-origin: top center;
    }
    @keyframes careBreath {
      0%, 100% { transform: scale(1); }
      50%      { transform: scale(1.08); }
    }
    @keyframes bellRing {
      0%, 100% { transform: rotate(0deg); }
      20%      { transform: rotate(-14deg); }
      40%      { transform: rotate(10deg); }
      60%      { transform: rotate(-6deg); }
      80%      { transform: rotate(4deg); }
    }

    /* Microinteracción card 2 (SOS): borde y aura roja, pulso realista */
    .promise-card-sos {
      border-color: rgba(255,107,107,.14);
      box-shadow: 0 10px 32px -16px rgba(255,107,107,.10);
    }
    .promise-card-sos:hover {
      transform: translateY(-6px);
      border-color: rgba(255,107,107,.55);
      box-shadow:
        0 32px 70px -24px rgba(255,107,107,.45),
        0 0 0 4px rgba(255,107,107,.08);
    }
    .promise-card-sos:hover::after {
      background: radial-gradient(120% 60% at 50% -10%, rgba(255,107,107,.20), transparent 65%);
    }
    .promise-card-sos:hover .promise-icon-sos {
      animation: sosAlarm .55s ease-in-out infinite;
    }
    /* Anillos SOS realistas: 2 anillos concéntricos desfasados */
    .promise-card-sos .promise-icon-sos {
      position: relative;
    }
    .promise-card-sos .promise-icon-sos::before,
    .promise-card-sos .promise-icon-sos::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 14px;
      border: 2px solid var(--sos);
      opacity: 0;
      pointer-events: none;
    }
    .promise-card-sos:hover .promise-icon-sos::before {
      animation: sosRing 1.4s ease-out infinite;
    }
    .promise-card-sos:hover .promise-icon-sos::after {
      animation: sosRing 1.4s ease-out infinite;
      animation-delay: .7s;
    }
    @keyframes sosAlarm {
      0%, 100% { transform: scale(1); }
      50%      { transform: scale(1.10); }
    }
    @keyframes sosRing {
      0%   { transform: scale(.95); opacity: .75; }
      80%  { transform: scale(1.9);  opacity: 0;   }
      100% { transform: scale(1.9);  opacity: 0;   }
    }
    @media (prefers-reduced-motion: reduce) {
      .promise-card-care:hover .promise-icon-care,
      .promise-card-care:hover .promise-chip-bell,
      .promise-card-sos:hover .promise-icon-sos,
      .promise-card-sos:hover .promise-icon-sos::before,
      .promise-card-sos:hover .promise-icon-sos::after { animation: none !important; }
      .promise-card:hover { transform: none; }
    }

    .promise-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      margin-bottom: 14px;
    }
    .promise-icon .ic { width: 21px; height: 21px; }
    .promise-icon-care { background: var(--brand-soft); color: #237da8; }
    .promise-icon-sos  { background: var(--sos-soft);   color: #c13f3f;   }
    .promise-label {
      display: block;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--ink-soft);
    }
    .promise-card h3 {
      margin-top: 6px;
      font-family: var(--font-display);
      font-size: 1.15rem;
      letter-spacing: -.4px;
      line-height: 1.15;
      color: var(--ink);
    }
    .promise-card p {
      margin-top: 8px;
      color: var(--ink-soft);
      font-size: 13.5px;
      line-height: 1.45;
    }
    .promise-chips {
      margin-top: auto;
      padding-top: 16px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .promise-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 6px 11px;
      border-radius: 999px;
      background: var(--surface);
      border: 1px solid var(--border);
      font-size: 12px;
      font-weight: 700;
      color: var(--ink);
    }
    .promise-chip .ic { width: 13px; height: 13px; color: #237da8; }
    .promise-card-sos .promise-chip .ic { color: #c13f3f; }
    .problem-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    /* Cómo funciona — pasos */
    .steps-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .step-card {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      padding: 26px 24px 28px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--surface-elev);
      transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
    }
    .step-card::before {
      content: "";
      position: absolute;
      right: -48px; top: -56px;
      width: 180px; height: 180px;
      border-radius: 999px;
      background: var(--step-aura, rgba(76,176,228,.22));
      filter: blur(36px);
      opacity: .5;
      transition: opacity .35s ease, transform .35s ease;
      pointer-events: none;
    }
    .step-card:hover { transform: translateY(-6px); border-color: rgba(76,176,228,.45); box-shadow: 0 30px 50px -30px rgba(0,0,0,.22); }
    .step-card:hover::before { opacity: .85; transform: translate(-6px, 6px); }
    .step-head { position: relative; z-index: 1; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 28px; }
    .step-icon {
      display: inline-flex; align-items: center; justify-content: center;
      width: 44px; height: 44px;
      border-radius: 14px;
      background: var(--step-icon-bg, rgba(76,176,228,.14));
      color: var(--step-icon-fg, var(--brand));
    }
    .step-icon .ic { width: 20px; height: 20px; }
    .step-badge {
      display: inline-flex; align-items: center; justify-content: center;
      width: 34px; height: 34px;
      border-radius: 999px;
      background: var(--step-badge, var(--brand));
      color: #fff;
      font-family: var(--font-display);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .04em;
    }
    .step-label {
      position: relative; z-index: 1;
      color: var(--ink-soft);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .18em;
      text-transform: uppercase;
    }
    .step-card h3 { position: relative; z-index: 1; margin-top: 8px; font-family: var(--font-display); font-size: 19px; line-height: 1.2; letter-spacing: -.02em; }
    .step-card p { position: relative; z-index: 1; margin-top: 10px; color: var(--ink-soft); font-size: 14px; line-height: 1.6; }
    .problem-grid.pg-3 { grid-template-columns: repeat(3, 1fr); }
    .tile, .card {
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--surface-elev);
    }
    .tile, .feature, .record, .audience, .news-card, .institution { transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
    .tile:hover, .feature:hover, .record:hover, .audience:hover, .news-card:hover, .institution:hover {
      transform: translateY(-3px);
      border-color: rgba(76,176,228,.4);
      box-shadow: 0 20px 40px -28px rgba(0,0,0,.2);
    }
    .tile { padding: 24px; }
    .chip-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 12px;
      background: color-mix(in srgb, var(--brand) 16%, transparent);
    }
    .tile h3 { margin-top: 16px; font-family: var(--font-display); font-size: 18px; letter-spacing: -.02em; }
    .tile p { margin-top: 8px; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }

    .split {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      align-items: center;
      gap: 56px;
    }
    .phone-frame {
      position: relative;
      width: min(100%, 352px);
      margin: 0 auto;
    }
    .phone-glow {
      position: absolute;
      inset: 24px;
      z-index: -1;
      border-radius: 44px;
      background: linear-gradient(160deg, rgba(76,176,228,.35), rgba(142,124,255,.3));
      filter: blur(42px);
    }
    .device {
      aspect-ratio: 9 / 19;
      overflow: hidden;
      border: 6px solid rgba(37,48,71,.92);
      border-radius: 40px;
      background: var(--ink);
      box-shadow: 0 40px 100px -30px rgba(0,0,0,.45);
    }
    .device img { width: 100%; height: 100%; object-fit: cover; }
    .feature-grid { margin-top: 32px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .feature {
      display: flex;
      gap: 12px;
      border: 1px solid var(--border);
      border-radius: 18px;
      background: var(--surface-elev);
      padding: 16px;
    }
    .feature h3 { font-family: var(--font-display); font-size: 14px; }
    .feature p { margin-top: 2px; color: var(--ink-soft); font-size: 14px; line-height: 1.45; }

    .demo-section {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #1d293b, #243f55);
      color: #fff;
    }
    .demo-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(60% 55% at 88% 8%, rgba(76,176,228,.18), transparent 62%),
        radial-gradient(45% 45% at 8% 90%, rgba(255,107,107,.12), transparent 60%);
      pointer-events: none;
    }
    .demo-section .container { position: relative; z-index: 1; }
    .demo-grid { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 56px; }
    .demo-section .eyebrow {
      border-color: rgba(255,255,255,.18);
      background: rgba(255,255,255,.08);
      color: #fff;
    }
    .demo-section .title {
      max-width: 560px;
      color: #fff;
      font-size: clamp(2.6rem, 5.2vw, 4.2rem);
    }
    .demo-section .muted { color: rgba(255,255,255,.66); }
    .demo-section .desc {
      max-width: 540px;
      color: rgba(255,255,255,.9);
    }
    .segmented {
      margin-top: 28px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      border: 1px solid rgba(255,255,255,.24);
      border-radius: 999px;
      background: rgba(255,255,255,.08);
      padding: 4px;
    }
    .segmented button {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border: 0;
      border-radius: 999px;
      background: transparent;
      color: rgba(255,255,255,.8);
      padding: 10px 16px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
    }
    .segmented button.active.normal { background: #fff; color: #1d293b; }
    .segmented button.active.sos { background: #fff; color: #1d293b; }
    .bullets { margin: 32px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; color: rgba(255,255,255,.92); font-size: 14px; }
    .bullets li { display: flex; gap: 12px; align-items: flex-start; }
    .check-dot {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      margin-top: 1px;
      border-radius: 999px;
      background: var(--vet);
      color: #fff;
      font-size: 12px;
      font-weight: 900;
      flex: 0 0 auto;
    }
    .demo-phone { width: min(100%, 306px); }
    .demo-phone .device {
      position: relative;
      overflow: hidden;
      border: 6px solid #101827;
      background: #edf3fb;
      box-shadow: 0 42px 90px -34px rgba(0,0,0,.72), 0 0 0 1px rgba(255,255,255,.08);
      aspect-ratio: 9 / 19;
    }
    /* Foto-scroll dentro del teléfono */
    .demo-screen-img {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      /* El alto se setea desde JS (recalcDemoScroll) para evitar
         que el modelo de absolute-positioning lo clipee al padre. */
      height: auto;
      max-height: none;
      display: block;
      pointer-events: none;
      opacity: 0;
      transition: opacity .35s ease;
      animation: phoneScroll var(--scroll-duration, 22s) ease-in-out infinite;
      animation-play-state: paused;
      will-change: transform;
    }
    .demo-phone .device[data-mode="normal"] .demo-screen-img.normal,
    .demo-phone .device[data-mode="sos"] .demo-screen-img.sos { opacity: 1; }
    .demo-phone .device[data-anim="on"] .demo-screen-img { animation-play-state: running; }
    @keyframes phoneScroll {
      0%   { transform: translateY(0); }
      6%   { transform: translateY(0); }
      48%  { transform: translateY(calc(var(--scroll-end, 0px) * -1)); }
      58%  { transform: translateY(calc(var(--scroll-end, 0px) * -1)); }
      100% { transform: translateY(0); }
    }
    @media (prefers-reduced-motion: reduce) {
      .demo-screen-img { animation: none !important; transform: translateY(0); }
    }

    .health-head { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 32px; }
    .insight { border: 1px solid var(--border); border-radius: 18px; background: var(--vet-soft); padding: 20px; color: var(--ink); font-size: 14px; line-height: 1.5; }
    .record-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
    .record { padding: 20px; text-align: center; }
    .record h3 { margin-top: 12px; font-family: var(--font-display); font-size: 14px; }
    .record p { margin-top: 4px; color: var(--ink-soft); font-size: 12px; }

    .chapas-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: end; }
    .badge-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
    .badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--border); border-radius: 999px; background: var(--surface-elev); padding: 8px 14px; font-size: 12px; font-weight: 600; }
    .tag-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .tag-card { overflow: hidden; border-radius: 32px; }
    .tag-visual { position: relative; aspect-ratio: 5 / 4; overflow: hidden; background: linear-gradient(180deg, #f3e3c8, #fbf5ea); }
    .tag-visual.alt { background: linear-gradient(180deg, #f4e2cc, #fbf6ec); }
    .tag-visual img { position: absolute; inset: 0; width: auto; height: 78%; margin: auto; object-fit: contain; filter: drop-shadow(0 30px 30px rgba(0,0,0,.18)); transition: transform .7s ease; }
    .tag-card:hover .tag-visual img { transform: scale(1.03); }
    .tag-label, .qr-label {
      position: absolute;
      top: 16px;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      padding: 6px 12px;
      font-size: 11px;
      font-weight: 700;
    }
    .tag-label { left: 16px; background: rgba(247,249,252,.9); color: var(--ink); }
    .qr-label { right: 16px; background: rgba(37,48,71,.9); color: var(--background); }
    .tag-content { padding: 24px 28px 28px; }
    .tag-title-row { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
    .tag-content h3 { font-family: var(--font-display); font-size: 26px; letter-spacing: -.03em; }
    .tag-content small { color: var(--ink-soft); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
    .check-list { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; color: var(--ink-soft); font-size: 14px; line-height: 1.45; }
    .check-list li { display: flex; gap: 12px; align-items: flex-start; }
    .chapa-callout { margin-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 24px; border-radius: 22px; padding: 20px 24px; }
    .chapa-callout .btn { flex-shrink: 0; white-space: nowrap; }

    .eco-grid, .inst-grid { margin-top: 56px; display: grid; gap: 20px; }
    .eco-grid { grid-template-columns: repeat(3, 1fr); }
    .inst-grid { grid-template-columns: repeat(2, 1fr); }
    .audience, .institution {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      padding: 28px;
      border-radius: 28px;
    }
    .institution .btn { position: relative; z-index: 1; margin-top: 28px; align-self: flex-start; }
    .audience ul, .institution ul { flex: 1; }
    .audience::after, .institution::after {
      content: "";
      position: absolute;
      right: -48px;
      top: -48px;
      width: 160px;
      height: 160px;
      border-radius: 999px;
      background: var(--aura, rgba(76,176,228,.25));
      filter: blur(28px);
      opacity: .7;
    }
    .mini-tag {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 999px;
      padding: 5px 12px;
      background: var(--tag-bg, var(--brand-soft));
      color: var(--tag-fg, var(--ink));
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .mini-tag-plain {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 18px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .mini-tag-plain .ic { width: 14px; height: 14px; }
    .audience-tags {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin-top: 18px;
    }
    .audience-tags .mini-tag-plain { margin-top: 0; }
    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 9px;
      border-radius: 999px;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      line-height: 1;
    }
    .status-pill-soon {
      background: var(--service-soft);
      color: #9c6428;
      border: 1px solid rgba(255,159,67,.22);
    }
    .status-pill-preview {
      background: var(--adopt-soft);
      color: #5750a0;
      border: 1px solid rgba(142,124,255,.22);
    }
    .preview-note {
      margin-top: 14px;
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
      font-size: 13px;
      color: var(--ink-soft);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .audience .chip-icon, .institution .chip-icon { position: relative; z-index: 1; }
    .audience h3, .institution h3 { position: relative; z-index: 1; margin-top: 16px; font-family: var(--font-display); font-size: 26px; letter-spacing: -.03em; }
    .institution h3 { font-size: 32px; margin-top: 20px; }
    .audience p, .institution p { position: relative; z-index: 1; margin-top: 10px; color: var(--ink-soft); line-height: 1.6; }
    .audience ul, .institution ul { position: relative; z-index: 1; margin: 24px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; color: var(--ink-soft); font-size: 14px; }
    .audience ul li, .institution ul li { display: flex; align-items: flex-start; gap: 10px; }
    .audience ul li .dot, .institution ul li .dot { margin-top: 7px; }
    .institution ul { grid-template-columns: repeat(2, 1fr); }
    .text-link { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 6px; margin-top: 28px; color: var(--ink); font-size: 14px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
    .text-link .ic { width: 15px; height: 15px; }

    .news-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
    .news-card { display: flex; flex-direction: column; overflow: hidden; border-radius: 18px; }
    .news-art { position: relative; aspect-ratio: 16 / 7; min-height: 96px; background: linear-gradient(160deg, rgba(76,176,228,.25), rgba(76,176,228,.08)); }
    .news-ico {
      position: absolute; left: 50%; top: 50%;
      transform: translate(-50%, -50%);
      display: inline-flex; align-items: center; justify-content: center;
      width: 44px; height: 44px;
      border-radius: 14px;
      background: rgba(255,255,255,.85);
      backdrop-filter: blur(8px);
    }
    .news-ico .ic { width: 22px; height: 22px; }
    .news-body { padding: 14px 16px 16px; }
    .news-body p { margin-top: 8px; color: var(--ink); font-size: 14px; font-weight: 600; line-height: 1.4; }

    .pricing-top { display: flex; justify-content: space-between; gap: 32px; align-items: flex-end; }
    .billing { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 999px; background: var(--surface-elev); padding: 4px; }
    .billing button { border: 0; border-radius: 999px; background: transparent; color: var(--ink-soft); padding: 10px 16px; font-weight: 800; cursor: pointer; }
    .billing button.active { background: var(--ink); color: var(--background); }
    .sale { margin-left: 7px; border-radius: 999px; background: var(--vet-soft); color: #16a36d; padding: 2px 7px; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
    .pricing-hints { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 16px 28px; border: 1px solid var(--border); border-radius: 20px; background: rgba(232,255,246,.65); padding: 14px 20px; font-size: 13px; font-weight: 600; }
    .pricing-hints > span { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); }
    .pricing-hints .dot { width: 8px; height: 8px; }
    /* Mensual vs Anual de un vistazo */
    .glance { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; border: 1px solid var(--border); border-radius: 20px; background: var(--surface-elev); padding: 16px; }
    .glance .glance-label { grid-column: 1 / -1; color: var(--ink-soft); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
    .glance-card { display: flex; flex-direction: column; gap: 4px; border: 1px solid var(--border); border-radius: 14px; background: rgba(247,249,252,.6); padding: 12px 14px; font-size: 14px; }
    .glance-card .gc-name { color: var(--ink-soft); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
    .glance-card .gc-prices { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 12px; }
    .glance-card .gc-prices b { color: var(--ink); }
    .glance-card .gc-prices .arrow { color: var(--ink-soft); }
    .glance-card .gc-prices .annual { color: var(--brand); }
    .glance-card .gc-bonus { color: var(--ink-soft); font-size: 12px; }
    /* Comparativa completa (details) */
    .compare { margin-top: 40px; overflow: hidden; border: 1px solid var(--border); border-radius: 20px; background: var(--surface-elev); }
    .compare summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 20px; font-size: 14px; font-weight: 800; color: var(--ink); cursor: pointer; list-style: none; }
    .compare summary::-webkit-details-marker { display: none; }
    .compare summary:hover { background: var(--surface); }
    .compare summary .hint { color: var(--ink-soft); font-size: 12px; font-weight: 600; }
    .compare summary .hint::after { content: " Tap para abrir"; }
    .compare[open] summary .hint::after { content: " Tap para cerrar"; }
    .compare-scroll { overflow-x: auto; border-top: 1px solid var(--border); }
    .compare table { width: 100%; min-width: 520px; border-collapse: collapse; font-size: 14px; }
    .compare thead tr { background: var(--surface); color: var(--ink-soft); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
    .compare th { padding: 12px 16px; font-weight: 800; }
    .compare th:first-child { text-align: left; }
    .compare th:not(:first-child) { text-align: center; }
    .compare td { padding: 12px 16px; border-top: 1px solid var(--border); color: var(--ink); }
    .compare td:first-child { text-align: left; }
    .compare td:not(:first-child) { text-align: center; }
    .compare .yes { display: inline-flex; }
    .compare .yes .ic { width: 16px; height: 16px; stroke-width: 2.5; color: var(--vet); }
    .compare .no { color: rgba(106,116,134,.45); }
    .plan-grid { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .plan {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 28px;
      background: var(--surface-elev);
      transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
    }
    .plan::before {
      content: "";
      position: absolute;
      right: -64px; top: -72px;
      width: 220px; height: 220px;
      border-radius: 999px;
      background: var(--plan-aura, rgba(76,176,228,.22));
      filter: blur(46px);
      opacity: .45;
      transition: opacity .35s ease, transform .35s ease;
      pointer-events: none;
    }
    .plan > * { position: relative; z-index: 1; }
    .plan:hover { transform: translateY(-6px); border-color: rgba(76,176,228,.45); box-shadow: 0 30px 60px -30px rgba(0,0,0,.22); }
    .plan:hover::before { opacity: .9; transform: translate(-8px, 8px); }
    .plan.featured { border-color: rgba(76,176,228,.35); box-shadow: 0 30px 80px -40px rgba(76,176,228,.55); }
    .plan.featured:hover { border-color: rgba(76,176,228,.6); box-shadow: 0 36px 80px -36px rgba(76,176,228,.7); }
    .plan.dark { border-color: transparent; background: var(--ink); color: var(--background); }
    .plan.dark:hover { border-color: rgba(124,198,232,.5); box-shadow: 0 36px 80px -34px rgba(76,176,228,.45); }
    .plan-badge { position: absolute; right: 20px; top: 20px; border-radius: 999px; background: rgba(76,176,228,.12); color: var(--brand-dark, #2a6e8c); border: 1px solid rgba(76,176,228,.32); padding: 5px 12px; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(6px); }
    .plan.dark .plan-badge { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.22); }
    .plan-icon .ic { width: 26px; height: 26px; color: var(--brand); }
    .plan.dark .plan-icon .ic { color: #7cc6e8; }
    .li-check { color: var(--vet); display: inline-flex; }
    .li-check .ic { width: 14px; height: 14px; stroke-width: 3; margin-top: 2px; }
    .li-star { color: var(--vet); display: inline-flex; }
    .li-star .ic { width: 14px; height: 14px; margin-top: 1px; }
    .plan h3 { margin-top: 12px; font-family: var(--font-display); font-size: 22px; }
    .price-row { margin-top: 8px; display: flex; align-items: baseline; gap: 5px; }
    .price { font-family: var(--font-display); font-size: 42px; font-weight: 800; letter-spacing: -.04em; }
    .plan .subtle { color: var(--ink-soft); }
    .plan.dark .subtle { color: rgba(247,249,252,.65); }
    .plan-note { min-height: 18px; margin-top: 4px; font-size: 12px; }
    .plan-desc { margin-top: 8px; font-size: 14px; line-height: 1.5; }
    .plan-section { margin-top: 24px; }
    .plan-section-label { color: var(--ink-soft); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
    .plan.dark .plan-section-label { color: rgba(247,249,252,.55); }
    .plan ul { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; font-size: 14px; line-height: 1.45; }
    .plan li { display: flex; gap: 10px; align-items: flex-start; }
    .muted-item { opacity: .62; }
    .qr-box { margin-top: 24px; border: 1px solid var(--border); border-radius: 18px; background: rgba(247,249,252,.6); padding: 14px 16px; }
    .plan.dark .qr-box { border-color: rgba(247,249,252,.16); background: rgba(247,249,252,.06); }
    .plan .btn { margin-top: 24px; width: 100%; }
    /* Premium destacado y dark gastan más alto: deja que auto empuje cuando el contenido lo permita */
    .plan:not(.compact) .qr-box ~ .btn { margin-top: 24px; }

    .faq-list { margin-top: 48px; border: 1px solid var(--border); border-radius: 28px; overflow: hidden; background: var(--surface-elev); }
    .faq-item + .faq-item { border-top: 1px solid var(--border); }
    .faq-q {
      width: 100%;
      display: flex;
      gap: 24px;
      align-items: flex-start;
      border: 0;
      background: transparent;
      color: var(--ink);
      padding: 24px;
      text-align: left;
      cursor: pointer;
    }
    .faq-num { color: var(--ink-soft); font-family: var(--font-display); font-size: 14px; font-weight: 800; }
    .faq-copy { flex: 1; }
    .faq-copy h3 { font-family: var(--font-display); font-size: 18px; }
    .faq-copy p { max-height: 0; overflow: hidden; color: var(--ink-soft); line-height: 1.65; transition: max-height .3s ease, margin .3s ease; }
    .faq-item.open .faq-copy p { max-height: 180px; margin-top: 12px; }
    .faq-plus { color: var(--ink-soft); transition: transform .25s ease; }
    .faq-item.open .faq-plus { transform: rotate(45deg); }

    /* Final CTA — dark, emotional */
    .final-cta-section { position: relative; overflow: hidden; background: var(--ink); color: #fff; padding: 96px 0; text-align: center; }
    .final-cta-section::before {
      content: ""; position: absolute; inset: 0; opacity: .42; pointer-events: none;
      background:
        radial-gradient(60% 50% at 80% 20%, rgba(76,176,228,.4), transparent 60%),
        radial-gradient(40% 40% at 10% 80%, rgba(142,124,255,.32), transparent 60%);
    }
    .final-cta-section .container { position: relative; z-index: 1; }
    .final-wrap { max-width: 760px; margin: 0 auto; }
    .final-wrap .eyebrow { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.06); color: rgba(255,255,255,.72); }
    .final-wrap .eyebrow .ic { color: var(--brand); }
    .final-wrap h2 { margin: 0 auto; max-width: 720px; font-family: var(--font-display); font-size: clamp(2.25rem, 5.2vw, 3.75rem); line-height: 1.05; letter-spacing: -.035em; }
    .final-wrap h2 span { color: rgba(255,255,255,.6); }
    .final-wrap p { margin: 24px auto 0; max-width: 560px; color: rgba(255,255,255,.72); line-height: 1.7; }
    .final-actions { margin-top: 28px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; }
    .final-actions.links a { color: rgba(255,255,255,.6); font-size: 14px; transition: color .2s; }
    .final-actions.links a:hover { color: #fff; }
    .waitlist-form {
      margin: 36px auto 0;
      display: flex;
      align-items: center;
      gap: 8px;
      width: min(100%, 460px);
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 999px;
      background: rgba(255,255,255,.06);
      padding: 6px 6px 6px 20px;
    }
    .waitlist-form input {
      min-width: 0;
      flex: 1;
      border: 0;
      outline: 0;
      background: transparent;
      color: #fff;
      padding: 13px 4px;
      font-size: 15px;
    }
    .waitlist-form input::placeholder { color: rgba(255,255,255,.5); }
    .waitlist-form button {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 0;
      border-radius: 999px;
      background: var(--brand);
      color: #fff;
      padding: 13px 20px;
      font-weight: 800;
      cursor: pointer;
      transition: transform .2s ease, background .2s ease;
    }
    .waitlist-form button .ic { width: 16px; height: 16px; }
    .waitlist-form button:hover { transform: translateY(-1px); background: #37a6df; }
    .waitlist-form button:disabled { cursor: wait; opacity: .75; transform: none; }
    .waitlist-success {
      display: none;
      width: fit-content;
      margin: 18px auto 0;
      border: 1px solid rgba(61,220,151,.4);
      border-radius: 999px;
      background: rgba(61,220,151,.12);
      color: #7decc0;
      padding: 11px 16px;
      font-size: 14px;
      font-weight: 700;
    }
    /* hero variant of the waitlist form stays light */
    .hero .waitlist-form {
      width: min(100%, 480px);
      border: 1px solid var(--border);
      background: var(--surface-elev);
      padding: 6px 6px 6px 20px;
    }
    .hero .waitlist-form input { color: var(--ink); }
    .hero .waitlist-form input::placeholder { color: #7b8798; }
    .hero .waitlist-success { margin-left: 0; }

    footer { border-top: 1px solid var(--border); background: var(--background); }
    .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding: 64px 0; }
    .footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 20px; font-weight: 800; }
    .footer-brand img { width: 32px; height: 32px; }
    .footer-desc { margin-top: 16px; max-width: 320px; color: var(--ink-soft); font-size: 14px; line-height: 1.65; }
    .footer-socials { margin-top: 20px; display: flex; gap: 12px; }
    .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border: 1px solid var(--border);
      border-radius: 999px;
      color: var(--ink-soft);
      background: var(--surface-elev);
      transition: transform .2s ease, color .2s ease, border-color .2s ease;
    }
    .social-link:hover { transform: translateY(-2px); color: var(--brand); border-color: rgba(76,176,228,.35); }
    .social-link svg { width: 18px; height: 18px; }
    footer h4 { font-family: var(--font-display); font-size: 14px; }
    footer ul { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; color: var(--ink-soft); font-size: 14px; }
    footer a:hover { color: var(--ink); }
    .footer-bottom { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid var(--border); padding: 24px 0; color: var(--ink-soft); font-size: 12px; }

    /* === Responsive (aligned to Lovable: 1024 / 768 / 640) === */

    /* lg and below: 2-col hero collapses; news 5->2; record 6->3; planes 3->1; inst 2->1 */
    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; }
      .news-grid { grid-template-columns: repeat(2, 1fr); }
      .record-grid { grid-template-columns: repeat(3, 1fr); }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .inst-grid { grid-template-columns: 1fr; }
      .plan-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* md and below: nav -> hamburger; 2-col content layouts stack; eco 3->1; inst 2->1; problem 3->1 */
    @media (max-width: 768px) {
      .container { width: min(100% - 32px, 1152px); }
      .nav-links {
        position: fixed;
        inset: 76px 16px auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        border: 1px solid var(--border);
        border-radius: 24px;
        background: rgba(255,255,255,.97);
        backdrop-filter: blur(18px);
        padding: 12px;
        box-shadow: 0 30px 80px -35px rgba(0,0,0,.3);
        opacity: 0;
        transform: translateY(-8px) scale(.98);
        transform-origin: top right;
        pointer-events: none;
        visibility: hidden;
        transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
      }
      .nav-links.open {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
        visibility: visible;
        transition: opacity .25s ease, transform .25s ease, visibility 0s linear 0s;
      }
      .nav-links a { padding: 14px; border-radius: 14px; opacity: 0; transform: translateY(-6px); transition: opacity .25s ease, transform .25s ease, background .2s ease; }
      .nav-links.open a { opacity: 1; transform: translateY(0); }
      /* Stagger entry */
      .nav-links.open a:nth-child(1) { transition-delay: .04s; }
      .nav-links.open a:nth-child(2) { transition-delay: .08s; }
      .nav-links.open a:nth-child(3) { transition-delay: .12s; }
      .nav-links.open a:nth-child(4) { transition-delay: .16s; }
      .nav-links.open a:nth-child(5) { transition-delay: .20s; }
      .nav-links.open a:nth-child(6) { transition-delay: .24s; }
      .nav-links.open a:nth-child(7) { transition-delay: .28s; }
      .nav-links a:hover { background: var(--surface); }
      .nav-links a[aria-current="page"] { background: var(--brand-soft); color: var(--ink); }
      .nav-links a[aria-current="page"]::after { display: none; }
      .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
      .hero-grid, .split, .demo-grid, .health-head, .chapas-head { grid-template-columns: 1fr; display: grid; }
      .pricing-top { flex-direction: column; align-items: flex-start; gap: 20px; }
      .billing { align-self: flex-start; }
      .problem-grid, .problem-grid.pg-3, .eco-grid, .steps-grid { grid-template-columns: 1fr; }
      .institution ul { grid-template-columns: 1fr; }
      .badge-row { justify-content: flex-start; }
      .chapas-head { gap: 24px; }
      .record-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* sm and below: tighten paddings; feature/news 2->1; full-width buttons */
    @media (max-width: 640px) {
      .section { padding: 64px 0; }
      .hero { padding: 112px 0 72px; }
      .hero-actions, .final-actions { align-items: stretch; flex-direction: column; }
      .final-actions.links { flex-direction: row; flex-wrap: wrap; align-items: center; }
      .btn { width: 100%; }
      .final-actions.links a { width: auto; }
      .waitlist-form { align-items: stretch; flex-direction: column; padding: 8px; border-radius: 24px; }
      .waitlist-form input { width: 100%; padding: 13px 12px; }
      .waitlist-form button { width: 100%; }
      .nav-cta { display: none; }
      .feature-grid, .tag-grid { grid-template-columns: 1fr; }
      .news-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .chapa-callout, .footer-bottom { align-items: flex-start; flex-direction: column; }
      .tag-title-row { flex-direction: column; }
      .pricing-hints { display: grid; }
      .glance { grid-template-columns: 1fr; }
      .compare th, .compare td { padding: 12px 12px; }
      .final-cta-section { padding: 64px 0; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .btn:hover, .tile:hover, .feature:hover, .record:hover, .audience:hover, .news-card:hover, .institution:hover, .plan:hover, .social-link:hover, .tag-card:hover .tag-visual img, .waitlist-form button:hover { transform: none; }
    }

/* ============================================================
   Header contextual simple (.ph-*) — páginas internas
   ============================================================ */
.ph-header { position: fixed; inset: 0 0 auto; z-index: 50; pointer-events: none; }
.ph-nav {
  pointer-events: auto;
  width: min(100% - 32px, 1152px);
  margin: 16px auto 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border: 1px solid rgba(226,232,240,.85);
  border-radius: 999px;
  background: rgba(247,249,252,.78);
  padding: 8px 12px 8px 16px;
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px rgba(255,255,255,.7), 0 8px 30px -12px rgba(0,0,0,.12);
}
.ph-brand { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-size: 15px; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
.ph-brand img { width: 28px; height: 28px; }
.ph-nav-actions { display: flex; align-items: center; gap: 10px; }
.ph-back { display: none; align-items: center; gap: 6px; color: var(--ink-soft); font-size: 14px; font-weight: 600; padding: 8px 10px; border-radius: 999px; transition: color .2s ease, background .2s ease; text-decoration: none; }
.ph-back:hover { color: var(--ink); background: rgba(0,0,0,.04); }
.ph-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--brand); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  box-shadow: 0 10px 30px -10px rgba(76,176,228,.6);
  transition: transform .2s ease, background .2s ease;
}
.ph-cta:hover { transform: translateY(-2px); background: #37a6df; }
.ph-nav-links { display: flex; align-items: center; gap: 2px; font-size: 13.5px; font-weight: 600; }
.ph-nav-links a,
.ph-nav-links span[aria-current] { padding: 7px 13px; border-radius: 999px; color: var(--ink-soft); white-space: nowrap; text-decoration: none; transition: color .2s ease, background .2s ease; }
.ph-nav-links a:hover { color: var(--ink); background: rgba(37,48,71,.05); }
.ph-nav-links a:active { transform: scale(.97); }
.ph-nav-links span[aria-current="page"] { color: var(--ink); background: var(--surface); font-weight: 700; cursor: default; box-shadow: inset 0 0 0 1px rgba(37,48,71,.06); }
.ph-nav-links span[aria-current="page"]::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 7px; border-radius: 999px; background: var(--brand); vertical-align: middle; }
/* Pestaña "Próximamente": visible, neutra, no clickeable, sin punto azul */
.ph-nav-links .soon-tab { color: var(--ink-soft); font-weight: 700; cursor: default; background: transparent; box-shadow: none; }
.ph-nav-links .soon-tab::before { display: none; }
.ph-nav-links .soon-tab i { font-style: normal; margin-left: 6px; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: #c47a14; background: #fff4e3; padding: 2px 6px; border-radius: 999px; vertical-align: middle; }
@media (max-width: 860px) {
  .ph-nav-links { display: none; }
  .ph-back { display: inline-flex; }
}
@media (max-width: 560px) {
  .ph-back span { display: none; }
}
.ph-footer { border-top: 1px solid var(--border); background: var(--background); }
.ph-footer .container { padding: 48px 0; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.ph-footer .fb { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; color: var(--ink); text-decoration: none; }
.ph-footer .fb img { width: 30px; height: 30px; }
.ph-footer nav { display: flex; flex-wrap: wrap; gap: 18px; font-size: 14px; }
.ph-footer nav a { color: var(--ink-soft); text-decoration: none; }
.ph-footer nav a:hover { color: var(--ink); }
.ph-footer .copy { width: 100%; border-top: 1px solid var(--border); padding-top: 18px; font-size: 12px; color: var(--ink-soft); }

/* ============================================================
   Stats strip (página App)
   ============================================================ */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  overflow: hidden; border: 1px solid var(--border); border-radius: 24px;
  background: var(--border);
}
.stat-card { background: var(--surface-elev); padding: 26px 20px; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: -.04em; color: var(--brand-dark, #2a6e8c); line-height: 1; }
.stat-num small { font-size: .5em; font-weight: 700; color: var(--ink-soft); }
.stat-label { margin-top: 10px; font-size: 13px; color: var(--ink-soft); }
@media (max-width: 720px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   Tour interactivo del teléfono
   ============================================================ */
.tour-section { padding: 64px 0; }
@media (min-width: 768px) { .tour-section { padding: 96px 0; } }
.tour-grid { margin-top: 56px; display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 900px) { .tour-grid { grid-template-columns: .85fr 1.15fr; gap: 64px; } }
.tour-phone-wrap { position: relative; width: min(300px, 78vw); margin: 0 auto; }
.tour-phone {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19;
  border-radius: 2.6rem;
  padding: 10px;
  background: linear-gradient(180deg, #0f172a, #1e293b);
  box-shadow: 0 50px 110px -38px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.04) inset;
}
.tour-phone-notch { position: absolute; left: 50%; top: 14px; transform: translateX(-50%); width: 44%; height: 22px; border-radius: 999px; background: #0f172a; z-index: 3; }
.tour-screen { position: relative; width: 100%; height: 100%; overflow: hidden; border-radius: 2rem; border: 1px solid rgba(255,255,255,.06); background: var(--background); }
.tour-screen img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  opacity: 0; transform: scale(1.02);
  transition: opacity .45s ease, transform .45s ease;
}
.tour-screen img.active { opacity: 1; transform: scale(1); }
.tour-chip {
  position: absolute; z-index: 4;
  display: flex; align-items: center; gap: 10px;
  background: var(--surface-elev);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px 14px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  box-shadow: 0 20px 44px -22px rgba(37,48,71,.4);
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.tour-chip.show { opacity: 1; transform: translateY(0); }
.tour-chip .ico { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 10px; flex: 0 0 auto; }
.tour-chip .ico .ic { width: 16px; height: 16px; }
.tour-chip-left { left: -34px; top: 22%; }
.tour-chip-right { right: -38px; bottom: 20%; }
@media (max-width: 560px) {
  .tour-chip-left { left: -10px; }
  .tour-chip-right { right: -10px; }
}
.tour-features {
  --tour-duration: 4.8s;
  display: grid;
  gap: 10px;
}
.tour-feature {
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; gap: 16px;
  width: 100%; text-align: left;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface-elev);
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease, background .25s ease;
}
.tour-feature::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--brand), #77cff1);
}
.tour-features.is-playing .tour-feature[aria-pressed="true"]::after {
  animation: app-tour-progress var(--tour-duration) linear forwards;
}
@keyframes app-tour-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.tour-feature:hover { transform: translateY(-2px); border-color: rgba(76,176,228,.4); }
.tour-feature[aria-pressed="true"] {
  border-color: rgba(76,176,228,.5);
  background: color-mix(in srgb, var(--brand-soft) 28%, var(--surface-elev));
  box-shadow: 0 22px 48px -34px rgba(76,176,228,.5);
}
.tour-feature[aria-pressed="true"] .tour-feature-name { color: var(--ink); }
.tour-feature[aria-pressed="true"] .tour-feature-desc { color: var(--ink-soft); }
.tour-feature[aria-pressed="true"] .tour-feature-arrow { color: var(--brand); transform: translateX(2px); }
.tour-feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 14px; flex: 0 0 auto;
}
.tour-feature-icon .ic { width: 20px; height: 20px; }
.tour-feature-icon.t-brand { background: var(--brand-soft); color: var(--brand); }
.tour-feature-icon.t-sos { background: var(--sos-soft); color: var(--sos); }
.tour-feature-icon.t-vet { background: var(--vet-soft); color: #1fa579; }
.tour-feature-icon.t-adopt { background: var(--adopt-soft); color: #6b57e0; }
.tour-feature-body { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.tour-feature-name { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--ink); }
.tour-feature-desc { font-size: 13px; line-height: 1.5; color: var(--ink-soft); }
.tour-feature-arrow { color: var(--ink-soft); flex: 0 0 auto; transition: transform .25s ease, color .25s ease; }
.tour-feature-arrow .ic { width: 18px; height: 18px; }
.tour-more {
  display: flex; gap: 14px; align-items: flex-start;
  border: 1px dashed rgba(76,176,228,.42); border-radius: 18px;
  background:
    radial-gradient(120px 92px at 7% 50%, rgba(76,176,228,.08), transparent 72%),
    color-mix(in srgb, var(--brand-soft) 20%, var(--surface-elev));
  padding: 18px 20px; margin-top: 4px;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.tour-more:hover {
  transform: translateY(-2px);
  border-color: rgba(76,176,228,.62);
  box-shadow: 0 20px 48px -37px rgba(76,176,228,.54);
}
.tour-more-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 12px; flex: 0 0 auto;
  background: color-mix(in srgb, var(--brand-soft) 78%, #fff); color: var(--brand);
  box-shadow: 0 10px 22px -15px rgba(76,176,228,.75);
}
.tour-more-icon .ic { width: 18px; height: 18px; }
.tour-more strong { display: block; font-family: var(--font-display); font-size: 14px; }
.tour-more span { display: block; margin-top: 4px; font-size: 13px; line-height: 1.55; color: var(--ink-soft); }

/* ============================================================
   Vertical feats (Salud inteligente) + vertical CTA
   ============================================================ */
.vertical-feats { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .vertical-feats { grid-template-columns: repeat(3, 1fr); } }
.vfeat {
  position: relative; overflow: hidden;
  border: 1px solid var(--border); border-radius: 22px;
  background: var(--surface-elev); padding: 28px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.vfeat:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -30px rgba(37,48,71,.28); }
.vfeat-icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 14px; }
.vfeat-icon .ic { width: 22px; height: 22px; }
.vfeat h3 { margin-top: 18px; font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; letter-spacing: -.02em; }
.vfeat p { margin-top: 10px; font-size: 14px; line-height: 1.62; color: var(--ink-soft); }
.vfeat.t-vet .vfeat-icon { background: var(--vet-soft); color: #1fa579; }
.vfeat.t-paw .vfeat-icon { background: var(--paw-soft); color: #d97a1f; }
.vfeat.t-sos .vfeat-icon { background: var(--sos-soft); color: var(--sos); }
.vfeat.t-brand .vfeat-icon { background: var(--brand-soft); color: var(--brand); }
.vfeat.t-adopt .vfeat-icon { background: var(--adopt-soft); color: #6b57e0; }
.vertical-cta {
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between;
  border: 1px solid var(--border); border-radius: 24px;
  background: var(--surface-elev); padding: 28px 32px;
}
.vertical-cta strong { font-family: var(--font-display); font-size: 1.1rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
@media (prefers-reduced-motion: reduce) {
  .tour-screen img, .tour-chip, .tour-feature, .vfeat { transition: none; }
  .tour-feature:hover, .tour-more:hover, .vfeat:hover { transform: none; }
  .tour-feature::after { animation: none !important; }
}
