/* ============================================================
   FRUIT DONUTS BR — Design tokens
   Display: Fraunces (bakery/patisserie signage energy)
   Body/UI: Manrope
   Signature: rotated "selo" (wax-seal/sticker) badges + torn-paper
   section dividers, evoking a bakery box rather than a generic SaaS page.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,500;1,9..144,600&family=Manrope:wght@400;500;600;700;800&display=swap');

:root{
  --choc:        #2B1810;
  --choc-soft:   #4A2E1F;
  --cream:       #FFF8EE;
  --cream-2:     #FBEADB;
  --card:        #FFFFFF;
  --berry:       #9C2A52;
  --berry-deep:  #6E1B39;
  --red-cta:     #D6432F;
  --red-cta-dk:  #B5341F;
  --gold:        #C89B3C;
  --gold-light:  #E8C877;
  --ink:         #241512;
  --muted:       #7A6A5D;
  --line:        #E7D9C6;
  --green-ok:    #2E7D45;

  --display: 'Fraunces', serif;
  --body: 'Manrope', sans-serif;

  --radius: 18px;
  --shadow-soft: 0 12px 30px -12px rgba(43,24,16,0.25);
  --shadow-card: 0 6px 18px -8px rgba(43,24,16,0.18);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; }
.container{
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family: var(--body);
  font-weight:800;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--berry);
  margin-bottom: 14px;
}
.eyebrow::before{
  content:"";
  width: 22px; height: 2px;
  background: var(--gold);
  display:inline-block;
}
h1,h2,h3{
  font-family: var(--display);
  color: var(--choc);
  margin: 0 0 16px;
  line-height: 1.08;
  font-weight: 700;
}
h1{ font-size: clamp(34px, 5vw, 58px); font-weight: 700; letter-spacing: -0.01em; }
h2{ font-size: clamp(26px, 3.4vw, 38px); }
h3{ font-size: 20px; }
p{ margin: 0 0 16px; }
.lede{ font-size: 19px; color: var(--choc-soft); max-width: 620px; }
.center{ text-align:center; margin-left:auto; margin-right:auto; }

section{ padding: 88px 0; position:relative; }
.section-tight{ padding: 64px 0; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family: var(--body);
  font-weight: 800;
  font-size: 17px;
  padding: 18px 34px;
  border-radius: 100px;
  border: none;
  cursor:pointer;
  text-decoration:none;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn-primary{
  background: linear-gradient(180deg, #E4542F, var(--red-cta-dk));
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(214,67,47,0.55), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover{ transform: translateY(-2px); filter: brightness(1.04); }
.btn-primary:active{ transform: translateY(0); }
.btn-ghost{
  background: transparent;
  color: var(--choc);
  border: 2px solid var(--choc);
}
.btn-block{ width:100%; }
.btn-sub{ display:block; margin-top:10px; font-size:13px; color: var(--muted); text-align:center; }

/* ---------- Header ---------- */
.site-header{
  position: sticky; top:0; z-index: 50;
  background: rgba(255,248,238,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .container{
  display:flex; align-items:center; justify-content:space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.logo{
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  color: var(--choc);
  display:flex; align-items:center; gap:8px;
}
.logo span{ color: var(--berry); }
.header-cta{
  font-size: 14px;
  padding: 11px 22px;
}

/* ---------- Hero ---------- */
.hero{
  background: radial-gradient(120% 140% at 100% 0%, #3A2417 0%, var(--choc) 55%);
  color: var(--cream);
  padding: 72px 0 100px;
  overflow:hidden;
}
.hero .container{
  display:flex;
  flex-wrap: wrap;
  gap: 56px;
  align-items:center;
}
.hero .hero-copy{ flex: 1 1 460px; min-width: 320px; }
.hero .hero-visual{ flex: 1 1 380px; min-width: 280px; max-width: 420px; }
.hero .eyebrow{ color: var(--gold-light); }
.hero .eyebrow::before{ background: var(--gold-light); }
.hero h1{ color: #FFF8EE; }
.hero h1 em{ font-style: italic; color: var(--gold-light); }
.hero .lede{ color: #E9DCCB; }
.hero-cta-row{ display:flex; align-items:center; gap:18px; margin-top: 30px; flex-wrap:wrap; }
.trust-row{
  margin-top: 26px;
  display:flex; align-items:center; gap:10px;
  font-size: 14px; color: #E9DCCB;
}
.stars{ color: var(--gold-light); letter-spacing: 2px; }

.hero-visual{ position:relative; }
.hero-visual .frame{
  border-radius: 22px;
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,.08);
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--berry) 0%, var(--berry-deep) 100%);
}
.hero-visual .frame img{ width:100%; height:100%; object-fit: cover; }
.selo-float{
  position:absolute; right:-18px; top:-18px;
}

/* ---------- Selo / badge (signature element) ---------- */
.selo{
  position:relative;
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  width: 112px; height:112px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--gold-light), var(--gold), var(--gold-light));
  color: var(--choc);
  font-family: var(--display);
  font-weight:700;
  text-align:center;
  transform: rotate(-9deg);
  box-shadow: 0 10px 22px -8px rgba(0,0,0,0.45), inset 0 0 0 4px rgba(255,255,255,.35);
  line-height:1.05;
}
.selo small{ font-family: var(--body); font-weight:800; font-size:10px; letter-spacing:.06em; text-transform:uppercase; }
.selo strong{ font-size: 20px; }

.ribbon{
  position:absolute; top:-12px; left: 50%; transform: translateX(-50%) rotate(-2deg);
  background: var(--berry);
  color:#fff;
  font-family: var(--body);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 6px;
  box-shadow: 0 6px 14px -4px rgba(0,0,0,.35);
  white-space:nowrap;
}
.ribbon::before, .ribbon::after{
  content:"";
  position:absolute; bottom:-6px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
}
.ribbon::before{ left:0; border-top: 7px solid var(--berry-deep); }
.ribbon::after{ right:0; border-top: 7px solid var(--berry-deep); }

/* ---------- Torn paper divider ---------- */
.torn{
  height: 42px;
  width:100%;
  background: var(--cream);
  clip-path: polygon(0% 100%, 4% 30%, 8% 100%, 12% 40%, 16% 100%, 20% 25%, 24% 100%, 28% 45%, 32% 100%, 36% 20%, 40% 100%, 44% 40%, 48% 100%, 52% 30%, 56% 100%, 60% 45%, 64% 100%, 68% 25%, 72% 100%, 76% 35%, 80% 100%, 84% 20%, 88% 100%, 92% 40%, 96% 100%, 100% 30%, 100% 100%);
}
.torn.into-choc{ background: var(--choc); }
.torn.from-choc{ transform: rotate(180deg); background: var(--choc); }

/* ---------- Stat cards ---------- */
.stat-row{
  display:flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 44px;
}
.stat-row .stat-card{ flex: 1 1 260px; }
.stat-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
}
.stat-card .num{
  font-family: var(--display);
  font-size: 34px;
  font-weight: 700;
  color: var(--berry);
  display:block;
  margin-bottom:6px;
}
.stat-card .lbl{ font-size: 14px; color: var(--muted); font-weight:600; }

