/* ============================================
   MÉTODO DE ORGANIZAÇÃO ALIMENTAR - Landing Page V2
   Design System & Styles — High Conversion Focus
   ============================================ */

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

/* ---------- Custom Properties ---------- */
:root {
  --green-900: #0D3311;
  --green-800: #1B5E20;
  --green-700: #2E7D32;
  --green-600: #388E3C;
  --green-500: #43A047;
  --green-400: #66BB6A;
  --green-300: #81C784;
  --green-200: #A5D6A7;
  --green-100: #C8E6C9;
  --green-50: #E8F5E9;
  --green-pale: #F1F8E9;

  --orange-700: #E65100;
  --orange-600: #FF6D00;
  --orange-500: #FF8F00;
  --orange-400: #FFA726;
  --orange-glow: rgba(255, 109, 0, 0.40);

  --white: #FFFFFF;
  --off-white: #FAFBF8;
  --cream: #F5F7F0;
  --gray-50: #F5F5F5;
  --gray-100: #EEEEEE;
  --gray-200: #E0E0E0;
  --gray-300: #BDBDBD;
  --gray-500: #757575;
  --gray-600: #616161;
  --gray-700: #424242;
  --gray-800: #2D2D2D;
  --gray-900: #1A1A1A;

  --red: #D32F2F;
  --red-light: #FFEBEE;
  --red-50: #FFF5F5;
  --gold: #FFB300;

  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-muted: #9E9E9E;

  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --section-padding: 88px 0;
  --container-max: 1080px;
  --container-padding: 0 24px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 20px rgba(27,94,32,0.10);
  --shadow-cta: 0 8px 28px rgba(255,109,0,0.40);

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; }

/* ---------- Container ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ---------- Section Common ---------- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-50);
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-title .hl { color: var(--green-800); }
.section-title .hl-orange { color: var(--orange-600); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

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

/* ---------- CTA Button ---------- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange-600) 0%, var(--orange-700) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  padding: 20px 44px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(255,109,0,0.50);
}

.cta-btn:hover::before { left: 100%; }
.cta-btn:active { transform: translateY(-1px); }

.cta-btn .arrow {
  font-size: 1.2rem;
  transition: transform var(--transition-base);
}
.cta-btn:hover .arrow { transform: translateX(5px); }

.cta-sub {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 28px rgba(255,109,0,0.40); }
  50% { box-shadow: 0 8px 48px rgba(255,109,0,0.60); }
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 56px 0 72px;
  background: linear-gradient(175deg, var(--green-50) 0%, var(--cream) 40%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(67,160,71,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.hero h1 .hl { color: var(--green-800); }
.hero h1 .hl-orange { color: var(--orange-600); }

.hero-subline {
  font-size: 1.15rem;
  color: var(--green-700);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.5;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--gray-700);
}

.hero-checks li .chk {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800;
}

.hero-cta-wrap { margin-bottom: 24px; }

/* Social proof block */
.hero-proof {
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.hero-proof .stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.hero-proof p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.hero-proof p strong { color: var(--green-800); }

/* Hero image */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-visual img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-slow);
}

.hero-visual:hover img {
  transform: scale(1.02);
}

/* ============================================
   STORY SECTION
   ============================================ */
.story {
  padding: 72px 0;
  background: var(--white);
}

.story-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

.story-wrapper p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 16px;
}

.story-wrapper p.story-lead {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  font-family: var(--font-display);
}

.story-wrapper p.story-highlight {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-800);
  background: var(--green-50);
  border-left: 4px solid var(--green-500);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 28px 0;
}

.story-wrapper p.story-dim { color: var(--gray-500); }
.story-wrapper p .bold { font-weight: 700; color: var(--gray-900); }
.story-wrapper p .text-red { color: var(--red); font-weight: 600; }
.story-wrapper p .text-green { color: var(--green-700); font-weight: 600; }

/* ============================================
   PAIN SECTION
   ============================================ */
.pain {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.pain-narrative {
  max-width: 680px;
  margin: 0 auto 48px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-md);
}

.pain-narrative::before {
  content: '💬';
  position: absolute;
  top: -16px; left: 32px;
  font-size: 1.8rem;
  background: var(--white);
  padding: 0 8px;
}

.pain-narrative p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 8px;
}

.pain-narrative p .pain-bold { font-weight: 700; color: var(--gray-900); }
.pain-narrative p .pain-red { color: var(--red); font-weight: 600; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.pain-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition-base);
}

