/* ==========================================================================
   HerbaFlora Hungary - Design System & Modern Stylesheet
   Google Ads Compliant Editorial & Wellness Layout
   ========================================================================== */

:root {
  --primary: #15803d; /* Emerald 700 */
  --primary-dark: #166534; /* Emerald 800 */
  --primary-light: #22c55e; /* Emerald 500 */
  --primary-soft: #f0fdf4; /* Emerald 50 */
  --accent: #ca8a04; /* Amber 600 */
  --accent-soft: #fefce8;
  --dark: #0f172a; /* Slate 900 */
  --dark-surface: #1e293b;
  --text-main: #334155; /* Slate 700 */
  --text-heading: #0f172a; /* Slate 900 */
  --text-muted: #64748b; /* Slate 500 */
  --bg-light: #f8fafc; /* Slate 50 */
  --border-color: #e2e8f0;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 30px rgba(0,0,0,0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Disclaimer Banner */
.editorial-top-bar {
  background: #fef3c7;
  border-bottom: 1px solid #fde68a;
  padding: 8px 16px;
  font-size: 13px;
  color: #92400e;
  text-align: center;
  font-weight: 500;
}

.editorial-top-bar a {
  text-decoration: underline;
  color: #78350f;
  margin-left: 6px;
  font-weight: 600;
}

/* Header Top Info */
.header-meta-bar {
  background: #f8fafc;
  border-bottom: 1px solid var(--border-color);
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0;
}

.header-meta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.meta-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.meta-item i {
  color: var(--primary);
  font-size: 14px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--text-heading);
  letter-spacing: -0.5px;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), #10b981);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(21, 128, 61, 0.25);
}

.brand-tag {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  padding: 6px 0;
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(21, 128, 61, 0.25);
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  font-size: 24px;
  color: var(--text-heading);
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #064e3b 0%, #065f46 60%, #047857 100%);
  color: white;
  padding: 90px 0 110px 0;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-size: cover;
  background-position: center;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  color: #d1fae5;
}

.hero-title {
  font-size: 46px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.8px;
}

.hero-lead {
  font-size: 19px;
  color: #d1fae5;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.btn-primary {
  background: #22c55e;
  color: #064e3b;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.35);
}

.btn-primary:hover {
  background: #16a34a;
  color: white;
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

.hero-stats-row {
  display: flex;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
}

.hero-stat-item strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #a7f3d0;
}

