﻿/* ==========================================================================
   OptiFiton Hungary - Design System & Modern Stylesheet
   Google Ads Compliant Weight Loss & Metabolism Editorial Landing
   ========================================================================== */

:root {
  --primary: #0d9488; /* Teal 600 */
  --primary-dark: #0f766e; /* Teal 700 */
  --primary-light: #14b8a6; /* Teal 500 */
  --primary-soft: #f0fdfa; /* Teal 50 */
  --accent: #f97316; /* Orange 500 (Citrus Energy) */
  --accent-dark: #ea580c;
  --accent-soft: #fff7ed;
  --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;
  --border-color: #e2e8f0;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 6px 18px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.12);
  --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 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Editorial Compliance Header 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 Meta Bar */
.header-meta-bar {
  background: #f8fafc;
  border-bottom: 1px solid var(--border-color);
  font-size: 13px;
  color: var(--text-muted);
  padding: 7px 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;
}

.map-link {
  color: var(--primary);
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.map-link:hover {
  color: var(--primary-dark);
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  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: 21px;
  color: var(--text-heading);
  letter-spacing: -0.5px;
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.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: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.4);
}

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

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #042f2e 0%, #115e59 55%, #0f766e 100%);
  color: white;
  padding: 95px 0 115px 0;
  overflow: hidden;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 45px;
  align-items: center;
  position: relative;
  z-index: 2;
}

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

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

.hero-lead {
  font-size: 19px;
  color: #ccfbf1;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 600px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  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 22px rgba(249, 115, 22, 0.38);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(249, 115, 22, 0.48);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.35);
  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: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 24px;
}

.hero-stat-item strong {
  display: block;
  font-size: 25px;
  font-weight: 800;
  color: #5eead4;
}

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

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
  border: 4px solid rgba(255, 255, 255, 0.22);
}

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

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

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

.floating-pill i {
  font-size: 24px;
  color: var(--accent);
}

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

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

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

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

.section-title {
  font-size: 35px;
  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: 26px;
}

.pillar-card {
  background: white;
  padding: 34px 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(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

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

.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;
}

/* Thermogenic Botanicals Section */
.botanicals-section {
  padding: 85px 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: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

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

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

.botanical-badge.popular {
  background: #ccfbf1;
  color: #0f766e;
}

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

.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: 13px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  border-left: 3px solid var(--accent);
}

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

/* ==========================================================================
   Interactive Quiz & Dynamic Animation Component
   ========================================================================== */
.assessment-section {
  padding: 95px 0;
  background: linear-gradient(135deg, #042f2e 0%, #0f172a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

#confettiCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.quiz-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  color: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 5;
}

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

.quiz-header h3 {
  font-size: 27px;
  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: 28px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  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: 21px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 22px;
  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: #ccfbf1;
  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: linear-gradient(135deg, var(--primary), var(--primary-dark));
  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 {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.35);
}

/* Loading & Scanner Animation */
.quiz-loading-box {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.scanner-ring {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px auto;
  border: 5px solid #e2e8f0;
  border-top: 5px solid var(--accent);
  border-right: 5px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-heading);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.scanner-step-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
  min-height: 24px;
}

.scanner-sub {
  font-size: 13px;
  color: var(--text-muted);
}

/* Quiz Result Container */
.quiz-result {
  display: none;
  text-align: center;
  padding: 20px 0;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.radial-score-box {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #f59e0b);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.4);
  animation: pulseScore 2s infinite;
}

@keyframes pulseScore {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); box-shadow: 0 16px 36px rgba(249, 115, 22, 0.55); }
  100% { transform: scale(1); }
}

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

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

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

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

.result-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 26px;
  text-align: left;
}

.metric-card {
  background: var(--primary-soft);
  border: 1px solid #ccfbf1;
  padding: 14px;
  border-radius: var(--radius-sm);
}

.metric-card span {
  font-size: 12px;
  color: var(--primary-dark);
  font-weight: 600;
  display: block;
}

.metric-card strong {
  font-size: 18px;
  color: var(--dark);
  font-weight: 800;
}

.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: #166534;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

/* Recipes Section */
.recipes-section {
  padding: 85px 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: 210px;
  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.06);
}

.recipe-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(4px);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  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;
}

/* Workflow Section */
.workflow-section {
  padding: 85px 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: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(13, 148, 136, 0.35);
}

.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: 85px 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: 85px 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: var(--primary-soft);
  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;
}

/* Footer & Map Integration */
.site-footer {
  background: #042f2e;
  color: #99f6e4;
  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: 21px;
  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;
  color: #ccfbf1;
}

.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: var(--accent);
  padding-left: 4px;
}

.map-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: #5eead4;
  font-weight: 600;
  font-size: 13px;
  margin-top: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.map-card-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

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

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

/* Modal Popup */
.recipe-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(5px);
  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);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #042f2e;
  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: #ccfbf1;
  flex: 1;
  min-width: 260px;
}

.cookie-content p a {
  color: var(--accent);
  text-decoration: underline;
}

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

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

.btn-cookie-decline {
  background: transparent;
  color: #99f6e4;
  border: 1px solid #115e59;
  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(--accent);
  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(--accent-dark);
  transform: translateY(-3px);
}

/* 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;
  }
  .result-metric-grid {
    grid-template-columns: 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;
  }
}