.pain-card:hover {
  border-color: var(--red);
  background: var(--red-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pain-card .p-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--red-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

.pain-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 2px;
}

.pain-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   SOLUTION
   ============================================ */
.solution {
  padding: var(--section-padding);
  background: linear-gradient(175deg, var(--green-800) 0%, var(--green-900) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.solution::before {
  content: '';
  position: absolute;
  top: -250px; right: -250px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.solution .section-tag { background: rgba(255,255,255,0.1); color: var(--green-200); }
.solution .section-title { color: var(--white); }
.solution .section-title .hl { color: var(--green-300); }
.solution .section-sub { color: rgba(255,255,255,0.7); }

.method-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.method-step {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(8px);
  transition: all var(--transition-base);
}

.method-step:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.method-step .step-n {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 900;
  margin: 0 auto 16px;
}

.method-step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 8px;
}

.method-step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ============================================
   FOOD PREVIEW
   ============================================ */
.food-preview {
  padding: var(--section-padding);
  background: var(--white);
}

.food-preview-img {
  max-width: 800px;
  margin: 0 auto 40px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.food-preview-img img {
  width: 100%;
  transition: transform var(--transition-slow);
}

.food-preview-img:hover img { transform: scale(1.02); }

.food-caption {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  margin-top: -24px;
  margin-bottom: 40px;
}

/* ============================================
   RECIPE CATEGORIES
   ============================================ */
.categories {
  padding: var(--section-padding);
  background: var(--cream);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}

.cat-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.cat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--green-400));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-base);
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--green-200);
}
.cat-card:hover::after { transform: scaleX(1); }

.cat-card .c-icon {
  width: 52px; height: 52px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px;
}

.cat-card h4 {
  font-family: var(--font-display);
  font-size: 0.98rem; font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.cat-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cat-card .c-count {
  display: inline-block;
  margin-top: 12px;
  background: var(--green-50);
  color: var(--green-800);
  font-size: 0.75rem; font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits {
  padding: var(--section-padding);
  background: linear-gradient(175deg, var(--green-800) 0%, var(--green-900) 100%);
  color: var(--white);
}

.benefits .section-tag { background: rgba(255,255,255,0.1); color: var(--green-200); }
.benefits .section-title { color: var(--white); }
.benefits .section-title .hl { color: var(--green-300); }
.benefits .section-sub { color: rgba(255,255,255,0.65); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.ben-card {
  text-align: center;
  padding: 28px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.ben-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-3px);
}

.ben-card .ben-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.ben-card h4 {
  font-family: var(--font-display);
  font-size: 0.92rem; font-weight: 700;
  margin-bottom: 4px;
}

.ben-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* ============================================
   COST COMPARISON
   ============================================ */
.cost-compare {
  padding: var(--section-padding);
  background: var(--white);
}

.cost-table {
  max-width: 700px;
  margin: 0 auto 48px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cost-table table {
  width: 100%;
  border-collapse: collapse;
}

.cost-table th, .cost-table td {
  padding: 18px 24px;
  text-align: left;
  font-size: 0.95rem;
}

.cost-table thead th {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cost-table .col-item { width: 50%; }
.cost-table .col-delivery { width: 25%; text-align: center; }
.cost-table .col-method { width: 25%; text-align: center; }

.cost-table thead .col-delivery { background: var(--red-light); color: var(--red); }
.cost-table thead .col-method { background: var(--green-50); color: var(--green-800); }

.cost-table tbody tr { border-bottom: 1px solid var(--gray-100); }
.cost-table tbody tr:last-child { border-bottom: none; }
.cost-table tbody td { color: var(--text-secondary); }
.cost-table tbody .col-delivery { text-align: center; color: var(--red); font-weight: 700; }
.cost-table tbody .col-method { text-align: center; color: var(--green-800); font-weight: 700; }

.cost-table tfoot td {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  padding: 20px 24px;
  background: var(--gray-50);
}
.cost-table tfoot .col-delivery { text-align: center; color: var(--red); background: var(--red-light); }
.cost-table tfoot .col-method { text-align: center; color: var(--green-800); background: var(--green-50); }

.cost-savings-badge {
  display: inline-block;
  background: var(--green-50);
  border: 2px solid var(--green-200);
  color: var(--green-800);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  margin-bottom: 32px;
}

/* ============================================
   BEFORE x AFTER
   ============================================ */
.comparison {
  padding: var(--section-padding);
  background: var(--cream);
}

.comp-wrapper {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 20px;
  align-items: stretch;
  max-width: 850px;
  margin: 0 auto;
}

.comp-card {
  border-radius: var(--radius-xl);
  padding: 36px 28px;
}

.comp-card.before {
  background: var(--red-50);
  border: 2px solid #FFCDD2;
}

.comp-card.after {
  background: var(--green-50);
  border: 2px solid var(--green-200);
}

.comp-card .card-label {
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.comp-card.before .card-label { color: var(--red); }
.comp-card.after .card-label { color: var(--green-800); }

.comp-card ul { display: flex; flex-direction: column; gap: 14px; }

.comp-card li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; font-weight: 500;
  color: var(--gray-700);
}

.comp-card li .emoji { flex-shrink: 0; font-size: 1.1rem; }

.comp-vs {
  display: flex; align-items: center; justify-content: center;
}

.comp-vs span {
  width: 48px; height: 48px;
  background: var(--gray-800);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 800;
}

/* ============================================
   COST OF NOT BUYING
   ============================================ */
.cost-not-buy {
  padding: var(--section-padding);
  background: linear-gradient(175deg, var(--gray-900) 0%, #111 100%);
  color: var(--white);
}

.cost-not-buy .section-tag { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); }
.cost-not-buy .section-title { color: var(--white); }
.cost-not-buy .section-title .hl { color: var(--orange-400); }
.cost-not-buy .section-sub { color: rgba(255,255,255,0.55); }

.cost-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.cost-card {
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 32px 20px;
}

.cost-card .cc-icon { font-size: 2.2rem; margin-bottom: 12px; display: block; }

.cost-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.85);
}

.cost-card .cc-price {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 900;
  color: var(--red);
  margin-bottom: 4px;
}

.cost-card .cc-period {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.cost-not-buy .total-waste {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange-400);
  margin-bottom: 12px;
}

.cost-not-buy .total-waste .big-num {
  font-size: 2.5rem;
}

.cost-not-buy .contrast-line {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

.cost-not-buy .contrast-line strong {
  color: var(--green-400);
  font-size: 1.3rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-padding);
  background: var(--white);
}

.testimonials-img {
  max-width: 500px;
  margin: 0 auto 40px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

.testimonials-img img { width: 100%; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.testi-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition-base);
}

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

.testi-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700;
  color: var(--white);
}

.testi-info h5 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; }
.testi-info .loc { font-size: 0.75rem; color: var(--text-muted); }