/* ---------- Two column layout ---------- */
.two-col{
  display:flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items:center;
}
.two-col > *{ flex: 1 1 400px; }
.two-col.reverse{ direction: rtl; }
.two-col.reverse > *{ direction: ltr; }

/* ---------- Desire: product card ---------- */
.product-hero-card{
  background: var(--card);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  padding: 40px;
  display:flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items:center;
  margin-top: 36px;
}
.product-hero-card .mockup{ flex: 1 1 280px; max-width:320px; }
.product-hero-card > div:last-child{ flex: 2 1 380px; }
.product-hero-card .mockup{
  border-radius: 14px;
  overflow:hidden;
  box-shadow: 0 18px 34px -14px rgba(43,24,16,.35);
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--choc-soft), var(--choc));
}
.product-hero-card .mockup img{ width:100%; height:100%; object-fit:cover; }
.check-list{ list-style:none; padding:0; margin: 18px 0 0; }
.check-list li{
  display:flex; gap:10px; align-items:flex-start;
  font-size: 15.5px; color: var(--choc-soft); margin-bottom:10px;
}
.check-list li img{ width:20px; height:20px; margin-top:2px; flex-shrink:0; }

/* ---------- Desire angle strip ---------- */
.angle-strip{
  display:flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 40px 0 8px;
}
.angle-strip .angle-card{ flex: 1 1 260px; }
.angle-card{
  text-align:center;
  padding: 8px 14px;
}
.angle-card .ic{
  width:58px;height:58px;border-radius:50%;
  background: var(--cream-2);
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 14px;
  font-size: 26px;
}
.angle-card h3{ font-size:17px; margin-bottom:6px; }
.angle-card p{ font-size:14px; color:var(--muted); margin:0; }

