@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-400.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-500.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-600.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-700.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-800.ttf") format("truetype");
  font-weight: 800;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-900.ttf") format("truetype");
  font-weight: 900;
}

:root {
  --green: #064e3bd9;
  --green-deep: #043f31e6;
  --green-bright: #16a34a;
  --green-hover: #15803d;
  --orange: #ea580c;
  --orange-hover: #c2410c;
  --cream: #fff7ed;
  --mint: #d9e8dc;
  --bg: #fafaf9;
  --ink: #1c1917;
  --muted: #57534e;
  --line: #e7e5e4;
  --blue: #314677;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
a {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

.promo-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: var(--green-bright);
  color: white;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  padding: 10px 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 4px 10px rgb(0 0 0 / 15%);
}

.container {
  width: min(100% - 32px, 1152px);
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 32px, 576px);
}

.container--mid {
  width: min(100% - 32px, 896px);
}

.container--recipes,
.container--reviews {
  width: min(100% - 24px, 768px);
}

.container--faq {
  width: min(100% - 32px, 672px);
}

.container--guarantee {
  width: min(100% - 32px, 768px);
}

.section-tight {
  padding: 24px 0 16px;
}

.section-white {
  background: #fff;
}

.hero {
  background: #fff;
  padding: 64px 0 40px;
  text-align: center;
}

