/* ================================================================
   RECETTES IA — Feuille de style principale
   Palette : orange #E8873A · beige #FDF6EE · brun #6B3A2A · blanc
   Typographie : Playfair Display (titres) · Lato (corps)
   ================================================================ */

/* ─── Variables CSS ─────────────────────────────────────────── */
:root {
  --orange:        #E8873A;
  --orange-dark:   #C25B1A;
  --orange-light:  #F5A96B;
  --beige:         #FDF6EE;
  --beige-dark:    #F0E4D4;
  --brown:         #6B3A2A;
  --text:          #2c2c2c;
  --text-light:    #666;
  --white:         #ffffff;
  --shadow:        0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover:  0 8px 30px rgba(0,0,0,0.15);
  --radius:        12px;
  --radius-sm:     6px;
  --transition:    all 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; height: auto; }
a { color: var(--orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange-dark); }

/* ─── Container ─────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── Titres ────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--text);
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--orange);
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   COMPOSANTS — Boutons
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 135, 58, 0.4);
}
.btn-secondary {
  background: var(--beige);
  color: var(--brown);
  border-color: var(--beige-dark);
}
.btn-secondary:hover {
  background: var(--beige-dark);
  color: var(--brown);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}
.btn-large  { padding: 16px 40px; font-size: 1.05rem; }
.btn-sm     { padding: 8px 18px; font-size: 0.85rem; }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--beige-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo-icon { font-size: 1.6rem; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}
.logo-accent { color: var(--orange); }

/* ─── Messages Flash ────────────────────────────────────────── */
.flash { padding: 14px 0; font-weight: 600; }
.flash-warning { background: #fff3cd; color: #856404; }
.flash-error   { background: #f8d7da; color: #721c24; }
.flash-success { background: #d4edda; color: #155724; }

/* ═══════════════════════════════════════════════════════════════
   PAGE D'ACCUEIL — Hero
   ═══════════════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--beige) 0%, #fff 100%);
  padding: 80px 0;
  overflow: hidden;
}
.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero-text { flex: 1; }
.hero-visual { flex: 0 0 380px; }

.hero-badge {
  display: inline-block;
  background: var(--beige-dark);
  color: var(--orange-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}
.hero-title {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  color: var(--text);
}
.hero-title em {
  color: var(--orange);
  font-style: normal;
  display: block;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-cta-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.8rem;
}

/* ─── Book Mockup ────────────────────────────────────────────── */
.book-mockup {
  position: relative;
  perspective: 1000px;
}
.book-cover {
  background: linear-gradient(135deg, var(--orange) 0%, var(--brown) 100%);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: -8px 12px 40px rgba(0,0,0,0.25), 0 4px 12px rgba(0,0,0,0.1);
  transform: rotateY(-5deg);
  min-height: 260px;
  display: flex;
  align-items: center;
}
.book-cover-inner { color: white; }
.book-cover-inner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.book-cover-inner p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.book-cover-deco { font-size: 2rem; margin-top: 1rem; letter-spacing: 6px; }

.book-page {
  background: white;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px;
  box-shadow: var(--shadow);
  margin-top: 10px;
  border: 1px solid var(--beige-dark);
}
.recipe-preview-img { font-size: 2.5rem; margin-bottom: 8px; }
.recipe-preview h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 8px;
}
.recipe-meta-mini {
  display: flex;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ─── Stats bar ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--orange);
  padding: 25px 0;
}
.stats-grid {
  display: flex;
  justify-content: space-around;
  text-align: center;
  color: white;
}
.stat-item strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
}
.stat-item span {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ─── Features ───────────────────────────────────────────────── */
.features { padding: 80px 0; background: #fff; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature-card {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.feature-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--brown);
}
.feature-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

/* ─── How it works ───────────────────────────────────────────── */
.how-it-works { padding: 80px 0; background: var(--beige); }
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 3rem;
}
.step {
  flex: 1;
  text-align: center;
  padding: 20px;
}
.step-number {
  width: 50px;
  height: 50px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step p  { font-size: 0.9rem; color: var(--text-light); }
.step-arrow {
  padding-top: 20px;
  font-size: 1.5rem;
  color: var(--orange);
  align-self: flex-start;
  padding-top: 35px;
}
.how-cta { text-align: center; }

/* ─── Recipe examples ────────────────────────────────────────── */
.recipe-examples { padding: 80px 0; }
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.recipe-card {
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.recipe-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.recipe-card-emoji {
  background: var(--beige);
  font-size: 3rem;
  padding: 25px;
  text-align: center;
}
.recipe-card-content { padding: 20px; flex: 1; }
.recipe-tag {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
  font-weight: 700;
  text-transform: uppercase;
}
.recipe-card-content h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.recipe-card-content p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 10px; }
.recipe-card-meta {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ─── CTA Final ──────────────────────────────────────────────── */
.cta-final { padding: 80px 0; background: var(--beige); text-align: center; }
.cta-final h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.cta-final > .container > p { color: var(--text-light); margin-bottom: 3rem; }

.cta-options {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}
.cta-option {
  background: white;
  border-radius: var(--radius);
  padding: 35px 30px;
  text-align: center;
  min-width: 260px;
  box-shadow: var(--shadow);
  position: relative;
}
.cta-option--featured {
  border: 3px solid var(--orange);
  transform: scale(1.04);
}
.cta-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.cta-price { font-size: 2.8rem; font-weight: 700; color: var(--orange); }
.cta-format { font-size: 1rem; color: var(--text-light); margin-bottom: 1.5rem; }
.cta-option ul { list-style: none; text-align: left; margin-bottom: 1.5rem; }
.cta-option ul li { font-size: 0.9rem; padding: 5px 0; color: var(--text); }

/* ═══════════════════════════════════════════════════════════════
   QUESTIONNAIRE
   ═══════════════════════════════════════════════════════════════ */
.questionnaire-section {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, var(--beige) 0%, #fff 100%);
  min-height: 100vh;
}
.questionnaire-wrapper {
  max-width: 700px;
  margin: 0 auto;
}
.questionnaire-header { text-align: center; margin-bottom: 2.5rem; }
.questionnaire-header h1 { font-size: 2.2rem; margin-bottom: 0.5rem; }
.questionnaire-header p  { color: var(--text-light); }

/* ─── Progress bar ───────────────────────────────────────────── */
.progress-container {
  margin-bottom: 2.5rem;
}
.progress-bar {
  height: 8px;
  background: var(--beige-dark);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 4px;
  transition: width 0.4s ease;
}
.progress-label { text-align: center; font-size: 0.85rem; color: var(--text-light); font-weight: 600; }

/* ─── Étapes du formulaire ───────────────────────────────────── */
.form-step {
  display: none;
  animation: fadeSlideIn 0.3s ease;
}
.form-step.active { display: block; }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeSlideOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-20px); }
}

