/* ================================================
   PÓS CANETA — Design System & Styles
   Mobile-first · Sage & Coral · Premium feel
   ================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@600;700;800&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  /* Palette */
  --sage-900: #2d3a2e;
  --sage-800: #3d4f3e;
  --sage-700: #4a6150;
  --sage-600: #5a7a5e;
  --sage-500: #6b8f6b;
  --sage-400: #8aad7e;
  --sage-300: #a8c4a0;
  --sage-200: #c5dabe;
  --sage-100: #dfeeda;
  --sage-50:  #f0f7ee;

  --coral-500: #e07a5f;
  --coral-400: #e8937d;
  --coral-300: #f0ac9b;
  --coral-600: #c9654a;

  --cream-50:  #fffdf8;
  --cream-100: #fdf8f0;
  --cream-200: #f5eedf;

  --neutral-900: #1a1a1a;
  --neutral-700: #3d3d3d;
  --neutral-600: #555;
  --neutral-500: #777;
  --neutral-400: #999;
  --neutral-300: #bbb;
  --neutral-200: #ddd;
  --neutral-100: #f0f0f0;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,.15);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-med: 0.4s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--neutral-700);
  background-color: var(--cream-50);
  overflow-x: hidden;
}

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

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--sage-900);
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.4rem, 4vw, 2.25rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 600;
}

p {
  margin-bottom: var(--space-md);
}

.text-muted {
  color: var(--neutral-500);
}

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

section {
  padding: var(--space-3xl) 0;
}

/* ---------- Section Label (overline) ---------- */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-600);
  background: var(--sage-100);
  padding: 0.35em 1em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--coral-500), var(--coral-600));
  border: none;
  border-radius: var(--radius-full);
  padding: 1em 2.2em;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 20px rgba(224, 122, 95, 0.35);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(224, 122, 95, 0.45);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary:focus-visible {
  outline: 3px solid var(--coral-300);
  outline-offset: 3px;
}

/* Pulse animation for CTA emphasis */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(224, 122, 95, 0.35); }
  50% { box-shadow: 0 4px 30px rgba(224, 122, 95, 0.55), 0 0 0 8px rgba(224, 122, 95, 0.1); }
}

.btn-primary--pulse {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.btn-primary--pulse:hover {
  animation: none;
}

/* ---------- Cards (Glassmorphism) ---------- */
.card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ================================================
   SECTION 1: HERO
   ================================================ */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: var(--space-3xl) 0 var(--space-2xl);
  background: linear-gradient(170deg, var(--sage-50) 0%, var(--cream-50) 50%, var(--cream-100) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(168, 196, 160, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.hero__content {
  order: 2;
  text-align: center;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral-500);
  background: rgba(224, 122, 95, 0.1);
  padding: 0.4em 1.2em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.hero__title {
  margin-bottom: var(--space-md);
}

.hero__title em {
  font-style: normal;
  color: var(--coral-500);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--neutral-600);
  margin-bottom: var(--space-xl);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.hero__price-hint {
  font-size: 0.85rem;
  color: var(--neutral-500);
}

.hero__price-hint strong {
  color: var(--sage-700);
  font-weight: 600;
}

.hero__image {
  order: 1;
  display: flex;
  justify-content: center;
}

.hero__image img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* ================================================
   SECTION 2: PAIN IDENTIFICATION
   ================================================ */
.pain {
  background: var(--cream-50);
}

.pain__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto var(--space-2xl);
}

.pain__header p {
  color: var(--neutral-600);
  margin-top: var(--space-sm);
}

.pain__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.pain__card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.pain__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--sage-100);
  border-radius: var(--radius-md);
}

.pain__card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.pain__card p {
  font-size: 0.9rem;
  color: var(--neutral-600);
  margin-bottom: 0;
}

/* ================================================
   SECTION 3: SOLUTION / TURNAROUND
   ================================================ */
.solution {
  background: linear-gradient(175deg, var(--sage-50) 0%, var(--cream-50) 100%);
  position: relative;
}

.solution__wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  align-items: center;
}

.solution__text {
  max-width: 560px;
}

.solution__text h2 {
  margin-bottom: var(--space-lg);
}

