:root{
    --orange:#FF7A2E;
    --orange-dark:#E85D04;
    --cream:#FDF1E7;
    --cream-2:#FFF8F2;
    --green:#2ECC71;
    --green-dark:#27AE60;
    --blue:#3B6FED;
    --blue-bg:#E8EDFE;
    --text-dark:#2b2b2b;
    --text-gray:#6b6b6b;
    --white:#ffffff;
    --card-shadow:0 4px 16px rgba(0,0,0,0.06);
    --radius:16px;
  }
  *{box-sizing:border-box;margin:0;padding:0;}
  body{
    font-family:'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
    background:var(--cream-2);
    color:var(--text-dark);
    line-height:1.5;
  }
  .container{max-width:480px;width:100%;margin:0 auto;background:var(--cream-2);}
  a{text-decoration:none;}
  img.placeholder{width:100%;display:block;}

  /* Placeholder image box */
  .img-placeholder{
    width:100%;
    background:repeating-linear-gradient(45deg,#eee,#eee 10px,#f7f7f7 10px,#f7f7f7 20px);
    border:2px dashed #ccc;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#999;
    font-weight:600;
    font-size:15px;
    text-align:center;
    padding:20px;
  }

  /* Top banner */
  .top-banner{
    background:linear-gradient(90deg,var(--orange-dark),var(--orange));
    color:#fff;
    text-align:center;
    font-size:12px;
    font-weight:700;
    letter-spacing:0.5px;
    padding:10px 14px;
  }

  /* Hero section */
  .hero{
    background:var(--cream);
    padding:28px 22px 20px;
    text-align:center;
  }
  .badge{
    display:inline-block;
    background:#FDE0C4;
    color:var(--orange-dark);
    font-size:13px;
    font-weight:600;
    padding:6px 16px;
    border-radius:20px;
    margin-bottom:16px;
  }
  .hero h1{
    font-size:24px;
    font-weight:800;
    line-height:1.3;
    margin-bottom:14px;
  }
  .hero h1 .highlight{color:var(--orange);}
  .hero p{
    color:var(--text-gray);
    font-size:14.5px;
    padding:0 6px;
    margin-bottom:20px;
  }
  .hero-image{margin-top:10px;}
  .hero-image .img-placeholder{height:280px;}

  /* Checklist section */
  .checklist{
    background:var(--cream);
    padding:24px 22px;
  }
  .check-item{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14.5px;
    font-weight:500;
    margin-bottom:14px;
  }
  .check-item .dot{
    min-width:20px;height:20px;border-radius:50%;
    background:var(--green);
    color:#fff;
    display:flex;align-items:center;justify-content:center;
    font-size:12px;font-weight:700;
  }
  .cta-btn{
    display:block;
    width:100%;
    background:var(--green);
    color:#fff;
    text-align:center;
    font-weight:800;
    font-size:15px;
    padding:16px;
    border-radius:12px;
    border:none;
    margin:18px 0 10px;
    cursor:pointer;
    box-shadow:0 6px 14px rgba(46,204,113,0.35);
  }
  .cta-btn.pulse{
    animation:ctaPulse 1.6s ease-in-out infinite;
  }
  @keyframes ctaPulse{
    0%,100%{
      transform:scale(1);
      box-shadow:0 6px 14px rgba(46,204,113,0.35);
    }
    50%{
      transform:scale(1.035);
      box-shadow:0 6px 20px rgba(46,204,113,0.55);
    }
  }
  .promo-note{
    text-align:center;color:var(--orange-dark);font-weight:600;font-size:13px;margin-bottom:8px;
  }
  .sub-notes{
    display:flex;justify-content:center;gap:18px;font-size:12.5px;color:var(--text-gray);flex-wrap:wrap;
  }

  /* Section titles */
  .section{padding:32px 22px;}
  .section.alt{background:var(--white);}
  .section-title{
    font-size:21px;
    font-weight:800;
    text-align:center;
    margin-bottom:6px;
  }
  .section-title .highlight{color:var(--orange);}
  .section-sub{
    text-align:center;
    color:var(--text-gray);
    font-size:14px;
    margin-bottom:24px;
  }

  /* Grid cards (2 col icon cards) */
  .grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
  }
  .icon-card{
    background:var(--white);
    border-radius:14px;
    box-shadow:var(--card-shadow);
    padding:20px 12px;
    text-align:center;
  }
  .icon-card .icon-circle{
    width:46px;height:46px;
    border-radius:50%;
    background:#FDE4D2;
    display:flex;align-items:center;justify-content:center;
    margin:0 auto 10px;
    font-size:20px;
  }
  .icon-card p{font-size:13.5px;font-weight:600;color:var(--text-dark);}

  /* folder grid (yellow) */
  .grid-2.folders .icon-card{
    background:#FFF6E0;
    box-shadow:none;
    border:1px solid #FBE7B5;
  }
  .grid-2.folders .icon-card .icon-circle{background:transparent;font-size:26px;}

  /* Pain point section */
  .pain{
    background:var(--cream);
    text-align:center;
    padding:32px 22px;
  }
  .pain .emoji{font-size:34px;margin-bottom:12px;}
  .pain h2{font-size:22px;font-weight:800;line-height:1.35;margin-bottom:14px;}
  .pain h2 .highlight{color:var(--orange);}
  .pain p{color:var(--text-gray);font-size:14.5px;margin-bottom:14px;}
  .pain-box{
    background:var(--white);
    border-radius:14px;
    box-shadow:var(--card-shadow);
    padding:20px;
    margin-top:16px;
  }
  .pain-box .title-line{
    font-weight:800;font-size:17px;color:var(--orange);
  }

  /* solution image + text */
  .solution-img .img-placeholder{height:260px;margin-bottom:22px;}

  .benefit-list{margin-top:20px;}
  .benefit-card{
    background:var(--white);
    box-shadow:var(--card-shadow);
    border-radius:14px;
    padding:18px;
    text-align:center;
    margin-bottom:14px;
  }
  .benefit-card .icon-circle{
    width:44px;height:44px;border-radius:50%;
    background:#DFF7E7;
    display:flex;align-items:center;justify-content:center;
    margin:0 auto 10px;font-size:20px;
  }
  .benefit-card h3{font-size:15px;font-weight:700;margin-bottom:4px;}
  .benefit-card span{font-size:13px;color:var(--text-gray);}

  /* checklist white cards */
  .why-list{margin-top:6px;}
  .why-item{
    display:flex;align-items:center;gap:12px;
    background:var(--white);
    box-shadow:var(--card-shadow);
    border-radius:14px;
    padding:16px 18px;
    margin-bottom:12px;
    font-size:14.5px;
    font-weight:500;
  }
  .why-item .dot{
    min-width:22px;height:22px;border-radius:50%;
    background:var(--green);color:#fff;
    display:flex;align-items:center;justify-content:center;font-size:13px;
  }

  /* bonus cards */
  .bonus-title{
    text-align:center;
    padding:32px 22px 6px;
  }
  .bonus-title .ribbon{font-size:13px;color:var(--orange-dark);font-weight:700;margin-bottom:8px;}
  .bonus-title h2{font-size:20px;font-weight:800;}

  .bonus-card{
    background:var(--white);
    border:2px dashed var(--orange);
    border-radius:16px;
    padding:16px;
    margin:0 22px 22px;
  }
  .bonus-card .img-placeholder{height:auto;width:100%;margin-bottom:14px;border-radius:12px;}
  .bonus-card .bonus-tag{
    display:inline-block;
    background:#FFEFE2;
    color:var(--orange-dark);
    font-size:11px;
    font-weight:700;
    padding:4px 10px;
    border-radius:8px;
    margin-bottom:8px;
  }
  .bonus-card h3{font-size:16px;font-weight:800;margin-bottom:6px;}
  .bonus-card p{font-size:13.5px;color:var(--text-gray);}

  /* testimonials */
  .testimonial-title{text-align:center;padding:32px 22px 6px;}
  .testimonial-title h2{font-size:21px;font-weight:800;}
  .testimonial-title h2 .highlight{color:var(--orange);}
  .testimonial-title p{color:var(--text-gray);font-size:13.5px;margin-top:6px;}

  .testimonial-card{
    background:var(--white);
    box-shadow:var(--card-shadow);
    border-radius:14px;
    padding:18px;
    margin:0 22px 16px;
  }
  .stars{color:#FFC107;font-size:14px;margin-bottom:8px;}
  .testimonial-card p{font-size:14px;color:var(--text-dark);font-style:italic;margin-bottom:12px;}
  .author{display:flex;align-items:center;gap:10px;}
  .author .avatar{
    width:36px;height:36px;border-radius:50%;
    background:#eee;
    display:flex;align-items:center;justify-content:center;
    font-size:11px;color:#999;
    flex-shrink:0;
  }
  .author .name{font-weight:700;color:var(--orange-dark);font-size:13.5px;}

  /* photo grid (real kids) */
  .photo-grid-wrap{padding:0 22px 32px;}
  .photo-grid-wrap .img-placeholder{height:auto;width:100%;}

  /* Pricing */
  .pricing-title{text-align:center;padding:32px 22px 20px;background:var(--cream);}
  .pricing-title .ribbon{
    display:inline-block;
    background:#FDE0C4;color:var(--orange-dark);
    font-size:12px;font-weight:700;padding:5px 14px;border-radius:16px;margin-bottom:14px;
  }
  .pricing-title h2{font-size:22px;font-weight:800;line-height:1.35;}
  .pricing-title h2 .highlight{color:var(--orange);}
  .pricing-title p{color:var(--text-gray);font-size:13.5px;margin-top:10px;}

  .plans{background:var(--cream);padding:0 22px 32px;}
  .plan-card{
    background:var(--white);
    border-radius:18px;
    box-shadow:var(--card-shadow);
    padding:22px;
    margin-bottom:20px;
    position:relative;
    text-align:center;
  }
  .plan-card.premium{
    border:2px solid var(--orange);
    background:linear-gradient(160deg,#FFF3E3 0%,#FFFFFF 55%);
  }
  .most-sold{
    position:absolute;top:-14px;left:50%;transform:translateX(-50%);
    background:linear-gradient(90deg,var(--orange-dark),var(--orange));
    color:#fff;
    font-size:11px;
    font-weight:800;
    padding:6px 16px;
    border-radius:20px;
    white-space:nowrap;
  }
  .plan-tag{
    display:inline-block;
    background:var(--blue-bg);color:var(--blue);
    font-size:12px;font-weight:700;
    padding:6px 16px;border-radius:20px;margin:10px 0 14px;
  }
  .plan-card.premium .plan-tag{background:#FFEFE2;color:var(--orange-dark);}
  .old-price{
    text-decoration:line-through;
    color:#aaa;font-size:14px;
  }
  .new-price{
    font-size:32px;font-weight:800;color:var(--blue);margin:4px 0 2px;
  }
  .plan-card.premium .new-price{color:var(--orange);}
  .price-note{font-size:12px;color:var(--text-gray);margin-bottom:14px;}
  .save-tag{
    display:inline-block;background:#DFF7E7;color:var(--green-dark);
    font-size:12px;font-weight:700;padding:5px 12px;border-radius:12px;margin-bottom:14px;
  }
  .plan-features{text-align:left;margin-bottom:14px;}
  .plan-features .feat{
    display:flex;align-items:center;gap:10px;
    font-size:13.5px;margin-bottom:11px;
  }
  .plan-features .feat.off{color:#bbb;}
  .plan-features .feat .mark{
    min-width:18px;height:18px;border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    font-size:11px;color:#fff;flex-shrink:0;
  }
  .plan-features .feat .mark.yes{background:var(--green);}
  .plan-features .feat .mark.no{background:#D9D9D9;color:#fff;}

  .bonus-included{
    text-align:left;
    border-top:1px solid #eee;
    padding-top:12px;margin-bottom:14px;
  }
  .bonus-included .label{font-size:12px;color:var(--text-gray);font-weight:700;margin-bottom:8px;}
  .bonus-included .row{
    display:flex;align-items:center;gap:8px;font-size:13px;margin-bottom:6px;
  }
  .bonus-included .row .pill{
    background:var(--orange);color:#fff;font-size:10.5px;font-weight:800;
    padding:2px 8px;border-radius:6px;
  }

  .plan-btn{
    display:block;width:100%;
    background:var(--white);
    border:1.5px solid var(--text-dark);
    color:var(--text-dark);
    font-weight:700;font-size:14.5px;
    padding:15px;border-radius:100px;
    margin-bottom:14px;cursor:pointer;
  }
  .plan-card.premium .plan-btn{
    background:var(--green);color:#fff;border:none;
    box-shadow:0 6px 14px rgba(46,204,113,0.35);
  }
  .plan-bottom-notes{
    display:flex;justify-content:center;align-items:center;
    gap:6px 14px;flex-wrap:wrap;
    font-size:11.5px;color:var(--text-gray);
  }

  /* Guarantee */
  .guarantee{
    background:var(--white);
    text-align:center;
    padding:36px 22px;
  }
  .guarantee .shield{
    width:56px;height:56px;border-radius:50%;
    background:#DFF7E7;
    display:flex;align-items:center;justify-content:center;
    margin:0 auto 16px;font-size:26px;
  }
  .guarantee h2{font-size:19px;font-weight:800;margin-bottom:4px;}
  .guarantee h2 span{color:var(--green-dark);}
  .guarantee p{color:var(--text-gray);font-size:14px;margin-bottom:18px;}
  .guarantee-notes{display:flex;justify-content:center;gap:16px;flex-wrap:wrap;font-size:12px;color:var(--text-gray);}

  /* FAQ */
  .faq{padding:32px 22px;background:var(--cream-2);}
  .faq-title{
    display:flex;align-items:center;justify-content:center;gap:8px;
    font-size:20px;font-weight:800;margin-bottom:20px;
  }
  .faq-title .highlight{color:var(--orange);}
  .faq-item{
    background:var(--white);
    border-radius:20px;
    box-shadow:var(--card-shadow);
    margin-bottom:12px;
    overflow:hidden;
    transition:border-radius 0.2s ease;
  }
  .faq-question{
    padding:16px 20px;
    display:flex;align-items:center;justify-content:space-between;
    gap:12px;
    font-size:14px;font-weight:700;
    cursor:pointer;
  }
  .faq-item .arrow{color:#999;font-size:14px;transition:transform 0.25s ease;flex-shrink:0;}
  .faq-item.open .arrow{transform:rotate(180deg);color:var(--orange);}
  .faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.28s ease, padding 0.28s ease;
    padding:0 20px;
  }
  .faq-answer p{
    font-size:13.5px;
    color:var(--text-gray);
    line-height:1.6;
    padding-bottom:0;
  }
  .faq-item.open .faq-answer{
    max-height:200px;
    padding:0 20px 18px;
  }

  /* Final CTA */
  .final-cta{
    background:var(--cream);
    text-align:center;
    padding:36px 22px;
  }
  .final-cta .rocket{font-size:30px;margin-bottom:10px;}
  .final-cta h2{font-size:22px;font-weight:800;line-height:1.35;margin-bottom:12px;}
  .final-cta h2 .highlight{color:var(--orange);}
  .final-cta p{color:var(--text-gray);font-size:14.5px;margin-bottom:18px;}
  .final-cta p b{color:var(--text-dark);}

  /* Footer CTA dark */
  .footer-cta{
    background:#1b1f2a;
    color:#fff;
    text-align:center;
    padding:40px 22px;
  }
  .footer-cta h2{font-size:19px;font-weight:800;margin-bottom:8px;}
  .footer-cta p{color:#c7c9d1;font-size:14px;margin-bottom:20px;}
  .footer-cta .cta-btn{box-shadow:0 6px 14px rgba(46,204,113,0.45);}
  .footer-legal{
    margin-top:26px;
    border-top:1px solid #33384a;
    padding-top:18px;
    font-size:11px;
    color:#8b8fa3;
    line-height:1.7;
  }

  /* ============================================
     RESPONSIVO — TABLET (min 700px) E DESKTOP (min 1024px)
     ============================================ */
  @media (min-width:700px){
    /* O container vira full-bleed: cada seção usa toda a largura da tela
       para o fundo, e o conteúdo interno fica centralizado por padding-inline
       calculado (--content-max), sem sobrar faixa vazia nas laterais. */
    .container{
      max-width:none;
      width:100%;
      --content-max:900px;
      --gutter:48px;
    }
    .hero,
    .checklist,
    .section,
    .pain,
    .bonus-title,
    .bonus-cards-row,
    .testimonial-title,
    .testimonials-row,
    .photo-grid-wrap,
    .pricing-title,
    .plans,
    .guarantee,
    .faq,
    .final-cta,
    .footer-cta{
      padding-inline:max(var(--gutter),calc((100% - var(--content-max)) / 2));
    }

    .top-banner{font-size:14px;padding:12px 20px;}

    /* HERO vira duas colunas: texto | imagem */
    .hero{
      display:flex;
      align-items:center;
      gap:48px;
      text-align:left;
      padding-block:56px;
    }
    .hero-text-col{flex:1.15;min-width:0;}
    .hero-text-col h1{font-size:32px;margin-bottom:16px;}
    .hero-text-col p{font-size:16px;padding:0;margin-bottom:0;color:var(--text-gray);}
    .hero-image{flex:1;margin-top:0;min-width:0;}
    .hero-image .img-placeholder{height:320px;}

    /* CHECKLIST vira duas colunas */
    .checklist{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:8px 40px;
      padding-block:36px;
    }
    .checklist .check-item{flex:0 0 45%;}
    .checklist .cta-btn{flex:0 0 100%;max-width:420px;margin:16px auto 6px;}
    .checklist .promo-note{flex:0 0 100%;}
    .checklist .sub-notes{flex:0 0 100%;}

    .section{padding-block:56px;}
    .section-title{font-size:28px;}
    .section-sub{font-size:15.5px;max-width:600px;margin-left:auto;margin-right:auto;}

    .grid-2{grid-template-columns:repeat(4,1fr);gap:18px;}
    .grid-2.folders{grid-template-columns:repeat(4,1fr);}

    .pain{padding-block:56px;}
    .pain h2{font-size:30px;max-width:640px;margin-left:auto;margin-right:auto;}
    .pain p{max-width:600px;margin-left:auto;margin-right:auto;}
    .pain-box{max-width:420px;margin-left:auto;margin-right:auto;margin-top:20px;}

    .solution-img{text-align:center;}
    .solution-img .img-placeholder{height:auto;width:100%;max-width:460px;margin:0 auto 22px;}
    .benefit-list{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .benefit-card{margin-bottom:0;}

    .why-list{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px 20px;
    }

    /* Bônus em grade de 3 colunas */
    .bonus-title{padding-block:56px 10px;}
    .bonus-title h2{font-size:24px;}
    .bonus-cards-row{
      display:flex;
      gap:20px;
      padding-block:0 56px;
    }
    .bonus-cards-row .bonus-card{
      flex:1;
      margin:0;
    }
    .bonus-card .img-placeholder{height:auto;}

    /* Depoimentos em grade de 3 colunas */
    .testimonial-title{padding-block:56px 10px;}
    .testimonial-title h2{font-size:26px;}
    .testimonials-row{
      display:flex;
      gap:20px;
      padding-block:0 40px;
    }
    .testimonials-row .testimonial-card{flex:1;margin:0;}

    .photo-grid-wrap{padding-block:0 56px;text-align:center;}
    .photo-grid-wrap .img-placeholder{height:auto;width:100%;max-width:560px;margin:0 auto;}

    .pricing-title{padding-block:56px 24px;}
    .pricing-title h2{font-size:28px;max-width:640px;margin-left:auto;margin-right:auto;}

    /* Planos lado a lado */
    .plans{
      padding-block:0 56px;
      display:flex;
      gap:28px;
      align-items:flex-start;
    }
    .plan-card{flex:1;margin-bottom:0;}

    .guarantee{padding-block:56px;}
    .guarantee h2{font-size:24px;}

    .faq{padding-block:56px;}
    .faq-title{font-size:26px;}
    .faq-item{max-width:640px;margin-left:auto;margin-right:auto;}

    .final-cta{padding-block:56px;}
    .final-cta h2{font-size:28px;max-width:600px;margin-left:auto;margin-right:auto;}
    .final-cta p{max-width:560px;margin-left:auto;margin-right:auto;}
    .final-cta .cta-btn{max-width:460px;margin-left:auto;margin-right:auto;}

    .footer-cta{padding-block:56px;}
    .footer-cta h2{font-size:24px;}
    .footer-cta .cta-btn{max-width:400px;margin-left:auto;margin-right:auto;}
    .footer-legal{max-width:700px;margin-left:auto;margin-right:auto;margin-top:26px;}
  }

  @media (min-width:1024px){
    .container{--content-max:1140px;}
    .hero-text-col h1{font-size:38px;}
    .grid-2{grid-template-columns:repeat(5,1fr);}
  }

  /* Telas bem largas (1440px+): usa um pouco mais da largura disponível
     em vez de deixar tudo apertado numa coluna estreita e cercado de vazio. */
  @media (min-width:1440px){
    .container{--content-max:1280px;}
  }

  /* ============================================
     MODAL DE OFERTA ESPECIAL (UPSELL)
     ============================================ */
  .modal-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(20,15,10,0.55);
    z-index:1000;
    align-items:center;
    justify-content:center;
    padding:18px;
  }
  .modal-overlay.active{
    display:flex;
    animation:fadeInOverlay 0.25s ease;
  }
  @keyframes fadeInOverlay{from{opacity:0;}to{opacity:1;}}
  @keyframes popIn{
    from{opacity:0;transform:translateY(16px) scale(0.97);}
    to{opacity:1;transform:translateY(0) scale(1);}
  }
  .upsell-modal{
    background:var(--white);
    width:100%;
    max-width:340px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.35);
    animation:popIn 0.3s ease;
  }
  .upsell-header{
    position:relative;
    background:linear-gradient(100deg,var(--orange-dark),var(--orange));
    color:#fff;
    text-align:center;
    padding:20px 36px;
  }
  .upsell-header .close-x{
    position:absolute;
    top:12px;right:14px;
    background:none;border:none;
    color:#fff;
    font-size:18px;
    line-height:1;
    cursor:pointer;
    opacity:0.9;
  }
  .upsell-header .warn-line{
    font-size:16px;font-weight:800;
    display:flex;align-items:center;justify-content:center;gap:6px;
    margin-bottom:4px;
  }
  .upsell-header .sub-line{
    font-size:13px;font-weight:600;opacity:0.95;
  }
  .upsell-body{padding:22px 22px 24px;background:var(--cream-2);}
  .upsell-body .intro{
    text-align:center;font-size:14px;color:var(--text-dark);margin-bottom:6px;
  }
  .upsell-price{
    text-align:center;color:var(--green-dark);
    font-size:26px;font-weight:800;margin-bottom:2px;
  }
  .upsell-total-note{
    text-align:center;color:var(--text-gray);font-size:12.5px;margin-bottom:18px;
  }
  .upsell-box{
    border:2px dashed var(--green);
    background:#F2FBF6;
    border-radius:14px;
    padding:18px 16px;
    margin-bottom:18px;
  }
  .upsell-badges{
    display:flex;justify-content:center;gap:8px;margin-bottom:14px;flex-wrap:wrap;
  }
  .upsell-badge-green{
    display:inline-flex;align-items:center;gap:5px;
    background:var(--green);color:#fff;
    font-size:11.5px;font-weight:800;
    padding:6px 14px;border-radius:20px;
  }
  .upsell-badge-yellow{
    display:inline-flex;align-items:center;gap:5px;
    background:#FFE49B;color:#8a6300;
    font-size:11px;font-weight:800;
    padding:5px 12px;border-radius:20px;
  }
  .upsell-list .u-item{
    display:flex;align-items:center;gap:10px;
    font-size:13.5px;color:var(--text-dark);
    margin-bottom:10px;
  }
  .upsell-list .u-item:last-child{margin-bottom:0;}
  .upsell-list .u-item .dot{
    min-width:18px;height:18px;border-radius:50%;
    background:var(--green);color:#fff;
    display:flex;align-items:center;justify-content:center;font-size:11px;flex-shrink:0;
  }
  .upsell-highlight-box{
    margin-top:14px;
    background:#DFF7E7;
    color:var(--green-dark);
    border-radius:10px;
    padding:10px 14px;
    text-align:center;
    font-size:13px;
    font-weight:700;
  }
  .upsell-cta{
    display:block;width:100%;
    background:var(--green);color:#fff;
    border:none;font-weight:800;font-size:14.5px;
    padding:16px;border-radius:100px;
    cursor:pointer;
    box-shadow:0 8px 18px rgba(46,204,113,0.4);
    margin-bottom:14px;
  }
  .upsell-decline{
    display:block;
    text-align:center;
    font-size:12.5px;
    color:var(--text-gray);
    background:none;border:none;
    cursor:pointer;
    width:100%;
    text-decoration:underline;
  }
  .upsell-decline u{color:var(--text-gray);}