.hero-stat-item span {
  font-size: 13px;
  color: #e2e8f0;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.hero-image-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

.floating-pill {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-pill i {
  font-size: 22px;
  color: #22c55e;
}

.floating-pill p {
  font-size: 13px;
  color: #e2e8f0;
  line-height: 1.4;
}

/* Feature Pillars */
.pillars-section {
  padding: 70px 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-tag {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.pillar-card {
  background: white;
  padding: 32px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.pillar-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.pillar-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.pillar-card p {
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.6;
}

/* Botanicals Showcase */
.botanicals-section {
  padding: 80px 0;
  background: white;
}

.botanicals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 28px;
}

.botanical-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.botanical-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.botanical-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.botanical-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: #f1f5f9;
  color: var(--text-muted);
}

.botanical-badge.popular {
  background: #dcfce7;
  color: #166534;
}

.botanical-icon-box {
  width: 44px;
  height: 44px;
  background: #ecfdf5;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 20px;
}

.botanical-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.botanical-compound {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
}

.botanical-desc {
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.botanical-action-box {
  background: #f8fafc;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  border-left: 3px solid var(--primary);
}

.botanical-action-box strong {
  color: var(--text-heading);
}

/* ==========================================================================
   Interactive Quiz & Assessment Component
   ========================================================================== */
.assessment-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  position: relative;
}

.quiz-container {
  max-width: 780px;
  margin: 0 auto;
  background: white;
  color: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.quiz-header {
  margin-bottom: 28px;
  text-align: center;
}

.quiz-header h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.quiz-header p {
  font-size: 14px;
  color: var(--text-muted);
}

.quiz-progress-bar-wrap {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: var(--radius-full);
  margin-bottom: 26px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--primary), #22c55e);
  transition: width 0.4s ease;
}

.quiz-step {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.quiz-step.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-indicator {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.question-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 20px;
  line-height: 1.4;
}

.options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.quiz-option {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: #f8fafc;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
  cursor: pointer;
  transition: var(--transition);
}

.quiz-option:hover {
  background: var(--primary-soft);
  border-color: var(--primary-light);
}

.quiz-option.selected {
  background: #dcfce7;
  border-color: var(--primary);
  color: var(--primary-dark);
}

.quiz-option-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  margin-right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.quiz-option.selected .quiz-option-radio {
  border-color: var(--primary);
  background: var(--primary);
}

.quiz-option.selected .quiz-option-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.quiz-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-quiz-prev {
  background: #f1f5f9;
  color: var(--text-muted);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
}

.btn-quiz-prev:hover {
  background: #e2e8f0;
  color: var(--text-heading);
}

.btn-quiz-next {
  background: var(--primary);
  color: white;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-quiz-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-quiz-next:not(:disabled):hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* Quiz Result Container */
.quiz-result {
  display: none;
  text-align: center;
  padding: 20px 0;
  animation: fadeIn 0.5s ease forwards;
}

.score-circle-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #10b981);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 10px 25px rgba(21, 128, 61, 0.35);
}

.score-number {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.score-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.result-heading {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.result-summary-text {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: left;
  background: #f8fafc;
  padding: 18px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--primary);
}

.result-action-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
  text-align: left;
}

.result-action-box h4 {
  font-size: 17px;
  color: var(--primary-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.result-action-box ul {
  padding-left: 20px;
  font-size: 14px;
  color: #166534;
  line-height: 1.7;
}

.pdf-download-card {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  text-align: left;
}

.pdf-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pdf-icon {
  font-size: 40px;
  color: #dc2626;
}

.pdf-details h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
}

.pdf-details p {
  font-size: 13px;
  color: var(--text-muted);
}

.btn-download-pdf {
  background: #dc2626;
  color: white;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
}

.btn-download-pdf:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

/* Recipes Section */
.recipes-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.recipe-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.recipe-image-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.recipe-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-image-wrap img {
  transform: scale(1.05);
}

.recipe-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.recipe-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.recipe-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.recipe-meta-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.recipe-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.recipe-excerpt {
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.recipe-ingredients-preview {
  background: #f8fafc;
  padding: 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.recipe-ingredients-preview h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.recipe-ingredients-preview ul {
  list-style: none;
  font-size: 13px;
  color: var(--text-main);
  line-height: 1.5;
}

.recipe-ingredients-preview ul li::before {
  content: '✓ ';
  color: var(--primary);
  font-weight: bold;
}

.btn-recipe-modal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.btn-recipe-modal:hover {
  background: var(--primary);
  color: white;
}

/* Steps / Workflow */
.workflow-section {
  padding: 80px 0;
  background: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  position: relative;
}

.step-box {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  position: relative;
  transition: var(--transition);
}

.step-box:hover {
  background: white;
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.step-num-badge {
  position: absolute;
  top: -14px;
  left: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(21, 128, 61, 0.3);
}

.step-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 12px 0 10px 0;
}

.step-box p {
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
  padding: 80px 0;
  background: #f1f5f9;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars-row {
  color: #f59e0b;
  margin-bottom: 16px;
  font-size: 15px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.author-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.author-info h6 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
}

.author-info span {
  font-size: 13px;
  color: var(--text-muted);
}

/* FAQ Accordion */
.faq-section {
  padding: 80px 0;
  background: white;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question-btn {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: #f8fafc;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item.active .faq-question-btn {
  background: #f0fdf4;
  color: var(--primary-dark);
}

.faq-chevron {
  font-size: 14px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: white;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  padding: 20px 24px;
  max-height: 500px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.7;
}

/* CTA Download Block */
.cta-banner-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--primary-dark), #064e3b);
  color: white;
  text-align: center;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 17px;
  color: #d1fae5;
  margin-bottom: 30px;
}

/* Footer */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding-top: 70px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand h4 {
  font-size: 20px;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand p {
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-col h5 {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a:hover {
  color: #22c55e;
  padding-left: 4px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  font-size: 13px;
  color: #64748b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* Bottom Disclaimer */
.bottom-disclaimer-strip {
  background: #1e293b;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
  line-height: 1.5;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f172a;
  color: white;
  padding: 16px 24px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-content p {
  font-size: 13px;
  color: #cbd5e1;
  flex: 1;
  min-width: 260px;
}

.cookie-content p a {
  color: #38bdf8;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.btn-cookie-accept {
  background: var(--primary);
  color: white;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
}

.btn-cookie-decline {
  background: transparent;
  color: #94a3b8;
  border: 1px solid #475569;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
}

/* Scroll To Top */
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  z-index: 999;
}

.scroll-top-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* Modal Popup */
.recipe-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9990;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.recipe-modal-card {
  background: white;
  max-width: 620px;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.recipe-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 22px;
  color: var(--text-muted);
}

.recipe-modal-close:hover {
  color: var(--text-heading);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats-row {
    justify-content: center;
  }
  .hero-image-card {
    max-width: 500px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-lead {
    font-size: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .quiz-container {
    padding: 24px 18px;
  }
}