.hero h1 {
  margin: 0 auto 16px;
  font-size: clamp(27px, 8.9vw, 73px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  max-width: 1030px;
}

.hero h1 span,
.gradient-title {
  background: linear-gradient(90deg, var(--orange), var(--green-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  max-width: 672px;
  margin: 0 auto 8px;
  color: rgb(28 25 23 / 70%);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
}

.hero__image-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
  overflow: hidden;
}

.hero__image {
  width: min(100%, 772px);
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 25%);
}

.hero__subcopy {
  max-width: 576px;
  margin: 0 auto 8px;
  color: rgb(28 25 23 / 70%);
  font-size: clamp(13.5px, 1.8vw, 17.6px);
  font-weight: 500;
  line-height: 1.65;
}

.price {
  text-align: center;
}

.price p {
  color: #dc2626;
  font-size: 16px;
  font-weight: 500;
}

.price p span {
  font-weight: 700;
  text-decoration: line-through;
}

.price strong {
  display: block;
  color: var(--green-bright);
  font-size: clamp(48px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.05;
}

.price--hero {
  margin: 8px 0 24px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  border-radius: 12px;
  background: var(--green-bright);
  color: white;
  font-size: clamp(15px, 2.8vw, 24px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  padding: 15px 28px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  animation: pulse-cta 2s ease-in-out infinite;
}

.cta:hover {
  background: var(--green-hover);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgb(22 163 74 / 30%);
}

.cta--large {
  font-size: clamp(17px, 3vw, 27px);
  padding: clamp(18px, 3vw, 28px) clamp(24px, 6vw, 56px);
}

.cta--blue {
  background: var(--blue);
  font-size: 17px;
  letter-spacing: 0.025em;
  padding: 20px 32px;
}

.cta--blue:hover {
  background: #26375e;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  margin-top: 32px;
  color: rgb(28 25 23 / 60%);
  font-size: 14px;
}

.benefits h2 {
  margin-bottom: 8px;
  text-align: center;
  font-size: clamp(30px, 4vw, 36px);
  font-weight: 900;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 8px;
}

.benefit-grid article,
.check-grid article {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  border: 1px solid rgb(231 229 228 / 80%);
  border-radius: 12px;
  background: white;
  color: #44403b;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  padding: 8px 12px;
  box-shadow: 0 1px 4px rgb(0 0 0 / 3%);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.benefit-grid article:hover,
.check-grid article:hover,
.bonus-card:hover,
.delivery-grid article:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgb(0 0 0 / 8%);
}

.benefit-grid span {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  font-size: 18px;
}

.benefits .cta,
.showcase .cta {
  display: flex;
  width: max-content;
  margin: 8px auto 0;
}

.recipes {
  background: var(--mint);
  padding: 8px 0 32px;
}

.recipes h2,
.perfect h2,
.delivery h2 {
  color: var(--green);
  text-align: center;
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 900;
  margin-bottom: 20px;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.recipe-grid img {
  width: 100%;
  height: clamp(176px, 25vw, 256px);
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 18px rgb(0 0 0 / 16%);
  transition: transform 0.15s ease;
}

.recipe-grid img:hover {
  transform: translateY(-4px);
}

.showcase {
  padding: 32px 0;
}

.showcase-card {
  max-width: 1024px;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  color: #44403b;
  padding: clamp(20px, 3vw, 32px);
  text-align: center;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 25%);
}

.showcase-card h2 {
  color: #292524;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
}

.showcase-card img {
  width: min(100%, 672px);
  margin: 16px auto 20px;
  filter: drop-shadow(0 25px 25px rgb(0 0 0 / 15%));
}

.showcase-card p {
  color: #57534d;
  font-size: clamp(16px, 2vw, 18px);
  margin-bottom: 32px;
}

.pill-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.pill-list span {
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f5f5f4;
  color: #44403b;
  font-size: clamp(11px, 2.5vw, 16px);
  font-weight: 700;
  padding: 8px 18px;
  text-align: center;
  white-space: nowrap;
}

.perfect {
  padding-bottom: 32px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.check-grid article {
  min-height: 44px;
  background: linear-gradient(90deg, var(--cream), white);
  border-color: #f5f5f4;
  font-size: 13px;
}

.check-grid span {
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  height: 24px;
  border-radius: 999px;
  background: rgb(234 88 12 / 15%);
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.bonuses {
  background: var(--cream);
  padding: 16px 0 40px;
}

.section-heading {
  text-align: center;
}

.tag {
  display: inline-block;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 8px;
}

.section-heading h2 {
  color: var(--green);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 auto 48px;
}

.section-heading h2 span,
.reviews h2 span,
.delivery h2 span {
  color: var(--orange);
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(100%, 768px);
  margin: 0 auto 40px;
}

.bonus-card {
  display: flex;
  align-items: stretch;
  gap: 20px;
  overflow: hidden;
  min-height: 118px;
  border-radius: 16px;
  background: white;
  text-align: left;
  box-shadow: 0 4px 12px rgb(0 0 0 / 10%);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.bonus-card__image {
  position: relative;
  flex: 0 0 144px;
}

.bonus-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.bonus-card__image b {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 8px 0;
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 900;
  padding: 2px 8px;
}

.bonus-card > div:last-child {
  min-width: 0;
  padding: 16px 20px 16px 0;
}

.bonus-card h3 {
  color: var(--green);
  font-size: clamp(15px, 2.4vw, 20px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 6px;
}

.bonus-card p {
  color: #57534d;
  font-size: clamp(12px, 2vw, 14px);
  line-height: 1.35;
  margin-bottom: 10px;
}

.free {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.free span {
  color: #a8a29e;
  font-size: 13px;
  font-weight: 800;
  text-decoration: line-through;
}

.free strong {
  border-radius: 999px;
  background: #dcfce7;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 4px 12px;
}

.bonus-total {
  width: min(100%, 704px);
  margin-inline: auto;
  border-radius: 16px;
  background: var(--green);
  color: white;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  padding: 20px 24px;
  box-shadow: 0 10px 22px rgb(0 0 0 / 14%);
}

.plans {
  background: var(--green);
  color: white;
  padding: 40px 0 28px;
}

.plans h2 {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.15;
}

.plans__lead {
  margin: 8px 0;
  text-align: center;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 700;
  color: rgb(255 255 255 / 90%);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(8px, 3vw, 32px);
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  background: white;
  color: var(--ink);
  padding: clamp(16px, 3vw, 32px);
  border-top: 10px solid var(--orange);
  box-shadow: 0 20px 32px rgb(0 0 0 / 20%);
}

.plan--premium {
  border-top-color: var(--green-bright);
  margin-top: -8px;
}

.best-seller {
  position: absolute;
  top: 8px;
  right: 8px;
  border-radius: 999px;
  background: #dc2626;
  color: white;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 4px 12px;
}

.plan__tag {
  align-self: center;
  border-radius: 999px;
  background: #ffedd5;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 8px 20px;
  margin-bottom: 12px;
}

.plan__tag--hot {
  background: var(--orange);
  color: white;
}

.plan h3 {
  color: var(--orange);
  font-size: clamp(15px, 3vw, 30px);
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 24px;
}

.plan ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.plan li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: clamp(11px, 2vw, 16px);
  font-weight: 700;
  line-height: 1.35;
}

.plan li::before {
  content: "✓";
  flex: 0 0 auto;
  color: var(--green-bright);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.gift-list li::before {
  content: "🎁";
  font-size: 18px;
}

.bonus-title {
  color: var(--orange);
  font-size: clamp(11px, 2vw, 16px);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  margin: 4px 0 8px;
}

.plan .price {
  margin-top: auto;
  padding-top: 16px;
}

.plan .cta {
  align-self: center;
  margin-top: 12px;
  font-size: clamp(13px, 2.5vw, 24px);
  padding: 18px clamp(16px, 5vw, 56px);
}

.whatsapp-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: min(100%, 576px);
  margin: 16px auto 0;
  border: 2px solid rgb(255 255 255 / 20%);
  border-radius: 16px;
  background: var(--green-bright);
  color: white;
  text-align: center;
  padding: 12px;
  box-shadow: 0 10px 22px rgb(0 0 0 / 16%);
}

.whatsapp-box span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgb(255 255 255 / 20%);
  font-size: 24px;
}

.whatsapp-box strong {
  font-size: 18px;
  font-weight: 900;
}

.whatsapp-box p {
  color: rgb(255 255 255 / 90%);
  font-size: 14px;
}

.reviews {
  padding: 32px 0 16px;
}

.reviews h2 {
  color: var(--green);
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.reviews > .container > p {
  color: rgb(28 25 23 / 70%);
  text-align: center;
  margin: 8px 0;
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 24px;
  border-radius: 16px;
  background: white;
  padding: 16px 20px;
  box-shadow: 0 10px 24px rgb(0 0 0 / 12%);
}

.rating-box strong {
  display: block;
  color: var(--green);
  font-size: clamp(48px, 8vw, 60px);
  font-weight: 900;
  line-height: 1;
}

.rating-box span,
.stars {
  color: var(--orange);
}

.rating-box small {
  display: block;
  color: rgb(28 25 23 / 60%);
  font-size: 12px;
}

.bars {
  flex: 1;
  display: grid;
  gap: 6px;
}

.bars div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bars b {
  width: 12px;
  color: rgb(28 25 23 / 70%);
  font-size: 14px;
}

.bars i {
  position: relative;
  flex: 1;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgb(28 25 23 / 10%);
}

.bars i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  background: var(--orange);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.review-card {
  border: 1px solid rgb(28 25 23 / 5%);
  border-radius: 16px;
  background: white;
  padding: 20px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 9%);
}

.stars {
  font-size: 14px;
  margin-bottom: 8px;
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.review-card__head b {
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--avatar);
  color: white;
  font-size: 14px;
}

.review-card__head span {
  display: grid;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.review-card__head small {
  color: rgb(28 25 23 / 60%);
  font-size: 12px;
  font-weight: 400;
}

.review-card p {
  color: rgb(28 25 23 / 80%);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 12px;
}

.review-card img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 8px;
}

.review-actions {
  display: flex;
  gap: 8px;
}

.review-actions button {
  border: 1px solid rgb(28 25 23 / 15%);
  border-radius: 999px;
  background: white;
  color: rgb(28 25 23 / 70%);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  transition: background 0.15s ease, color 0.15s ease;
}

.review-actions button:hover,
.review-actions button.is-liked {
  background: #f5f5f4;
  color: var(--orange);
}

.guarantee {
  background: var(--cream);
  padding: 16px 0;
}

.guarantee-card {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  border: 1px solid #f5f5f4;
  border-radius: 24px;
  background: white;
  padding: 20px;
  box-shadow: 0 16px 28px rgb(0 0 0 / 12%);
}

.guarantee-card__seal {
  position: relative;
  flex: 0 0 112px;
}

.guarantee-card__seal::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgb(234 88 12 / 10%);
  filter: blur(24px);
}

.guarantee-card img {
  position: relative;
  width: 112px;
  height: 112px;
}

.risk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: rgb(6 78 59 / 10%);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  padding: 4px 10px;
  margin-bottom: 8px;
}

.guarantee h2 {
  color: var(--green);
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 900;
  margin-bottom: 6px;
}

.guarantee p {
  color: rgb(28 25 23 / 75%);
  font-size: clamp(14px, 2vw, 15px);
  line-height: 1.65;
  margin-bottom: 8px;
}

.guarantee p strong {
  color: var(--orange);
}

.delivery {
  padding: 16px 0;
  text-align: center;
}

.delivery h2 {
  margin-bottom: 8px;
}

.delivery > .container > p {
  color: rgb(28 25 23 / 60%);
  font-size: 14px;
  margin-bottom: 8px;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.delivery-grid article {
  border: 1px solid #f5f5f4;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cream), #fff);
  padding: 16px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.delivery-grid span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: white;
  font-size: 24px;
  margin-bottom: 8px;
  box-shadow: 0 1px 4px rgb(0 0 0 / 6%);
  transition: transform 0.15s ease;
}

.delivery-grid article:hover span {
  transform: scale(1.1) rotate(3deg);
}

.delivery-grid h3 {
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
}

.delivery-grid p {
  color: rgb(28 25 23 / 55%);
  font-size: 12px;
}

.faq {
  background: var(--cream);
  padding: 16px 0 32px;
}

.faq__heading {
  text-align: center;
  margin-bottom: 8px;
}

.faq__heading span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.faq__heading h2 {
  color: var(--green);
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 900;
}

.accordion {
  overflow: hidden;
  border: 1px solid #f5f5f4;
  border-radius: 16px;
  background: white;
  box-shadow: 0 1px 6px rgb(0 0 0 / 4%);
}

.faq-item + .faq-item {
  border-top: 1px solid #f5f5f4;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  background: white;
  color: var(--green);
  text-align: left;
  font-size: clamp(14px, 2vw, 15px);
  font-weight: 700;
  padding: 14px 20px;
  transition: background 0.15s ease;
}

.faq-item.is-open button {
  color: var(--orange);
}

.faq-item button:hover {
  background: rgb(245 245 244 / 60%);
}

.faq-item button span {
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--green);
  transition: transform 0.25s ease, background 0.15s ease, color 0.15s ease;
}

.faq-item button span::before {
  content: "⌄";
  font-size: 18px;
  line-height: 1;
}

.faq-item.is-open button span {
  background: var(--orange);
  color: white;
  transform: rotate(180deg);
}

.faq-item > div {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.3s ease, opacity 0.3s ease;
}

.faq-item.is-open > div {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item p {
  overflow: hidden;
  color: rgb(28 25 23 / 75%);
  font-size: 14px;
  line-height: 1.65;
  padding: 0 20px 16px;
}

.faq .cta {
  display: flex;
  width: max-content;
  margin: 16px auto 0;
}

.thank-you-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #fff, var(--cream));
}

.thank-you {
  min-height: calc(100vh - 126px);
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 18% 16%, rgb(234 88 12 / 10%), transparent 28%),
    radial-gradient(circle at 82% 18%, rgb(22 163 74 / 12%), transparent 30%),
    #fff;
  padding: 64px 0;
}

.thank-you__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.thank-you__copy {
  text-align: left;
}

.thank-you__badge {
  display: inline-flex;
  border-radius: 999px;
  background: rgb(22 163 74 / 12%);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 8px 16px;
  margin-bottom: 16px;
}

.thank-you h1 {
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.thank-you h1 span {
  background: linear-gradient(90deg, var(--orange), var(--green-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.thank-you__copy > p {
  max-width: 620px;
  color: rgb(28 25 23 / 72%);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 24px;
}

.thank-you__notice {
  display: inline-grid;
  gap: 4px;
  border: 1px solid rgb(6 78 59 / 10%);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cream), #fff);
  padding: 16px 18px;
  box-shadow: 0 10px 22px rgb(0 0 0 / 8%);
}

.thank-you__notice strong {
  color: var(--green);
  font-size: 16px;
  font-weight: 900;
}

.thank-you__notice small {
  color: rgb(28 25 23 / 62%);
  font-size: 13px;
  font-weight: 600;
}

.thank-you__actions {
  display: flex;
  align-items: center;
}

.thank-you-page--failed .thank-you__badge {
  background: rgb(234 88 12 / 12%);
  color: var(--orange);
}

.thank-you-page--failed .cta {
  background: var(--orange);
}

.thank-you-page--failed .cta:hover {
  background: var(--orange-hover);
  box-shadow: 0 24px 48px rgb(234 88 12 / 30%);
}

.thank-you__image-wrap {
  display: flex;
  justify-content: center;
}

.thank-you__image {
  width: min(100%, 560px);
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 25%);
}

footer {
  background: var(--green-deep);
  color: rgb(255 255 255 / 80%);
  text-align: center;
  padding: 40px 16px;
}

footer p {
  color: white;
  font-weight: 800;
  margin-bottom: 8px;
}

footer small {
  display: block;
  font-size: 12px;
  margin-top: 8px;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
}

.checkout-modal.is-open {
  display: grid;
}

.checkout-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(28 25 23 / 65%);
  backdrop-filter: blur(6px);
}

.checkout-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  border: 1px solid rgb(255 255 255 / 70%);
  border-top: 8px solid var(--green-bright);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, var(--cream));
  box-shadow: 0 28px 72px rgb(0 0 0 / 32%);
  padding: 28px;
  text-align: center;
}

.checkout-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgb(28 25 23 / 8%);
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
}

.checkout-modal__close:hover {
  background: rgb(28 25 23 / 12%);
  color: var(--ink);
}

.checkout-modal__badge {
  display: inline-flex;
  border-radius: 999px;
  background: rgb(22 163 74 / 12%);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 12px;
}

.checkout-modal h2 {
  color: var(--green);
  font-size: clamp(28px, 6vw, 36px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
}

.checkout-modal p {
  color: rgb(28 25 23 / 68%);
  font-size: 14px;
  margin-bottom: 20px;
}

.checkout-modal__field {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.checkout-modal__field input {
  width: 100%;
  border: 2px solid rgb(6 78 59 / 16%);
  border-radius: 14px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  outline: none;
  padding: 15px 16px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.checkout-modal__field input:focus {
  border-color: var(--green-bright);
  box-shadow: 0 0 0 4px rgb(22 163 74 / 14%);
}

.checkout-modal__field input.is-invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgb(220 38 38 / 10%);
}

.checkout-modal__error {
  display: block;
  min-height: 18px;
  color: #dc2626;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  margin: 6px 0 12px;
}

.checkout-modal__pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  border-radius: 14px;
  background: var(--green-bright);
  color: white;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 16px 20px;
  box-shadow: 0 16px 32px rgb(22 163 74 / 28%);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.checkout-modal__pay:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgb(22 163 74 / 34%);
}

.checkout-modal__pay[disabled] {
  cursor: wait;
  opacity: 0.9;
  transform: none;
}

.checkout-modal__loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: none;
}

.checkout-modal.is-loading .checkout-modal__pay-text {
  display: none;
}

.checkout-modal.is-loading .checkout-modal__loading {
  display: inline-flex;
}

.checkout-modal.is-loading .checkout-modal__close,
.checkout-modal.is-loading .checkout-modal__backdrop {
  pointer-events: none;
}

.checkout-modal__spinner {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border: 3px solid rgb(255 255 255 / 45%);
  border-top-color: white;
  border-radius: 999px;
  animation: checkout-spin 0.8s linear infinite;
}

@keyframes pulse-cta {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 25px -5px rgb(22 163 74 / 45%);
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 18px 40px -5px rgb(22 163 74 / 75%);
  }
}

