*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --dark:   #15394B;
      --orange: #EF8822;
      --light:  #F5F7F8;
      --white:  #FFFFFF;
      --text:   #1a1a2e;
      --muted:  #5a7080;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--light);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: var(--white);
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 40px;
      box-shadow: 0 2px 16px rgba(21,57,75,.12);
      border-bottom: 1px solid rgba(21,57,75,.08);
    }

    .logo-svg { display: flex; align-items: center; gap: 10px; text-decoration: none; }

    nav a.cta-nav {
      background: var(--orange);
      color: var(--white);
      padding: 10px 22px;
      border-radius: 8px;
      font-weight: 700;
      text-decoration: none;
      font-size: .9rem;
      transition: background .2s, transform .15s;
    }
    nav a.cta-nav:hover { background: #d6731a; transform: translateY(-1px); }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      background: linear-gradient(135deg, var(--dark) 55%, #1e5068 100%);
      display: flex; align-items: center; justify-content: center;
      padding: 120px 24px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(239,136,34,.12) 0%, transparent 70%);
      pointer-events: none;
    }

    /* floating food emojis */
    .floater {
      position: absolute;
      font-size: 2.4rem;
      opacity: .18;
      animation: float linear infinite;
      user-select: none; pointer-events: none;
    }

    @keyframes float {
      0%   { transform: translateY(110vh) rotate(0deg); opacity: 0; }
      10%  { opacity: .18; }
      90%  { opacity: .18; }
      100% { transform: translateY(-20vh) rotate(360deg); opacity: 0; }
    }

    .hero-inner { max-width: 820px; position: relative; z-index: 1; }

    .badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(239,136,34,.18);
      border: 1px solid rgba(239,136,34,.4);
      color: var(--orange);
      padding: 6px 16px; border-radius: 999px;
      font-size: .82rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 1px;
      margin-bottom: 28px;
    }

    .hero h1 {
      font-size: clamp(2.2rem, 6vw, 4rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .hero h1 em { color: var(--orange); font-style: normal; }

    .hero p {
      font-size: clamp(1rem, 2.5vw, 1.25rem);
      color: rgba(255,255,255,.75);
      max-width: 600px;
      margin: 0 auto 40px;
      line-height: 1.7;
    }

    .hero-cta {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--orange);
      color: var(--white);
      padding: 16px 36px;
      border-radius: 10px;
      font-size: 1.05rem;
      font-weight: 700;
      text-decoration: none;
      transition: transform .2s, box-shadow .2s;
      box-shadow: 0 6px 24px rgba(239,136,34,.4);
    }
    .hero-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(239,136,34,.5); }

    .scroll-hint {
      position: absolute; bottom: 32px; left: 50%;
      transform: translateX(-50%);
      color: rgba(255,255,255,.4);
      font-size: .8rem; letter-spacing: 1px;
      text-transform: uppercase;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
    }
    .scroll-hint .arrow { animation: bounce 1.6s infinite; }
    @keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

    /* ─── SECTION HEADER ─── */
    .section { padding: 90px 24px; }
    .section-header { text-align: center; margin-bottom: 60px; }
    .section-header h2 {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 900;
      color: var(--dark);
      margin-bottom: 12px;
    }
    .section-header h2 span { color: var(--orange); }
    .section-header p {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 560px; margin: 0 auto;
      line-height: 1.7;
    }

    /* ─── COMPARISON CARDS ─── */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 32px;
      max-width: 1080px;
      margin: 0 auto;
    }

    .card {
      background: var(--white);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 30px rgba(0,0,0,.08);
      transition: transform .3s, box-shadow .3s;
      position: relative;
    }
    .card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0,0,0,.14); }

    .card-badge {
      position: absolute; top: 20px; right: 20px;
      background: var(--orange);
      color: var(--white);
      font-size: .72rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 1px;
      padding: 4px 12px; border-radius: 999px;
    }
    .card:first-child .card-badge { background: var(--dark); }

    .card-header {
      background: var(--dark);
      padding: 36px 32px 28px;
      text-align: center;
    }
    .card:last-child .card-header { background: linear-gradient(135deg, #EF8822, #d6731a); }

    .food-emoji {
      font-size: 3.5rem;
      display: block;
      margin-bottom: 16px;
      animation: wobble 3s ease-in-out infinite;
    }
    .card:last-child .food-emoji { animation-delay: .5s; }
    @keyframes wobble {
      0%,100% { transform: rotate(-5deg) scale(1); }
      50%      { transform: rotate(5deg) scale(1.08); }
    }

    .card-header h3 {
      font-size: 1.4rem;
      font-weight: 900;
      color: var(--white);
      margin-bottom: 6px;
    }
    .card-header .tagline {
      font-size: .9rem;
      color: rgba(255,255,255,.7);
    }

    /* PRICE COMPARISON */
    .price-compare {
      padding: 28px 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      border-bottom: 2px dashed #eef0f2;
    }

    .price-box {
      text-align: center;
      flex: 1;
    }
    .price-box .label {
      font-size: .72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--muted);
      margin-bottom: 4px;
    }
    .price-box .amount {
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--dark);
    }
    .price-box .amount.food { color: var(--orange); font-size: 2rem; }
    .price-box .sub {
      font-size: .75rem;
      color: var(--muted);
      margin-top: 2px;
    }

    .equals-sign {
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--orange);
      flex-shrink: 0;
    }

    /* VISUAL METER */
    .meter-wrap {
      padding: 20px 32px 24px;
      border-bottom: 2px dashed #eef0f2;
    }
    .meter-wrap .meter-label {
      font-size: .78rem;
      font-weight: 700;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 10px;
      display: flex; justify-content: space-between;
    }
    .meter-bar {
      height: 10px;
      background: #e8ecef;
      border-radius: 999px;
      overflow: hidden;
    }
    .meter-fill {
      height: 100%;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--orange), #f5a042);
      width: 0;
      transition: width 1.4s cubic-bezier(.22,1,.36,1);
    }
    .meter-fill.dark { background: linear-gradient(90deg, var(--dark), #2a6a8a); }

    /* FOOD COUNTER */
    .food-counter {
      padding: 20px 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      flex-wrap: wrap;
      border-bottom: 2px dashed #eef0f2;
      min-height: 70px;
    }
    .food-icon {
      font-size: 1.8rem;
      line-height: 1;
      opacity: 0;
      transform: scale(0);
      transition: all .3s;
      display: inline-flex; align-items: center;
    }
    .food-icon.visible { opacity: 1; transform: scale(1); }

    /* FEATURES */
    .features-list {
      padding: 24px 32px 32px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .feature-item {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: .9rem;
      color: var(--text);
      line-height: 1.4;
    }
    .feature-icon {
      flex-shrink: 0;
      width: 22px; height: 22px;
      background: rgba(239,136,34,.12);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: .75rem;
      color: var(--orange);
      margin-top: 1px;
    }
    .card:first-child .feature-icon {
      background: rgba(21,57,75,.1);
      color: var(--dark);
    }
    .feature-item strong { color: var(--dark); }

    /* CARD CTA */
    .card-cta {
      display: block;
      text-align: center;
      background: var(--dark);
      color: var(--white);
      padding: 16px;
      font-weight: 700;
      font-size: .95rem;
      text-decoration: none;
      transition: background .2s;
      letter-spacing: .3px;
    }
    .card:last-child .card-cta { background: var(--orange); }
    .card-cta:hover { filter: brightness(1.1); }

    /* ─── "WHY SO CHEAP" SECTION ─── */
    .why-section {
      background: var(--dark);
      padding: 80px 24px;
      text-align: center;
    }
    .why-section h2 {
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 900;
      color: var(--white);
      margin-bottom: 16px;
    }
    .why-section h2 span { color: var(--orange); }
    .why-section p {
      color: rgba(255,255,255,.65);
      max-width: 560px;
      margin: 0 auto 48px;
      font-size: 1.05rem;
      line-height: 1.7;
    }

    .pillars {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      max-width: 900px;
      margin: 0 auto;
    }
    .pillar {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 14px;
      padding: 28px 24px;
      width: 200px;
      transition: border-color .3s, background .3s;
    }
    .pillar:hover {
      background: rgba(239,136,34,.1);
      border-color: rgba(239,136,34,.4);
    }
    .pillar .icon { font-size: 2rem; margin-bottom: 12px; }
    .pillar h4 { color: var(--white); font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
    .pillar p { color: rgba(255,255,255,.5); font-size: .8rem; line-height: 1.5; }

    /* ─── TICKER ─── */
    .ticker-wrap {
      background: var(--orange);
      overflow: hidden;
      padding: 14px 0;
      white-space: nowrap;
    }
    .ticker-inner {
      display: inline-flex;
      gap: 40px;
      animation: ticker 22s linear infinite;
    }
    .ticker-item {
      font-size: .9rem;
      font-weight: 700;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: .5px;
      flex-shrink: 0;
    }
    @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ─── TOGGLE (annual / monthly) ─── */
    .toggle-section {
      background: #eef1f3;
      padding: 60px 24px;
      text-align: center;
    }
    .toggle-section h2 {
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 900;
      color: var(--dark);
      margin-bottom: 8px;
    }
    .toggle-section p { color: var(--muted); margin-bottom: 32px; }

    .toggle-btn-group {
      display: inline-flex;
      background: var(--white);
      border-radius: 12px;
      padding: 4px;
      box-shadow: 0 2px 12px rgba(0,0,0,.08);
      margin-bottom: 36px;
      gap: 4px;
    }
    .toggle-btn {
      padding: 12px 28px;
      border: none;
      border-radius: 9px;
      font-size: .95rem;
      font-weight: 700;
      cursor: pointer;
      transition: all .25s;
      background: transparent;
      color: var(--muted);
    }
    .toggle-btn.active {
      background: var(--dark);
      color: var(--white);
      box-shadow: 0 2px 8px rgba(21,57,75,.3);
    }

    .price-display {
      display: none;
      max-width: 680px;
      margin: 0 auto;
    }
    .price-display.active { display: block; }

    .price-big {
      font-size: clamp(3rem, 8vw, 5.5rem);
      font-weight: 900;
      color: var(--dark);
      line-height: 1;
    }
    .price-big sup { font-size: 40%; vertical-align: top; margin-top: .4em; }
    .price-big .period { font-size: 30%; color: var(--muted); font-weight: 600; }

    .price-equiv {
      margin-top: 12px;
      font-size: 1.1rem;
      color: var(--muted);
    }
    .price-equiv strong { color: var(--orange); }

    /* ─── INCLUDES ─── */
    .includes-section {
      padding: 80px 24px;
      text-align: center;
    }
    .includes-section h2 {
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 900;
      color: var(--dark);
      margin-bottom: 48px;
    }
    .includes-section h2 span { color: var(--orange); }

    .includes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      max-width: 900px;
      margin: 0 auto;
    }
    .include-card {
      background: var(--white);
      border-radius: 16px;
      padding: 28px 20px;
      box-shadow: 0 2px 16px rgba(0,0,0,.06);
      border-top: 4px solid var(--orange);
      transition: transform .25s;
    }
    .include-card:hover { transform: translateY(-4px); }
    .include-card .icon { font-size: 2.2rem; margin-bottom: 14px; }
    .include-card h4 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
    .include-card p { font-size: .8rem; color: var(--muted); line-height: 1.5; }

    /* ─── CTA FINAL ─── */
    .cta-section {
      padding: 90px 24px;
      background: linear-gradient(135deg, var(--dark), #1e5068);
      text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(239,136,34,.15), transparent 70%);
    }
    .cta-section h2 {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 900;
      color: var(--white);
      margin-bottom: 16px;
      position: relative;
    }
    .cta-section h2 span { color: var(--orange); }
    .cta-section p {
      color: rgba(255,255,255,.7);
      max-width: 500px;
      margin: 0 auto 40px;
      font-size: 1.05rem;
      line-height: 1.7;
      position: relative;
    }
    .cta-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      position: relative;
    }
    .btn-wa {
      display: inline-flex; align-items: center; gap: 10px;
      background: #25D366;
      color: var(--white);
      padding: 16px 32px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      transition: transform .2s, box-shadow .2s;
      box-shadow: 0 4px 20px rgba(37,211,102,.35);
    }
    .btn-wa:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,.45); }
    .btn-mail {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,.1);
      border: 1.5px solid rgba(255,255,255,.3);
      color: var(--white);
      padding: 16px 32px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      transition: background .2s;
    }
    .btn-mail:hover { background: rgba(255,255,255,.18); }

    /* ─── FOOTER ─── */
    footer {
      background: #0d2530;
      padding: 28px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    footer .logo-text { font-size: 1.2rem; }
    footer p { color: rgba(255,255,255,.35); font-size: .82rem; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 600px) {
      nav { padding: 14px 20px; }
      .price-compare { flex-direction: column; gap: 8px; }
      .equals-sign { transform: rotate(90deg); }
      .pillar { width: 140px; }
    }

    /* ─── STEPS SECTION ─── */
    .steps-section {
      padding: 90px 24px;
      background: var(--white);
    }
    .steps-section .section-header { margin-bottom: 64px; }

    .steps-track {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 0;
      max-width: 980px;
      margin: 0 auto;
      position: relative;
    }

    /* connector line between steps */
    .steps-track::before {
      content: '';
      position: absolute;
      top: 36px;
      left: calc(12.5% + 8px);
      right: calc(12.5% + 8px);
      height: 3px;
      background: linear-gradient(90deg, var(--dark), var(--orange));
      z-index: 0;
    }

    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 16px 0;
      position: relative;
      z-index: 1;
    }

    .step-bubble {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: var(--white);
      border: 3px solid var(--dark);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 20px;
      position: relative;
      box-shadow: 0 4px 16px rgba(21,57,75,.12);
      transition: transform .3s, box-shadow .3s, border-color .3s;
      flex-shrink: 0;
    }
    .step:hover .step-bubble {
      transform: scale(1.1);
      box-shadow: 0 8px 28px rgba(21,57,75,.18);
      border-color: var(--orange);
    }

    .step-num {
      position: absolute;
      top: -6px; right: -6px;
      width: 22px; height: 22px;
      background: var(--orange);
      border-radius: 50%;
      font-size: .65rem;
      font-weight: 900;
      color: var(--white);
      display: flex; align-items: center; justify-content: center;
      border: 2px solid var(--white);
    }

    .step h4 {
      font-size: 1rem;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 8px;
      line-height: 1.3;
    }
    .step p {
      font-size: .82rem;
      color: var(--muted);
      line-height: 1.6;
      max-width: 180px;
    }

    @media (max-width: 700px) {
      .steps-track { grid-template-columns: 1fr 1fr; gap: 40px 0; }
      .steps-track::before { display: none; }
    }
    @media (max-width: 420px) {
      .steps-track { grid-template-columns: 1fr; gap: 36px; }
    }

    /* ─── ALFAJOR SVG ─── */
    .alfajores-row {
      display: flex; align-items: center; justify-content: center;
      gap: 10px; margin-bottom: 16px;
      animation: wobble 3s ease-in-out infinite;
    }
    .alfajor-svg { display: block; flex-shrink: 0; }

    /* ─── ANIMATE ON SCROLL ─── */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .6s, transform .6s;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }