
/* =========================================================================
   DESIGN TOKENS — LP Receitas de Crochê Copa 2026 · v2
   ========================================================================= */
:root {
  /* Surface */
  --color-bg-main:      #FFF8EC;
  --color-bg-soft:      #FDF4E6;
  --color-bg-card:      #FFFFFF;

  /* Brazil — green */
  --color-green-primary:#007A3D;
  --color-green-dark:   #005C2E;
  --color-green-soft:   #E9F6EE;

  /* Brazil — yellow */
  --color-yellow-primary:#F7C531;
  --color-yellow-dark:   #E5AA00;
  --color-yellow-soft:   #FFF4C8;

  /* Brazil — blue */
  --color-blue-primary: #0057B8;
  --color-blue-dark:    #003F88;
  --color-blue-soft:    #EAF2FF;

  /* Text */
  --color-text-main:      #173326;
  --color-text-secondary: #4D5C55;
  --color-text-muted:     #6D7772;

  /* Border */
  --color-border:        #D8E7DD;
  --color-border-green:  #A8D5BA;
  --color-border-yellow: #F2CE62;
  --color-white: #FFFFFF;

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadow */
  --sh-sm: 0 4px 12px rgba(0, 60, 30, 0.06);
  --sh-md: 0 10px 30px rgba(0, 60, 30, 0.10);
  --sh-lg: 0 20px 50px rgba(0, 60, 30, 0.14);
  --sh-yellow: 0 18px 50px rgba(247, 197, 49, 0.22);
  --sh-green:  0 8px 20px rgba(0, 122, 61, 0.18);

  /* Type */
  --display: 'Oswald', sans-serif;
  --script:  'Dancing Script', cursive;
  --body:    'Inter', system-ui, -apple-system, sans-serif;
}

/* =========================================================================  RESET  ========================================================================= */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-main);
  background: var(--color-bg-main);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--color-yellow-soft); color: var(--color-text-main); }

/* =========================================================================  TYPOGRAPHY  ========================================================================= */
.display-title, h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-main);
  line-height: 1.05;
}
.script-title {
  font-family: var(--script);
  font-weight: 700;
  color: var(--color-blue-primary);
  line-height: 1;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-green-soft);
  color: var(--color-green-primary);
  border: 1px solid var(--color-border-green);
  border-radius: var(--r-pill);
  padding: 8px 14px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.kicker.yellow {
  background: var(--color-yellow-soft);
  color: var(--color-yellow-dark);
  border-color: var(--color-border-yellow);
}
.kicker.blue {
  background: var(--color-blue-soft);
  color: var(--color-blue-primary);
  border-color: #B7D1F2;
}

.section-heading { text-align: center; margin-bottom: 56px; max-width: 760px; margin-inline: auto; }
.section-heading .kicker { margin-bottom: 16px; }
.section-heading h2 {
  font-family: var(--display);
  font-size: clamp(30px, 4.4vw, 42px);
  line-height: 1.1;
  font-weight: 700;
}
.section-heading h2 strong {
  color: var(--color-green-primary);
  font-weight: 800;
}
.section-heading h2 .scrip {
  font-family: var(--script);
  font-weight: 700;
  color: var(--color-blue-primary);
  font-size: 1.12em;
  display: inline-block;
  transform: translateY(2px);
}
.section-heading p {
  margin-top: 14px;
  font-size: 17px;
  color: var(--color-text-secondary);
}

/* =========================================================================  LAYOUT  ========================================================================= */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; position: relative; }
.section-sm { padding: 48px 0 !important; }
.section-lg { padding: 96px 0 !important; }

/* =========================================================================  BUTTONS  ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 12px;
  font-family: var(--body);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .2s, border-color .2s, box-shadow .2s, color .2s;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 18px; height: 18px; }

.btn-primary {
  background: var(--color-green-primary);
  color: var(--color-white);
  border-color: var(--color-green-primary);
  box-shadow: var(--sh-green);
}
.btn-primary:hover {
  background: var(--color-green-dark);
  border-color: var(--color-green-dark);
}

.btn-yellow {
  background: var(--color-yellow-primary);
  color: var(--color-text-main);
  border-color: var(--color-yellow-primary);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(247, 197, 49, 0.28);
}
.btn-yellow:hover {
  background: var(--color-yellow-dark);
  border-color: var(--color-yellow-dark);
}

.btn-green {
  background: var(--color-green-primary);
  color: var(--color-white);
  border-color: var(--color-green-primary);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0, 122, 51, 0.28);
}
.btn-green:hover {
  background: var(--color-green-dark, #005a26);
  border-color: var(--color-green-dark, #005a26);
}

.btn-outline {
  background: var(--color-white);
  color: var(--color-green-primary);
  border-color: var(--color-green-primary);
}
.btn-outline:hover {
  background: var(--color-green-primary);
  color: var(--color-white);
}

.btn-block { width: 100%; }
.btn-lg { padding: 22px 36px; font-size: 15px; }

/* =========================================================================  PLACEHOLDER (img graceful fallback)  ========================================================================= */
.media {
  position: relative;
  background:
    linear-gradient(135deg, var(--color-green-soft) 0%, var(--color-bg-soft) 100%);
  border: 1.5px dashed var(--color-border-green);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.media > img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  position: relative; z-index: 2;
  background: var(--color-white);
}
.media > .ph {
  position: absolute; inset: 0;
  z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; padding: 16px;
  text-align: center;
  pointer-events: none;
}
.media > .ph .ph-ico {
  width: 56px; height: 56px;
  background: var(--color-white);
  border: 1.5px solid var(--color-border-green);
  color: var(--color-green-primary);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-sm);
}
.media > .ph .ph-label {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-green-primary);
}
.media > .ph .ph-path {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: var(--color-text-muted);
  background: rgba(255,255,255,.7);
  padding: 4px 8px; border-radius: 6px;
  border: 1px solid var(--color-border);
}
.media.contain > img { object-fit: contain; padding: 12px; background: transparent; }

