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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
}

/* ── Theme Variables ── */
html[data-theme="light"] {
  --bg: #ffffff;
  --bg-secondary: #f8f9fa;
  --text: #111827;
  --text-muted: #6b7280;
  --primary: #16a34a;
  --primary-hover: #15803d;
  --border: #e5e7eb;
  --card: #ffffff;
}

html[data-theme="dark"] {
  --bg: #0f172a;
  --bg-secondary: #1e293b;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --primary: #22c55e;
  --primary-hover: #16a34a;
  --border: #334155;
  --card: #1e293b;
}

body {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── Launch Popup ── */
.launch-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity 0.4s, visibility 0.4s;
}

.launch-popup.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.popup-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
}

.popup-logo {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  margin-bottom: 32px;
}

.popup-section-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.popup-options {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}

.popup-option {
  background: var(--bg-secondary);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: inherit;
}

.popup-option:hover {
  background: var(--border);
}

.popup-option.selected {
  border-color: var(--primary);
  background: var(--bg-secondary);
}

.popup-continue {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
}

.popup-continue:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.popup-continue:not(:disabled):hover {
  background: var(--primary-hover);
}

/* ── Header ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

header.scrolled {
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  border-bottom-color: var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  text-decoration: none;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

nav a:hover {
  color: var(--text);
  background: var(--bg-secondary);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.15rem;
  padding: 6px 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}

.icon-btn:hover {
  background: var(--bg-secondary);
  color: var(--text);
}

.lang-switcher {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  gap: 2px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 6px;
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  font-family: inherit;
}

.lang-btn:hover,
.lang-btn.active {
  color: var(--primary);
  background: var(--bg-secondary);
}

/* ── Main Content ── */
main {
  padding-top: 60px;
}

section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* ── Hero ── */
.hero {
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: calc(100vh - 60px);
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.hero-content > p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin-bottom: 12px;
}

.hero-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  background: var(--card);
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.hero-form input:focus {
  border-color: var(--primary);
}

.hero-form button {
  white-space: nowrap;
}