.solution__text p {
  color: var(--neutral-600);
  font-size: 1.05rem;
}

.solution__highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.solution__highlights li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.95rem;
  color: var(--neutral-700);
}

.solution__highlights li::before {
  content: '✓';
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: var(--sage-500);
  border-radius: 50%;
  margin-top: 2px;
}

.solution__image {
  width: 100%;
  max-width: 480px;
}

.solution__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ================================================
   SECTION 4: WHAT'S INSIDE
   ================================================ */
.inside {
  background: var(--cream-50);
}

.inside__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.inside__header p {
  color: var(--neutral-600);
  margin-top: var(--space-sm);
}

.inside__categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.category-card {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.category-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.category-card__count {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--sage-700);
}

.category-card__label {
  font-size: 0.9rem;
  color: var(--neutral-600);
  margin-top: 0.25rem;
  margin-bottom: var(--space-sm);
}

.category-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral-500);
  background: rgba(224, 122, 95, 0.1);
  padding: 0.3em 0.8em;
  border-radius: var(--radius-full);
}

/* Recipe preview */
.inside__preview {
  max-width: 600px;
  margin: 0 auto;
}

.inside__preview h3 {
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--sage-800);
}

.preview-recipes {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.recipe-preview {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast);
}

.recipe-preview:hover {
  transform: translateX(4px);
}

.recipe-preview__emoji {
  font-size: 2rem;
  flex-shrink: 0;
}

.recipe-preview__info h4 {
  font-size: 0.95rem;
  color: var(--sage-800);
  margin-bottom: 0.15rem;
}

.recipe-preview__info p {
  font-size: 0.8rem;
  color: var(--neutral-500);
  margin-bottom: 0;
}

.recipe-preview__time {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sage-600);
  background: var(--sage-50);
  padding: 0.3em 0.7em;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* ================================================
   SECTION 5: HOW IT WORKS
   ================================================ */
.how {
  background: linear-gradient(175deg, var(--sage-50) 0%, var(--cream-50) 100%);
}

.how__header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto var(--space-2xl);
}

.how__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 600px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  position: relative;
}

.step__number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--sage-500), var(--sage-700));
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(107, 143, 107, 0.3);
}

.step__content h3 {
  margin-bottom: 0.25rem;
}

.step__content p {
  font-size: 0.9rem;
  color: var(--neutral-600);
  margin-bottom: 0;
}

/* Connector line between steps */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 28px;
  top: 60px;
  width: 2px;
  height: calc(100% - 20px);
  background: var(--sage-200);
}

/* ================================================
   SECTION 6: TESTIMONIALS (hidden by default)
   ================================================ */
.testimonials-section.hidden {
  display: none;
}

.testimonials-section {
  background: var(--cream-50);
}

.testimonials__header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto var(--space-2xl);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.testimonial-card {
  position: relative;
  padding-top: var(--space-lg);
}

/* --- Screenshot / Foto do depoimento --- */
.testimonial-card__screenshot {
  position: relative;
  width: 100%;
  min-height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: var(--space-md);
  background: var(--sage-100);
  border: 2px dashed var(--sage-300);
}

.testimonial-card__screenshot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

/* Quando a img não tem src (src=""), escondemos ela e mostramos o placeholder */
.testimonial-card__screenshot img[src=""] {
  display: none;
}

.testimonial-card__screenshot-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  color: var(--sage-400);
  font-size: 0.9rem;
  font-weight: 500;
  pointer-events: none;
}

.testimonial-card__screenshot-placeholder span:first-child {
  font-size: 2rem;
}

/* Quando a img tem um src real, escondemos o placeholder */
.testimonial-card__screenshot:has(img:not([src=""])) .testimonial-card__screenshot-placeholder {
  display: none;
}

/* Quando a img tem src real, mostrar normalmente */
.testimonial-card__screenshot:has(img:not([src=""])) {
  border: none;
  background: transparent;
  min-height: auto;
}

.testimonial-card__quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--neutral-700);
  margin-bottom: var(--space-md);
  position: relative;
}

.testimonial-card__quote::before {
  content: '"';
  position: absolute;
  top: -1.2rem;
  left: -0.3rem;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--sage-300);
  line-height: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage-200);
  overflow: hidden;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--sage-800);
}