@keyframes checkout-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 760px) {
  .container,
  .container--narrow,
  .container--mid,
  .container--recipes,
  .container--reviews,
  .container--faq,
  .container--guarantee {
    width: min(100% - 24px, 100%);
  }

  .hero {
    padding-top: 60px;
  }

  .hero__image {
    width: 100%;
    max-width: none;
    border-radius: 20px;
  }

  .trust-row {
    gap: 12px;
    font-size: 12px;
  }

  .benefit-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .recipe-grid img {
    height: 176px;
  }

  .pill-list span {
    white-space: normal;
  }

  .bonus-card {
    gap: 12px;
  }

  .bonus-card__image {
    flex-basis: 96px;
  }

  .bonus-card > div:last-child {
    padding: 12px 12px 12px 0;
  }

  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan {
    border-radius: 16px;
    padding: 16px 10px;
    border-top-width: 6px;
  }

  .plan__tag {
    font-size: 9px;
    padding: 4px 8px;
    white-space: nowrap;
  }

  .best-seller {
    font-size: 8px;
    padding: 2px 6px;
  }

  .plan li {
    gap: 6px;
  }

  .plan li::before {
    font-size: 16px;
  }

  .rating-box {
    gap: 16px;
    padding: 14px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-card {
    flex-direction: column;
    text-align: center;
  }

  .delivery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thank-you {
    min-height: auto;
    padding: 48px 0;
  }

  .thank-you__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .thank-you__copy {
    text-align: center;
  }

  .thank-you__copy > p {
    margin-inline: auto;
  }

  .thank-you__actions {
    justify-content: center;
  }

  .thank-you__image {
    width: min(100%, 460px);
    border-radius: 20px;
  }
}

@media (max-width: 430px) {
  .promo-bar {
    font-size: 11px;
  }

  .cta {
    width: 100%;
    padding-inline: 16px;
  }

  .benefits .cta,
  .showcase .cta,
  .faq .cta {
    width: 100%;
  }

  .recipe-grid {
    gap: 10px;
  }

  .recipe-grid img {
    height: 145px;
    border-radius: 12px;
  }

  .bonus-total {
    font-size: 16px;
  }

  .price strong {
    font-size: 44px;
  }

  .rating-box {
    align-items: flex-start;
  }

  .checkout-modal {
    padding: 16px;
  }

  .checkout-modal__dialog {
    border-radius: 20px;
    padding: 24px 18px 18px;
  }

  .checkout-modal__pay {
    font-size: 15px;
  }

  .thank-you h1 {
    font-size: 42px;
  }

  .thank-you__copy > p {
    font-size: 17px;
  }

  .thank-you__actions .cta {
    width: 100%;
  }
}
