    :root {
      --red: #FF0E00;
      --red-dark: #C40900;
      --red-light: #FF4433;
      --peach-50: #FFF8F4;
      --peach-100: #F5F5F5;
      --peach-200: #FFE1D2;
      --ink: #010142;
      --ink-soft: #5C5C79;
      --charcoal: #010142;
      --charcoal-2: #0F0F5C;
      --line: #F0E4DC;
      --chip-pink: #FDE7E1;
      --ease: cubic-bezier(.22, 1, .36, 1);
      --dur: .7s;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    .pedidos-automaticos-main {
      font-family: 'Montserrat', sans-serif;
      color: var(--ink);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      width: 100vw;
      position: relative;
      left:50%;
      right:50%;
      margin-left: -50vw;
      margin-right: -50vw;
    }

    .pedidos-automaticos-main h1,
    .pedidos-automaticos-main h2,
    .pedidos-automaticos-main h3,
    .pedidos-automaticos-main h4{
      font-family: 'Montserrat', sans-serif !important;
      font-weight: 800;
      color: var(--ink);
      letter-spacing: -0.02em;
    }

    p {
      color: var(--ink-soft);
    }

    .container-narrow {
      max-width: 960px;
    }

    section[id] {
      scroll-margin-top: 20px;
    }

    /* ===== Scroll reveal system ===== */
    [data-reveal] {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
      will-change: opacity, transform;
    }

    [data-reveal].is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    [data-reveal="scale"] {
      transform: translateY(18px) scale(.94);
    }

    [data-reveal="scale"].is-visible {
      transform: translateY(0) scale(1);
    }

    [data-reveal="left"] {
      transform: translateX(-32px);
    }

    [data-reveal="left"].is-visible {
      transform: translateX(0);
    }

    [data-reveal="right"] {
      transform: translateX(32px);
    }

    [data-reveal="right"].is-visible {
      transform: translateX(0);
    }

    @media (prefers-reduced-motion: reduce) {
      [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }

      html {
        scroll-behavior: auto;
      }
    }

    /* Eyebrow */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 18px;
    }

    .eyebrow .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--red);
      display: inline-block;
    }

    @media (prefers-reduced-motion: no-preference) {
      .eyebrow .dot {
        animation: dotPulse 2s ease-in-out infinite;
      }
    }

    @keyframes dotPulse {

      0%,
      100% {
        transform: scale(1);
        opacity: 1;
      }

      50% {
        transform: scale(1.6);
        opacity: .5;
      }
    }

    /* Buttons */
    .btn-brand {
      position: relative;
      background: var(--red);
      color: #fff;
      font-weight: 700;
      font-size: 15px;
      padding: 14px 28px;
      border-radius: 50px;
      border: none;
      box-shadow: 0 10px 24px rgba(255, 14, 0, 0.28);
      transition: transform .2s var(--ease), box-shadow .2s var(--ease);
    }

    .btn-brand:hover {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(255, 14, 0, 0.36);
    }

    .btn-brand:active {
      transform: translateY(0);
    }

    .btn-brand.btn-pulse::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50px;
      background: var(--red);
      z-index: -1;
    }

    @media (prefers-reduced-motion: no-preference) {
      .btn-brand.btn-pulse::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 50px;
        box-shadow: 0 0 0 0 rgba(255, 14, 0, .45);
        animation: btnRing 2.6s ease-out infinite;
        pointer-events: none;
      }
    }

    @keyframes btnRing {
      0% {
        box-shadow: 0 0 0 0 rgba(255, 14, 0, .38);
      }

      70% {
        box-shadow: 0 0 0 16px rgba(255, 14, 0, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(255, 14, 0, 0);
      }
    }

    .btn-ghost {
      background: transparent;
      color: var(--ink);
      font-weight: 700;
      font-size: 15px;
      padding: 14px 26px;
      border-radius: 50px;
      border: 1.5px solid #DED4CC;
      transition: border-color .2s ease, background .2s ease, transform .2s var(--ease);
    }

    .btn-ghost:hover {
      color: var(--ink);
      background: #fff;
      border-color: #C9BCB2;
      transform: translateY(-2px);
    }

    .btn-cta-light {
      background: #fff;
      color: var(--red);
      font-weight: 700;
      font-size: 15px;
      padding: 15px 30px;
      border-radius: 50px;
      border: none;
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
      transition: transform .2s var(--ease), box-shadow .2s var(--ease);
    }

    .btn-cta-light:hover {
      color: var(--red-dark);
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
    }

    /* ===== Topbar (barra de logo interna, debajo del hero) ===== */
    .topbar {
      position: relative;
      background: #fff;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 10px 24px -18px rgba(60, 30, 20, 0.35);
      padding: 18px 0;
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: center
    }

    .topbar-logo img {
      height: 32px;
      width: auto;
      display: block;
    }

    .topbar-nav {
      display: flex;
      gap: 30px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .topbar-nav a {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--ink);
      text-decoration: none;
      opacity: .72;
      transition: opacity .2s ease, color .2s ease;
    }

    .topbar-nav a:hover {
      opacity: 1;
      color: var(--red);
    }

    /* HERO */
    .hero {
      position: relative;
      padding: 88px 0 76px;
      background: radial-gradient(1100px 520px at 14% -10%, #FFE3D6 0%, rgba(255, 227, 214, 0) 60%), #FFFBF9;
      overflow: hidden;
      max-height: 100vh !important;
      height: auto !important;
    }

    .hero-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(70px);
      opacity: .55;
      pointer-events: none;
      z-index: 0;
    }

    .hero-blob-a {
      width: 340px;
      height: 340px;
      background: #FFD8C2;
      top: -120px;
      left: -100px;
    }

    .hero-blob-b {
      width: 280px;
      height: 280px;
      background: #FFE9DE;
      bottom: -100px;
      right: 6%;
    }

    @media (prefers-reduced-motion: no-preference) {
      .hero-blob-a {
        animation: blobDrift 14s ease-in-out infinite alternate;
      }

      .hero-blob-b {
        animation: blobDrift 18s ease-in-out infinite alternate-reverse;
      }
    }

    @keyframes blobDrift {
      0% {
        transform: translate(0, 0) scale(1);
      }

      100% {
        transform: translate(30px, 20px) scale(1.08);
      }
    }

    .pedidos-automaticos-main .hero .container {
      position: relative;
      z-index: 1;
    }

    .pedidos-automaticos-main .hero h1 {
      font-size: 52px;
      line-height: 1.08;
      margin-bottom: 22px;
    }

    .pedidos-automaticos-main .hero h1 .accent {
      color: var(--red);
    }

    .pedidos-automaticos-main .hero p.lead {
      font-size: 17px;
      line-height: 1.6;
      max-width: 440px;
      margin-bottom: 32px;
    }

    .pedidos-automaticos-main .hero-cta {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }

    .pedidos-automaticos-main .hero-trust {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 600;
      color: var(--ink-soft);
    }

    .pedidos-automaticos-main .hero-trust .paws {
      display: inline-flex;
      gap: 2px;
      color: var(--red);
      font-size: 13px;
    }

    .pedidos-automaticos-main .hero-visual {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px 0;
    }

    .pedidos-automaticos-main .hero-ring {
      position: absolute;
      width: 380px;
      height: 380px;
      border: 2px dashed #F3C9B9;
      border-radius: 50%;
    }

    @media (prefers-reduced-motion: no-preference) {
     .pedidos-automaticos-main .hero-ring {
        animation: spinSlow 50s linear infinite;
      }
    }

    @keyframes spinSlow {
      from {
        transform: rotate(0);
      }

      to {
        transform: rotate(360deg);
      }
    }

    .pedidos-automaticos-main .hero-ring::before {
      content: '';
      position: absolute;
      top: -6px;
      left: 50%;
      transform: translateX(-50%);
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #FFB74D;
      box-shadow: 0 0 0 4px #fff, 0 0 16px rgba(255, 183, 77, .7);
    }

    .pedidos-automaticos-main .hero-illustration {
      position: relative;
      z-index: 2;
    }

    @media (prefers-reduced-motion: no-preference) {
     .pedidos-automaticos-main .hero-illustration {
        animation: floatY 5.5s ease-in-out infinite;
      }
    }

    @keyframes floatY {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-14px);
      }
    }

    /* Texto que acompaña al isotipo: estático, no gira */
    .pedidos-automaticos-main .hero-text-mark {
      display: block;
      width: 500px;
      max-width: 64%;
      height: auto;
      margin: 0px auto 0;
      position: relative;
      z-index: 2;
    }

    /* Hero icon (SVG animado del cliente) */
    .pedidos-automaticos-main .hero-icon-wrap {
      width: 480px;
      display: flex;
      align-items: center;
      justify-content: center;
      perspective: 1000px;
    }

    .pedidos-automaticos-main .hero-icon-glow {
      position: absolute;
      width: 230px;
      height: 230px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 14, 0, .20), rgba(255, 14, 0, 0) 70%);
      z-index: -1;
    }

    @media (prefers-reduced-motion: no-preference) {
     .pedidos-automaticos-main .hero-icon-glow {
        animation: glowPulse 3.4s ease-in-out infinite;
      }
    }

    @keyframes glowPulse {

      0%,
      100% {
        transform: scale(.94);
        opacity: .75;
      }

      50% {
        transform: scale(1.08);
        opacity: 1;
      }
    }

    .pedidos-automaticos-main .hero-icon-spin {
      width: 90%;
      transform-style: preserve-3d;
      cursor: pointer;
    }

    @media (prefers-reduced-motion: no-preference) {
     .pedidos-automaticos-main .hero-icon-spin {
        animation: spin3D 6.5s cubic-bezier(.65, 0, .35, 1) 2.8s infinite;
      }

     .pedidos-automaticos-main .hero-icon-spin:hover {
        animation-play-state: paused;
      }
    }

    @keyframes spin3D {
      0% {
        transform: rotateY(0deg);
      }

      14% {
        transform: rotateY(0deg);
      }

      86% {
        transform: rotateY(360deg);
      }

      100% {
        transform: rotateY(360deg);
      }
    }

    /* Stage: caja con relación de aspecto real del ícono (457.33 x 239.34) */
    .pedidos-automaticos-main .hero-icon-stage {
      position: relative;
      width: 100%;
      padding-bottom: 52.34%;
      transform-style: preserve-3d;
    }

    .pedidos-automaticos-main .hero-icon-stage>* {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .pedidos-automaticos-main .hero-icon-depth {
      transform-style: preserve-3d;
    }

    .pedidos-automaticos-main .hero-icon-depth svg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: block;
    }

    .pedidos-automaticos-main .hero-icon-front {
      z-index: 5;
      transform: translateZ(0.5px);
    }

    .pedidos-automaticos-main .hero-icon-svg {
      width: 100%;
      height: auto;
      overflow: visible;
      display: block;
    }

    .icon-outline {
      stroke-dasharray: 1000;
      stroke-dashoffset: 1000;
      filter: drop-shadow(0 6px 18px rgba(255, 14, 0, .28));
    }

    .icon-fill {
      opacity: 0;
    }

    @media (prefers-reduced-motion: no-preference) {
      .icon-outline {
        animation: drawIcon 1.9s var(--ease) .2s forwards, hideOutline .4s linear 2.4s forwards;
      }

      .icon-fill {
        animation: fillIcon 1s ease 1.7s forwards;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .icon-outline {
        stroke-dashoffset: 0;
        opacity: 0;
      }

      .icon-fill {
        opacity: 1;
      }
    }

    @keyframes drawIcon {
      to {
        stroke-dashoffset: 0;
      }
    }

    @keyframes hideOutline {
      to {
        opacity: 0;
      }
    }

    @keyframes fillIcon {
      0% {
        opacity: 0;
        transform: scale(.97);
        transform-origin: center;
      }

      100% {
        opacity: 1;
        transform: scale(1);
      }
    }

    .pedidos-automaticos-main .hero-heart {
      position: absolute;
      top: 14%;
      left: 50%;
      transform: translateX(-50%);
      color: var(--red);
      font-size: 20px;
    }

    @media (prefers-reduced-motion: no-preference) {
     .pedidos-automaticos-main .hero-heart {
        animation: pulseHeart 2.1s ease-in-out infinite;
      }
    }

    @keyframes pulseHeart {

      0%,
      100% {
        transform: translateX(-50%) scale(1);
      }

      50% {
        transform: translateX(-50%) scale(1.22);
      }
    }

    .badge-float {
      position: absolute;
      background: #fff;
      border-radius: 14px;
      padding: 10px 16px;
      font-size: 13px;
      font-weight: 700;
      color: var(--ink);
      box-shadow: 0 14px 30px rgba(60, 30, 20, 0.12);
      display: flex;
      align-items: center;
      gap: 8px;
      z-index: 3;
    }

    .badge-float i {
      color: var(--red);
      font-size: 15px;
    }

    .badge-discount {
      top: 16%;
      right: 2%;
    }

    .badge-delivery {
      bottom: 10%;
      right: 6%;
    }

    .badge-delivery i {
      background: var(--charcoal);
      color: #fff;
      padding: 6px;
      border-radius: 50%;
      font-size: 12px;
    }

    @media (prefers-reduced-motion: no-preference) {
      .badge-discount {
        animation: floatY 4s ease-in-out infinite;
      }

      .badge-delivery {
        animation: floatY 4.6s ease-in-out infinite;
        animation-delay: .4s;
      }
    }

    /* Section shells */
    .section {
      padding: 88px 0 88px;
    }

    .section-tinted {
      background: linear-gradient(180deg, #FAF9F8 0%, #F5F5F5 100%);
    }

    .section-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 52px;
    }

    .section-header h2 {
      font-size: 34px;
      margin-bottom: 14px;
    }

    .section-header p {
      font-size: 16px;
      margin-bottom: 0;
    }

    /* Discount hero cards */
    .discount-flex-v2 {
      display: flex;
      flex-direction: column;
      gap: 22px;
      margin-bottom: 28px;
    }

    /* Tarjeta roja: descuento inicial */
    .dcard-red {
      position: relative;
      width: 100%;
      text-align: center;
      background: linear-gradient(155deg, var(--red-light), var(--red-dark) 75%);
      border-radius: 26px;
      color: #fff;
      padding: 38px 32px 34px;
      transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    }

    .dcard-red:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 38px rgba(255, 14, 0, .26);
    }

    .pill-badge-white {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(255, 255, 255, .16);
      border: 1px solid rgba(255, 255, 255, .28);
      color: #fff;
      font-size: 11.5px;
      font-weight: 800;
      letter-spacing: .04em;
      text-transform: uppercase;
      padding: 8px 16px;
      border-radius: 50px;
      margin-bottom: 22px;
    }

    .dcard-red-foot {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-size: 19px;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 22px;
      letter-spacing: -0.02em;
    }

    .dcard-red-foot i {
      font-size: 34px;
      opacity: .95;
    }

    .dcard-red-row {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .dcard-red-num {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-size: 58px;
      font-weight: 900;
      line-height: 1;
      flex-wrap: wrap;
    }

    .dcard-red-pct-stack {
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      line-height: .86;
      margin-right: 2px;
    }

    .dcard-red-pct-stack .pct-sign {
      font-size: 30px;
      font-weight: 900;
    }

    .dcard-red-pct-stack .pct-label {
      font-size: 18px;
      font-weight: 800;
      text-transform: lowercase;
    }

    .dcard-red-num .dcard-red-extra {
      font-weight: 900;
      opacity: 0.9;
      font-size: 30px
    }

    .dcard-red-text {
      text-align: center;
      max-width: 520px;
      font-size: 18px;
      font-weight: 800;
      line-height: 1.35;
    }

    .dcard-red-note {
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      margin-top: 22px;
    }

    .dcard-red-note strong {
      color: #fff;
      font-weight: 800;
      text-decoration: underline;
      text-decoration-color: rgba(255, 255, 255, .5);
      text-underline-offset: 3px;
    }

    .dcard-red-hr {
      border: none;
      height: 2px;
      background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, .4) 0, rgba(255, 255, 255, .4) 12px, transparent 12px, transparent 24px);
      margin: 0;
    }

    .dcard-red-hr-top {
      margin-bottom: 26px;
    }

    .dcard-red-hr-bottom {
      margin-top: 26px;
    }

    /* Tarjeta blanca: descuento de recompra */
    .dcard-white {
      width: 100%;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 26px;
      padding: 34px 32px 30px;
      transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    }

    .dcard-white:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 38px rgba(60, 30, 20, .09);
    }

    .dcard-white-body {
      text-align: center;
    }

    .dcard-white-heading {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 0px;
    }

    .dcard-white-icon {
      flex: 0 0 auto;

      border-radius: 50%;

      color: var(--red);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 39px;
    }

    .dcard-white-title {
      font-size: 19px;
      line-height: 1.25;
      margin: 0;
    }

    .dcard-white-hr {
      border: none;
      border-top: 2px solid var(--red);
      width: 44px;
      margin: 0 auto 18px;
    }

    .dcard-white-text {
      font-size: 14.5px;
      line-height: 1.6;
      margin: 0 auto;
      max-width: 640px;
    }

    .dcard-white-text strong {
      color: var(--ink);
    }

    /* Categorías integradas dentro del panel blanco (sin tarjetas individuales) */
    .cat-inline-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      margin-top: 30px;
      padding-top: 28px;
      border-top: none;
      background-image: repeating-linear-gradient(to right, var(--line) 0, var(--line) 12px, transparent 12px, transparent 24px);
      background-repeat: no-repeat;
      background-size: 100% 1px;
      background-position: top left;
    }

    .cat-inline-item {
      text-align: center;
    }

    .cat-inline-item .cat-icon {
      width: 64px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      margin: 0 auto 6px;
      transition: transform .3s var(--ease);
    }

    .cat-inline-item:hover .cat-icon {
      transform: scale(1.1) rotate(-6deg);
    }

    .cat-inline-item .pct {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2px;
      font-size: 34px;
      font-weight: 800;
      color: var(--ink);
      margin-bottom: 2px;
    }

    .cat-inline-item .pct-stack-sm {
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      line-height: .85;
      margin-left: 1px;
    }

    .cat-inline-item .pct-sign-sm {
      font-size: 19px;
      font-weight: 800;
    }

    .cat-inline-item .pct-dto-sm {
      font-size: 13px;
      font-weight: 800;
      text-transform: lowercase;
    }

    .cat-inline-item .name {
      font-size: 15px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 2px;
    }

    .cat-inline-item .desc {
      font-size: 15px;
      color: var(--ink-soft);
      margin-bottom: 0;
    }

    .assurance-bar {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 18px 24px;
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 15px;
      color: var(--ink-soft);
      margin-bottom: 18px;
      justify-content: center;
    }

    .assurance-bar i {
      color: var(--red);
      font-size: 18px;
      margin-top: 2px;
    }

    .assurance-bar strong {
      color: var(--ink);
    }

    .micro-note {
      text-align: center;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--ink-soft);
    }

    .micro-note i {
      color: var(--red);
      margin-right: 6px;
    }

    /* Steps */
    .step-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 32px 26px;
      height: 100%;
      position: relative;
      transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    }

    .step-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 30px rgba(60, 30, 20, .09);
    }

    .step-num {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--red);
      color: #fff;
      font-weight: 800;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

    .step-card i.step-icon {
      position: absolute;
      top: 10px;
      right: 26px;
      font-size: 40px;
      color: #E6DCD3;
    }

    .step-card h4 {
      font-size: 17px;
      margin-bottom: 8px;
    }

    .step-card p {
      font-size: 13.5px;
      margin-bottom: 0;
    }

    .step-connector {
      position: absolute;
      top: 47px;
      left: calc(100% + 6px);
      width: calc(100% - 30px);
      border-top: 2px dashed #F0D8CC;
      display: none;
      transform-origin: left center;
      transform: scaleX(0);
      transition: transform .8s var(--ease) .3s;
    }

    .step-connector.is-visible {
      transform: scaleX(1);
    }

    @media(min-width:992px) {
      .step-connector.show {
        display: block;
      }
    }

    /* Product / benefit grids */
    .prod-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 26px 24px;
      display: flex;
      gap: 32px;
      align-items: flex-start;
      height: 100%;
      transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    }

    .prod-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 28px rgba(60, 30, 20, .08);
    }

    .prod-card .ic {
      width: 42px;
      height: 42px;
      min-width: 42px;
      border-radius: 12px;

      color: var(--red);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      transition: transform .3s var(--ease);
    }

    .prod-card:hover .ic {
      transform: scale(1.1) rotate(-4deg);
    }

    .prod-card h4 {
      font-size: 15.5px;
      margin-bottom: 4px;
    }

    .prod-card p {
      font-size: 13px;
      margin-bottom: 0;
    }

    .benefit-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 30px 26px;
      height: 100%;
      transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    }

    .benefit-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 30px rgba(60, 30, 20, .09);
    }

    .benefit-card .ic {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 19px;
      margin-bottom: 18px;
      transition: transform .3s var(--ease);
    }

    .benefit-card:hover .ic {
      transform: scale(1.1) rotate(-6deg);
    }

    .ic-red {
      background: #FDE7E1;
      color: var(--red);
    }

    .ic-gold {
      background: #FFF1D6;
      color: #D98E00;
    }

    .ic-green {
      background: #E1F5EB;
      color: #1A9C63;
    }

    .benefit-card h4 {
      font-size: 17px;
      margin-bottom: 8px;
    }

    .benefit-card p {
      font-size: 13.5px;
      margin-bottom: 0;
    }

    /* Dark control panel */
    .control-panel {
      background: radial-gradient(1100px 520px at 14% -10%, #FFE3D6 0%, rgba(255, 227, 214, 0) 60%), #FFFBF9;
      border: 1px solid var(--line);
      border-radius: 28px;
      padding: 64px;
      color: var(--ink);
      position: relative;
      overflow: hidden;
    }

    .control-panel::before {
      content: '';
      position: absolute;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 14, 0, .14), transparent 70%);
      top: -140px;
      right: -100px;
      pointer-events: none;
    }

    .control-panel h2 {
      color: var(--ink);
      font-size: 32px;
      margin-bottom: 16px;
    }

    .control-panel p {
      color: var(--ink-soft);
      font-size: 15px;
      max-width: 380px;
    }

    .control-panel .text-col {
      position: relative;
    }

    .control-panel .text-col>*:not(.control-panel-mark) {
      position: relative;
      z-index: 1;
    }

    .control-panel-mark {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 320px;
      height: auto;
      object-fit: contain;
      opacity: .10;
      z-index: 0;
      pointer-events: none;
    }

    .control-row {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 12px;
      box-shadow: 0 6px 16px rgba(60, 30, 20, .04);
      transition: box-shadow .25s ease, transform .25s var(--ease), border-color .25s ease;
      position: relative;
      z-index: 1;
    }

    .control-row:hover {
      box-shadow: 0 12px 24px rgba(60, 30, 20, .08);
      border-color: rgba(255, 14, 0, .3);
      transform: translateX(4px);
    }

    .control-row:last-child {
      margin-bottom: 0;
    }

    .control-row i {
      color: var(--red);
      font-size: 27px;
    }

    .control-row .t {
      font-size: 14.5px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 2px;
    }

    .control-row .d {
      font-size: 12.5px;
      color: var(--ink-soft);
      margin-bottom: 0;
    }

    /* FAQ */
    .faq-item {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 16px;
      margin-bottom: 12px;
      overflow: hidden;
      transition: box-shadow .25s ease, border-color .25s ease;
    }

    .faq-item:hover {
      box-shadow: 0 10px 22px rgba(60, 30, 20, .06);
    }

    .faq-q {
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      font-weight: 700;
      font-size: 15px;
      color: var(--ink);
    }

    .faq-q .chev {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--chip-pink);
      color: var(--red);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      transition: transform .3s var(--ease), background .3s ease, color .3s ease;
      flex: 0 0 30px;
    }

    .faq-q[aria-expanded="true"] .chev {
      background: var(--red);
      color: #fff;
      transform: rotate(180deg);
    }

    .faq-a {
      padding: 0 24px 22px;
      font-size: 14px;
      color: var(--ink-soft);
    }

    .faq-a a {
      color: var(--red);
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .faq-a ul,
    .faq-a ol {
      margin: 10px 0 0;
      padding-left: 20px;
    }

    .faq-a li {
      margin-bottom: 8px;
    }

    .faq-a li:last-child {
      margin-bottom: 0;
    }

    .faq-a li strong {
      color: var(--ink);
    }

    /* Tabs de categorías FAQ */
    .faq-tabs-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      margin-bottom: 28px;
    }

    .faq-tabs {
      display: flex;
      gap: 10px;
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      touch-action: pan-x;
      overscroll-behavior-x: contain;
      padding: 12px 0px 24px 0px;
      margin: -12px 0px 0 0px;
      scrollbar-width: none;
      width: 98%;
      user-select: none;
      -webkit-user-select: none;
    }

    .faq-tabs::-webkit-scrollbar {
      display: none;
    }

    .faq-tabs.is-dragging {
      cursor: grabbing;
    }

    /* Flechas de navegación para desktop */
    .faq-nav-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      min-width: 38px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid var(--line);
      color: var(--ink);
      font-size: 15px;
      cursor: pointer;
      z-index: 3;
      box-shadow: 0 4px 12px rgba(1, 1, 66, 0.12);
      transition: background .2s ease, border-color .2s ease, color .2s ease, opacity .2s ease, transform .2s var(--ease);
      position: absolute;
      top: calc(50% - 6px);
      transform: translateY(-50%);
    }

    .faq-nav-prev {
      left: -40px;
    }

    .faq-nav-next {
      right: -20px;
    }

    .faq-nav-btn:hover:not(:disabled) {
      background: var(--red);
      border-color: var(--red);
      color: #fff;
      transform: translateY(-50%) scale(1.08);
      box-shadow: 0 6px 16px rgba(255, 14, 0, 0.28);
    }

    .faq-nav-btn:disabled {
    opacity: 0.3 !important;
    pointer-events: none;
    cursor: not-allowed;
    filter: brightness(0.8);
    }

    @media(max-width: 991px) {
      .faq-nav-btn {
        display: none !important;
      }

      .faq-tabs-wrapper {
        margin-left: 0;
        margin-right: 0;
      }

      .faq-tabs {
        margin-left: 0;
        margin-right: 0;
        padding-left: 4px;
        padding-right: 4px;
      }
    }

    .faq-tab {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 20px;
      border-radius: 50px;
      border: 1px solid var(--line);
      background: #fff;
      font-size: 13.5px;
      font-weight: 700;
      color: var(--ink-soft);
      white-space: nowrap;
      cursor: pointer;
      outline: none;
      transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
    }

    .faq-tab:focus {
      outline: none;
    }

    .faq-tab:focus-visible {
      outline: 2px solid var(--red);
      outline-offset: 2px;
    }

    .faq-tab i {
      font-size: 14px;
    }

    .faq-tab:hover {
      border-color: var(--red);
      color: var(--red);
    }

    .faq-tab.is-active {
      background: var(--ink);
      border-color: var(--ink);
      color: #fff;
      box-shadow: 0 10px 20px rgba(1, 1, 66, .28);
    }

    .faq-panel {
      display: none;
    }

    .faq-panel.is-active {
      display: block;
    }

    @media (prefers-reduced-motion: no-preference) {
      .faq-panel.is-active {
        animation: faqPanelIn .35s var(--ease);
      }
    }

    @keyframes faqPanelIn {
      from {
        opacity: 0;
        transform: translateY(6px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Final CTA */
    .final-cta {
      position: relative;
      background: linear-gradient(135deg, #FF5A45, var(--red) 55%, var(--red-dark));
      border-radius: 28px;
      padding: 70px 40px;
      text-align: center;
      color: #fff;
      overflow: hidden;
    }

    .final-cta::before,
    .final-cta::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, .10);
    }

    .final-cta::before {
      width: 220px;
      height: 220px;
      top: -90px;
      left: -60px;
    }

    .final-cta::after {
      width: 160px;
      height: 160px;
      bottom: -70px;
      right: 4%;
    }

    @media (prefers-reduced-motion: no-preference) {
      .final-cta::before {
        animation: blobDrift 10s ease-in-out infinite alternate;
      }

      .final-cta::after {
        animation: blobDrift 13s ease-in-out infinite alternate-reverse;
      }
    }

    .final-cta>* {
      position: relative;
      z-index: 1;
    }

    .final-cta h2 {
      color: #fff;
      font-size: 32px;
      margin-bottom: 14px;
    }

    .final-cta p {
      color: rgba(255, 255, 255, 0.9);
      max-width: 480px;
      margin: 0 auto 30px;
    }

    /* Responsive */
    @media(max-width:991px) {
      .hero {
        padding: 56px 0 44px;
        text-align: center;
      }

      .hero p.lead {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-cta {
        justify-content: center;
      }

      .hero-trust {
        justify-content: center;
      }

      .hero-visual {
        margin-bottom: 28px;
      }

      .cat-inline-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .control-panel {
        padding: 40px 26px;
      }

      .control-panel .text-col {
        margin-bottom: 32px;
      }

      .topbar-nav {}
    }

    @media(max-width:575px) {
      .control-panel-mark {
        width: 220px;
        height: 220px;
        opacity: .16;
      }

      .hero h1 {
        font-size: 34px;
      }

      .hero-icon-wrap {
        width: 380px;
      }

      .cat-inline-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 26px;
      }

      .cat-inline-grid .cat-inline-item:last-child {
        grid-column: 1 / -1;
      }

      .section {
        padding: 56px 0 56px;
      }

      .dcard-red-num {
        font-size: 40px;
        gap: 6px;
      }

      .dcard-red-pct-stack .pct-sign {
        font-size: 18px;
      }

      .dcard-red-pct-stack .pct-label {
        font-size: 10px;
      }

      .dcard-red-text {
        max-width: 100%;
        font-size: 15.5px;
      }

      .final-cta {
        padding: 48px 20px;
      }

      .badge-float {
        font-size: 11.5px;
        padding: 8px 12px;
      }
    }

    /* ===== Preloader ===== */
    html.is-loading {
      overflow: hidden;
    }

    #preloader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: #FFFBF9;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity .5s ease, visibility .5s ease;
    }

    #preloader.is-hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .preloader-icon-wrap {
      position: relative;
      width: 230px;
    }

    .preloader-glow {
      position: absolute;
      inset: -46px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 14, 0, .20), rgba(255, 14, 0, 0) 70%);
    }

    @media (prefers-reduced-motion: no-preference) {
      .preloader-glow {
        animation: glowPulse 1.8s ease-in-out infinite;
      }
    }

    .preloader-svg {
      width: 100%;
      height: auto;
      display: block;
      overflow: visible;
      transform-box: fill-box;
      transform-origin: center;
    }

    .preloader-outline {
      stroke-dasharray: 1000;
      stroke-dashoffset: 1000;
      filter: drop-shadow(0 4px 14px rgba(255, 14, 0, .3));
    }

    .preloader-fill {
      opacity: 0;
      transform-box: fill-box;
      transform-origin: center;
    }

    .preloader-text {
      opacity: 0;
      transform: translateY(14px);
      transform-box: fill-box;
      transform-origin: center;
    }

    @media (prefers-reduced-motion: no-preference) {
      .preloader-outline {
        animation: drawIcon 1.1s var(--ease) .1s forwards, hideOutline .3s linear 1.3s forwards;
      }

      .preloader-fill {
        animation: fillIcon .6s ease 1s forwards;
      }

      .preloader-text {
        animation: preloaderTextIn .6s var(--ease) 1.55s forwards;
      }

      .preloader-svg {
        animation: preloaderPulse 1.9s ease-in-out 2.3s infinite;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .preloader-outline {
        opacity: 0;
      }

      .preloader-fill {
        opacity: 1;
      }

      .preloader-text {
        opacity: 1;
        transform: none;
      }
    }

    @keyframes preloaderTextIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes preloaderPulse {

      0%,
      100% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.035);
      }
    }

    .enhanced-text {
      margin-top: 0 !important;
    }