.step-question { margin-bottom: 1.5rem; }
.step-question h2 { font-size: 1.6rem; margin-bottom: 0.4rem; }
.step-question p  { color: var(--text-light); }

/* ─── Champs texte ───────────────────────────────────────────── */
.form-input,
input[type="email"],
input[type="text"] {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  transition: var(--transition);
  background: #fff;
}
.form-input:focus,
input[type="email"]:focus,
input[type="text"]:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 135, 58, 0.15);
}

.step-subfield { margin-top: 1rem; }
.step-sublabel {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 6px;
}
.step-sublabel small { display: block; font-size: 0.78rem; opacity: 0.7; }

/* ─── Choices grid ───────────────────────────────────────────── */
.choices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.choices-grid--3 { grid-template-columns: repeat(3, 1fr); }
.choices-grid--2 { grid-template-columns: repeat(2, 1fr); }

.choice-card {
  cursor: pointer;
  position: relative;
}
.choice-card input[type="radio"],
.choice-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.choice-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 12px;
  background: #fff;
  border: 2px solid var(--beige-dark);
  border-radius: var(--radius);
  font-size: 0.9rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  user-select: none;
}
.choice-label:hover {
  border-color: var(--orange-light);
  background: var(--beige);
}
.choice-icon { font-size: 1.8rem; }

/* Sélectionné */
.choice-card input:checked + .choice-label {
  border-color: var(--orange);
  background: linear-gradient(135deg, #fff8f2, var(--beige));
  color: var(--brown);
  box-shadow: 0 0 0 3px rgba(232, 135, 58, 0.15);
}

.choice-card--large .choice-label {
  padding: 25px 20px;
  font-size: 1rem;
  font-weight: 600;
}

/* ─── Navigation formulaire ──────────────────────────────────── */
.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--beige-dark);
}

/* ─── Récapitulatif ──────────────────────────────────────────── */
.recap-box {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 1.5rem;
}
.recap-box h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--brown);
}

