/* ════════════════════════════════════════════════════════════
       MENTORA — DESIGN SYSTEM 2026 · v5 (loader + 7 stages + menú)
       ════════════════════════════════════════════════════════════ */
    :root {
      --c-coral: #f8636b;
      --c-coral-600: #e84e57;
      --c-coral-50: #ffeaec;
      --c-coral-glow: rgba(248,99,107,.25);
      --c-violet: #7b2ff7;
      --c-violet-50: #f1e8ff;
      --c-violet-glow: rgba(123,47,247,.22);
      --c-navy: #1a1a2e;
      --c-navy-soft: #2a2a44;
      --c-blue: #2563eb;
      --c-blue-50: #e3f0ff;
      --c-green: #10b981;
      --c-green-50: #d1fae5;
      --c-white: #ffffff;
      --c-cream: #fbfaf7;
      --c-gray-50: #fafafa;
      --c-gray-100: #f4f4f6;
      --c-gray-200: #e8e8ec;
      --c-gray-300: #d4d4dc;
      --c-text: #1a1a2e;
      --c-text-soft: rgba(26,26,46,.65);
      --c-text-muted: rgba(26,26,46,.45);
      --c-line: rgba(26,26,46,.08);
      --c-line-strong: rgba(26,26,46,.16);
      --grad-coral: linear-gradient(135deg, #f8636b 0%, #ff8b91 100%);
      --grad-violet: linear-gradient(135deg, #7b2ff7 0%, #a36bff 100%);
      --grad-brand: linear-gradient(135deg, #f8636b 0%, #7b2ff7 100%);
      --grad-mesh: radial-gradient(60% 60% at 20% 20%, rgba(248,99,107,.18) 0%, transparent 60%),
                   radial-gradient(50% 50% at 85% 30%, rgba(123,47,247,.16) 0%, transparent 60%),
                   radial-gradient(80% 60% at 50% 100%, rgba(248,99,107,.14) 0%, transparent 60%);
      --font-display: 'Inter Tight', 'Inter', -apple-system, system-ui, sans-serif;
      --font-body: 'Inter', -apple-system, system-ui, sans-serif;
      --font-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
      --container: 1240px;
      --header-h: 64px;
      --r-sm: 10px;
      --r-md: 16px;
      --r-lg: 24px;
      --r-xl: 32px;
      --r-pill: 9999px;
      --shadow-xs: 0 1px 2px rgba(26,26,46,.04);
      --shadow-sm: 0 4px 16px rgba(26,26,46,.06), 0 1px 3px rgba(26,26,46,.04);
      --shadow-md: 0 12px 32px rgba(26,26,46,.08), 0 4px 8px rgba(26,26,46,.04);
      --shadow-lg: 0 24px 60px rgba(26,26,46,.12), 0 8px 16px rgba(26,26,46,.06);
      --shadow-xl: 0 40px 100px rgba(26,26,46,.18), 0 16px 32px rgba(26,26,46,.08);
      --shadow-coral: 0 20px 60px -12px rgba(248,99,107,.45);
      --ease-out: cubic-bezier(.25,.1,.25,1);
      --ease-spring: cubic-bezier(.34,1.56,.64,1);
    }
    @media (min-width: 1024px) { :root { --header-h: 72px; } }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
    body { font-family: var(--font-body); font-size: 16px; line-height: 1.55; color: var(--c-text); background: var(--c-white); overflow-x: hidden; }
    img, svg, video { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
    :focus-visible { outline: 2px solid var(--c-coral); outline-offset: 3px; border-radius: 6px; }

    /* ════════════════════════════════════════════════════════════
       SPLASH LOADER — pulsing logo on page load
       ════════════════════════════════════════════════════════════ */
    .loader {
      position: fixed; inset: 0; z-index: 9999;
      background: var(--c-cream);
      display: flex; align-items: center; justify-content: center;
      transition: opacity .6s var(--ease-out), visibility .6s;
    }
    .loader.is-hidden {
      opacity: 0; visibility: hidden; pointer-events: none;
    }
    .loader__inner {
      display: flex; flex-direction: column; align-items: center; gap: 28px;
    }
    .loader__logo-wrap {
      position: relative;
      display: flex; align-items: center; justify-content: center;
    }
    .loader__logo-wrap::before,
    .loader__logo-wrap::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: var(--grad-coral);
      filter: blur(40px);
      opacity: .25;
      animation: heartGlow 1.4s var(--ease-out) infinite;
      pointer-events: none;
      z-index: -1;
    }
    .loader__logo-wrap::after {
      animation-delay: .7s;
    }
    .loader__logo {
      height: 44px; width: auto;
      animation: heartbeat 1.4s var(--ease-out) infinite;
      transform-origin: center;
    }
    @media (min-width: 768px) { .loader__logo { height: 56px; } }
    @keyframes heartbeat {
      0%   { transform: scale(1); }
      14%  { transform: scale(1.08); }
      28%  { transform: scale(1); }
      42%  { transform: scale(1.05); }
      70%  { transform: scale(1); }
      100% { transform: scale(1); }
    }
    @keyframes heartGlow {
      0%, 100% { opacity: 0; transform: scale(0.6); }
      50%      { opacity: .35; transform: scale(1.4); }
    }
    .loader__bar {
      width: 180px; height: 3px;
      background: var(--c-line);
      border-radius: 9999px;
      overflow: hidden;
      position: relative;
    }
    .loader__bar-fill {
      position: absolute;
      top: 0; left: 0;
      width: 30%;
      height: 100%;
      background: var(--grad-brand);
      border-radius: inherit;
      animation: barSlide 1.6s var(--ease-out) infinite;
    }
    @keyframes barSlide {
      0%   { left: -30%; }
      100% { left: 100%; }
    }
    .loader__hint {
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--c-text-muted);
      font-weight: 500;
    }

    .scroll-progress {
      position: fixed; top: 0; left: 0;
      height: 2px; width: 0%;
      background: var(--grad-brand);
      z-index: 100;
      transition: width 60ms linear;
      box-shadow: 0 0 12px rgba(248,99,107,.5);
    }
    .skip-link {
      position: absolute; top: -100px; left: 16px;
      padding: 10px 16px; background: var(--c-navy); color: white;
      border-radius: var(--r-pill); z-index: 1000;
      font-size: 14px; font-weight: 500;
      transition: top .2s ease;
    }
    .skip-link:focus { top: 16px; }

    .container {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 20px;
    }
    @media (min-width: 768px) { .container { padding: 0 32px; } }
    @media (min-width: 1024px) { .container { padding: 0 48px; } }

    /* TYPOGRAPHY */
    .display-1 { font-family: var(--font-display); font-size: clamp(28px, 5vw, 56px); line-height: 1; letter-spacing: -0.03em; font-weight: 700; }
    .display-2 { font-family: var(--font-display); font-size: clamp(32px, 6vw, 64px); line-height: 1.02; letter-spacing: -0.025em; font-weight: 700; }
    .lead { font-size: clamp(15px, 2vw, 18px); line-height: 1.55; color: var(--c-text-soft); font-weight: 400; }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--c-text-soft);
      padding: 7px 13px;
      background: var(--c-white);
      border: 1px solid var(--c-line);
      border-radius: var(--r-pill);
      box-shadow: var(--shadow-xs);
    }
    .eyebrow__dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--grad-brand);
      box-shadow: 0 0 8px var(--c-coral);
      animation: dotPulse 2s var(--ease-out) infinite;
    }
    @keyframes dotPulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.4); opacity: .65; }
    }
    .grad-text {
      background: var(--grad-brand);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }

    /* BUTTONS */
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      gap: 8px;
      padding: 13px 20px;
      border-radius: var(--r-pill);
      font-weight: 600;
      font-size: 14px;
      line-height: 1;
      transition: all .25s var(--ease-out);
      will-change: transform;
      white-space: nowrap;
      position: relative;
      overflow: hidden;
    }
    .btn--primary { background: var(--c-coral); color: white; box-shadow: 0 8px 24px -6px rgba(248,99,107,.55); }
    .btn--primary:hover { background: var(--c-coral-600); transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(248,99,107,.7); }
    .btn--ghost { background: var(--c-white); color: var(--c-text); border: 1px solid var(--c-line-strong); }
    .btn--ghost:hover { background: var(--c-gray-100); transform: translateY(-2px); }
    .btn--lg { padding: 15px 24px; font-size: 15px; }
    .btn--sm { padding: 9px 14px; font-size: 12px; }

    section { padding: 80px 0; position: relative; }
    @media (min-width: 768px) { section { padding: 120px 0; } }
    @media (min-width: 1024px) { section { padding: 140px 0; } }

    /* ════════════════════════════════════════════════════════════
       NAVBAR — desktop hover underline animation
       ════════════════════════════════════════════════════════════ */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 50;
      height: var(--header-h);
      background: rgba(255,255,255,.7);
      -webkit-backdrop-filter: saturate(180%) blur(20px);
      backdrop-filter: saturate(180%) blur(20px);
      border-bottom: 1px solid transparent;
      transition: all .25s var(--ease-out);
    }
    .navbar.is-scrolled {
      background: rgba(255,255,255,.92);
      border-bottom-color: var(--c-line);
      box-shadow: var(--shadow-sm);
    }
    .navbar__inner {
      height: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 20px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 12px;
    }
    @media (min-width: 768px) { .navbar__inner { padding: 0 32px; } }
    @media (min-width: 1024px) { .navbar__inner { padding: 0 48px; } }
    .navbar__brand img {
      height: 26px; width: auto;
      transition: transform .25s var(--ease-spring);
    }
    @media (min-width: 1024px) { .navbar__brand img { height: 32px; } }
    .navbar__brand:hover img { transform: scale(1.05) rotate(-1deg); }
    .navbar__links { display: none; gap: 2px; align-items: center; }
    @media (min-width: 1024px) { .navbar__links { display: flex; } }
    .navbar__links a {
      position: relative;
      padding: 10px 14px;
      font-size: 14px; font-weight: 500;
      color: var(--c-text-soft);
      border-radius: var(--r-pill);
      transition: color .2s;
    }
    .navbar__links a::after {
      content: "";
      position: absolute;
      bottom: 4px; left: 50%;
      width: 0; height: 2px;
      border-radius: 2px;
      background: var(--grad-coral);
      transition: width .3s var(--ease-out), left .3s var(--ease-out);
    }
    .navbar__links a:hover { color: var(--c-text); }
    .navbar__links a:hover::after {
      width: calc(100% - 28px);
      left: 14px;
    }
    .navbar__actions { display: flex; align-items: center; gap: 6px; }
    .navbar__phone {
      display: none; align-items: center; gap: 6px;
      font-size: 13px; font-weight: 500;
      color: var(--c-text);
      padding: 8px 12px;
      border-radius: var(--r-pill);
      transition: all .25s var(--ease-out);
    }
    @media (min-width: 768px) { .navbar__phone { display: inline-flex; } }
    .navbar__phone:hover { background: var(--c-gray-100); color: var(--c-coral); }
    .navbar__phone svg { color: var(--c-coral); transition: transform .3s var(--ease-spring); }
    .navbar__phone:hover svg { transform: rotate(-12deg) scale(1.1); }
    .navbar__burger {
      display: inline-flex; align-items: center; justify-content: center;
      width: 40px; height: 40px;
      border-radius: var(--r-pill);
      transition: background .2s;
    }
    @media (min-width: 1024px) { .navbar__burger { display: none; } }
    .navbar__burger:hover { background: var(--c-gray-100); }
    .navbar__burger svg line { transition: transform .3s var(--ease-out); transform-origin: center; }

    /* ════════════════════════════════════════════════════════════
       MOBILE MENU — staggered animations + social
       ════════════════════════════════════════════════════════════ */
    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 60;
      background: var(--c-white);
      padding: 20px;
      display: flex;
      flex-direction: column;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .35s var(--ease-out), visibility .35s;
      overflow-y: auto;
    }
    .mobile-menu.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    .mobile-menu__head {
      display: flex; align-items: center; justify-content: space-between;
      padding-bottom: 8px;
    }
    .mobile-menu__head img { height: 26px; }

    .mobile-menu__list {
      margin-top: 24px;
      display: flex; flex-direction: column;
    }
    .mobile-menu__list li {
      border-bottom: 1px solid var(--c-line);
      opacity: 0;
      transform: translateX(30px);
      transition: opacity .45s var(--ease-out), transform .45s var(--ease-spring);
    }
    .mobile-menu.is-open .mobile-menu__list li { opacity: 1; transform: translateX(0); }
    .mobile-menu.is-open .mobile-menu__list li:nth-child(1) { transition-delay: .12s; }
    .mobile-menu.is-open .mobile-menu__list li:nth-child(2) { transition-delay: .18s; }
    .mobile-menu.is-open .mobile-menu__list li:nth-child(3) { transition-delay: .24s; }
    .mobile-menu.is-open .mobile-menu__list li:nth-child(4) { transition-delay: .30s; }
    .mobile-menu.is-open .mobile-menu__list li:nth-child(5) { transition-delay: .36s; }
    .mobile-menu__list a {
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 4px;
      font-family: var(--font-display);
      font-size: 26px; font-weight: 600;
      color: var(--c-text);
      letter-spacing: -0.02em;
      transition: color .2s, padding-left .25s var(--ease-out);
    }
    .mobile-menu__list a::after {
      content: "→";
      font-size: 22px;
      color: var(--c-text-muted);
      opacity: 0;
      transform: translateX(-8px);
      transition: opacity .25s, transform .25s var(--ease-out), color .2s;
    }
    .mobile-menu__list a:active,
    .mobile-menu__list a:hover {
      color: var(--c-coral);
      padding-left: 8px;
    }
    .mobile-menu__list a:active::after,
    .mobile-menu__list a:hover::after {
      opacity: 1;
      transform: translateX(0);
      color: var(--c-coral);
    }

    .mobile-menu__phone {
      margin-top: 24px;
      display: flex; align-items: center; gap: 14px;
      padding: 16px;
      background: var(--c-coral-50);
      border-radius: var(--r-md);
      transition: all .25s var(--ease-out);
      opacity: 0;
      transform: translateY(20px);
    }
    .mobile-menu.is-open .mobile-menu__phone {
      opacity: 1; transform: translateY(0);
      transition-delay: .42s;
    }
    .mobile-menu__phone:hover { background: var(--c-coral); }
    .mobile-menu__phone-ico {
      width: 44px; height: 44px;
      flex-shrink: 0;
      background: var(--c-coral);
      color: white;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s;
    }
    .mobile-menu__phone:hover .mobile-menu__phone-ico {
      background: white;
      color: var(--c-coral);
    }
    .mobile-menu__phone-ico svg { width: 18px; height: 18px; }
    .mobile-menu__phone-text { display: flex; flex-direction: column; line-height: 1.2; transition: color .2s; }
    .mobile-menu__phone:hover .mobile-menu__phone-text { color: white; }
    .mobile-menu__phone-text strong {
      font-family: var(--font-display);
      font-size: 18px;
      letter-spacing: -0.01em;
    }
    .mobile-menu__phone-text small { font-size: 11px; color: var(--c-text-muted); }
    .mobile-menu__phone:hover .mobile-menu__phone-text small { color: rgba(255,255,255,.85); }

    .mobile-menu__social {
      margin-top: 18px;
      display: flex; gap: 10px;
      justify-content: center;
      opacity: 0;
      transform: translateY(20px);
    }
    .mobile-menu.is-open .mobile-menu__social {
      opacity: 1; transform: translateY(0);
      transition: opacity .45s var(--ease-out) .50s, transform .45s var(--ease-spring) .50s;
    }
    .mobile-menu__social a {
      width: 46px; height: 46px;
      border-radius: 50%;
      background: var(--c-cream);
      border: 1px solid var(--c-line);
      display: flex; align-items: center; justify-content: center;
      transition: all .3s var(--ease-spring);
    }
    .mobile-menu__social a:hover,
    .mobile-menu__social a:active {
      transform: translateY(-3px) scale(1.08);
      border-color: transparent;
    }
    .mobile-menu__social a:nth-child(1):hover { background: #1877F2; }
    .mobile-menu__social a:nth-child(2):hover { background: linear-gradient(45deg, #f09433, #dc2743, #cc2366, #bc1888); }
    .mobile-menu__social a:nth-child(3):hover { background: #25D366; }
    .mobile-menu__social svg { width: 20px; height: 20px; color: var(--c-text-soft); transition: color .2s; }
    .mobile-menu__social a:hover svg { color: white; }

    .mobile-menu__cta {
      margin-top: 18px;
      padding-bottom: 8px;
      opacity: 0;
      transform: translateY(20px);
    }
    .mobile-menu.is-open .mobile-menu__cta {
      opacity: 1; transform: translateY(0);
      transition: opacity .45s var(--ease-out) .56s, transform .45s var(--ease-spring) .56s;
    }
    .mobile-menu__cta .btn { width: 100%; }

    /* ════════════════════════════════════════════════════════════
       SAGA HERO — 7 stages × 100vh sticky
       ════════════════════════════════════════════════════════════ */
    .saga {
      position: relative;
      height: calc(7 * 100vh);
      background: var(--c-cream);
    }
    @media (max-width: 768px) {
      .saga { height: calc(7 * 100svh); }
    }
    .saga__pin {
      position: sticky;
      top: 0;
      height: 100vh;
      height: 100svh;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      padding-top: var(--header-h);
    }
    @media (max-width: 768px) {
      .saga__layout { justify-content: flex-start; padding-top: 16px !important; }
      .saga__intro { gap: 8px; }
      .saga__showcase {
        max-height: 50vh;
        max-height: 50svh;
        overflow: hidden;
      }
      .saga__title { font-size: clamp(22px, 5.5vw, 32px) !important; }
      .saga .eyebrow { font-size: 10px; padding: 5px 10px; }
      .mock { max-width: 320px; }
      .wa-mock { max-width: 270px; }
      .docs-mock { max-width: 320px; }
    }
    @media (max-width: 480px) {
      .saga__showcase {
        max-height: 44vh;
        max-height: 44svh;
      }
      .mock, .wa-mock, .docs-mock { max-width: 290px; }
      .quote__head strong, .contract__head strong, .cal__head strong { font-size: 13px; }
      .excel { font-size: 10px; }
      .quote__items, .quote__client { padding: 6px 12px; }
      .contract { padding: 10px 12px 12px; }
      .cal__list { gap: 5px; }
    }
    .saga__bg {
      position: absolute;
      inset: 0; pointer-events: none;
      background: var(--grad-mesh);
      filter: blur(60px);
      animation: meshFloat 20s var(--ease-out) infinite alternate;
    }
    .saga__grid {
      position: absolute;
      inset: 0; pointer-events: none;
      background-image:
        linear-gradient(var(--c-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--c-line) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 80%);
      -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 80%);
      opacity: .4;
    }
    @keyframes meshFloat {
      0% { transform: translate(0, 0) scale(1); }
      100% { transform: translate(40px, -30px) scale(1.08); }
    }
    .saga__layout {
      position: relative; z-index: 1;
      flex: 1;
      display: flex; flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 12px 20px 16px;
      gap: clamp(14px, 2.5vh, 28px);
      max-width: var(--container);
      width: 100%;
      margin: 0 auto;
      min-height: 0;
    }
    @media (min-width: 768px) { .saga__layout { padding: 16px 32px 24px; } }
    @media (min-width: 1024px) { .saga__layout { padding: 20px 48px 32px; } }

    .saga__intro {
      text-align: center;
      display: flex; flex-direction: column; align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }
    .saga__title { max-width: 920px; }

    /* Showcase: grid 1x1 — todos los stages ocupan la misma celda
       y el contenedor se dimensiona al stage más alto, sin overlap */
    .saga__showcase {
      position: relative;
      width: 100%;
      max-width: 560px;
      display: grid;
      grid-template-columns: 1fr;
      align-items: center;
      justify-items: center;
    }

    .stage {
      grid-column: 1;
      grid-row: 1;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: scale(.94) translateY(16px);
      transition: opacity .55s var(--ease-out), transform .55s var(--ease-out);
      pointer-events: none;
    }
    .stage.is-active {
      opacity: 1;
      transform: scale(1) translateY(0);
      pointer-events: auto;
    }

    /* Generic mock window */
    .mock {
      width: 100%;
      max-width: 420px;
      background: var(--c-white);
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-xl);
      overflow: hidden;
      border: 1px solid var(--c-line);
    }
    .mock__bar {
      display: flex; align-items: center; gap: 8px;
      padding: 10px 14px;
      background: var(--c-gray-100);
      border-bottom: 1px solid var(--c-line);
    }
    .mock__dot { width: 11px; height: 11px; border-radius: 50%; }
    .mock__dot--r { background: #ff5f57; }
    .mock__dot--y { background: #ffbd2e; }
    .mock__dot--g { background: #28c940; }
    .mock__title {
      flex: 1; text-align: center;
      font-size: 11px; color: var(--c-text-muted);
      font-weight: 500;
      font-family: var(--font-mono);
    }

    /* ───── STAGE 0: COTIZACIÓN AUTOMÁTICA ───── */
    .quote { font-family: var(--font-body); }
    .quote__head {
      padding: 14px 16px;
      display: flex; justify-content: space-between; align-items: flex-start;
      border-bottom: 1px solid var(--c-line);
    }
    .quote__head strong { font-family: var(--font-display); font-size: 14px; font-weight: 700; display: block; }
    .quote__head small { font-size: 10px; color: var(--c-text-muted); display: block; margin-top: 2px; font-family: var(--font-mono); }
    .quote__status {
      font-size: 9px; font-weight: 700;
      padding: 4px 8px;
      background: var(--c-green-50);
      color: var(--c-green);
      border-radius: var(--r-pill);
      letter-spacing: .04em;
      display: inline-flex; align-items: center; gap: 4px;
    }
    .quote__status::before { content: ""; width: 5px; height: 5px; background: var(--c-green); border-radius: 50%; }
    .quote__client {
      padding: 10px 16px;
      display: flex; flex-direction: column; gap: 4px;
      background: var(--c-gray-50);
      border-bottom: 1px solid var(--c-line);
    }
    .quote__row {
      display: flex; justify-content: space-between;
      font-size: 11px;
    }
    .quote__row span:first-child { color: var(--c-text-muted); font-weight: 500; }
    .quote__row span:last-child { font-weight: 600; font-family: var(--font-mono); color: var(--c-text); }
    .quote__items {
      padding: 8px 16px;
      display: flex; flex-direction: column;
    }
    .quote__item {
      display: flex; justify-content: space-between; align-items: center;
      padding: 8px 0;
      border-bottom: 1px dashed var(--c-line);
      font-size: 12px;
      opacity: 0;
      transform: translateY(6px);
    }
    .quote__item:last-child { border-bottom: 0; }
    .quote__item span:last-child { font-weight: 600; font-family: var(--font-mono); color: var(--c-text); }
    .stage[data-stage="0"].is-active .quote__item { animation: itemIn .4s var(--ease-out) forwards; }
    .stage[data-stage="0"].is-active .quote__item:nth-child(1) { animation-delay: .3s; }
    .stage[data-stage="0"].is-active .quote__item:nth-child(2) { animation-delay: .5s; }
    .stage[data-stage="0"].is-active .quote__item:nth-child(3) { animation-delay: .7s; }
    .stage[data-stage="0"].is-active .quote__total { animation: totalIn .5s var(--ease-spring) 1.0s forwards; }
    .stage[data-stage="0"].is-active .quote__cta { animation: ctaIn .5s var(--ease-spring) 1.3s forwards; }
    @keyframes itemIn { to { opacity: 1; transform: translateY(0); } }
    @keyframes totalIn { 0% { opacity: 0; transform: scale(.96); } 100% { opacity: 1; transform: scale(1); } }
    @keyframes ctaIn { 0% { opacity: 0; transform: translateY(8px); } 100% { opacity: 1; transform: translateY(0); } }
    .quote__total {
      padding: 12px 16px;
      display: flex; justify-content: space-between; align-items: center;
      background: var(--c-coral-50);
      border-top: 1px solid var(--c-line);
      font-family: var(--font-display);
      opacity: 0;
    }
    .quote__total span { font-size: 12px; color: var(--c-text-soft); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
    .quote__total strong {
      font-size: 22px; font-weight: 800;
      background: var(--grad-coral);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: -.02em;
    }
    .quote__cta {
      margin: 12px 16px 16px;
      padding: 11px;
      background: var(--c-coral);
      color: white;
      border-radius: var(--r-pill);
      font-weight: 600;
      font-size: 13px;
      text-align: center;
      display: flex; align-items: center; justify-content: center; gap: 6px;
      opacity: 0;
    }
    .quote__cta svg { width: 14px; height: 14px; }

    /* ───── STAGE 1: CALENDARIO DINÁMICO ───── */
    .cal { padding: 14px 16px 16px; }
    .cal__head {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 12px;
    }
    .cal__head strong { font-family: var(--font-display); font-size: 16px; font-weight: 700; }
    .cal__sync {
      font-size: 10px;
      color: var(--c-coral);
      font-weight: 700;
      display: flex; align-items: center; gap: 4px;
      padding: 4px 8px;
      background: var(--c-coral-50);
      border-radius: var(--r-pill);
    }
    .cal__sync::before {
      content: "";
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--c-coral);
      animation: dotPulse 1.6s var(--ease-out) infinite;
    }
    .cal__list { display: flex; flex-direction: column; gap: 7px; }
    .cal__appt {
      display: grid;
      grid-template-columns: 56px 1fr auto;
      gap: 10px;
      padding: 10px 12px;
      background: var(--c-gray-50);
      border-radius: var(--r-md);
      border-left: 3px solid var(--c-color, var(--c-coral));
      align-items: center;
      opacity: 0;
      transform: translateX(-12px);
    }
    .cal__appt-time {
      font-family: var(--font-mono);
      color: var(--c-text-muted);
      font-weight: 600;
      font-size: 10px;
      line-height: 1.1;
    }
    .cal__appt-time strong { display: block; color: var(--c-text); font-size: 11px; }
    .cal__appt-info { min-width: 0; }
    .cal__appt-info strong {
      display: block;
      font-size: 12px; font-weight: 600;
      color: var(--c-text);
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .cal__appt-info small { font-size: 10px; color: var(--c-text-muted); }
    .cal__appt-tag {
      padding: 3px 8px;
      border-radius: var(--r-pill);
      font-size: 9px; font-weight: 700;
      letter-spacing: .04em;
      white-space: nowrap;
    }
    .cal__appt--coral  { --c-color: var(--c-coral); }
    .cal__appt--violet { --c-color: var(--c-violet); }
    .cal__appt--blue   { --c-color: var(--c-blue); }
    .cal__appt--green  { --c-color: var(--c-green); }
    .cal__appt--coral  .cal__appt-tag { background: var(--c-coral-50); color: var(--c-coral-600); }
    .cal__appt--violet .cal__appt-tag { background: var(--c-violet-50); color: var(--c-violet); }
    .cal__appt--blue   .cal__appt-tag { background: var(--c-blue-50); color: var(--c-blue); }
    .cal__appt--green  .cal__appt-tag { background: var(--c-green-50); color: var(--c-green); }
    .stage[data-stage="1"].is-active .cal__appt { animation: rowIn .4s var(--ease-out) forwards; }
    .stage[data-stage="1"].is-active .cal__appt:nth-child(1) { animation-delay: .2s; }
    .stage[data-stage="1"].is-active .cal__appt:nth-child(2) { animation-delay: .35s; }
    .stage[data-stage="1"].is-active .cal__appt:nth-child(3) { animation-delay: .5s; }
    .stage[data-stage="1"].is-active .cal__appt:nth-child(4) { animation-delay: .65s; }
    .stage[data-stage="1"].is-active .cal__appt:nth-child(5) { animation-delay: .8s; }
    @keyframes rowIn { to { opacity: 1; transform: translateX(0); } }

    /* ───── STAGE 2: CONTRATOS / CUENTAS DE COBRO ───── */
    .contract { padding: 14px 16px 16px; }
    .contract__head {
      text-align: center;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--c-line);
      margin-bottom: 12px;
    }
    .contract__head strong {
      display: block;
      font-family: var(--font-display);
      font-size: 14px; font-weight: 700;
      letter-spacing: -0.01em;
    }
    .contract__head small {
      font-size: 10px;
      color: var(--c-text-muted);
      font-family: var(--font-mono);
      letter-spacing: .04em;
    }
    .contract__parties {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-bottom: 12px;
    }
    .contract__party {
      padding: 9px;
      background: var(--c-gray-50);
      border-radius: var(--r-sm);
      border: 1px solid var(--c-line);
    }
    .contract__party small {
      display: block;
      font-size: 8px; font-weight: 700;
      color: var(--c-text-muted);
      letter-spacing: .08em;
      margin-bottom: 2px;
    }
    .contract__party strong {
      display: block;
      font-size: 11px; font-weight: 600;
      color: var(--c-text);
    }
    .contract__party span {
      font-family: var(--font-mono);
      font-size: 9px;
      color: var(--c-text-soft);
    }
    .contract__clauses { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
    .contract__clause {
      font-size: 10.5px;
      line-height: 1.45;
      padding: 8px 10px;
      background: var(--c-gray-50);
      border-radius: var(--r-sm);
      border-left: 2px solid var(--c-coral);
      opacity: 0;
      transform: translateX(-8px);
    }
    .contract__clause strong { font-weight: 700; color: var(--c-text); margin-right: 4px; }
    .stage[data-stage="2"].is-active .contract__clause { animation: rowIn .4s var(--ease-out) forwards; }
    .stage[data-stage="2"].is-active .contract__clause:nth-child(1) { animation-delay: .3s; }
    .stage[data-stage="2"].is-active .contract__clause:nth-child(2) { animation-delay: .55s; }
    .stage[data-stage="2"].is-active .contract__clause:nth-child(3) { animation-delay: .8s; }
    .contract__sign {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 10px;
      border-top: 1px solid var(--c-line);
      font-size: 10px;
      color: var(--c-text-soft);
    }
    .contract__sign-icon {
      display: inline-flex; align-items: center; gap: 5px;
      font-weight: 600;
    }
    .contract__sign-icon svg { width: 14px; height: 14px; color: var(--c-coral); }
    .contract__badge {
      background: var(--c-coral-50);
      color: var(--c-coral-600);
      padding: 4px 10px;
      border-radius: var(--r-pill);
      font-weight: 700;
      font-size: 9px;
      letter-spacing: .04em;
    }

    /* ───── STAGE 3: EXCEL ───── */
    .excel { padding: 0; font-family: var(--font-mono); font-size: 12px; }
    .excel__head {
      display: grid;
      grid-template-columns: 28px 1.5fr 2fr 1fr 26px;
      background: var(--c-gray-50);
      border-bottom: 1px solid var(--c-line);
      font-weight: 600;
      color: var(--c-text-muted);
      font-size: 10px;
    }
    .excel__head span { padding: 7px 10px; border-right: 1px solid var(--c-line); }
    .excel__head span:last-child { border-right: 0; }
    .excel__row {
      display: grid;
      grid-template-columns: 28px 1.5fr 2fr 1fr 26px;
      border-bottom: 1px solid var(--c-line);
      font-size: 11px;
      opacity: 0;
      transform: translateX(-12px);
    }
    .stage[data-stage="3"].is-active .excel__row { animation: rowIn .4s var(--ease-out) forwards; }
    .stage[data-stage="3"].is-active .excel__row:nth-child(2) { animation-delay: .1s; }
    .stage[data-stage="3"].is-active .excel__row:nth-child(3) { animation-delay: .2s; }
    .stage[data-stage="3"].is-active .excel__row:nth-child(4) { animation-delay: .3s; }
    .stage[data-stage="3"].is-active .excel__row:nth-child(5) { animation-delay: .4s; }
    .stage[data-stage="3"].is-active .excel__row:nth-child(6) { animation-delay: .5s; }
    .stage[data-stage="3"].is-active .excel__row:nth-child(7) { animation-delay: .6s; }
    .excel__row span {
      padding: 8px 10px;
      border-right: 1px solid var(--c-line);
      color: var(--c-text);
      overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
    }
    .excel__row span:first-child { background: var(--c-gray-50); color: var(--c-text-muted); font-weight: 600; text-align: center; padding: 8px 4px; }
    .excel__row span:last-child { border-right: 0; padding: 8px 0; text-align: center; }
    .excel__check {
      display: inline-flex; align-items: center; justify-content: center;
      width: 16px; height: 16px;
      border-radius: 50%;
      background: var(--c-coral);
      color: white;
    }
    .excel__check svg { width: 9px; height: 9px; }
    .excel__footer {
      display: flex; align-items: center; justify-content: space-between;
      padding: 10px 14px;
      background: var(--c-gray-50);
      border-top: 1px solid var(--c-line);
      font-size: 11px;
      font-family: var(--font-body);
      color: var(--c-text-soft);
    }
    .excel__footer strong { color: var(--c-coral); font-weight: 700; }

    /* ───── STAGE 4: WHATSAPP ───── */
    .wa-mock { width: 100%; max-width: 340px; background: #ECE5DD; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-xl); border: 1px solid var(--c-line); }
    .wa-header { display: flex; align-items: center; gap: 10px; padding: 11px 14px; background: #075E54; color: white; }
    .wa-avatar {
      width: 34px; height: 34px;
      border-radius: 50%;
      background: var(--grad-brand);
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 13px;
    }
    .wa-info { display: flex; flex-direction: column; line-height: 1.2; }
    .wa-info strong { font-size: 13px; }
    .wa-info small { font-size: 10px; opacity: .85; }
    .wa-chat {
      padding: 12px;
      min-height: 240px;
      display: flex; flex-direction: column; gap: 7px;
      background: #ECE5DD;
    }
    .wa-bubble {
      max-width: 80%;
      padding: 7px 10px 5px;
      border-radius: 10px;
      font-size: 12px; line-height: 1.35;
      box-shadow: 0 1px 2px rgba(0,0,0,.08);
      opacity: 0; transform: translateY(8px);
    }
    .wa-bubble small { display: block; font-size: 8px; color: rgba(0,0,0,.45); text-align: right; margin-top: 2px; }
    .wa-bubble--in { background: white; align-self: flex-start; border-top-left-radius: 4px; }
    .wa-bubble--out { background: #DCF8C6; align-self: flex-end; border-top-right-radius: 4px; }
    .wa-typing {
      align-self: flex-start;
      background: white;
      padding: 10px;
      border-radius: 10px;
      border-top-left-radius: 4px;
      box-shadow: 0 1px 2px rgba(0,0,0,.08);
      display: flex; gap: 4px;
      opacity: 0;
    }
    .wa-typing span {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--c-text-muted);
      animation: typeDot 1.2s ease-in-out infinite;
    }
    .wa-typing span:nth-child(2) { animation-delay: .2s; }
    .wa-typing span:nth-child(3) { animation-delay: .4s; }
    @keyframes typeDot { 0%, 60%, 100% { transform: translateY(0); opacity: .3; } 30% { transform: translateY(-4px); opacity: 1; } }
    .stage[data-stage="4"].is-active .wa-bubble { animation: bubbleIn .4s var(--ease-spring) forwards; }
    .stage[data-stage="4"].is-active .wa-bubble:nth-child(1) { animation-delay: .1s; }
    .stage[data-stage="4"].is-active .wa-bubble:nth-child(2) { animation-delay: .8s; }
    .stage[data-stage="4"].is-active .wa-bubble:nth-child(3) { animation-delay: 1.6s; }
    .stage[data-stage="4"].is-active .wa-typing { animation: typingShow 1.2s var(--ease-out) 2.2s forwards; }
    .stage[data-stage="4"].is-active .wa-bubble:nth-child(5) { animation-delay: 3.6s; }
    @keyframes bubbleIn { to { opacity: 1; transform: translateY(0); } }
    @keyframes typingShow { 0% { opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } 100% { opacity: 0; } }

    /* ───── STAGE 5: WEB FORM ───── */
    .web-mock .mock__bar { background: var(--c-gray-100); }
    .web-url {
      flex: 1; background: white;
      padding: 5px 10px;
      border-radius: var(--r-pill);
      font-family: var(--font-mono);
      font-size: 10px; color: var(--c-text-soft);
      border: 1px solid var(--c-line);
      display: flex; align-items: center; gap: 5px;
    }
    .web-url svg { width: 10px; height: 10px; color: var(--c-coral); }
    .web-form { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
    .web-form h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 4px; }
    .web-field { display: flex; flex-direction: column; gap: 4px; }
    .web-field label {
      font-size: 10px; font-weight: 600;
      color: var(--c-text-soft);
      text-transform: uppercase;
      letter-spacing: .06em;
    }
    .web-field__input {
      padding: 9px 11px;
      background: var(--c-gray-50);
      border: 1px solid var(--c-line);
      border-radius: var(--r-sm);
      font-size: 12px;
      color: var(--c-text);
      min-height: 34px;
      display: flex; align-items: center;
      position: relative;
    }
    .web-field__text { overflow: hidden; white-space: nowrap; width: 0; display: inline-block; }
    .stage[data-stage="5"].is-active .web-field:nth-child(1) .web-field__text { animation: typeIn 1s var(--ease-out) .3s forwards; }
    .stage[data-stage="5"].is-active .web-field:nth-child(2) .web-field__text { animation: typeIn 1s var(--ease-out) 1.5s forwards; }
    .stage[data-stage="5"].is-active .web-field:nth-child(3) .web-field__text { animation: typeIn 1s var(--ease-out) 2.7s forwards; }
    .stage[data-stage="5"].is-active .web-submit { animation: submitClick .4s var(--ease-spring) 4.0s forwards; }
    .stage[data-stage="5"].is-active .web-success { animation: successIn .5s var(--ease-spring) 4.4s forwards; }
    @keyframes typeIn { to { width: 100%; } }
    .web-submit {
      padding: 10px 14px;
      background: var(--c-coral);
      color: white;
      border-radius: var(--r-pill);
      font-weight: 600; font-size: 12px;
      text-align: center;
    }
    @keyframes submitClick { 0% { transform: scale(1); } 50% { transform: scale(.95); background: var(--c-coral-600); } 100% { transform: scale(1); } }
    .web-success {
      display: flex; align-items: center; gap: 6px;
      padding: 8px 12px;
      background: var(--c-coral-50);
      color: var(--c-coral-600);
      border-radius: var(--r-sm);
      font-size: 11px; font-weight: 600;
      opacity: 0; transform: translateY(8px);
    }
    @keyframes successIn { to { opacity: 1; transform: translateY(0); } }
    .web-success svg { width: 14px; height: 14px; }

    /* ───── STAGE 6: DOCS / PDF EXTRACTION ───── */
    .docs-mock {
      width: 100%;
      max-width: 540px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }
    @media (min-width: 480px) { .docs-mock { grid-template-columns: 1fr 1.1fr; gap: 12px; } }
    .doc-paper {
      background: white;
      border-radius: var(--r-md);
      padding: 14px 12px;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--c-line);
      min-height: 200px;
    }
    .doc-paper__title {
      font-family: var(--font-mono);
      font-size: 9px;
      color: var(--c-text-muted);
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: .08em;
    }
    .doc-paper__lines { display: flex; flex-direction: column; gap: 5px; }
    .doc-line { height: 5px; background: var(--c-gray-200); border-radius: 3px; }
    .doc-line--w90 { width: 90%; }
    .doc-line--w70 { width: 70%; }
    .doc-line--w50 { width: 50%; }
    .doc-line--w80 { width: 80%; }
    .doc-line--highlight { background: var(--c-coral-50); position: relative; }
    .doc-line--highlight::after {
      content: ""; position: absolute; inset: 0;
      background: var(--c-coral);
      border-radius: inherit;
      opacity: 0;
    }
    .stage[data-stage="6"].is-active .doc-line--highlight::after {
      animation: scanLine 1.4s var(--ease-out) .5s forwards;
    }
    @keyframes scanLine {
      0%, 100% { opacity: 0; transform: scaleX(0); transform-origin: left; }
      50% { opacity: 1; transform: scaleX(1); }
    }
    .doc-extract {
      background: white;
      border-radius: var(--r-md);
      padding: 14px 12px;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--c-line);
      display: flex; flex-direction: column; gap: 8px;
    }
    .doc-extract__head {
      display: flex; align-items: center; justify-content: space-between;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--c-line);
    }
    .doc-extract__head strong { font-size: 11px; display: flex; align-items: center; gap: 5px; }
    .doc-extract__head svg { width: 12px; height: 12px; color: var(--c-coral); }
    .doc-extract__badge {
      font-size: 8px; font-weight: 700;
      padding: 3px 7px;
      background: var(--c-coral-50);
      color: var(--c-coral-600);
      border-radius: var(--r-pill);
      letter-spacing: .04em;
    }
    .doc-extract__row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 6px 0;
      font-size: 11px;
      opacity: 0; transform: translateY(6px);
    }
    .doc-extract__row .label { color: var(--c-text-muted); font-weight: 500; }
    .doc-extract__row .value { color: var(--c-text); font-weight: 600; font-family: var(--font-mono); }
    .stage[data-stage="6"].is-active .doc-extract__row { animation: extractIn .4s var(--ease-out) forwards; }
    .stage[data-stage="6"].is-active .doc-extract__row:nth-child(2) { animation-delay: 1.0s; }
    .stage[data-stage="6"].is-active .doc-extract__row:nth-child(3) { animation-delay: 1.2s; }
    .stage[data-stage="6"].is-active .doc-extract__row:nth-child(4) { animation-delay: 1.4s; }
    .stage[data-stage="6"].is-active .doc-extract__row:nth-child(5) { animation-delay: 1.6s; }
    .stage[data-stage="6"].is-active .doc-extract__row:nth-child(6) { animation-delay: 1.8s; }
    @keyframes extractIn { to { opacity: 1; transform: translateY(0); } }

    /* ───── BOTTOM: caption + progress + ctas ───── */
    .saga__bottom {
      width: 100%;
      max-width: 720px;
      display: flex; flex-direction: column; align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }
    /* Caption: grid 1x1 — todos los items ocupan la misma celda
       y el contenedor crece al item más alto, sin desbordarse */
    .saga__caption {
      display: grid;
      grid-template-columns: 1fr;
      width: 100%;
      max-width: 520px;
      text-align: center;
    }
    .saga__caption-item {
      grid-column: 1;
      grid-row: 1;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
      pointer-events: none;
    }
    .saga__caption-item.is-active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .saga__caption-item h3 {
      font-family: var(--font-display);
      font-size: clamp(17px, 2.6vw, 22px);
      font-weight: 700;
      letter-spacing: -0.015em;
      margin-bottom: 4px;
    }
    .saga__caption-item p {
      font-size: clamp(12px, 1.5vw, 14px);
      color: var(--c-text-soft);
      max-width: 480px;
      margin: 0 auto;
      line-height: 1.45;
    }

    .saga__progress {
      display: flex; gap: 8px;
      align-items: center;
      padding: 7px 12px;
      background: var(--c-white);
      border: 1px solid var(--c-line);
      border-radius: var(--r-pill);
      box-shadow: var(--shadow-xs);
    }
    .saga__dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--c-gray-300);
      transition: all .35s var(--ease-out);
      cursor: pointer;
      border: 0; padding: 0;
    }
    .saga__dot.is-active {
      width: 24px;
      border-radius: var(--r-pill);
      background: var(--c-coral);
    }
    .saga__ctas { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

    @media (max-height: 720px) and (max-width: 768px) {
      .saga__intro .lead, .saga__title { font-size: clamp(28px, 6vw, 48px); }
    }

    /* ════════════════════════════════════════════════════════════
       MARQUEE
       ════════════════════════════════════════════════════════════ */
    .marquee-section { padding: 48px 0; background: var(--c-cream); border-block: 1px solid var(--c-line); }
    .marquee-section__label {
      text-align: center;
      font-size: 11px; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--c-text-muted);
      margin-bottom: 24px;
    }
    .marquee {
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
      -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    }
    .marquee__track {
      display: flex; gap: 56px;
      width: max-content;
      animation: marquee 40s linear infinite;
    }
    .marquee__track span {
      font-family: var(--font-display);
      font-size: 20px; font-weight: 600;
      color: var(--c-text-muted);
      white-space: nowrap;
      letter-spacing: -0.02em;
    }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ════════════════════════════════════════════════════════════
       PROBLEM
       ════════════════════════════════════════════════════════════ */
    .problem { background: var(--c-navy); color: white; overflow: hidden; }
    .problem__bg {
      position: absolute; inset: 0; pointer-events: none;
      background: radial-gradient(50% 50% at 80% 20%, rgba(248,99,107,.18), transparent 70%),
                  radial-gradient(60% 60% at 20% 80%, rgba(123,47,247,.18), transparent 70%);
      filter: blur(60px);
    }
    .problem__inner { position: relative; max-width: 980px; margin: 0 auto; text-align: center; }
    .problem__big {
      font-family: var(--font-display);
      font-size: clamp(30px, 6vw, 64px);
      line-height: 1.05;
      letter-spacing: -0.025em;
      font-weight: 700;
    }
    .problem__big .num {
      font-size: 1.4em;
      background: var(--grad-coral);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .problem__sub {
      margin-top: 20px;
      font-size: clamp(15px, 2vw, 18px);
      color: rgba(255,255,255,.7);
      max-width: 640px;
      margin-left: auto; margin-right: auto;
    }
    .problem .eyebrow { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.7); }

    /* ════════════════════════════════════════════════════════════
       SERVICES
       ════════════════════════════════════════════════════════════ */
    .services { background: var(--c-white); }
    .services__head { max-width: 720px; margin: 0 auto 56px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
    .services__grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
    @media (min-width: 768px) { .services__grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
    .service-card {
      position: relative;
      padding: 36px 28px 32px;
      background: var(--c-white);
      border: 1px solid var(--c-line);
      border-radius: var(--r-xl);
      overflow: hidden;
      transition: all .35s var(--ease-out);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .service-card::before {
      content: ""; position: absolute;
      top: 0; left: 50%;
      width: 40%; height: 4px;
      transform: translateX(-50%);
      background: var(--grad-brand);
      border-radius: 0 0 4px 4px;
      opacity: 0;
      transition: opacity .3s;
    }
    .service-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--shadow-lg); }
    .service-card:hover::before { opacity: 1; }
    .service-card__icon {
      display: flex;
      width: 64px; height: 64px;
      border-radius: var(--r-md);
      background: var(--c-coral-50);
      color: var(--c-coral);
      align-items: center; justify-content: center;
      margin: 0 auto 22px;
      transition: all .35s var(--ease-spring);
    }
    .service-card__icon svg { width: 28px; height: 28px; }
    .service-card:hover .service-card__icon { background: var(--c-coral); color: white; transform: rotate(-6deg) scale(1.08); box-shadow: var(--shadow-coral); }
    .service-card__title { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 10px; }
    .service-card__desc { font-size: 14px; color: var(--c-text-soft); line-height: 1.6; margin-bottom: 22px; max-width: 280px; }
    .service-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; justify-content: center; }
    .service-card__tag { font-size: 11px; font-weight: 500; padding: 5px 11px; background: var(--c-gray-100); color: var(--c-text-soft); border-radius: var(--r-pill); }
    .service-card__cta {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13px; font-weight: 600;
      color: var(--c-coral);
      transition: gap .25s;
      margin-top: auto;
    }
    .service-card__cta:hover { gap: 10px; }

    /* ════════════════════════════════════════════════════════════
       HOW
       ════════════════════════════════════════════════════════════ */
    .how { background: var(--c-cream); overflow: hidden; }
    .how__head { max-width: 720px; margin: 0 auto 56px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
    .how__inner { display: grid; grid-template-columns: 1fr; gap: 28px; }
    @media (min-width: 1024px) { .how__inner { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; } }
    /* Timeline vertical: línea + marcadores grandes */
    .how__steps {
      position: relative;
      display: flex; flex-direction: column;
      gap: 18px;
      padding-left: 56px;
      counter-reset: step-counter;
    }
    .how__steps::before {
      content: "";
      position: absolute;
      left: 23px; top: 24px; bottom: 24px;
      width: 2px;
      background: var(--c-line);
      border-radius: 2px;
    }
    .how__steps::after {
      content: "";
      position: absolute;
      left: 23px; top: 24px;
      width: 2px;
      height: var(--how-progress, 0%);
      background: linear-gradient(180deg, var(--c-coral) 0%, var(--c-violet) 100%);
      border-radius: 2px;
      transition: height .6s var(--ease-out);
      box-shadow: 0 0 12px rgba(248,99,107,.45);
    }
    .how__step {
      position: relative;
      padding: 22px 22px 22px 24px;
      background: var(--c-white);
      border: 1px solid var(--c-line);
      border-radius: var(--r-lg);
      transition: all .35s var(--ease-out);
      cursor: pointer;
    }
    .how__step::before {
      content: counter(step-counter);
      counter-increment: step-counter;
      position: absolute;
      left: -45px; top: 22px;
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--c-white);
      border: 2px solid var(--c-line);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 14px;
      color: var(--c-text-muted);
      z-index: 1;
      transition: all .35s var(--ease-spring);
    }
    .how__step.is-done::before {
      background: var(--c-coral);
      border-color: var(--c-coral);
      color: white;
      content: "";
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
      background-size: 18px 18px;
      background-position: center;
      background-repeat: no-repeat;
    }
    .how__step.is-active::before {
      background: var(--c-coral);
      border-color: var(--c-coral);
      color: white;
      box-shadow: 0 0 0 6px rgba(248,99,107,.18), 0 8px 20px -4px rgba(248,99,107,.4);
      transform: scale(1.08);
    }
    .how__step.is-active {
      border-color: var(--c-coral);
      box-shadow: 0 16px 40px -8px rgba(248,99,107,.22);
      transform: translateX(4px);
    }
    .how__step:hover:not(.is-active) {
      border-color: var(--c-line-strong);
      transform: translateX(2px);
    }
    .how__step-head {
      display: flex; align-items: center; justify-content: space-between;
      gap: 12px;
      margin-bottom: 10px;
    }
    .how__step-week {
      font-size: 11px; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--c-text-muted);
      transition: color .3s;
    }
    .how__step.is-active .how__step-week,
    .how__step.is-done .how__step-week { color: var(--c-coral); }
    .how__step-icon {
      width: 38px; height: 38px;
      border-radius: var(--r-sm);
      background: var(--c-coral-50);
      color: var(--c-coral);
      display: flex; align-items: center; justify-content: center;
      transition: all .35s var(--ease-spring);
    }
    .how__step-icon svg { width: 18px; height: 18px; }
    .how__step.is-active .how__step-icon {
      background: var(--c-coral);
      color: white;
      transform: rotate(-6deg) scale(1.06);
    }
    .how__step h3 {
      font-family: var(--font-display);
      font-size: 22px; font-weight: 700;
      letter-spacing: -0.015em;
      margin-bottom: 8px;
    }
    .how__step p { font-size: 14px; color: var(--c-text-soft); line-height: 1.6; }
    .how__visual {
      position: sticky; top: 92px;
      aspect-ratio: 4 / 5;
      background: var(--c-white);
      border: 1px solid var(--c-line);
      border-radius: var(--r-xl);
      padding: 28px;
      box-shadow: var(--shadow-lg);
      display: none;
      flex-direction: column;
      overflow: hidden;
    }
    @media (min-width: 1024px) { .how__visual { display: flex; } }
    .how__visual::before { content: ""; position: absolute; inset: -30%; background: var(--grad-brand); filter: blur(80px); opacity: .12; z-index: 0; }
    .how__visual > * { position: relative; z-index: 1; }
    .how__visual-pane {
      flex: 1;
      display: flex; flex-direction: column;
      gap: 18px;
      opacity: 0;
      transform: translateY(20px);
      transition: all .5s var(--ease-out);
      position: absolute;
      inset: 28px;
      pointer-events: none;
    }
    .how__visual-pane.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .how__visual-pane h4 { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -0.015em; }
    .how__visual-pane ul { display: flex; flex-direction: column; gap: 12px; }
    .how__visual-pane li {
      display: flex; gap: 12px; align-items: flex-start;
      padding: 13px;
      background: var(--c-gray-50);
      border-radius: var(--r-md);
      border: 1px solid var(--c-line);
      font-size: 13px;
    }
    .how__visual-pane li svg { width: 18px; height: 18px; color: var(--c-coral); flex-shrink: 0; }

    /* ════════════════════════════════════════════════════════════
       STATS
       ════════════════════════════════════════════════════════════ */
    .stats { background: var(--c-navy); color: white; overflow: hidden; }
    .stats__bg {
      position: absolute; inset: 0; pointer-events: none;
      background: radial-gradient(60% 60% at 0% 100%, rgba(248,99,107,.2), transparent 60%),
                  radial-gradient(60% 60% at 100% 0%, rgba(123,47,247,.18), transparent 60%);
      filter: blur(60px);
    }
    .stats__grid { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
    @media (min-width: 768px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
    .stat-item { display: flex; flex-direction: column; gap: 6px; }
    .stat-item__num {
      font-family: var(--font-display);
      font-size: clamp(36px, 5.5vw, 60px);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1;
      background: var(--grad-coral);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      font-variant-numeric: tabular-nums;
    }
    .stat-item__label { font-size: 13px; color: rgba(255,255,255,.7); font-weight: 500; }

    /* ════════════════════════════════════════════════════════════
       TESTIMONIAL
       ════════════════════════════════════════════════════════════ */
    .testimonial { background: var(--c-white); }
    .testimonials {
      max-width: 880px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      position: relative;
    }
    .testimonial__card {
      grid-column: 1; grid-row: 1;
      padding: 44px 28px 36px;
      background: var(--c-cream);
      border-radius: var(--r-xl);
      text-align: center;
      position: relative;
      overflow: hidden;
      border: 1px solid var(--c-line);
      opacity: 0;
      transform: translateY(20px) scale(.98);
      transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
      pointer-events: none;
    }
    .testimonial__card.is-active {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }
    .testimonial__nav {
      display: flex; gap: 8px;
      justify-content: center;
      margin-top: 24px;
    }
    .testimonial__dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--c-gray-300);
      transition: all .35s var(--ease-out);
      cursor: pointer;
      border: 0; padding: 0;
    }
    .testimonial__dot.is-active {
      width: 32px;
      border-radius: var(--r-pill);
      background: var(--c-coral);
    }
    @media (min-width: 768px) { .testimonial__card { padding: 64px 56px 52px; } }
    .testimonial__card::before {
      content: "\201C";
      position: absolute;
      top: -28px; left: 28px;
      font-family: Georgia, 'Times New Roman', serif;
      font-style: italic;
      font-size: 180px;
      line-height: 1;
      color: var(--c-coral);
      opacity: .14;
      pointer-events: none;
      user-select: none;
    }
    .testimonial__card::after {
      content: "";
      position: absolute;
      inset: -50%;
      background: var(--grad-brand);
      filter: blur(80px);
      opacity: .05;
      pointer-events: none;
      z-index: 0;
    }
    .testimonial__quote {
      position: relative;
      z-index: 1;
      font-family: var(--font-display);
      font-size: clamp(20px, 3vw, 28px);
      line-height: 1.4;
      letter-spacing: -0.015em;
      font-weight: 600;
      color: var(--c-text);
      max-width: 720px;
      margin: 0 auto;
    }
    .testimonial__author {
      position: relative;
      z-index: 1;
      margin-top: 32px;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: nowrap;
    }
    .testimonial__avatar {
      width: 52px; height: 52px;
      flex-shrink: 0;
      border-radius: 50%;
      background: var(--grad-brand);
      color: white;
      font-family: var(--font-display);
      font-size: 18px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      letter-spacing: -0.02em;
      box-shadow: 0 8px 20px -6px rgba(248,99,107,.45);
    }
    .testimonial__author-info {
      display: flex; flex-direction: column;
      align-items: flex-start;
      text-align: left;
      line-height: 1.3;
    }
    .testimonial__name { font-weight: 600; font-size: 15px; color: var(--c-text); }
    .testimonial__role { font-size: 13px; color: var(--c-text-soft); margin-top: 2px; }
    .testimonial__rating {
      position: relative; z-index: 1;
      display: inline-flex; gap: 3px;
      margin-bottom: 18px;
    }
    .testimonial__rating svg { width: 18px; height: 18px; color: var(--c-coral); }

    /* ════════════════════════════════════════════════════════════
       CTA
       ════════════════════════════════════════════════════════════ */
    .cta { background: var(--grad-brand); color: white; overflow: hidden; }
    .cta__bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(60% 60% at 80% 20%, rgba(255,255,255,.18), transparent 70%), radial-gradient(50% 50% at 20% 80%, rgba(255,255,255,.14), transparent 70%); }
    .cta__inner { position: relative; max-width: 880px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 24px; }
    .cta__title { font-family: var(--font-display); font-size: clamp(32px, 5.5vw, 56px); line-height: 1.05; letter-spacing: -0.025em; font-weight: 700; }
    .cta__lead { font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,.85); max-width: 560px; }
    .cta__buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
    .cta .btn--primary { background: white; color: var(--c-coral); box-shadow: 0 16px 40px -8px rgba(0,0,0,.25); }
    .cta .btn--primary:hover { background: rgba(255,255,255,.95); }
    .cta .btn--ghost { background: rgba(255,255,255,.1); color: white; border-color: rgba(255,255,255,.3); }
    .cta .btn--ghost:hover { background: rgba(255,255,255,.2); }

    /* ════════════════════════════════════════════════════════════
       FOOTER
       ════════════════════════════════════════════════════════════ */
    .footer { background: var(--c-navy); color: rgba(255,255,255,.7); padding: 64px 0 28px; }
    .footer__grid { display: grid; grid-template-columns: 1fr; gap: 36px; margin-bottom: 40px; }
    @media (min-width: 640px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; } }
    .footer__brand img { height: 32px; width: auto; margin-bottom: 14px; }
    .footer__brand p { font-size: 13px; color: rgba(255,255,255,.55); max-width: 320px; margin-bottom: 18px; }
    .footer__social { display: flex; gap: 8px; }
    .footer__social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; transition: all .25s var(--ease-out); }
    .footer__social a:hover { background: var(--c-coral); transform: translateY(-2px); }
    .footer__social svg { width: 16px; height: 16px; color: white; }
    .footer__col h4 { color: white; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
    .footer__col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer__col a { font-size: 13px; transition: color .2s; }
    .footer__col a:hover { color: white; }
    .footer__contact-item { display: flex; align-items: center; gap: 8px; }
    .footer__contact-item svg { width: 13px; height: 13px; color: var(--c-coral); }
    .footer__bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.45); }
    .footer__bottom a { color: inherit; }
    .footer__bottom a:hover { color: white; }

    /* WHATSAPP FAB */
    .wa-fab {
      position: fixed; right: 16px; bottom: 16px;
      width: 52px; height: 52px;
      border-radius: 9999px;
      background: #25D366; color: #fff;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 12px 32px rgba(37,211,102,.4);
      z-index: 55;
      transition: transform .3s var(--ease-spring);
    }
    .wa-fab:hover { transform: scale(1.1); }
    .wa-fab::after {
      content: ""; position: absolute; inset: 0;
      border-radius: 9999px; background: #25D366;
      opacity: .35;
      animation: waPulse 2s ease infinite;
      pointer-events: none;
    }
    @keyframes waPulse { 0% { transform: scale(1); opacity: .35; } 100% { transform: scale(1.7); opacity: 0; } }

    /* SCROLL REVEAL */
    [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: var(--reveal-delay, 0ms); }
    [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
      [data-reveal] { opacity: 1 !important; transform: none !important; }
      .saga { height: auto; }
      .saga__pin { position: static; height: auto; }
      .stage { position: relative; opacity: 1; transform: none; pointer-events: auto; margin: 24px 0; }
      .loader { display: none; }
    }

    ::-webkit-scrollbar { width: 10px; height: 10px; }
    ::-webkit-scrollbar-track { background: var(--c-cream); }
    ::-webkit-scrollbar-thumb { background: var(--c-gray-300); border-radius: 9999px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--c-text-soft); }