/* =========================================================================  TOPBAR  ========================================================================= */
.topbar {
  background: var(--color-green-primary);
  color: var(--color-white);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 16px;
  letter-spacing: 0.02em;
  position: relative; z-index: 10;
}
.topbar svg {
  display: inline-block;
  vertical-align: -3px;
  margin-right: 8px;
  color: var(--color-yellow-primary);
}
.topbar strong { font-weight: 800; }
.topbar .t-short { display: none; }

/* =========================================================================  HERO  ========================================================================= */
.hero {
  padding: 72px 0 80px;
  background:
    radial-gradient(circle at 85% 10%, rgba(247,197,49,.18), transparent 30%),
    radial-gradient(circle at 5% 30%, rgba(0,87,184,.10), transparent 28%),
    var(--color-bg-main);
  position: relative;
  overflow: hidden;
}
/* decorative star scattered */
.hero::before {
  content: "";
  position: absolute; top: 60px; right: 10%;
  width: 22px; height: 22px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F7C531'><path d='M12 2 9.5 8 3 9l5 4.5L6.5 21 12 17.5 17.5 21 16 13.5 21 9l-6.5-1L12 2Z'/></svg>");
  background-size: contain; background-repeat: no-repeat;
  transform: rotate(15deg);
}
.hero::after {
  content: "";
  position: absolute; bottom: 80px; left: 4%;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230057B8'><path d='M12 2 9.5 8 3 9l5 4.5L6.5 21 12 17.5 17.5 21 16 13.5 21 9l-6.5-1L12 2Z'/></svg>");
  background-size: contain; background-repeat: no-repeat;
  transform: rotate(-8deg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 6.8vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: var(--color-green-primary);
  text-transform: uppercase;
  margin: 16px 0 0;
}
.hero h1 .l1 { display: block; color: var(--color-text-main); font-size: 0.55em; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 4px; }
.hero h1 .l2 { display: block; }
.hero .hero-script {
  display: block;
  font-family: var(--script);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 48px);
  color: var(--color-blue-primary);
  line-height: 1;
  margin-top: 6px;
  text-transform: none;
  letter-spacing: 0;
}
.hero p.lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-text-secondary);
  max-width: 480px;
  margin-top: 24px;
}
.hero-list {
  list-style: none;
  margin-top: 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px;
  max-width: 480px;
}
.hero-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500; color: var(--color-text-main);
}
.check-circle {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--color-green-soft);
  color: var(--color-green-primary);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
}
.hero-cta {
  display: flex; align-items: center; gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.price-badge {
  display: inline-flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 12px 22px;
  box-shadow: var(--sh-md);
  line-height: 1.1;
  align-items: center;
}
.price-badge small {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
}
.price-badge strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  color: var(--color-green-primary);
  line-height: 1;
  margin-top: 2px;
}
.price-badge strong .rs { font-size: 16px; vertical-align: top; margin-right: 2px; font-weight: 600; }
.price-badge strong .cents { font-size: 16px; font-weight: 600; }

.hero-trust {
  margin-top: 28px;
  display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 13px; color: var(--color-text-muted);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust svg { color: var(--color-green-primary); }

/* HERO ART */
.hero-art {
  position: relative;
  filter: drop-shadow(0 24px 40px rgba(0, 60, 30, 0.16));
}
.hero-art .media {
  aspect-ratio: 1.05/1;
  border-radius: 0;
  background: transparent;
  border: 0;
  overflow: visible;
}
.hero-art .media > img {
  object-fit: contain;
  background: transparent;
  width: 100%;
  height: 100%;
  /* feather edges into the page background */
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, #000 60%, rgba(0,0,0,.85) 78%, transparent 100%);
          mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, #000 60%, rgba(0,0,0,.85) 78%, transparent 100%);
}
/* mockup floats free over page background — no placeholder frame */
.hero-art .media > .ph { display: none; }
.hero-art .seal {
  position: absolute;
  top: 14px; right: 14px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--color-green-primary);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  font-family: var(--display); font-weight: 700;
  font-size: 11px; line-height: 1.15;
  text-align: center; letter-spacing: 0.04em;
  transform: rotate(-10deg);
  box-shadow: var(--sh-md);
  z-index: 5;
}
.hero-art .seal::before {
  content: ""; position: absolute; inset: 6px;
  border: 1.5px dashed rgba(255,255,255,.45);
  border-radius: 50%;
}
.hero-art .seal .star { color: var(--color-yellow-primary); font-size: 16px; margin-top: 4px; }

/* =========================================================================  BENEFITS STRIP  ========================================================================= */
.benefits-strip {
  padding: 28px 0;
  border-top: 1px solid #EFE4D4;
  border-bottom: 1px solid #EFE4D4;
  background: rgba(255,255,255,0.55);
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 8px;
}
.benefit-card .ico {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--color-yellow-soft);
  color: var(--color-green-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--color-border-yellow);
}
.benefit-card .txt h4 {
  font-family: var(--display);
  font-size: 16px; font-weight: 700;
  letter-spacing: 0; line-height: 1.15;
  color: var(--color-text-main);
  text-transform: uppercase;
}
.benefit-card .txt p {
  font-size: 13px; color: var(--color-text-muted);
  line-height: 1.4; margin-top: 2px;
}

/* =========================================================================  RECEIVE / PREVIAS  ========================================================================= */
.previas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.previa-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex; flex-direction: column;
}
.previa-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: var(--color-border-green);
}
.previa-card .media {
  aspect-ratio: 4/5;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--color-border);
}
.previa-card .body {
  padding: 24px 26px 28px;
}
.previa-card .tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--color-green-soft);
  color: var(--color-green-primary);
  border: 1px solid var(--color-border-green);
  border-radius: var(--r-pill);
  padding: 6px 12px;
  font-family: var(--body);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 12px;
}
.previa-card.b .tag {
  background: var(--color-blue-soft);
  color: var(--color-blue-primary);
  border-color: #B7D1F2;
}
.previa-card.y .tag {
  background: var(--color-yellow-soft);
  color: var(--color-yellow-dark);
  border-color: var(--color-border-yellow);
}
.previa-card h4 {
  font-family: var(--display);
  font-size: 19px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.2;
  color: var(--color-text-main);
  margin-bottom: 8px;
}
.previa-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

