      /* ---- Base ---- */
      *,
      *::before,
      *::after {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
        scroll-padding-top: 90px;
      }

      body {
        font-family: "DM Sans", sans-serif;
        background: #f8fafc;
        color: #1e293b;
        overflow-x: hidden;
      }

      h1,
      h2,
      h3,
      h4,
      h5 {
        font-family: "Sora", sans-serif;
      }

      /* ---- Hero mesh background ---- */
      .hero-bg {
        background: linear-gradient(
          135deg,
          #1e3a8a 0%,
          #1d4ed8 40%,
          #2563eb 70%,
          #3b82f6 100%
        );
        position: relative;
        overflow: hidden;
      }

      .hero-bg::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse at 20% 50%,
            rgba(96, 165, 250, 0.25) 0%,
            transparent 60%
          ),
          radial-gradient(
            ellipse at 80% 10%,
            rgba(255, 255, 255, 0.08) 0%,
            transparent 50%
          );
        pointer-events: none;
      }

      /* ---- BARRA DE URGENCIA ---- */
      #urgency-bar {
        background: linear-gradient(90deg, #f5b400, #ff8c00);
        color: #000;
        font-size: 0.78rem;
        font-weight: 700;
        padding: 9px 16px;
        text-align: center;
        font-family: "DM Sans", sans-serif;
        letter-spacing: 0.03em;
      }

      .ticker-inner {
        display: inline-flex;
        gap: 48px;
        animation: ticker 24s linear infinite;
        white-space: nowrap;
      }

      @keyframes ticker {
        0% {
          transform: translateX(0);
        }

        100% {
          transform: translateX(-50%);
        }
      }

      /* ---- ESTILOS DEL NAVBAR OSCURO ---- */
      :root {
        --blue-bright: #2f72ff;
        --blue-glow: #5b9bff;
        --cyan: #00d4ff;
        --wa-green: #25d366;
      }

      #navbar {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(6, 14, 43, 0.93);
        backdrop-filter: blur(18px);
        border-bottom: 1px solid rgba(47, 114, 255, 0.2);
        transition: box-shadow 0.3s;
      }

      #navbar.scrolled {
        box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
      }

      .nav-wpp {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #25d366, #128c7e);
        color: #fff;
        font-family: "Syne", sans-serif;
        font-weight: 700;
        font-size: 0.92rem;
        padding: 10px 20px;
        border-radius: 100px;
        border: none;
        cursor: pointer;
        transition:
          transform 0.2s,
          box-shadow 0.2s;
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
        letter-spacing: 0.01em;
      }

      .nav-wpp:hover {
        transform: translateY(-2px) scale(1.04);
        box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
      }

      .btn-main {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, var(--wa-green), #128c7e);
        color: #fff;
        font-family: "Syne", sans-serif;
        font-weight: 700;
        border: none;
        cursor: pointer;
        text-decoration: none;
        transition:
          transform 0.2s,
          box-shadow 0.2s;
        animation: btnPulse 2.2s ease infinite;
      }

      .btn-main:hover {
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
        animation: none;
      }

      @keyframes btnPulse {
        0%,
        100% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
        }

        60% {
          box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
        }
      }

      /* Animaciones de entrada para los iconos de vehículo */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}


      /* ---- ETIQUETA NARANJA (HERO) ---- */
      .hero__label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 90, 31, 0.15);
        border: 1px solid rgba(255, 90, 31, 0.3);
        color: #ff9166;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 6px 14px;
        border-radius: 100px;
        margin-bottom: 20px;
      }

      /* ============================
       BOTONES DEL HERO (Original CDA1)
    ============================ */
      :root {
        --wpp: #25d366;
      }

      .hero__ctas {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
        /* Esto los centra perfectamente */
      }

      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 28px;
        border-radius: 100px;
        font-family: "DM Sans", sans-serif;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        border: none;
        text-decoration: none;
        transition:
          transform 0.2s,
          box-shadow 0.2s,
          background 0.2s,
          border-color 0.2s;
      }

      .btn:hover {
        transform: translateY(-2px);
      }

      .btn-lg {
        padding: 18px 36px;
        font-size: 1.1rem;
      }

      .btn-wpp {
        background: var(--wpp);
        color: #fff;
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
      }

      .btn-wpp:hover {
        background: #20ba57;
        box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
      }

      .btn-outline {
        background: transparent;
        color: rgba(255, 255, 255, 0.8);
        border: 2px solid rgba(255, 255, 255, 0.3);
      }

      .btn-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        border-color: rgba(255, 255, 255, 0.6);
      }

      /* Grid pattern overlay */
      .hero-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
        background-size: 40px 40px;
        pointer-events: none;
      }

      /* ---- Vehicle cards: visible by default, animate on scroll ---- */
      .vehicle-icon {
        opacity: 0;
        transition: opacity 0.5s ease;
      }

      .vehicle-icon.anim-ready {
        opacity: 1;
      }

      .vehicle-icon.animate-slide-left {
        animation: slideInLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      }

      .vehicle-icon.animate-slide-right {
        animation: slideInRight 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      }

      .vehicle-icon.animate-fade-up {
        animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      }

      .card-reveal {
        opacity: 0;
        transform: translateY(30px);
        transition:
          opacity 0.6s ease,
          transform 0.6s ease;
      }

      .card-reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ---- Cashback badge ---- */
      .cashback-badge {
        background: linear-gradient(135deg, #10b981, #059669);
        color: #fff;
        border-radius: 9999px;
        font-family: "Sora", sans-serif;
        font-weight: 700;
        letter-spacing: -0.02em;
      }

      /* ---- Step connector line ---- */
      .step-line {
        position: absolute;
        top: 28px;
        left: calc(50% + 28px);
        width: calc(100% - 56px);
        height: 2px;
        background: linear-gradient(90deg, #bfdbfe, #60a5fa);
        z-index: 0;
      }

      /* ---- FAQ accordion ---- */
      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
          padding 0.3s ease;
      }

      .faq-item.open .faq-answer {
        max-height: 300px;
        padding-top: 0.75rem;
        padding-bottom: 1rem;
      }

      .faq-item.open .faq-chevron {
        transform: rotate(180deg);
      }

      .faq-chevron {
        transition: transform 0.3s ease;
      }

      /* ---- SOAT section ---- */
      .soat-bg {
        background: linear-gradient(
          135deg,
          #fef08a 0%,
          #fde047 40%,
          #facc15 70%,
          #f59e0b 100%
        );
      }

      /* ---- Section heading accent ---- */
      .section-title-accent {
        display: inline-block;
        position: relative;
      }

      .section-title-accent::after {
        content: "";
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 50%;
        height: 4px;
        border-radius: 2px;
        background: linear-gradient(90deg, #3b82f6, #60a5fa);
      }

      /* ---- Scrollbar custom ---- */
      ::-webkit-scrollbar {
        width: 6px;
      }

      ::-webkit-scrollbar-track {
        background: #f1f5f9;
      }

      ::-webkit-scrollbar-thumb {
        background: #3b82f6;
        border-radius: 3px;
      }

      /* ---- Noise texture overlay on cards ---- */
      .card-glass {
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(6px);
        border: 1px solid rgba(203, 213, 225, 0.6);
      }