/* ════════════════════════════════════════════════════════════
   BLOG PREVIEW
   ════════════════════════════════════════════════════════════ */
.blog { background: var(--c-cream); }
.blog__head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 768px) {
  .blog__grid { grid-template-columns: repeat(3, 1fr); }
}

.post-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .35s var(--ease-out);
}
.post-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.post-card__cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--c-cream);
  overflow: hidden;
}
.post-card__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.post-card:hover .post-card__cover img { transform: scale(1.05); }
.post-card__category {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 11px; font-weight: 600;
  padding: 5px 11px;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--c-coral-600);
  border-radius: var(--r-pill);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.post-card__body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-card__meta {
  display: flex; gap: 8px;
  font-size: 12px;
  color: var(--c-text-muted);
  font-weight: 500;
  margin-bottom: 12px;
}
.post-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.post-card__title a {
  color: var(--c-text);
  transition: color .2s;
}
.post-card__title a:hover { color: var(--c-coral); }
.post-card__excerpt {
  font-size: 14px;
  color: var(--c-text-soft);
  line-height: 1.55;
  margin-bottom: 18px;
}
.post-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--c-coral);
  margin-top: auto;
  transition: gap .25s;
}
.post-card__cta:hover { gap: 10px; }

.blog__more {
  margin-top: 48px;
  text-align: center;
}