/* =========================================================================  RECIPES  ========================================================================= */
.recipes { background: var(--color-white); }
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.recipe-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
}
.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: var(--color-border-green);
}
.recipe-card .media {
  aspect-ratio: 1/1;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--color-border);
}
.recipe-card .body {
  padding: 14px 14px 18px;
  text-align: center;
}
.recipe-card .tag {
  display: inline-block;
  font-family: var(--body);
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-blue-primary);
  margin-bottom: 6px;
}
.recipe-card h3 {
  font-family: var(--display);
  font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: -0.005em;
  line-height: 1.2;
  color: var(--color-text-main);
}
.recipe-card.featured { border: 2px solid var(--color-green-primary); }
.recipe-card.featured::before {
  content: "★";
  position: absolute; top: 8px; left: 10px; z-index: 5;
  color: var(--color-yellow-primary); font-size: 16px;
}

/* =========================================================================  PRICING  ========================================================================= */
.pricing {
  background: linear-gradient(180deg, var(--color-bg-main) 0%, var(--color-bg-soft) 100%);
  padding: 96px 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
}
.pricing-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-green);
  border-radius: var(--r-xl);
  padding: 40px;
  text-align: center;
  box-shadow: var(--sh-sm);
  position: relative;
  display: flex; flex-direction: column;
}
.pricing-card.featured {
  border: 2px solid var(--color-yellow-primary);
  box-shadow: var(--sh-yellow);
  transform: translateY(-4px);
}
.pricing-card .pricing-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-yellow-primary);
  color: var(--color-text-main);
  padding: 9px 22px;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: var(--sh-sm);
  display: inline-flex; align-items: center; gap: 8px;
}
.pricing-card .label-pkg {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.pricing-card h3 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-text-main);
}
.pricing-card.featured h3 { color: var(--color-green-primary); }

.price {
  font-family: var(--display);
  font-size: 54px;
  font-weight: 800;
  color: var(--color-green-primary);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 24px 0 8px;
  display: inline-flex; align-items: baseline; gap: 4px; justify-content: center;
}
.price .rs { font-size: 22px; font-weight: 600; color: var(--color-text-secondary); }
.price .cents { font-size: 22px; font-weight: 600; color: var(--color-text-secondary); }

.pricing-card .install {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}
.pricing-card .install strong { color: var(--color-text-main); font-weight: 700; }

.pricing-card .desc-card {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.55;
  margin-bottom: 24px;
  padding: 14px 16px;
  background: var(--color-bg-main);
  border-radius: 12px;
  border-left: 3px solid var(--color-green-primary);
  text-align: left;
}
.pricing-card.featured .desc-card { border-left-color: var(--color-yellow-primary); }

.pricing-card ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px;
  text-align: left;
}
.pricing-card ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px;
  color: var(--color-text-main);
  line-height: 1.45;
}
.pricing-card .check-circle { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; }

/* Pricing — contrast helpers */
.pricing-card .x-circle {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
  background: #F1E9DC;
  color: #B7AEA1;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
}
.pricing-card ul li.absent {
  color: #9AA39E;
}
.pricing-card ul li.absent .item-text {
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(154, 163, 158, .55);
}
.pricing-card.featured ul li.extra {
  background: var(--color-yellow-soft);
  border-left: 3px solid var(--color-yellow-primary);
  border-radius: 10px;
  padding: 10px 12px;
}
.pricing-card.featured ul li.extra .check-circle {
  background: var(--color-yellow-primary);
  color: var(--color-text-main);
}

.pkg-mockup {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -8px 0 18px;
  background: linear-gradient(180deg, var(--color-bg-soft) 0%, transparent 100%);
  border-radius: var(--r-md);
  padding: 8px;
  overflow: hidden;
}
.pkg-mockup img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 60, 30, 0.18));
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.pricing-card:hover .pkg-mockup img {
  transform: translateY(-3px) scale(1.02);
}
.pricing-card.featured .pkg-mockup {
  background: linear-gradient(180deg, var(--color-yellow-soft) 0%, transparent 100%);
  aspect-ratio: 16/11;
}
.pkg-mockup .vol-badge {
  position: absolute;
  bottom: 10px; right: 10px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 5px 11px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  box-shadow: var(--sh-sm);
}
.pricing-card.featured .pkg-mockup .vol-badge {
  background: var(--color-yellow-primary);
  color: var(--color-text-main);
  border-color: var(--color-yellow-primary);
}

.pkg-stat {
  display: flex; align-items: baseline; justify-content: center; gap: 8px;
  margin-bottom: 6px;
}
.pkg-stat .num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-green-primary);
}
.pricing-card.featured .pkg-stat .num { color: var(--color-green-primary); }
.pkg-stat .lbl {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
}
.pkg-stat .lbl strong {
  color: var(--color-yellow-dark);
  font-weight: 800;
}

.pkg-hint {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--color-border);
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pkg-hint::before {
  content: "→";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--color-yellow-soft);
  color: var(--color-yellow-dark);
  border: 1px solid var(--color-border-yellow);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}
.pkg-hint strong {
  color: var(--color-yellow-dark);
  font-weight: 800;
}
@media (max-width: 1024px) {
  .pkg-hint::before { content: "↓"; }
}

