
      
    /* ─────────────────────────────────────────
       DS TOKENS — Puppis CO/AR
    ───────────────────────────────────────── */
    :root {
      /* Colors */
     
      --blue:        #2B5EA7;
      --blue-dark:   #2B5EA7;
      --blue-hover:  #234e8c;
      --blue-tint:   #EAF0FA;
      --yellow:      #fada75;
      --yellow-dark: #D9AE0E;
      --yellow-tint: #FEF8DC;
      --gray-bg:     #F2F3F5;
      --gray-line:   #E5E7EB;
      --gray-soft:   #9CA3AF;
      --text:        #1A1A2E;
      --text-soft:   #6B7280;
      --white:       #FFFFFF;

      /* Typography */
      --font: 'Nunito', sans-serif;

      /* Border Radius */
      --r-sm:   6px;
      --r-md:   10px;
      --r-lg:   16px;
      --r-xl:   24px;
      --r-full: 9999px;

      /* Shadows */
      --shadow-sm: 0 1px 4px rgba(0,0,0,.07);
      --shadow-md: 0 4px 16px rgba(0,0,0,.10);
      --shadow-lg: 0 8px 32px rgba(0,0,0,.13);

      /* Spacing */
      --px: 16px;
    }

    /* ── RESET ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font); font-size: 15px; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    button { font-family: var(--font); cursor: pointer; }

    /* ─────────────────────────────────────────
       DS BUTTONS
    ───────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: var(--font);
      font-weight: 800;
      font-size: 13px;
      letter-spacing: .06em;
      text-transform: uppercase;
      border-radius: var(--r-md);
      border: 2px solid transparent;
      padding: 10px 20px;
      transition: background .18s, border-color .18s, color .18s, transform .1s;
      cursor: pointer;
      line-height: 1;
      white-space: nowrap;
    }
    .btn:active { transform: scale(.97); }

    /* Filled – Primary */
    .btn-primary   { background: var(--blue); color: var(--white); border-color: var(--blue); }
    .btn-primary:hover { background: var(--blue-hover); border-color: var(--blue-hover); }

    /* Filled – Confirmation (yellow) */
    .btn-confirm   { background: var(--yellow); color: var(--text); border-color: var(--yellow); }
    .btn-confirm:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }

    /* Outlined – Primary */
    .btn-outline   { background: transparent; color: var(--blue); border-color: var(--blue); }
    .btn-outline:hover { background: var(--blue-tint); }

    /* Sizes */
    .btn-lg { font-size: 14px; padding: 14px 28px; }
    .btn-sm { font-size: 11px; padding: 8px 14px; }

    /* Full width */
    .btn-full { width: 100%; }

    /* ─────────────────────────────────────────
       PROMO BAR
    ───────────────────────────────────────── */
    .promo-bar {
      background: var(--blue-dark);
      color: rgba(255,255,255,.85);
      font-size: 11px;
      font-weight: 600;
      padding: 8px var(--px);
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scrollbar-width: none;
      white-space: nowrap;
      letter-spacing: .02em;
    }
    .promo-bar::-webkit-scrollbar { display: none; }
    .promo-chip {
      background: var(--yellow);
      color: var(--text);
      border-radius: var(--r-full);
      padding: 2px 8px;
      font-weight: 800;
      font-size: 10px;
      letter-spacing: .04em;
    }

    /* ─────────────────────────────────────────
       NAV
    ───────────────────────────────────────── */
    nav {
      background: var(--blue);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: var(--shadow-md);
    }
    .nav-main {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 var(--px);
      height: 56px;
      gap: 12px;
    }
    .nav-logo {
      font-size: 22px;
      font-weight: 900;
      color: var(--yellow);
      letter-spacing: -.5px;
      flex-shrink: 0;
    }
    .nav-logo span { color: rgba(255,255,255,.9); }
    .nav-right { display: flex; align-items: center; gap: 12px; }
    .nav-cart {
      background: var(--yellow);
      color: var(--text);
      border: none;
      border-radius: var(--r-md);
      padding: 8px 14px;
      font-weight: 800;
      font-size: 13px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .nav-menu-btn {
      background: rgba(255,255,255,.15);
      border: none;
      border-radius: var(--r-sm);
      color: var(--white);
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 4px;
    }
    .nav-menu-btn span {
      display: block;
      width: 18px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
    }

    /* Sub-nav */
    .nav-sub {
      display: flex;
      overflow-x: auto;
      scrollbar-width: none;
      border-top: 1px solid rgba(255,255,255,.12);
    }
    .nav-sub::-webkit-scrollbar { display: none; }
    .nav-sub a {
      color: rgba(255,255,255,.75);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .03em;
      padding: 10px 14px;
      white-space: nowrap;
      border-bottom: 2px solid transparent;
      transition: color .15s, border-color .15s;
    }
    .nav-sub a:hover { color: var(--white); }
    .nav-sub a.active { color: var(--yellow); border-bottom-color: var(--yellow); }

    /* ─────────────────────────────────────────
       HERO — Mobile-first
    ───────────────────────────────────────── */
    .hero {
      background: var(--blue);
      padding: 32px var(--px) 0;
      overflow: hidden;
      position: relative;
    }
    /* Wave blob decoration (DS pattern) */
    .hero::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      right: 0;
      height: 32px;
      background: var(--gray-bg);
      clip-path: ellipse(55% 100% at 50% 100%);
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,.15);
      color: var(--white);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      border-radius: var(--r-full);
      padding: 5px 12px;
      margin-bottom: 16px;
    }
    .hero h1 {
      font-size: 32px;
      font-weight: 900;
      color: var(--yellow);
      line-height: 1.05;
      letter-spacing: -.5px;
      margin-bottom: 12px;
    }
    .hero p {
      font-size: 14px;
      color: rgba(255,255,255,.85);
      line-height: 1.65;
      max-width: 320px;
      margin-bottom: 24px;
    }
    .hero-cta { margin-bottom: 28px; }
    .hero-img-wrap {
      display: flex;
      justify-content: center;
      margin: 0 -16px;
      position: relative;
      z-index: 1;
    }
    .hero-img-box {
      background: rgba(255,255,255,.1);
      border-radius: var(--r-xl) var(--r-xl) 0 0;
      width: 100%;
      max-width: 360px;
      min-height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 72px;
      position: relative;
      overflow: hidden;
    }
    /* Yellow blob inside hero image */
    .hero-img-box::before {
      content: '';
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 120px;
      height: 120px;
      background: var(--yellow);
      border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
      opacity: .35;
    }

    /* ─────────────────────────────────────────
       DELIVERY TABS
    ───────────────────────────────────────── */
    .tabs-section {
      background: var(--gray-bg);
      padding: 24px 0;
      /* max-width: 1000px; */
      /* margin: 0 auto; */
    }
    .tabs-title {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--text-soft);
      padding: 0 var(--px) 14px;
    }
    .tabs-scroll {
      display: flex;
      overflow-x: auto;
      scrollbar-width: none;
      padding: 0 var(--px) 0;
      gap: 8px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .tabs-scroll::-webkit-scrollbar { display: none; }
    .tab-pill {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      padding: 10px 14px 12px;
      border-radius: var(--r-lg) var(--r-lg) 0 0;
      cursor: pointer;
      min-width: 80px;
      background: transparent;
      border: none;
      font-family: var(--font);
      color: var(--text-soft);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .02em;
      text-align: center;
      transition: background .18s, color .18s;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .tab-pill:hover { color: var(--blue); background: rgba(255,255,255,.6); }
    .tab-pill.active { background: var(--white); color: var(--blue); box-shadow: 0 -2px 0 var(--blue) inset; }
    .tab-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--gray-line);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .tab-pill.active .tab-icon { background: var(--yellow); }
    .tab-icon svg {width: 60px;height: 60px;color: var(--blue);}

    /* ─────────────────────────────────────────
       CARDS SECTION
    ───────────────────────────────────────── */
    .cards-section {
      background: var(--gray-bg);
      padding: 0 var(--px) 32px;
    }
    .cards-stack { display: flex; flex-direction: column; gap: 12px; }

    /* DS Card */
    .card {
      background: var(--white);
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      border: 1px solid var(--gray-line);
      /* Compensa el header fijo de VTEX al hacer scroll desde los tabs.
         Ajustar si el header mide diferente. */
      scroll-margin-top: 40px;
    }

    .card-head {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 18px 16px 16px;
    }
    .card-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--yellow);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .card-icon svg {width: 60px;height: 60px;color: var(--blue-dark);}

    .card-title-wrap { flex: 1; min-width: 0; }
    .card-title {
      font-size: 16px;
      font-weight: 800;
      color: var(--blue-dark);
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 7px;
      margin-bottom: 3px;
    }
    .card-sub {
      font-size: 12px;
      color: var(--text-soft);
      font-weight: 500;
    }

    /* DS Badges */
    .badge {
      font-size: 9px;
      font-weight: 900;
      letter-spacing: .06em;
      text-transform: uppercase;
      border-radius: var(--r-full);
      padding: 3px 9px;
    }
    .badge-new  {background: var(--lt-color-gray-300);color: var(--blue);}
    .badge-rec  {background: var(--lt-color-gray-300);color: var(--blue);}
    .badge-free {background: var(--lt-color-gray-300);color: var(--blue);}

    /* Info rows — mobile: stacked list */
    .card-info {
      border-top: 1px solid var(--gray-line);
      padding: 0 16px;
    }
    .info-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid var(--gray-line);
    }
    .info-row:last-child { border-bottom: none; }
    .info-dot {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--blue-tint);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .info-dot svg { width: 13px; height: 13px; color: var(--blue); }
    .info-body { flex: 1; }
    .info-label {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--text-soft);
      margin-bottom: 2px;
    }
    .info-value {
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.35;
    }
    .info-value small {
      display: block;
      font-size: 11px;
      font-weight: 500;
      color: var(--text-soft);
      margin-top: 1px;
    }

    /* ── DS ACCORDION ── */
    .acc-trigger {
      width: 100%;
      background: none;
      border: none;
      border-top: 1px solid var(--gray-line);
      padding: 14px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-family: var(--font);
      font-size: 13px;
      font-weight: 700;
      color: var(--blue);
      cursor: pointer;
      text-align: left;
      transition: background .15s;
      gap: 8px;
    }
    .acc-trigger:hover { background: var(--blue-tint); }
    .acc-chevron {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      transition: transform .28s cubic-bezier(.4,0,.2,1);
      color: var(--blue);
    }
    .acc-trigger[aria-expanded="true"] .acc-chevron { transform: rotate(180deg); }

    .acc-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s cubic-bezier(.4,0,.2,1);
    }
    .acc-body.open { max-height: 700px; }
    .acc-content {
      padding: 16px;
      border-top: 1px solid var(--gray-line);
      background: var(--gray-bg);
      font-size: 13px;
      color: var(--text-soft);
      line-height: 1.7;
    }
    .acc-content h4 {
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 8px;
    }
    .acc-content h4 + h4 { margin-top: 14px; }
    .acc-content p { margin-bottom: 8px; }
    .acc-content ul { padding-left: 16px; }
    .acc-content ul li { margin-bottom: 4px; }
    .acc-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 8px;
      font-size: 12px;
    }
    .acc-table th {
      background: var(--blue-tint);
      color: var(--blue);
      font-weight: 800;
      font-size: 10px;
      letter-spacing: .04em;
      text-transform: uppercase;
      padding: 7px 10px;
      text-align: left;
      border: 1px solid var(--gray-line);
    }
    .acc-table td {
      padding: 7px 10px;
      border: 1px solid var(--gray-line);
      color: var(--text);
    }

    /* ─────────────────────────────────────────
       HOW IT WORKS — DS Info card style
    ───────────────────────────────────────── */
    .how-section { background: var(--white); padding: 40px var(--px); }
    .section-label {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 8px;
    }
    .section-title {
      font-size: 24px;
      font-weight: 900;
      color: var(--text);
      line-height: 1.15;
      margin-bottom: 6px;
    }
    .section-title em { color: var(--blue); font-style: normal; }
    .section-desc {
      font-size: 14px;
      color: var(--text-soft);
      line-height: 1.65;
      margin-bottom: 28px;
    }

    /* Wave decoration card (from DS) */
    .wave-card {
      background: var(--blue);
      border-radius: var(--r-xl);
      position: relative;
      overflow: hidden;
      min-height: 180px;
      margin-bottom: 28px;
      display: flex;
      align-items: flex-end;
      padding: 24px;
    }
    .wave-blob {
      position: absolute;
      bottom: -30px;
      right: -20px;
      width: 160px;
      height: 160px;
      background: var(--yellow);
      border-radius: 60% 40% 30% 70% / 50% 30% 70% 50%;
    }
    .wave-blob2 {
      position: absolute;
      top: -30px;
      right: 30px;
      width: 100px;
      height: 100px;
      background: var(--yellow);
      border-radius: 40% 60% 70% 30% / 60% 40% 50% 60%;
      opacity: .4;
    }
    .wave-text {
      position: relative;
      z-index: 1;
      color: var(--white);
      font-size: 22px;
      font-weight: 900;
      line-height: 1.15;
    }
    .wave-text strong { color: var(--yellow); }

    /* Steps */
    .steps { display: flex; flex-direction: column; gap: 16px; }
    .step {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }
    .step-num {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--yellow);
      color: var(--text);
      font-weight: 900;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .step-body h4 {
      font-size: 15px;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 3px;
    }
    .step-body p {
      font-size: 13px;
      color: var(--text-soft);
      line-height: 1.6;
    }
    .how-cta { margin-top: 28px; }

    /* ─────────────────────────────────────────
       PROMO CARDS (DS dark card pattern)
    ───────────────────────────────────────── */
    .promo-section { background: var(--gray-bg); padding: 40px var(--px); }
    .promo-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 20px;
    }
    .promo-card {
      background: var(--blue-dark);
      border-radius: var(--r-lg);
      padding: 18px 14px 16px;
      position: relative;
      overflow: hidden;
      color: var(--white);
    }
    .promo-card::after {
      content: '';
      position: absolute;
      bottom: -20px;
      right: -15px;
      width: 70px;
      height: 70px;
      background: var(--yellow);
      border-radius: 60% 40% 30% 70% / 50% 30% 70% 50%;
    }
    .promo-badge {
      background: var(--yellow);
      color: var(--text);
      font-size: 9px;
      font-weight: 900;
      letter-spacing: .04em;
      text-transform: uppercase;
      border-radius: var(--r-full);
      padding: 2px 7px;
      display: inline-block;
      margin-bottom: 8px;
    }
    .promo-card h3 {
      font-size: 16px;
      font-weight: 900;
      color: var(--white);
      margin-bottom: 4px;
      position: relative;
      z-index: 1;
    }
    .promo-card p {
      font-size: 11px;
      color: rgba(255,255,255,.7);
      margin-bottom: 12px;
      line-height: 1.5;
      position: relative;
      z-index: 1;
    }
    .promo-card .btn { position: relative; z-index: 1; font-size: 10px; padding: 7px 14px; }

    /* ─────────────────────────────────────────
       FAQ — DS style
    ───────────────────────────────────────── */
    .faq-section { background: var(--white); padding: 40px var(--px); }
    .faq-list { margin-top: 20px; }
    .faq-item {
      border-bottom: 1px solid var(--gray-line);
    }
    .faq-item:first-child { border-top: 1px solid var(--gray-line); }
    .faq-trigger {
      width: 100%;
      background: none;
      border: none;
      padding: 16px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      font-family: var(--font);
      font-size: 14px;
      font-weight: 700;
      color: var(--text);
      cursor: pointer;
      text-align: left;
      transition: color .15s;
    }
    .faq-trigger:hover { color: var(--blue); }
    .faq-trigger[aria-expanded="true"] { color: var(--blue); }
    .faq-chevron {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      transition: transform .28s cubic-bezier(.4,0,.2,1);
      color: var(--blue);
    }
    .faq-trigger[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
    .faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s cubic-bezier(.4,0,.2,1);
    }
    .faq-body.open { max-height: 400px; }
    .faq-body-inner {
      padding: 0 0 16px;
      font-size: 13px;
      color: var(--text-soft);
      line-height: 1.75;
    }

    /* ─────────────────────────────────────────
       FORM SECTION — DS blue card
    ───────────────────────────────────────── */
    .form-section {
      background: var(--blue);
      padding: 40px var(--px);
      position: relative;
      overflow: hidden;
    }
    .form-section::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -30px;
      width: 180px;
      height: 180px;
      background: var(--yellow);
      border-radius: 60% 40% 30% 70% / 50% 30% 70% 50%;
      opacity: .25;
    }
    .form-section::after {
      content: '';
      position: absolute;
      bottom: -50px;
      left: -20px;
      width: 140px;
      height: 140px;
      background: var(--yellow);
      border-radius: 40% 60% 70% 30% / 60% 40% 50% 60%;
      opacity: .15;
    }
    .form-inner { position: relative; z-index: 1; }
    .form-section .section-label { color: rgba(255,255,255,.7); }
    .form-section .section-title { color: var(--white); }
    .form-section .section-title em { color: var(--yellow); }
    .form-section .section-desc { color: rgba(255,255,255,.75); }

    /* DS Form fields */
    .field { margin-bottom: 14px; }
    .field label {
      display: block;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255,255,255,.8);
      margin-bottom: 5px;
    }
    .field input, .field select {
      width: 100%;
      background: rgba(255,255,255,.15);
      border: 1.5px solid rgba(255,255,255,.25);
      border-radius: var(--r-md);
      padding: 11px 14px;
      font-family: var(--font);
      font-size: 14px;
      color: var(--white);
      outline: none;
      transition: border-color .18s, background .18s;
    }
    .field input::placeholder { color: rgba(255,255,255,.45); }
    .field input:focus, .field select:focus {
      border-color: var(--yellow);
      background: rgba(255,255,255,.2);
    }
    .field select { color: rgba(255,255,255,.6); }
    .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .field-note {
      font-size: 11px;
      color: rgba(255,255,255,.5);
      margin-top: 10px;
      text-align: center;
      line-height: 1.55;
    }

    /* ─────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────── */
    footer {
      background: var(--blue-dark);
      color: rgba(255,255,255,.7);
      font-size: 13px;
    }
    .footer-top { padding: 36px var(--px) 28px; }
    .footer-logo {
      color: var(--yellow);
      font-size: 20px;
      font-weight: 900;
      margin-bottom: 10px;
    }
    .footer-desc {
      font-size: 12px;
      line-height: 1.6;
      max-width: 240px;
      color: rgba(255,255,255,.55);
      margin-bottom: 16px;
    }
    .footer-social {
      display: flex;
      gap: 8px;
      margin-bottom: 28px;
    }
    .footer-social a {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(255,255,255,.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      color: rgba(255,255,255,.7);
      transition: background .15s, color .15s;
    }
    .footer-social a:hover { background: var(--yellow); color: var(--text); }

    .footer-cols {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px 16px;
    }
    .footer-col h5 {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.9);
      margin-bottom: 10px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 7px; }
    .footer-col ul li a {
      font-size: 12px;
      color: rgba(255,255,255,.55);
      transition: color .15s;
    }
    .footer-col ul li a:hover { color: var(--yellow); }

    .footer-bottom {
      background: rgba(0,0,0,.25);
      padding: 14px var(--px);
      font-size: 11px;
      color: rgba(255,255,255,.35);
      text-align: center;
      line-height: 1.6;
    }
    .footer-bottom a { color: rgba(255,255,255,.45); }
    .footer-bottom a:hover { color: var(--yellow); }

    /* ─────────────────────────────────────────
       TABLET & DESKTOP (min-width: 640px+)
    ───────────────────────────────────────── */
    @media (min-width: 480px) {
      :root { --px: 24px; }
      .field-row { grid-template-columns: 1fr 1fr; }
    }

    @media (min-width: 640px) {
      :root { --px: 32px; }

      .hero { padding: 48px var(--px) 0; }
      .hero h1 { font-size: 44px; }
      .hero-img-box { min-height: 200px; }

      /* Tabs: show all without scroll on tablet */
      .tabs-scroll { flex-wrap: wrap; }
      .tab-pill { flex: 1; min-width: 80px; }

      /* Card info: 3 columns on tablet */
      .card-info { display: grid; grid-template-columns: repeat(3, 1fr); }
      .info-row {
        flex-direction: column;
        gap: 8px;
        border-bottom: none;
        border-right: 1px solid var(--gray-line);
        padding: 16px 14px;
      }
      .info-row:last-child { border-right: none; }

      .promo-grid { grid-template-columns: repeat(4, 1fr); }
      .footer-cols { grid-template-columns: repeat(4, 1fr); }
    }

    @media (min-width: 1024px) {
      :root { --px: 48px; }

      .hero {
        display: grid;
        grid-template-columns: 1fr 380px;
        align-items: end;
        padding: 60px var(--px) 0;
        gap: 40px;
      }
      .hero::after { display: none; }
      .hero h1 { font-size: 52px; }
      .hero p { max-width: 440px; font-size: 15px; }
      .hero-img-wrap { margin: 0; }
      .hero-img-box { border-radius: var(--r-xl) var(--r-xl) 0 0; min-height: 260px; }

      .cards-section { padding: 0 var(--px) 48px; }
      .cards-stack { max-width: 800px; margin: 0 auto; }

      .how-section { padding: 64px var(--px); }
      .how-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: center;
        max-width: 960px;
        margin: 0 auto;
      }
      .wave-card { min-height: 280px; font-size: 28px; }
      .section-title { font-size: 30px; }

      .faq-section { padding: 64px var(--px); }
      .faq-inner { max-width: 680px; margin: 0 auto; }

      .form-section { padding: 64px var(--px); }
      .form-inner { max-width: 480px; margin: 0 auto; }

      .footer-cols { grid-template-columns: repeat(5, 1fr); }
    }