/* ════════════════════════════════════════════════════════════
   PAGE HERO (sub-páginas: servicios, sst, blog, faq, contacto)
   ════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 64px;
  overflow: hidden;
  background: var(--c-cream);
}
@media (min-width: 768px) { .page-hero { padding: calc(var(--header-h) + 96px) 0 96px; } }
.page-hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background: var(--grad-mesh);
  filter: blur(60px);
  animation: meshFloat 24s var(--ease-out) infinite alternate;
}
.page-hero__inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 18px;
}
.page-hero__crumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500;
  color: var(--c-text-muted);
}
.page-hero__crumb a { transition: color .2s; }
.page-hero__crumb a:hover { color: var(--c-coral); }
.page-hero__crumb svg { width: 12px; height: 12px; opacity: .5; }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.page-hero__lead {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--c-text-soft);
  max-width: 640px;
}

/* ════════════════════════════════════════════════════════════
   SERVICIOS GRID (6 servicios en página /servicios)
   ════════════════════════════════════════════════════════════ */
.svg-grid { background: var(--c-white); }
.svg-grid__head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.svg-grid__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .svg-grid__list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .svg-grid__list { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.svg-card {
  position: relative;
  padding: 32px 28px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  transition: all .35s var(--ease-out);
}
.svg-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.svg-card__icon {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  background: var(--c-coral-50);
  color: var(--c-coral);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: all .35s var(--ease-spring);
}
.svg-card__icon svg { width: 28px; height: 28px; }
.svg-card:hover .svg-card__icon {
  background: var(--c-coral); color: white;
  transform: rotate(-6deg) scale(1.08);
  box-shadow: var(--shadow-coral);
}
.svg-card__title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.svg-card__desc {
  font-size: 14px; color: var(--c-text-soft);
  line-height: 1.55; margin-bottom: 22px;
  max-width: 280px;
}
.svg-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--c-coral);
  transition: gap .25s;
  margin-top: auto;
}
.svg-card__cta:hover { gap: 10px; }