/* =========================================================================  TESTIMONIALS  ========================================================================= */
.testimonials {
  background: var(--color-white);
  padding: 80px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.testimonial {
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  margin: 0;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--color-border-green);
}
.testimonial img {
  width: 100%;
  height: auto;
  display: block;
}
/* Clones — visíveis só no carrossel mobile */
.testimonial.t-clone { display: none; }

@media (max-width: 1024px) {
  .testimonials { padding: 64px 0; }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 640px;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .testimonials { padding: 48px 0; overflow: hidden; }
  .testimonials-viewport {
    overflow: hidden;
    margin: 0 -18px;
  }
  .testimonials-grid {
    display: flex;
    flex-direction: row;
    width: max-content;
    grid-template-columns: none;
    gap: 14px;
    padding: 4px 0 20px 18px;
    margin: 0;
    max-width: none;
    animation: testimonials-scroll 30s linear infinite;
    will-change: transform;
  }
  .testimonials-grid.is-paused {
    animation-play-state: paused;
  }
  .testimonials-grid .testimonial {
    flex: 0 0 75vw;
    max-width: 290px;
    scroll-snap-align: none;
    grid-column: auto !important;
    justify-self: auto !important;
  }
  .testimonial.t-clone { display: block; }
}
/* Anti-cópia: bloqueia drag de imagens e impressão */
img { -webkit-user-drag: none; -webkit-touch-callout: none; }
@media print {
  body { display: none !important; }
  html::before {
    content: "Impressão não autorizada · Receitas de Crochê Copa 2026";
    display: block; padding: 40px; font-family: sans-serif; font-size: 16px;
  }
}

@keyframes testimonials-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .testimonials-grid { animation: none !important; }
}

.pricing-foot {
  text-align: center;
  margin-top: 32px;
  font-family: var(--script);
  font-size: 22px;
  color: var(--color-green-primary);
}
.pricing-foot::before, .pricing-foot::after {
  content: "✦"; color: var(--color-yellow-primary);
  margin: 0 8px; font-family: var(--body);
}

/* =========================================================================  BONUS  ========================================================================= */
.bonus { background: var(--color-bg-main); padding: 96px 0; }
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bonus-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--sh-sm);
  position: relative;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex; flex-direction: column;
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--color-border-green);
}
.bonus-card .num {
  position: absolute;
  top: 16px; right: 18px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-yellow-dark);
  background: var(--color-yellow-soft);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--color-border-yellow);
}
.bonus-card .media {
  aspect-ratio: 1.05/1;
  border-radius: var(--r-md);
  margin-bottom: 18px;
}
.bonus-card h4 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--color-text-main);
  line-height: 1.2;
  margin-bottom: 8px;
}
.bonus-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.bonus-strip {
  margin-top: 40px;
  background: var(--color-green-primary);
  color: var(--color-white);
  border-radius: var(--r-lg);
  padding: 28px 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  position: relative; overflow: hidden;
}
.bonus-strip::before {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(247,197,49,.32), transparent 60%);
}
.bonus-strip .col { position: relative; z-index: 1; }
.bonus-strip .col.right { text-align: right; }
.bonus-strip .col .label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,.75);
}
.bonus-strip .col .val {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 6px;
  line-height: 1;
}
.bonus-strip .col .val.through {
  text-decoration: line-through;
  text-decoration-color: var(--color-yellow-primary);
  text-decoration-thickness: 4px;
  color: rgba(255,255,255,.7);
}
.bonus-strip .col .val.now { color: var(--color-yellow-primary); }
.bonus-strip .arrow {
  width: 52px; height: 52px;
  background: var(--color-yellow-primary);
  color: var(--color-text-main);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-md);
}