/* ================================================
   SECTION 7: ABOUT / WHO'S BEHIND
   ================================================ */
.about {
  background: linear-gradient(175deg, var(--sage-50) 0%, var(--cream-50) 100%);
}

.about .container {
  max-width: 680px;
  text-align: center;
}

.about h2 {
  margin-bottom: var(--space-lg);
}

.about p {
  color: var(--neutral-600);
  font-size: 1.05rem;
}

.about__highlight {
  display: inline-block;
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-xl);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--sage-700);
}

/* ================================================
   SECTION 7.5: NUTRITIONIST BADGE
   ================================================ */
.nutri-badge {
  background: linear-gradient(175deg, var(--cream-50) 0%, var(--sage-50) 50%, var(--cream-50) 100%);
  position: relative;
  overflow: hidden;
}

.nutri-badge::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(168, 196, 160, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.nutri-badge__card {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
  padding: var(--space-2xl);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid var(--sage-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(107, 143, 107, 0.08);
  position: relative;
  overflow: hidden;
}

.nutri-badge__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--sage-400), var(--sage-600), var(--sage-400));
  background-size: 200% 100%;
  animation: nutri-shimmer 3s ease-in-out infinite;
}

@keyframes nutri-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.nutri-badge__seal {
  flex-shrink: 0;
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nutri-badge__seal-icon {
  font-size: 2.5rem;
  z-index: 1;
  position: relative;
  animation: seal-pulse 2.5s ease-in-out infinite;
}

@keyframes seal-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.nutri-badge__seal-ring {
  position: absolute;
  inset: 0;
  border: 3px solid var(--sage-300);
  border-radius: 50%;
  animation: ring-glow 2.5s ease-in-out infinite;
}

@keyframes ring-glow {
  0%, 100% { border-color: var(--sage-300); box-shadow: 0 0 0 0 rgba(107, 143, 107, 0); }
  50% { border-color: var(--sage-500); box-shadow: 0 0 20px rgba(107, 143, 107, 0.2); }
}

.nutri-badge__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.nutri-badge__tag {
  display: inline-block;
  width: fit-content;
  padding: 4px 16px;
  background: linear-gradient(135deg, var(--coral-500), var(--coral-600));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  animation: tag-glow 3s ease-in-out infinite;
}

@keyframes tag-glow {
  0%, 100% { box-shadow: 0 2px 8px rgba(224, 122, 95, 0.25); }
  50% { box-shadow: 0 4px 20px rgba(224, 122, 95, 0.45); }
}

.nutri-badge__content h2 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--sage-900);
  margin: 0;
}

.nutri-badge__content p {
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.65;
  margin: 0;
}

.nutri-badge__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: var(--space-sm);
}

.nutri-badge__detail {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--neutral-700);
}

.nutri-badge__detail-icon {
  flex-shrink: 0;
  font-size: 1rem;
}

.nutri-badge__credential {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--sage-100);
}

.nutri-badge__credential-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--sage-100);
  border-radius: 50%;
  border: 2px solid var(--sage-200);
}

.nutri-badge__credential strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--sage-800);
}

.nutri-badge__credential span {
  font-size: 0.8rem;
  color: var(--neutral-500);
}

@media (max-width: 600px) {
  .nutri-badge__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
  }

  .nutri-badge__tag {
    align-self: center;
  }

  .nutri-badge__details {
    align-items: center;
  }

  .nutri-badge__detail {
    justify-content: center;
  }

  .nutri-badge__credential {
    flex-direction: column;
    text-align: center;
  }
}

/* ================================================
   SECTION 8: FAQ
   ================================================ */
.faq {
  background: var(--cream-50);
}

.faq__header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto var(--space-2xl);
}

.faq__list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq__item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition-fast);
}

.faq__item:hover {
  box-shadow: var(--shadow-md);
}

.faq__item[open] {
  box-shadow: var(--shadow-md);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--sage-900);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--sage-600);
  background: var(--sage-100);
  border-radius: 50%;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.faq__item[open] summary::after {
  content: '−';
  background: var(--sage-200);
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.92rem;
  color: var(--neutral-600);
  line-height: 1.7;
}