/* ---------- Bonus grid ---------- */
.bonus-grid{
  display:flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 30px;
}
.bonus-grid .bonus-card{ flex: 1 1 300px; max-width: calc(33.333% - 18px); }
.bonus-card{
  position:relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 22px 24px;
  text-align:center;
  box-shadow: var(--shadow-card);
}
.bonus-card .bonus-num{
  font-family: var(--body); font-weight:800; font-size:12px;
  letter-spacing:.1em; text-transform:uppercase; color: var(--gold);
  margin-bottom: 4px;
}
.bonus-card h3{ font-size: 17.5px; margin-bottom: 14px; min-height:48px; }
.bonus-card .mockup{
  border-radius: 12px;
  overflow:hidden;
  aspect-ratio: 4/3;
  background: var(--cream-2);
  margin-bottom: 16px;
}
.bonus-card .mockup img{ width:100%; height:100%; object-fit:cover; }
.bonus-card p.desc{ font-size: 13.5px; color: var(--muted); margin-bottom: 16px; min-height:40px;}
.price-row{ display:flex; align-items:baseline; justify-content:center; gap:10px; }
.price-strike{ font-size: 15px; color: var(--muted); text-decoration: line-through; }
.price-free{ font-family: var(--display); font-weight:700; font-size: 22px; color: var(--green-ok); }

/* ---------- Order bump ---------- */
.order-bump{
  margin-top: 46px;
  border: 2.5px dashed var(--gold);
  background: var(--cream-2);
  border-radius: 20px;
  padding: 30px 32px;
  display:flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items:center;
}
.order-bump > div:nth-child(2){ flex: 3 1 320px; }
.order-bump .ob-price{ flex: 1 1 140px; }
.order-bump .checkbox{
  width: 30px; height:30px; border-radius:8px;
  border: 2.5px solid var(--berry);
  background: #fff;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.order-bump .checkbox::after{
  content:"✓"; color: var(--berry); font-weight:900; font-size:18px;
}
.order-bump .ob-title{
  font-family: var(--display); font-weight:700; font-size: 19px; color: var(--choc); margin-bottom:4px;
}
.order-bump .ob-desc{ font-size: 14px; color: var(--muted); margin:0; }
.order-bump .ob-price{ text-align:right; white-space:nowrap; }
.order-bump .ob-price .strike{ display:block; font-size:14px; color:var(--muted); text-decoration:line-through; }
.order-bump .ob-price .now{ font-family: var(--display); font-weight:700; font-size:26px; color: var(--berry); }
.order-bump-tag{
  display:inline-block;
  background: var(--berry); color:#fff;
  font-size:11px; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
  padding: 5px 12px; border-radius: 100px; margin-bottom:14px;
}

/* ---------- Value stack ---------- */
.value-stack{
  background: var(--choc);
  color: var(--cream);
  border-radius: 22px;
  padding: 44px 44px 38px;
  margin-top: 56px;
}
.value-stack h3{ color: #fff; font-size: 22px; margin-bottom: 22px; }
.value-row{
  display:flex; justify-content:space-between; align-items:center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 15.5px;
}
.value-row .val{ color: var(--gold-light); font-weight:700; text-decoration: line-through; text-decoration-color: rgba(232,200,119,0.6); }
.value-row.total{
  border-bottom:none; margin-top: 14px; padding-top:24px;
  border-top: 2px solid rgba(255,255,255,.18);
  font-family: var(--display); font-size: 26px; font-weight:700;
}
.value-row.total span:first-child{ color: #fff; }
.value-row.total .val{
  text-decoration: line-through; text-decoration-color: rgba(255,255,255,.5);
  color: var(--gold-light); font-family: var(--display); font-weight:700; font-size: 30px;
}
.data-destaque{
  display:inline-block;
  background: var(--gold);
  color: var(--choc);
  font-weight: 800;
  padding: 2px 12px;
  border-radius: 100px;
  transform: rotate(-2deg);
  box-shadow: 0 4px 10px -3px rgba(0,0,0,.4);
}
.tudo-gratis-badge{
  margin: 26px auto 4px;
  max-width: 320px;
  text-align:center;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--choc);
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  padding: 16px 20px;
  border-radius: 100px;
  box-shadow: 0 14px 28px -10px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.4);
  transform: rotate(-2deg);
}

/* ---------- Objections / FAQ ---------- */
.objection-grid{
  display:flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 40px;
}
.objection-grid .objection-card{ flex: 1 1 calc(50% - 11px); min-width:280px; }
.objection-card{
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 26px 28px;
  box-shadow: var(--shadow-card);
}
.objection-card .q{
  display:flex; gap:12px; align-items:flex-start;
  font-family: var(--display); font-weight:700; font-size:17px; color: var(--berry);
  margin-bottom:10px;
}
.objection-card .q .mark{
  flex-shrink:0; width:26px;height:26px;border-radius:50%;
  background: var(--berry); color:#fff; font-size:14px;
  display:flex;align-items:center;justify-content:center;
  font-family: var(--body); font-weight:800;
}
.objection-card .a{ font-size:14.5px; color: var(--choc-soft); margin:0; padding-left: 38px; }