.hero-trust {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-form-msg,
.final-form-msg {
  margin-top: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  min-height: 24px;
}

.hero-form-msg.success,
.final-form-msg.success { color: var(--primary); }
.hero-form-msg.error,
.final-form-msg.error { color: #ef4444; }

/* Hero animation */
.hero-anim {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeIn 0.5s ease forwards;
}

.hero-anim:nth-child(1) { animation-delay: 0s; }
.hero-anim:nth-child(2) { animation-delay: 0.1s; }
.hero-anim:nth-child(3) { animation-delay: 0.2s; }
.hero-anim:nth-child(4) { animation-delay: 0.3s; }

.hero .phone-mockup { animation-delay: 0.25s; }

@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Phone Mockup ── */
.phone-mockup {
  flex: 0 0 240px;
  width: 240px;
  height: 500px;
  display: flex;
  flex-direction: column;
  border-radius: 36px;
  border: 8px solid #1f2937;
  background: var(--bg-secondary);
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  padding: 0;
  position: relative;
  overflow: hidden;
}

html[data-theme="dark"] .phone-mockup {
  border-color: #475569;
}

.phone-notch {
  width: 100px;
  height: 24px;
  background: #1f2937;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

html[data-theme="dark"] .phone-notch {
  background: #475569;
}

.phone-screen {
  padding: 10px 14px 0;
  flex: 1;
  overflow: hidden;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.phone-greeting {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text);
}
.phone-date {
  font-size: 0.58rem;
  color: var(--text-muted);
}

/* Calorie card */
.phone-calorie-card {
  background: var(--primary);
  border-radius: 10px;
  padding: 8px 10px;
  margin-bottom: 8px;
}
.phone-cal-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 5px;
}
.phone-cal-num { font-size: 1rem; font-weight: 800; color: #fff; line-height: 1; }
.phone-cal-sep { font-size: 0.6rem; color: rgba(255,255,255,0.6); }
.phone-cal-goal { font-size: 0.6rem; color: rgba(255,255,255,0.8); font-weight: 500; }
.phone-cal-bar-track {
  height: 5px;
  background: rgba(255,255,255,0.25);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 3px;
}
.phone-cal-bar-fill {
  height: 100%;
  background: rgba(255,255,255,0.9);
  border-radius: 3px;
}
.phone-cal-remain { font-size: 0.52rem; color: rgba(255,255,255,0.7); }

/* Macro bars */
.phone-macros {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 8px;
}
.phone-macro {
  display: grid;
  grid-template-columns: 38px 1fr 42px;
  align-items: center;
  gap: 0 6px;
}
.phone-macro-bar {
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.phone-macro-fill {
  height: 100%;
  border-radius: 3px;
}
.phone-macro-fill.protein { background: var(--primary); }
.phone-macro-fill.carbs { background: #3b82f6; }
.phone-macro-fill.fat { background: #f59e0b; }
.phone-macro-label { font-size: 0.56rem; color: var(--text-muted); }
.phone-macro-val { font-size: 0.52rem; color: var(--text-muted); text-align: right; }

/* Food log */
.phone-recent-label {
  font-size: 0.56rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.phone-food-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 0;
  border-top: 1px solid var(--border);
}
.phone-food-icon { font-size: 0.9rem; flex-shrink: 0; }
.phone-food-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.phone-food-name {
  font-size: 0.62rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.phone-food-macros { font-size: 0.52rem; color: var(--text-muted); }
.phone-food-cal { font-size: 0.6rem; font-weight: 700; color: var(--primary); flex-shrink: 0; }

/* Tab bar */
.phone-tabbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 6px 0 8px;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}
.phone-tab { font-size: 1rem; opacity: 0.4; }
.phone-tab-mic {
  background: var(--primary);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  font-size: 0.8rem;
}

/* ── Button ── */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.btn-primary:hover {
  background: var(--primary-hover);
}

/* ── How it works ── */
.how-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.how-section h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

.steps {
  display: flex;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ── Features ── */
.features-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  max-width: 640px;
  padding: 40px 0;
}

.feature-row:first-child {
  padding-top: 0;
}

.feature-row.reverse {
  margin-left: auto;
  text-align: right;
}

.feature-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.feature-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── Social proof ── */
.social-section {
  background: var(--bg-secondary);
  max-width: 100%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

.testimonial-author {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
}

/* ── Comparison ── */
.compare-section h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.compare-table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.compare-table th,
.compare-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.compare-table th {
  font-weight: 700;
  font-size: 0.9rem;
}

.compare-highlight {
  color: var(--primary);
  font-weight: 600;
}

.compare-table thead .compare-highlight {
  color: var(--text);
  background: var(--bg-secondary);
  border-radius: 8px 8px 0 0;
}

.compare-table tbody .compare-highlight {
  background: var(--bg-secondary);
}

.compare-table tbody tr:last-child .compare-highlight {
  border-radius: 0 0 8px 8px;
}

/* ── FAQ ── */
.faq-section h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.faq-list {
  max-width: 640px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 20px 0;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-left: 16px;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item p {
  padding: 0 0 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── Final CTA ── */
.final-cta-section {
  text-align: center;
  padding: 100px 24px;
}

.final-cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.final-cta-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.final-cta-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto 12px;
}

.final-cta-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  background: var(--card);
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.final-cta-form input:focus {
  border-color: var(--primary);
}

.final-cta-form button {
  white-space: nowrap;
}

.final-cta-trust {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-built {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-social {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.footer-social a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--text);
}

/* ── Fade-in Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  section {
    padding: 48px 24px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-form {
    flex-direction: column;
    max-width: 100%;
  }

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

  .phone-mockup {
    flex: 0 0 auto;
    width: 200px;
    height: 400px;
  }

  .phone-mockup .phone-notch {
    width: 80px;
    height: 20px;
  }

  .steps {
    flex-direction: column;
    gap: 32px;
  }

  .features-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .feature-row,
  .feature-row.reverse {
    margin-left: 0;
    text-align: left;
    padding: 24px 0;
  }

  .testimonials {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

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

  .final-cta-form {
    flex-direction: column;
  }

  .final-cta-section {
    padding: 60px 24px;
  }

  nav {
    display: none;
  }

  .popup-options {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  section {
    padding: 40px 16px;
  }

  .popup-card {
    padding: 36px 24px;
  }

  .how-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .social-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Feedback section */
.feedback-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}
.feedback-section h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.feedback-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
}
.feedback-form {
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feedback-form input,
.feedback-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.feedback-form input:focus,
.feedback-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.feedback-form .btn-primary {
  align-self: flex-start;
}
.feedback-msg {
  text-align: center;
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--primary);
  min-height: 20px;
}

/* Accessibility section */
.access-section {
  background: var(--bg-secondary);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.access-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.access-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.access-inner h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.access-inner p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Lucide icon styles */
.feat-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
  color: var(--primary);
  display: inline-block;
  flex-shrink: 0;
}
.icon-check {
  width: 18px;
  height: 18px;
  color: var(--primary);
}
.icon-check.icon-muted {
  color: var(--text-muted);
}
.icon-cross {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  opacity: 0.4;
}
.step-num i {
  color: var(--primary);
}
/* Theme toggle icon color */
.icon-btn i {
  color: var(--text-muted);
  display: block;
}

.hero-coming {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  margin: 16px 0 8px;
  opacity: 0.85;
}

/* ── Legal Pages ── */
.legal-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px;
}

.legal-section h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.legal-section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.legal-section h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-section p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-section ul {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-section li {
  margin-bottom: 8px;
}

.legal-section a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

.legal-section a:hover {
  color: var(--primary-hover);
}

/* No reviews placeholder */
.no-reviews {
  text-align: center;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.no-reviews-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.no-reviews-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.6;
}