/* =========================================================================  FOR YOU  ========================================================================= */
.foryou-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.foryou-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  padding: 22px 20px;
  display: flex; align-items: center; gap: 14px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.foryou-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-border-green);
  box-shadow: var(--sh-sm);
}
.foryou-card .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--color-green-soft);
  color: var(--color-green-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.foryou-card p {
  font-size: 14px;
  color: var(--color-text-main);
  font-weight: 500;
  line-height: 1.4;
}

/* =========================================================================  FAQ  ========================================================================= */
.faq { background: var(--color-bg-soft); }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 14px;
}
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq-item[open] {
  border-color: var(--color-green-primary);
  box-shadow: var(--sh-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 200px 1fr 32px;
  gap: 24px;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-tag {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-green-primary);
  display: flex; align-items: center; gap: 8px;
}
.faq-item .faq-tag::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-yellow-primary);
}
.faq-item .faq-question {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--color-text-main);
  line-height: 1.3;
  text-transform: uppercase;
}
.faq-item .plus {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-green-soft);
  color: var(--color-green-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .3s, background .3s, color .3s;
}
.faq-item[open] .plus {
  transform: rotate(45deg);
  background: var(--color-green-primary);
  color: var(--color-white);
}
.faq-item .ans {
  padding: 0 24px 22px;
  margin-left: 224px;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

/* =========================================================================  GUARANTEE  ========================================================================= */
.guarantee {
  background: var(--color-bg-main);
  padding: 80px 0;
}
.guarantee-card {
  background: linear-gradient(135deg, var(--color-green-soft) 0%, var(--color-bg-card) 60%, var(--color-yellow-soft) 100%);
  border: 2px solid var(--color-border-green);
  border-radius: var(--r-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.guarantee-card::before {
  content: "";
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(247,197,49,.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.guarantee-seal {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--color-green-primary) 0%, var(--color-green-dark) 100%);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  margin: 0 auto;
  box-shadow: var(--sh-lg), inset 0 -10px 30px rgba(0,0,0,.18);
  flex-shrink: 0;
}
.guarantee-seal .seal-ring {
  position: absolute; inset: 14px;
  border: 2px dashed rgba(255,255,255,.45);
  border-radius: 50%;
  pointer-events: none;
}
.guarantee-seal .seal-inner {
  display: flex; flex-direction: column;
  align-items: center; line-height: 1;
  text-align: center;
  position: relative; z-index: 2;
  padding: 0 18px;
}
.guarantee-seal .seal-top,
.guarantee-seal .seal-bottom {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-yellow-primary);
}
.guarantee-seal .seal-num {
  font-family: var(--display);
  font-size: 84px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  margin: 4px 0;
  letter-spacing: -0.04em;
}
.guarantee-seal .seal-stars {
  position: absolute; bottom: 24px;
  display: flex; gap: 4px; justify-content: center;
  color: var(--color-yellow-primary); font-size: 10px;
  z-index: 2;
}

.guarantee-text h3 {
  font-family: var(--display);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 14px;
  color: var(--color-text-main);
}
.guarantee-text h3 strong {
  color: var(--color-green-primary);
  font-weight: 800;
}
.guarantee-text p {
  margin-top: 16px;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.65;
}
.guarantee-text p strong {
  color: var(--color-text-main);
  font-weight: 700;
}
.guarantee-list {
  list-style: none;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.guarantee-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border-green);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-main);
}
.guarantee-list .ic {
  width: 26px; height: 26px;
  flex-shrink: 0;
  background: var(--color-green-soft);
  color: var(--color-green-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* =========================================================================  FINAL CTA  ========================================================================= */
.final-cta {
  background:
    radial-gradient(circle at 15% 50%, rgba(255,255,255,.12), transparent 25%),
    linear-gradient(135deg, var(--color-green-dark) 0%, var(--color-green-primary) 58%, var(--color-blue-primary) 130%);
  color: var(--color-white);
  padding: 96px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; bottom: -100px; left: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle at 30% 30%, rgba(247,197,49,.6), rgba(247,197,49,.15) 60%, transparent 70%);
  border-radius: 50%;
}
.final-cta::after {
  content: ""; position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(0,87,184,.7), rgba(0,87,184,.1) 60%, transparent 70%);
  border-radius: 50%;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta .kicker {
  background: rgba(255,255,255,.12);
  color: var(--color-yellow-primary);
  border-color: rgba(255,255,255,.2);
}
.final-cta h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-top: 16px;
  max-width: 760px; margin-inline: auto;
}
.final-cta h2 .scrip {
  font-family: var(--script);
  font-weight: 700;
  color: var(--color-yellow-primary);
  font-size: 1.05em;
  text-transform: none;
  letter-spacing: 0;
  display: inline-block;
  transform: translateY(2px);
}
.final-cta p {
  font-size: 17px;
  opacity: .92;
  margin-top: 16px;
  max-width: 580px; margin-inline: auto;
  line-height: 1.55;
}
.final-cta .btns {
  display: flex; gap: 16px; justify-content: center;
  margin-top: 36px; flex-wrap: wrap;
}
.final-cta .btn-light {
  background: var(--color-white); color: var(--color-green-primary);
  border-color: var(--color-white);
}
.final-cta .btn-light:hover { background: var(--color-bg-soft); border-color: var(--color-bg-soft); }
.final-cta .info-line {
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
  margin-top: 44px; font-size: 13px;
}
.final-cta .info-line span { display: inline-flex; align-items: center; gap: 8px; opacity: .92; }
.final-cta .info-line svg { color: var(--color-yellow-primary); }

.footer-mini {
  text-align: center;
  padding: 28px 16px 36px;
  font-size: 12px;
  color: var(--color-text-muted);
  background: var(--color-bg-main);
  border-top: 1px solid var(--color-border);
}
.footer-mini .script-mini {
  font-family: var(--script);
  font-size: 20px;
  color: var(--color-green-primary);
  display: block;
  margin-bottom: 6px;
}

/* =========================================================================  RESPONSIVE  ========================================================================= */

/* ---------- TABLET (≤ 1024px) ---------- */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  section { padding: 64px 0; }
  .section-heading { margin-bottom: 40px; max-width: 640px; }
  .section-heading h2 { font-size: clamp(28px, 4vw, 38px); }

  /* HERO — flex coluna com mockup entre lead e CTA */
  .hero { padding: 48px 0 56px; }
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
  .hero .hero-text { display: contents; }
  .hero .kicker  { order: 1; align-self: flex-start; }
  .hero h1       { order: 2; }
  .hero p.lead   { order: 3; max-width: 100%; }
  .hero-art      { order: 4; margin-top: 0; max-width: 560px; align-self: center; width: 100%; }
  .hero-cta      { order: 5; margin-top: 0; justify-content: center; }
  .hero-list     { order: 6; margin-top: 0; grid-template-columns: 1fr 1fr; max-width: 100%; gap: 8px 24px; }
  .hero-trust    { order: 7; margin-top: 0; justify-content: center; }

  /* PREVIAS */
  .previas-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 520px;
    margin-inline: auto;
  }

  /* GRIDS */
  .recipes-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid   { grid-template-columns: repeat(2, 1fr); }
  .foryou-grid  { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; }
  .pricing-card.featured { transform: none; order: -1; }

  /* BONUS STRIP — vertical com seta apontando pra baixo */
  .bonus-strip {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
    padding: 28px 24px;
  }
  .bonus-strip .col.right { text-align: center; }
  .bonus-strip .arrow { transform: rotate(90deg); margin: 0 auto; }

  /* GUARANTEE */
  .guarantee-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 44px 36px;
    text-align: center;
  }
  .guarantee-list {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-inline: auto;
  }
  .guarantee-list li { justify-content: center; }

  /* FAQ */
  .faq-item summary {
    grid-template-columns: 1fr 32px;
    gap: 18px;
    padding: 20px 22px;
  }
  .faq-item .faq-tag { display: none; }
  .faq-item .ans { margin-left: 0; padding: 0 22px 22px; }

  /* FINAL CTA */
  .final-cta { padding: 80px 0 56px; }
  .final-cta .info-line { gap: 22px; }
}