/* ---------- Testimonials ---------- */
.testi-grid{
  display:flex; flex-wrap:wrap; gap:24px; margin-top: 40px;
}
.testi-grid .testi-card{ flex: 1 1 280px; }
.testi-card{
  background: var(--card); border-radius:18px; border:1px solid var(--line);
  padding: 26px; box-shadow: var(--shadow-card);
}
.testi-card .stars{ color: var(--gold); margin-bottom:12px; display:block; }
.testi-card p{ font-size: 14.5px; color: var(--choc-soft); margin-bottom: 18px; }
.testi-person{ display:flex; align-items:center; gap:12px; }
.testi-person img{ width:44px;height:44px;border-radius:50%; object-fit:cover; background:var(--cream-2); }
.testi-person .name{ font-weight:800; font-size:14px; }
.testi-person .role{ font-size:12.5px; color:var(--muted); }

/* ---------- Action / pricing ---------- */
.action-section{
  background: radial-gradient(120% 140% at 0% 0%, #3A2417 0%, var(--choc) 55%);
  color:#fff;
  text-align:center;
}
.action-section .eyebrow{ color: var(--gold-light); justify-content:center; }
.action-section .eyebrow::before{ background: var(--gold-light); }
.action-section h2{ color:#fff; }
.pricing-card{
  max-width: 560px;
  margin: 40px auto 0;
  background: var(--cream);
  color: var(--ink);
  border-radius: 24px;
  padding: 40px 40px 36px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
  position:relative;
  text-align:left;
}
.pricing-card .includes-block{
  border-bottom: 1px dashed var(--line);
  padding-bottom: 26px;
  margin-bottom: 26px;
}
.pricing-card .includes-block .check-list li{ font-size: 14.5px; margin-bottom: 9px; }
.pricing-card .price-block{ text-align:center; }
.pricing-card .old-price{ font-size:18px; color:var(--muted); text-decoration:line-through; }
.pricing-card .new-price{
  font-family: var(--display); font-weight:700; font-size: 54px; color: var(--berry); margin: 6px 0 4px;
}
.pricing-card .new-price sup{ font-size: 22px; top:-22px; }
.pricing-card .per{ font-size:13px; color:var(--muted); margin-bottom: 22px; }
.guarantee-row{
  display:flex; align-items:center; gap:14px; justify-content:center;
  margin-top: 22px; padding-top:22px; border-top:1px dashed var(--line);
}
.guarantee-row img{ width:52px;height:52px; }
.guarantee-row .txt{ text-align:left; font-size:13px; color:var(--muted); }
.guarantee-row .txt strong{ display:block; color:var(--choc); font-size:14.5px; }
.urgency{
  margin-top: 26px; font-size: 13.5px; color: var(--gold-light);
  display:flex; align-items:center; justify-content:center; gap:8px;
}

footer{
  background: var(--choc);
  color: #B8A896;
  padding: 40px 0;
  font-size: 12.5px;
  text-align:center;
}
footer a{ color: var(--gold-light); text-decoration:none; }

/* ---------- Upsell page specifics ---------- */
.upsell-shell{ max-width: 760px; margin: 0 auto; }
.upsell-header{ text-align:center; padding: 46px 0 10px; }
.upsell-header .logo{ justify-content:center; }
.one-time-tag{
  display:inline-flex; align-items:center; gap:8px;
  background: var(--berry); color:#fff;
  font-size:12.5px; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
  padding:8px 18px; border-radius:100px; margin-bottom: 22px;
}
.upsell-hero-img{
  border-radius:20px; overflow:hidden; box-shadow: var(--shadow-soft);
  aspect-ratio: 16/8; margin: 28px 0 8px; background: linear-gradient(160deg, var(--choc-soft), var(--choc));
}
.upsell-hero-img img{ width:100%; height:100%; object-fit:cover; }
.chart-frame{
  border-radius:16px; overflow:hidden; border:1px solid var(--line);
  background:#fff; padding: 10px; box-shadow: var(--shadow-card); margin: 26px 0;
}
.decline-link{
  display:block; text-align:center; margin-top:18px; font-size:13.5px;
  color: var(--muted); text-decoration:underline; cursor:pointer;
}

/* ---------- Responsive ---------- */
@media (max-width: 880px){
  .hero-visual{ margin: 0 auto; max-width: 340px; }
  .selo-float{ right: 6px; top: 6px; }
  .selo{ width: 84px; height: 84px; }
  .selo strong{ font-size: 15px; }
  .ribbon{ font-size: 10px; padding: 6px 12px; white-space: normal; text-align:center; max-width: 92%; }
  .bonus-grid .bonus-card{ max-width: calc(50% - 13px); }
  .order-bump{ text-align:center; justify-content:center; }
  .order-bump .ob-price{ text-align:center; }
  section{ padding: 60px 0; }
}
@media (max-width: 560px){
  .bonus-grid .bonus-card{ max-width: 100%; }
  .objection-grid .objection-card{ flex-basis: 100%; }
}

@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; scroll-behavior:auto !important; }
}