/* ================================================
   SECTION 8.5: BONUS
   ================================================ */
.bonus {
  background: var(--cream-50);
}

.bonus__header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto var(--space-2xl);
}

.bonus__card {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-2xl);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid var(--sage-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.bonus__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--sage-400), var(--sage-600));
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.bonus__icon {
  font-size: 3rem;
  flex-shrink: 0;
  line-height: 1;
}

.bonus__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.bonus__tag {
  display: inline-block;
  width: fit-content;
  padding: 4px 14px;
  background: linear-gradient(135deg, var(--sage-500), var(--sage-700));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 100px;
  text-transform: uppercase;
}

.bonus__content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--sage-900);
  margin: 0;
}

.bonus__content p {
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.6;
  margin: 0;
}

.bonus__list {
  list-style: none;
  padding: 0;
  margin: var(--space-xs) 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bonus__list li {
  font-size: 0.9rem;
  color: var(--neutral-700);
}

.bonus__price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--neutral-100);
}

.bonus__price-old {
  font-size: 1rem;
  color: var(--neutral-400);
  text-decoration: line-through;
}

.bonus__price-free {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--sage-600);
  letter-spacing: -0.02em;
}

.bonus__price-hint {
  font-size: 0.8rem;
  color: var(--neutral-400);
}

@media (max-width: 600px) {
  .bonus__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
  }

  .bonus__price {
    justify-content: center;
  }

  .bonus__list {
    align-items: center;
  }
}

/* ================================================
   SECTION 9: GUARANTEE
   ================================================ */
.guarantee {
  background: linear-gradient(175deg, var(--sage-50) 0%, var(--cream-50) 100%);
}

.guarantee .container {
  text-align: center;
  max-width: 600px;
}

.guarantee__badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-2xl);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid var(--sage-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.guarantee__icon {
  font-size: 3.5rem;
}

.guarantee__badge h2 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

.guarantee__badge p {
  color: var(--neutral-600);
  font-size: 0.95rem;
  max-width: 420px;
}

/* ================================================
   SECTION 10: FINAL CTA + PRICING COMPARE
   ================================================ */
.final-cta {
  background: linear-gradient(170deg, var(--sage-800) 0%, var(--sage-900) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-4xl) 0;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, rgba(168, 196, 160, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 1;
  max-width: 1080px;
}

.final-cta h2 {
  color: #fff;
  margin-bottom: var(--space-md);
}

.final-cta > .container > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__micro {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: var(--space-xl);
}

.final-cta__micro strong {
  color: rgba(255,255,255,0.8);
}

/* ---------- Pricing Compare Grid ---------- */
.pricing-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 960px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-compare__card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
}

.pricing-compare__card--faded {
  opacity: 0.65;
}

.pricing-compare__card--faded:hover {
  opacity: 0.8;
}

/* Featured card */
.pricing-compare__card--featured {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--coral-500);
  box-shadow: 0 0 40px rgba(224, 122, 95, 0.25), 0 8px 32px rgba(0, 0, 0, 0.2);
  color: var(--neutral-700);
  padding: var(--space-2xl) var(--space-xl);
  transform: scale(1.04);
  z-index: 2;
}

.pricing-compare__card--featured:hover {
  transform: scale(1.06);
  box-shadow: 0 0 60px rgba(224, 122, 95, 0.35), 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* Ribbon */
.pricing-compare__ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--coral-500), var(--coral-600));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.4em 1.5em;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  white-space: nowrap;
  animation: ribbon-glow 2.5s ease-in-out infinite;
}

@keyframes ribbon-glow {
  0%, 100% { box-shadow: 0 4px 12px rgba(224, 122, 95, 0.3); }
  50% { box-shadow: 0 4px 24px rgba(224, 122, 95, 0.6); }
}

/* Header */
.pricing-compare__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.pricing-compare__emoji {
  font-size: 2rem;
}

.pricing-compare__header h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: inherit;
  margin: 0;
}

.pricing-compare__card--faded .pricing-compare__header h3 {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-compare__card--featured .pricing-compare__header h3 {
  color: var(--sage-900);
  font-size: 1.15rem;
}

/* Price */
.pricing-compare__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: var(--space-sm) 0;
}