.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 10px; letter-spacing: 2px; }

.testi-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-style: italic;
}

.testi-card .verified {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 12px;
  font-size: 0.72rem; font-weight: 600;
  color: var(--green-800);
}

/* ============================================
   BONUSES
   ============================================ */
.bonuses {
  padding: var(--section-padding);
  background: linear-gradient(175deg, var(--green-50) 0%, var(--cream) 100%);
}

.bonus-stack {
  max-width: 700px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.b-card {
  display: flex; gap: 18px; align-items: center;
  background: var(--white);
  border: 2px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  transition: all var(--transition-base);
  position: relative;
}

.b-card:hover {
  border-color: var(--green-400);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.b-card .b-tag {
  position: absolute;
  top: -1px; right: 20px;
  background: var(--orange-600);
  color: var(--white);
  font-size: 0.68rem; font-weight: 800;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  letter-spacing: 1px;
}

.b-card .b-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}

.b-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--gray-800); margin-bottom: 2px; }
.b-card .b-val { font-size: 0.8rem; color: var(--text-muted); text-decoration: line-through; margin-bottom: 4px; }
.b-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

/* ============================================
   GUARANTEE
   ============================================ */
.guarantee {
  padding: 64px 0;
  background: var(--white);
}

.guarantee-box {
  max-width: 700px;
  margin: 0 auto;
  display: flex; gap: 28px; align-items: center;
  background: var(--green-50);
  border: 2px solid var(--green-200);
  border-radius: var(--radius-2xl);
  padding: 44px;
}

.guarantee-box .g-shield { flex-shrink: 0; font-size: 4.5rem; }

.guarantee-box h3 {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 800;
  color: var(--green-800);
  margin-bottom: 10px;
}

.guarantee-box p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.guarantee-box strong { color: var(--green-800); }

/* ============================================
   OFFER
   ============================================ */
.offer {
  padding: var(--section-padding);
  background: linear-gradient(175deg, var(--green-800) 0%, var(--green-900) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.offer::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,109,0,0.05) 0%, transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.offer .section-tag { background: rgba(255,255,255,0.1); color: var(--green-200); }
.offer .section-title { color: var(--white); }

.offer-card {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-2xl);
  padding: 48px 40px;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
}

/* Value stack */
.value-stack {
  text-align: left;
  margin-bottom: 32px;
}

.vs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}

.vs-row:last-child { border-bottom: none; }
.vs-row .vs-label { display: flex; align-items: center; gap: 10px; }
.vs-row .vs-label .vs-check { color: var(--green-400); font-size: 1rem; }
.vs-row .vs-price { font-weight: 700; color: rgba(255,255,255,0.5); }

.vs-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  margin-top: 8px;
  border-top: 2px solid rgba(255,255,255,0.15);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
}