/* ---------- MOBILE (≤ 640px) ---------- */
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  section { padding: 48px 0; }

  .section-heading { margin-bottom: 32px; }
  .section-heading h2 { font-size: clamp(24px, 7vw, 32px); line-height: 1.12; }
  .section-heading p { font-size: 15px; line-height: 1.5; }

  /* TOPBAR */
  .topbar { padding: 9px 14px; font-size: 12px; line-height: 1.3; letter-spacing: 0.01em; }
  .topbar svg { width: 11px; height: 11px; margin-right: 5px; vertical-align: -1px; }
  .topbar .t-full { display: none; }
  .topbar .t-short { display: inline; }

  /* HERO */
  .hero { padding: 22px 0 26px; }
  .hero-grid { gap: 22px; }
  .hero .kicker { font-size: 11px; padding: 6px 12px; letter-spacing: 0.08em; align-self: flex-start; }
  .hero h1 {
    font-size: clamp(46px, 13vw, 64px);
    line-height: 0.92;
    margin-top: 8px;
    letter-spacing: -0.025em;
  }
  .hero h1 .l1 { font-size: 0.4em; margin-bottom: 4px; }
  .hero .hero-script { font-size: clamp(38px, 11vw, 54px); margin-top: 6px; }
  .hero p.lead { font-size: 15px; line-height: 1.5; margin-top: 12px; max-width: 100%; }
  .hero-list { display: none; }
  .hero-trust { display: none; }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }
  .hero-cta .btn { width: 100%; padding: 16px 22px; font-size: 14px; }
  .hero-art { max-width: 100%; }
  .hero-art .seal { width: 84px; height: 84px; font-size: 9px; top: 8px; right: 8px; }
  .hero-art .seal::before { inset: 4px; }

  /* BENEFITS — cards horizontais (ícone esq + texto dir) com fundo branco */
  .benefits-strip { padding: 24px 0; }
  .benefit-grid { grid-template-columns: 1fr; gap: 10px; }
  .benefit-card {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    box-shadow: var(--sh-sm);
  }
  .benefit-card .ico { width: 44px; height: 44px; border-radius: 12px; }
  .benefit-card .ico svg { width: 20px; height: 20px; }
  .benefit-card .txt h4 { font-size: 14px; line-height: 1.2; }
  .benefit-card .txt p  { font-size: 12px; }

  /* PREVIAS */
  .previas-grid { grid-template-columns: 1fr; gap: 16px; max-width: 100%; }
  .previa-card { border-radius: var(--r-lg); }
  .previa-card .body { padding: 20px 22px 24px; }
  .previa-card h4 { font-size: 17px; }
  .previa-card p  { font-size: 13.5px; }
  .previa-card .tag { font-size: 10px; padding: 5px 10px; }

  /* RECIPES — 2 col compactas */
  .recipes-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .recipe-card { border-radius: var(--r-md); }
  .recipe-card .body { padding: 12px 10px 16px; }
  .recipe-card h3 { font-size: 13px; line-height: 1.18; }
  .recipe-card .tag { font-size: 9px; }

  /* PRICING */
  .pricing { padding: 64px 0; }
  .pricing-grid { gap: 28px; padding-top: 20px; }
  .pricing-card { padding: 32px 22px; }
  .pricing-card h3 { font-size: 26px; }
  .price { font-size: 44px; margin: 18px 0 6px; }
  .pricing-card .install { font-size: 12px; }
  .pricing-card .desc-card { font-size: 14px; padding: 12px 14px; }
  .pricing-card ul li { font-size: 14px; }
  .pricing-card .pricing-badge { font-size: 11px; padding: 8px 18px; }
  .pricing-foot { font-size: 18px; margin-top: 24px; padding: 0 16px; }

  /* GUARANTEE */
  .guarantee { padding: 56px 0; }
  .guarantee-card { padding: 32px 24px; gap: 24px; border-radius: var(--r-lg); }
  .guarantee-seal { width: 168px; height: 168px; }
  .guarantee-seal .seal-num { font-size: 64px; }
  .guarantee-seal .seal-top,
  .guarantee-seal .seal-bottom { font-size: 11px; letter-spacing: 0.18em; }
  .guarantee-seal .seal-stars { bottom: 18px; font-size: 9px; }
  .guarantee-text h3 { font-size: clamp(22px, 6vw, 28px); }
  .guarantee-text p  { font-size: 14.5px; line-height: 1.6; }
  .guarantee-list { gap: 10px; max-width: 100%; }
  .guarantee-list li { padding: 11px 14px; font-size: 13px; }

  /* BONUS */
  .bonus { padding: 56px 0; }
  .bonus-grid { grid-template-columns: 1fr; gap: 16px; }
  .bonus-card { padding: 22px 20px; }
  .bonus-card h4 { font-size: 16px; }
  .bonus-card p  { font-size: 13.5px; }
  .bonus-card .num { font-size: 11px; padding: 3px 9px; top: 14px; right: 14px; }
  .bonus-strip { padding: 24px 22px; gap: 12px; }
  .bonus-strip .col .val { font-size: 26px; }
  .bonus-strip .col .label { font-size: 10px; letter-spacing: 0.12em; }
  .bonus-strip .arrow { width: 44px; height: 44px; }

  /* FOR YOU */
  .foryou-grid { grid-template-columns: 1fr; gap: 12px; }
  .foryou-card { padding: 16px 18px; gap: 12px; }
  .foryou-card .ic { width: 40px; height: 40px; }
  .foryou-card p { font-size: 14px; }

  /* FAQ */
  .faq-item summary { padding: 16px 18px; gap: 14px; }
  .faq-item .faq-question { font-size: 15px; line-height: 1.3; }
  .faq-item .ans { padding: 0 18px 18px; font-size: 14px; line-height: 1.6; }
  .faq-item .plus { width: 28px; height: 28px; }

  /* FINAL CTA */
  .final-cta {
    padding: 56px 0 36px;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    margin-top: 56px;
  }
  .final-cta h2 { font-size: clamp(26px, 7.4vw, 36px); }
  .final-cta p  { font-size: 15px; line-height: 1.55; padding: 0 8px; }
  .final-cta .btns { flex-direction: column; gap: 12px; padding: 0 4px; }
  .final-cta .btn { width: 100%; padding: 16px 20px; font-size: 13px; }
  .final-cta .info-line {
    gap: 12px 18px;
    font-size: 12px;
    margin-top: 28px;
    padding: 0 8px;
  }
  .final-cta::before { width: 180px; height: 180px; bottom: -70px; left: -50px; }
  .final-cta::after  { width: 140px; height: 140px; top: -40px; right: -30px; }

  /* FOOTER */
  .footer-mini { padding: 22px 16px 28px; font-size: 11px; }
  .footer-mini .script-mini { font-size: 17px; }
}