.pricing-compare__amount {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
}

.pricing-compare__per {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.7;
}

.pricing-compare__old-price {
  font-size: 0.9rem;
  color: var(--neutral-400);
  text-decoration: line-through;
}

.pricing-compare__amount--highlight {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: var(--coral-500);
  position: relative;
}

.pricing-compare__cents {
  font-size: 0.45em;
  vertical-align: super;
  font-weight: 700;
}

.pricing-compare__payment {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sage-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Features list */
.pricing-compare__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.pricing-compare__feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  line-height: 1.4;
}

.pricing-compare__feature::before {
  flex-shrink: 0;
  font-size: 0.85rem;
  width: 20px;
  text-align: center;
}

.pricing-compare__feature--yes::before {
  content: '✓';
  color: var(--sage-400);
  font-weight: 700;
}

.pricing-compare__feature--no::before {
  content: '✗';
  color: var(--coral-500);
  opacity: 0.6;
}

.pricing-compare__card--faded .pricing-compare__feature {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-compare__card--featured .pricing-compare__feature {
  color: var(--neutral-700);
}

.pricing-compare__card--featured .pricing-compare__feature--yes::before {
  color: var(--sage-600);
}

/* CTA inside featured card */
.pricing-compare__card--featured .btn-primary {
  width: 100%;
  margin-top: var(--space-sm);
}

/* Trust badges */
.pricing-compare__trust {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  font-size: 0.78rem;
  color: var(--neutral-500);
  margin-top: var(--space-xs);
}

/* ---------- Responsive ---------- */
@media (min-width: 768px) {
  .pricing-compare {
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 0;
  }

  .pricing-compare__card--faded {
    border-radius: var(--radius-lg);
  }

  .pricing-compare__card--faded:first-child {
    border-right: none;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  }

  .pricing-compare__card--faded:last-child {
    border-left: none;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  }

  .pricing-compare__card--featured {
    border-radius: var(--radius-xl);
    transform: scale(1.06);
  }

  .pricing-compare__card--featured:hover {
    transform: scale(1.08);
  }
}

@media (max-width: 767px) {
  .pricing-compare__card--featured {
    order: -1;
    transform: none;
  }

  .pricing-compare__card--featured:hover {
    transform: none;
  }

  .pricing-compare__card--faded {
    padding: var(--space-lg);
  }

  .pricing-compare__trust {
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
  }
}

/* ================================================
   SECTION 11: FOOTER
   ================================================ */
.footer {
  background: var(--neutral-900);
  color: rgba(255,255,255,0.5);
  padding: var(--space-2xl) 0;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.8;
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-md);
}

.footer__disclaimer {
  max-width: 600px;
  margin: 0 auto var(--space-md);
}

.footer__legal {
  color: rgba(255,255,255,0.35);
}

/* ================================================
   SCROLL REVEAL ANIMATIONS
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for card grids */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn-primary--pulse {
    animation: none;
  }
}

/* ================================================
   RESPONSIVE: TABLET (768px+)
   ================================================ */
@media (min-width: 768px) {
  .pain__grid {
    grid-template-columns: 1fr 1fr;
  }

  .inside__categories {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .preview-recipes {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .recipe-preview {
    flex: 1 1 calc(50% - var(--space-md));
  }
}

/* ================================================
   RESPONSIVE: DESKTOP (1024px+)
   ================================================ */
@media (min-width: 1024px) {
  .hero .container {
    flex-direction: row;
    align-items: center;
  }

  .hero__content {
    order: 1;
    text-align: left;
    flex: 1;
  }

  .hero__subtitle {
    margin-left: 0;
  }

  .hero__cta-group {
    align-items: flex-start;
  }

  .hero__image {
    order: 2;
    flex: 0 0 45%;
  }

  .solution__wrapper {
    flex-direction: row;
  }

  .solution__text {
    flex: 1;
  }

  .solution__image {
    flex: 0 0 42%;
  }

  .how__steps {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    gap: var(--space-2xl);
  }

  .step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .step:not(:last-child)::after {
    display: none;
  }
}