/* CTA banner inline */
.cta-banner {
  background: var(--c-navy);
  color: white;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 60% at 80% 20%, rgba(248,99,107,.18), transparent 70%),
              radial-gradient(60% 60% at 20% 80%, rgba(123,47,247,.18), transparent 70%);
  filter: blur(60px);
}
.cta-banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 768px) { .cta-banner__inner { grid-template-columns: 1.4fr 1fr; gap: 48px; } }
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.cta-banner__list {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 20px;
}
.cta-banner__list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}
.cta-banner__list svg {
  width: 18px; height: 18px;
  color: var(--c-coral);
  flex-shrink: 0;
}
.cta-banner__action {
  display: flex; flex-direction: column; gap: 12px;
}

/* ════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ════════════════════════════════════════════════════════════ */
.faq-list {
  background: var(--c-white);
}
.faq-list__container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-list__head {
  text-align: center;
  margin-bottom: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all .25s var(--ease-out);
}
.faq-item:hover { border-color: var(--c-line-strong); }
.faq-item[open] {
  border-color: var(--c-coral);
  box-shadow: 0 12px 32px -10px rgba(248,99,107,.18);
}
.faq-item summary {
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 17px; font-weight: 600;
  color: var(--c-text);
  list-style: none;
  letter-spacing: -0.01em;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--c-coral); }