/* ---------- SMALL MOBILE (≤ 380px) — fine-tune for very narrow screens ---------- */
@media (max-width: 380px) {
  .recipes-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(40px, 11.5vw, 50px); }
  .hero .hero-script { font-size: clamp(32px, 9.5vw, 42px); }
  .guarantee-seal { width: 148px; height: 148px; }
  .guarantee-seal .seal-num { font-size: 56px; }
}

/* =========================================================================  EARNINGS  ========================================================================= */
.earnings {
  background: linear-gradient(180deg, var(--color-bg-soft) 0%, var(--color-bg-main) 100%);
}
.earnings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}
.earn-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: 28px 26px 26px;
  box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.earn-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--color-border-green);
}
.earn-card .step-num {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-green-primary);
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.earn-card .step-num::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--color-yellow-primary);
}
.earn-card h4 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.2;
  color: var(--color-text-main);
  margin-bottom: 14px;
}
.earn-card .scenario {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.55;
  margin-bottom: 18px;
}
.earn-card .calc {
  background: var(--color-bg-soft);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 18px;
  display: flex; flex-direction: column;
  gap: 8px;
  border: 1px solid var(--color-border);
}
.earn-card .calc-row {
  display: flex; justify-content: space-between;
  font-size: 13px;
  color: var(--color-text-secondary);
}
.earn-card .calc-row strong {
  color: var(--color-text-main);
  font-weight: 700;
}
.earn-card .total {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--color-border);
}
.earn-card .total .lbl {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
  display: block;
}
.earn-card .total .val {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-green-primary);
  line-height: 1;
  margin-top: 6px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.earn-card .total .val .rs {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-secondary);
}
.earn-card .total .val small {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: lowercase;
  letter-spacing: 0;
}

/* Window highlight */
.earn-window {
  background: linear-gradient(135deg, var(--color-green-primary) 0%, var(--color-green-dark) 100%);
  color: var(--color-white);
  border-radius: var(--r-lg);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--sh-md);
}
.earn-window::before {
  content: "";
  position: absolute;
  top: -60px; right: -40px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(247,197,49,.32), transparent 60%);
  pointer-events: none;
}
.earn-window .icon-box {
  width: 68px; height: 68px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-yellow-primary);
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.earn-window .body { position: relative; z-index: 1; }
.earn-window .body .label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-yellow-primary);
  margin-bottom: 6px;
  display: block;
}
.earn-window .body h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 6px;
}
.earn-window .body p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
  max-width: 580px;
}
.earn-window .pill {
  background: var(--color-yellow-primary);
  color: var(--color-text-main);
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative; z-index: 1;
  box-shadow: var(--sh-sm);
  white-space: nowrap;
  display: inline-flex;
  align-items: center; gap: 8px;
  transition: transform .25s, background .2s;
}
.earn-window .pill:hover { transform: translateY(-2px); background: var(--color-yellow-dark); }

.earn-disclaimer {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .earnings-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; gap: 18px; }
  .earn-window { grid-template-columns: 1fr; text-align: center; gap: 16px; padding: 28px 24px; }
  .earn-window .icon-box { margin: 0 auto; }
  .earn-window .pill { justify-self: center; }
}
@media (max-width: 640px) {
  .earn-card { padding: 22px 20px; }
  .earn-card h4 { font-size: 17px; }
  .earn-card .total .val { font-size: 26px; }
  .earn-window { padding: 24px 20px; }
  .earn-window .body h3 { font-size: 20px; }
  .earn-window .body p { font-size: 13.5px; }
  .earn-window .icon-box { width: 56px; height: 56px; }
  .earn-disclaimer { font-size: 11.5px; padding: 0 8px; }
}

/* =========================================================================  VALUE STACK  ========================================================================= */
.value-stack {
  background: linear-gradient(180deg, var(--color-bg-main) 0%, var(--color-bg-soft) 100%);
  padding: 80px 0;
}
.stack-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--color-white);
  border: 2px solid var(--color-border-green);
  border-radius: var(--r-xl);
  padding: 44px 48px 36px;
  box-shadow: var(--sh-md);
  position: relative;
  overflow: hidden;
}
.stack-card::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(247,197,49,.18), transparent 70%);
  pointer-events: none;
}
.stack-card .ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-yellow-primary);
  color: var(--color-text-main);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.stack-card h3 {
  font-family: var(--display);
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--color-text-main);
  margin-bottom: 8px;
  position: relative; z-index: 1;
}
.stack-card h3 strong { color: var(--color-green-primary); }
.stack-card .lead {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.55;
  margin-bottom: 24px;
  max-width: 560px;
  position: relative; z-index: 1;
}