.vs-total .vs-price {
  text-decoration: line-through;
  color: rgba(255,255,255,0.4);
}

/* Pricing */
.offer-pricing {
  margin-bottom: 24px;
  padding: 24px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
}

.offer-pricing .old-price {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.offer-pricing .new-price {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
}

.offer-pricing .new-price .cur {
  font-size: 1.4rem;
  vertical-align: super;
  margin-right: 4px;
}

.offer-pricing .installments {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
}

.offer-savings {
  display: inline-block;
  background: rgba(255,109,0,0.15);
  border: 1px solid rgba(255,109,0,0.35);
  color: var(--orange-400);
  font-size: 0.85rem; font-weight: 700;
  padding: 8px 24px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
}

.offer .cta-btn { width: 100%; padding: 22px; font-size: 1.15rem; }

.offer-trust {
  display: flex;
  justify-content: center;
  gap: 20px; flex-wrap: wrap;
  margin-top: 24px;
}

.offer-trust span {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--section-padding);
  background: var(--cream);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover { border-color: var(--green-400); }

.faq-q {
  width: 100%;
  background: none; border: none;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.98rem; font-weight: 700;
  color: var(--gray-800);
  transition: color var(--transition-base);
}

.faq-q:hover { color: var(--green-800); }

.faq-q .faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--green-50);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--green-800);
  transition: transform var(--transition-base), background var(--transition-base);
}

.faq-item.active .faq-q .faq-icon {
  transform: rotate(45deg);
  background: var(--green-800);
  color: var(--white);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-a { max-height: 300px; }

.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 72px 0;
  background: linear-gradient(175deg, var(--green-900) 0%, #0A2A0D 100%);
  color: var(--white);
  text-align: center;
}

.final-cta .section-title { color: var(--white); max-width: 700px; margin: 0 auto 16px; }
.final-cta .section-sub { color: rgba(255,255,255,0.55); margin-bottom: 32px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 40px 0;
  background: #0A0A0A;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

.footer p { font-size: 0.78rem; margin-bottom: 6px; }
.footer a { color: rgba(255,255,255,0.5); text-decoration: underline; transition: color var(--transition-fast); }
.footer a:hover { color: var(--white); }

/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.mobile-sticky.visible { transform: translateY(0); }
.mobile-sticky .cta-btn { width: 100%; padding: 16px; font-size: 0.95rem; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hero-content > * { animation: fadeInUp 0.7s ease both; }
.hero-content > *:nth-child(2) { animation-delay: 0.1s; }
.hero-content > *:nth-child(3) { animation-delay: 0.15s; }
.hero-content > *:nth-child(4) { animation-delay: 0.2s; }
.hero-content > *:nth-child(5) { animation-delay: 0.3s; }
.hero-content > *:nth-child(6) { animation-delay: 0.4s; }
.hero-content > *:nth-child(7) { animation-delay: 0.5s; }

.hero-visual { animation: fadeInRight 0.8s ease 0.2s both; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { order: 1; }
  .hero-visual { order: 0; margin-bottom: 8px; }
  .hero-visual img { max-width: 360px; margin: 0 auto; }
  .hero-checks { align-items: center; }
  .hero-cta-wrap { display: flex; flex-direction: column; align-items: center; }
  .hero-proof { margin: 0 auto; }

  .method-steps { grid-template-columns: 1fr; max-width: 380px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .cost-cards { grid-template-columns: 1fr; max-width: 300px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  :root { --section-padding: 60px 0; }

  .section-title { font-size: 1.55rem; }

  .pain-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .comp-wrapper { grid-template-columns: 1fr; gap: 16px; }
  .comp-vs { order: -1; }
  .comp-vs span { width: 36px; height: 36px; font-size: 0.72rem; }

  .guarantee-box { flex-direction: column; text-align: center; padding: 32px 24px; }
  .offer-card { padding: 32px 20px; }

  .mobile-sticky { display: block; }
  .footer { padding-bottom: 88px; }

  .cost-table th, .cost-table td { padding: 14px 12px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
  :root { --container-padding: 0 16px; --section-padding: 48px 0; }

  .hero { padding: 40px 0 56px; }
  .hero h1 { font-size: 1.6rem; }
  .hero-visual img { max-width: 280px; }

  .cta-btn { font-size: 0.95rem; padding: 17px 28px; }
  .offer-pricing .new-price { font-size: 3rem; }

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

  .b-card { flex-direction: column; text-align: center; }
  .b-card .b-tag { position: static; display: inline-block; border-radius: var(--radius-full); margin-bottom: 8px; }

  .pain-narrative { padding: 28px 20px; }
  .story-wrapper p { font-size: 1rem; }
}