.faq-item__chevron {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c-cream);
  display: flex; align-items: center; justify-content: center;
  transition: all .35s var(--ease-spring);
}
.faq-item__chevron svg { width: 14px; height: 14px; transition: transform .35s var(--ease-spring); }
.faq-item[open] .faq-item__chevron {
  background: var(--c-coral);
  color: white;
}
.faq-item[open] .faq-item__chevron svg { transform: rotate(180deg); }
.faq-item__answer {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--c-text-soft);
  line-height: 1.65;
}
.faq-item__answer p { margin-bottom: 10px; }
.faq-item__answer p:last-child { margin-bottom: 0; }

/* ════════════════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════════════════ */
.contact { background: var(--c-white); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) { .contact__grid { grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; } }

.contact__info {
  background: var(--c-cream);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
  border: 1px solid var(--c-line);
}
.contact__info h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.contact__info p { font-size: 14px; color: var(--c-text-soft); line-height: 1.55; }
.contact__info-list { display: flex; flex-direction: column; gap: 14px; }
.contact__info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px;
  background: var(--c-white);
  border-radius: var(--r-md);
  border: 1px solid var(--c-line);
  transition: all .25s var(--ease-out);
}
.contact__info-item:hover { transform: translateX(4px); border-color: transparent; box-shadow: var(--shadow-sm); }
.contact__info-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--c-coral-50);
  color: var(--c-coral);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact__info-icon svg { width: 18px; height: 18px; }