.stack-list {
  list-style: none;
  display: flex; flex-direction: column;
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.stack-list li {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--color-border);
}
.stack-list li:last-child { border-bottom: 0; }
.stack-list .stk-ic {
  width: 32px; height: 32px;
  background: var(--color-green-soft);
  color: var(--color-green-primary);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stack-list .stk-ic.gold {
  background: var(--color-yellow-soft);
  color: var(--color-yellow-dark);
}
.stack-list .stk-name strong {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-text-main);
  display: block;
}
.stack-list .stk-name small {
  display: block;
  font-size: 12.5px;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-top: 2px;
  line-height: 1.4;
}
.stack-list .stk-price {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-main);
  white-space: nowrap;
}
.stack-list .stk-price.included {
  color: var(--color-green-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stack-total {
  background: var(--color-bg-soft);
  border-radius: var(--r-md);
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--color-border);
  position: relative; z-index: 1;
  flex-wrap: wrap; gap: 10px;
}
.stack-total .tlbl {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}
.stack-total .tval {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text-secondary);
  text-decoration: line-through;
  text-decoration-color: var(--color-yellow-primary);
  text-decoration-thickness: 3px;
  letter-spacing: -0.02em;
}
.stack-foot {
  text-align: center;
  margin-top: 18px;
  font-family: var(--script);
  font-size: 22px;
  color: var(--color-green-primary);
  position: relative; z-index: 1;
}

.stack-now {
  background: linear-gradient(135deg, var(--color-green-primary) 0%, var(--color-green-dark) 100%);
  color: var(--color-white);
  border-radius: var(--r-md);
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.stack-now::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(247,197,49,.32), transparent 60%);
  pointer-events: none;
}
.stack-now .nlbl {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-yellow-primary);
  margin-bottom: 8px;
  display: block;
  position: relative; z-index: 1;
}
.stack-now .nrow {
  display: flex; align-items: baseline; gap: 14px;
  position: relative; z-index: 1;
  flex-wrap: wrap;
}
.stack-now .nval {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stack-now .nval .rs {
  font-size: 22px;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  vertical-align: top;
  margin-right: 4px;
}
.stack-now .nval .cents {
  font-size: 22px;
  font-weight: 600;
  color: rgba(255,255,255,.78);
}
.stack-now .ndiscount {
  background: var(--color-yellow-primary);
  color: var(--color-text-main);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stack-now .nbtn {
  background: var(--color-yellow-primary);
  color: var(--color-text-main);
  padding: 18px 28px;
  border-radius: 12px;
  font-family: var(--body);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center; gap: 10px;
  white-space: nowrap;
  position: relative; z-index: 1;
  transition: transform .25s, background .2s, border-color .2s;
  border: 2px solid var(--color-yellow-primary);
}
.stack-now .nbtn:hover {
  transform: translateY(-2px);
  background: var(--color-yellow-dark);
  border-color: var(--color-yellow-dark);
}

@media (max-width: 1024px) {
  .stack-card { padding: 36px 32px 28px; }
  .stack-now { grid-template-columns: 1fr; text-align: center; gap: 18px; }
  .stack-now .nrow { justify-content: center; }
}
@media (max-width: 640px) {
  .value-stack { padding: 56px 0; }
  .stack-card { padding: 28px 22px 22px; border-radius: var(--r-lg); }
  .stack-card .ribbon { font-size: 10px; padding: 6px 14px; letter-spacing: 0.12em; }
  .stack-list li { grid-template-columns: 26px 1fr auto; gap: 10px; padding: 12px 0; }
  .stack-list .stk-ic { width: 26px; height: 26px; }
  .stack-list .stk-ic svg { width: 13px; height: 13px; }
  .stack-list .stk-name strong { font-size: 14px; }
  .stack-list .stk-name small { font-size: 11.5px; }
  .stack-list .stk-price { font-size: 14px; }
  .stack-total { padding: 14px 16px; }
  .stack-total .tlbl { font-size: 11px; }
  .stack-total .tval { font-size: 22px; }
  .stack-now { padding: 22px 20px; gap: 14px; }
  .stack-now .nval { font-size: 38px; }
  .stack-now .nval .rs, .stack-now .nval .cents { font-size: 18px; }
  .stack-now .nbtn { width: 100%; justify-content: center; padding: 16px 22px; font-size: 13px; }
}

/* Enlarged price */
.price.price-xl{font-size:4.4rem;line-height:1;}
.price.price-xl .rs{font-size:1.6rem;vertical-align:top;margin-right:.15em;}
.price.price-xl .cents{font-size:1.8rem;vertical-align:top;}
@media (max-width: 600px){
  .price.price-xl{font-size:3.6rem;}
}

/* Trust badges */
ul.trust-badges{
  list-style:none !important;
  padding:0 !important;
  margin:18px auto 0 !important;
  max-width:520px;
  display:flex !important;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:nowrap;
  text-align:center;
}
ul.trust-badges li{
  display:inline-flex !important;
  align-items:center;
  gap:5px;
  font-size:.62rem;
  font-weight:700;
  letter-spacing:.02em;
  color:#1f6b3a;
  text-transform:uppercase;
  white-space:nowrap;
  line-height:1.2;
}
ul.trust-badges li svg{color:#1f6b3a;flex-shrink:0;width:13px;height:13px;}
@media (max-width: 600px){
  ul.trust-badges{flex-wrap:wrap;gap:8px 14px;}
  ul.trust-badges li:nth-child(3){flex-basis:100%;justify-content:center;}
}
@media (max-width: 380px){
  ul.trust-badges li{font-size:.6rem;}
  ul.trust-badges li svg{width:12px;height:12px;}
}

.pricing-card h3 + .pkg-mockup{margin-top:18px;}

/* Hero video block */
.hero-video{max-width:360px;margin:28px auto 0;width:100%;}
@media (max-width:640px){.hero-video{margin-top:20px;max-width:100%;}}

.hero-cta--below-video{display:flex;justify-content:center;margin-top:32px;}@media (max-width:640px){.hero-cta--below-video{margin-top:24px;}}

.hero-video-heading{margin:32px auto 18px;text-align:center;}
@media (max-width:640px){.hero-video-heading{margin:24px auto 14px;}}