/* ─── Erreurs de formulaire ──────────────────────────────────── */
.form-error, ul.form-error { color: #c0392b; font-size: 0.85rem; margin: 5px 0; list-style: none; }

/* ═══════════════════════════════════════════════════════════════
   CHECKOUT
   ═══════════════════════════════════════════════════════════════ */
.checkout-section { padding: 60px 0 80px; background: var(--beige); }
.checkout-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.checkout-wrapper h1 { font-size: 2.2rem; margin-bottom: 0.5rem; }
.checkout-subtitle  { color: var(--text-light); margin-bottom: 2rem; }

.preferences-recap {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 25px;
  margin-bottom: 2.5rem;
  text-align: left;
  box-shadow: var(--shadow);
}
.preferences-recap h2 { font-size: 1rem; color: var(--brown); margin-bottom: 10px; }
.recap-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: var(--beige);
  border: 1px solid var(--beige-dark);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.85rem;
  color: var(--text);
}
.chip--highlight { background: var(--orange); color: white; border-color: var(--orange); }
.chip--warning   { background: #fff3cd; color: #856404; border-color: #ffc107; }

/* ─── Pricing cards ──────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 2.5rem;
  align-items: start;
}
.pricing-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 35px 25px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.pricing-card--featured {
  border: 3px solid var(--orange);
  transform: scale(1.02);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 0.78rem;
  padding: 4px 16px;
  border-radius: 50px;
  font-weight: 700;
  white-space: nowrap;
}
.pricing-card-header { margin-bottom: 1.2rem; }
.pricing-format-icon { font-size: 3rem; display: block; margin-bottom: 0.5rem; }
.pricing-card-header h2 { font-size: 1.5rem; color: var(--brown); }
.pricing-price { margin-bottom: 1.5rem; }
.price-amount { font-size: 3.2rem; font-weight: 700; color: var(--orange); display: block; }
.price-period { font-size: 0.82rem; color: var(--text-light); }
.pricing-features { list-style: none; text-align: left; margin-bottom: 1.8rem; }
.pricing-features li { padding: 6px 0; font-size: 0.9rem; border-bottom: 1px solid var(--beige-dark); }
.btn-checkout { width: 100%; }

.checkout-guarantees {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ─── Loader de paiement ─────────────────────────────────────── */
.payment-loader {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.loader-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.loader-spinner {
  width: 45px;
  height: 45px;
  border: 4px solid var(--beige-dark);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════════════════
   SUCCESS PAGE
   ═══════════════════════════════════════════════════════════════ */
.success-section { padding: 60px 0 80px; }
.success-wrapper {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.success-icon { font-size: 5rem; display: block; margin-bottom: 1.5rem; animation: bounceIn 0.6s ease; }
@keyframes bounceIn {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
.success-title   { font-size: 2.2rem; margin-bottom: 1rem; }
.success-subtitle { color: var(--text-light); font-size: 1.05rem; margin-bottom: 2rem; }

.success-ready {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: var(--radius);
  padding: 30px;
  margin: 2rem 0;
}
.ready-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }

.success-generating {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 30px;
  margin: 2rem 0;
}
.generating-animation { display: flex; justify-content: center; margin-bottom: 1rem; }
.generating-dots { display: flex; gap: 8px; }
.generating-dots span {
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 1.4s ease infinite;
}
.generating-dots span:nth-child(2) { animation-delay: 0.2s; }
.generating-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes pulse {
  0%, 80%, 100% { transform: scale(0.5); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

.success-steps { text-align: left; margin: 1.5rem 0; display: inline-block; }
.success-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-light);
}
.success-step--done { color: #28a745; }
.success-step--active { color: var(--orange); font-weight: 700; }
.step-check { font-size: 1.1rem; }
.step-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid var(--beige-dark);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}
.success-email-notice {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-top: 1rem;
}
.success-email-note { font-size: 0.82rem; color: var(--text-light); margin-top: 0.8rem; }

/* ── Barre de progression IA ───────────────────── */
.ai-progress-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin: 1.2rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.ai-progress-message {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
  min-height: 1.4em;
}
.ai-progress-bar-track {
  background: #f0ece6;
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
}
.ai-progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), #e8854a);
  border-radius: 999px;
  transition: width 0.8s ease;
}
.ai-progress-pct {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: right;
  margin-top: 0.3rem;
}

.success-actions { display: flex; gap: 15px; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.error-notice { color: #c0392b; font-size: 0.9rem; margin-top: 1rem; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--text);
  color: #aaa;
  padding: 50px 0 25px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 40px;
}
.footer-brand { color: #ddd; }
.footer-brand strong { font-size: 1.2rem; color: #fff; }
.footer-brand p { font-size: 0.88rem; margin-top: 6px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #aaa; font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-content   { flex-direction: column; gap: 30px; }
  .hero-visual    { width: 100%; }
  .hero-title     { font-size: 2rem; }
  .features-grid  { grid-template-columns: 1fr; }
  .recipes-grid   { grid-template-columns: 1fr; }
  .pricing-grid   { grid-template-columns: 1fr; }
  .cta-options    { flex-direction: column; align-items: center; }
  .cta-option--featured { transform: none; }
  .steps-grid     { flex-direction: column; }
  .step-arrow     { display: none; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .choices-grid   { grid-template-columns: 1fr; }
  .choices-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .footer-content { flex-direction: column; }
  .hero-visual    { display: none; }
}