.contact__info-text { display: flex; flex-direction: column; line-height: 1.3; }
.contact__info-text strong { font-size: 14px; font-weight: 600; color: var(--c-text); margin-bottom: 2px; }
.contact__info-text a, .contact__info-text span { font-size: 13px; color: var(--c-text-soft); transition: color .2s; }
.contact__info-text a:hover { color: var(--c-coral); }

.contact__form {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.contact__form-head {
  margin-bottom: 24px;
}
.contact__form-head h3 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.contact__form-head p { font-size: 14px; color: var(--c-text-soft); }
.contact__form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .contact__form-grid { grid-template-columns: 1fr 1fr; } }
.contact__field { display: flex; flex-direction: column; gap: 6px; }
.contact__field--full { grid-column: 1 / -1; }
.contact__field label {
  font-size: 11px; font-weight: 600;
  color: var(--c-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact__field input,
.contact__field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--c-text);
  transition: all .25s var(--ease-out);
}
.contact__field input:focus,
.contact__field textarea:focus {
  outline: none;
  border-color: var(--c-coral);
  background: var(--c-white);
  box-shadow: 0 0 0 4px rgba(248,99,107,.12);
}
.contact__field textarea { resize: vertical; min-height: 120px; }
.contact__form-submit { margin-top: 18px; }

/* ════════════════════════════════════════════════════════════
   BLOG INDEX (full grid)
   ════════════════════════════════════════════════════════════ */
.blog-index { background: var(--c-white); }
.blog-index__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .blog-index__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-index__grid { grid-template-columns: repeat(3, 1fr); } }
