/* ========================================
   VIVOSIGN LANDING PAGE — STYLESHEET
   Design: Dark navy + white + green accent
   Font: Inter
======================================== */

:root {
  --green: #2ecc71;
  --green-dark: #27ae60;
  --green-light: #d5f5e3;
  --navy: #0f1923;
  --navy-mid: #1a2635;
  --navy-light: #243447;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --text: #1e293b;
  --text-muted: #64748b;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.text-green { color: var(--green); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(46,204,113,0.35); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--gray-200);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--gray-100); }
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: 10px; }
.btn-block { width: 100%; justify-content: center; }

/* ========== NAVBAR ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  flex-shrink: 0;
}
.nav-logo-text { letter-spacing: -0.3px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--text); background: var(--gray-100); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--gray-200);
}
.nav-mobile a {
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 500;
  color: var(--gray-600);
}
.nav-mobile a:hover { background: var(--gray-100); color: var(--text); }
.nav-mobile .btn { margin-top: 4px; justify-content: center; }
.nav-mobile.open { display: flex; }

/* ========== HERO ========== */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 50%, #0d2137 100%);
  padding: 80px 0 60px;
  color: var(--white);
}
.hero-inner { text-align: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,204,113,0.15);
  border: 1px solid rgba(46,204,113,0.3);
  color: var(--green);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 56px;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Quick Send Widget */
.quick-send-widget {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  max-width: 860px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
}
.qsw-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.qsw-icon {
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.qsw-header h3 { font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 2px; }
.qsw-header p { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.qsw-header .btn { margin-left: auto; }
.qsw-steps {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.qsw-step {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}
.step-num {
  width: 26px;
  height: 26px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.qsw-arrow { color: rgba(255,255,255,0.3); font-size: 1.2rem; }

/* ========== SOCIAL PROOF BAR ========== */
.social-proof-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 0;
}
.spb-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.spb-logos { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.spb-company { font-weight: 600; color: var(--gray-600); }
.spb-sep { color: var(--gray-400); }

/* ========== SECTION HEADER ========== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--navy);
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========== FEATURES ========== */
.features { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.feature-card:hover { border-color: var(--green); box-shadow: 0 4px 20px rgba(46,204,113,0.12); transform: translateY(-2px); }
.feature-card--green {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-color: transparent;
  color: white;
}
.feature-card--green h3, .feature-card--green p { color: white; }
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-icon.green { background: var(--green-light); color: var(--green-dark); }
.feature-icon.white { background: rgba(255,255,255,0.2); color: white; }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.green-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 12px;
  font-weight: 500;
}

/* ========== HOW IT WORKS ========== */
.how-it-works { background: var(--gray-50); }
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
}
.step-connector {
  width: 40px;
  height: 2px;
  background: var(--green);
  margin-top: 52px;
  flex-shrink: 0;
}
.step-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 12px;
  line-height: 1;
}
.step-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.hiw-cta { text-align: center; }

/* ========== COMPARISON ========== */
.comparison { background: var(--white); }
.comparison-table-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.comparison-table th, .comparison-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; font-weight: 500; }
.comparison-table thead th {
  background: var(--navy);
  color: white;
  font-weight: 700;
  font-size: 0.88rem;
}
.comparison-table thead th:first-child { border-radius: 0; }
.col-vivosign { background: rgba(46,204,113,0.06); }
.comparison-table thead .col-vivosign { background: var(--green); color: white; }
.best-badge {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
  font-weight: 600;
}
.comparison-table tbody tr:hover { background: var(--gray-50); }
.bad { color: #e74c3c; font-weight: 500; }
.comparison-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 12px; text-align: center; }

/* ========== PRICING ========== */
.pricing { background: var(--gray-50); }
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}
.toggle-label { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); }
.toggle-label.active { color: var(--text); }
.save-badge {
  display: inline-block;
  background: var(--green);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
}
.toggle-switch {
  width: 48px;
  height: 26px;
  background: var(--gray-200);
  border-radius: 100px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background var(--transition);
}
.toggle-switch[aria-checked="true"] { background: var(--green); }
.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.toggle-switch[aria-checked="true"] .toggle-thumb { transform: translateX(22px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pricing-card--featured {
  border-color: var(--green);
  box-shadow: 0 0 0 2px var(--green);
}
.pricing-card--dark {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.pricing-card--dark .plan-name { color: rgba(255,255,255,0.7); }
.pricing-card--dark .plan-desc { color: rgba(255,255,255,0.55); }
.pricing-card--dark .plan-features li { color: rgba(255,255,255,0.8); }
.pricing-card--dark .plan-features li.disabled { color: rgba(255,255,255,0.3); }
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 8px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-amount { font-size: 2.4rem; font-weight: 800; color: var(--navy); letter-spacing: -1px; }
.pricing-card--dark .price-amount { color: white; }
.price-period { font-size: 0.9rem; color: var(--text-muted); }
.plan-annual-note { font-size: 0.8rem; color: var(--green-dark); font-weight: 500; margin-bottom: 6px; }
.plan-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.5; }
.plan-features { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { font-size: 0.88rem; display: flex; align-items: flex-start; gap: 8px; color: var(--text); }
.plan-features li.disabled { color: var(--gray-400); }
.check { color: var(--green); font-weight: 700; flex-shrink: 0; }
.cross { color: var(--gray-400); flex-shrink: 0; }
.pricing-note { text-align: center; font-size: 0.88rem; color: var(--text-muted); margin-top: 32px; }

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
}
.stars { color: #f39c12; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.95rem; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.82rem; color: var(--text-muted); }

/* ========== FAQ ========== */
.faq { background: var(--gray-50); }
.faq-inner { max-width: 760px; }
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] { background: var(--gray-50); }
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-question:hover { background: var(--gray-50); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  background: var(--gray-50);
}
.faq-answer.open { display: block; }
.faq-answer p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }
.faq-answer a { color: var(--green-dark); text-decoration: underline; }

/* ========== FINAL CTA ========== */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2137 100%);
  color: white;
}
.final-cta-inner { text-align: center; }
.final-cta h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.5px; }
.final-cta p { font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 36px; line-height: 1.7; }
.final-cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.final-cta-note { font-size: 0.85rem; color: rgba(255,255,255,0.45); }

/* ========== FOOTER ========== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-brand .nav-logo-text { color: white; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.footer-legal { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: white; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-bottom: 8px; transition: color var(--transition); }
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-green { color: rgba(46,204,113,0.6); }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .step-connector { display: none; }
  .steps-grid { gap: 16px; }
  .step-card { max-width: 100%; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 40px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-trust { flex-direction: column; align-items: center; gap: 12px; }
  .qsw-header { flex-direction: column; text-align: center; }
  .qsw-header .btn { width: 100%; justify-content: center; }
  .qsw-steps { flex-direction: column; }
  .qsw-arrow { transform: rotate(90deg); }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .final-cta-actions { flex-direction: column; align-items: center; }
  .comparison-table { font-size: 0.82rem; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }
}

/* ========== LANGUAGE TOGGLE ========== */
.btn-lang {
  background: transparent;
  border: 1.5px solid var(--gray-400);
  color: var(--gray-600);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  line-height: 1;
}
.btn-lang:hover {
  background: var(--gray-100);
  border-color: var(--navy);
  color: var(--navy);
}

/* ========== LEGAL PAGES (Terms / Privacy) ========== */
.legal-page {
  padding-top: 64px;
  padding-bottom: 96px;
}
.legal-page h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.legal-page .last-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 24px;
}
.legal-page h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal-page h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal-page h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 16px;
  margin-bottom: 6px;
}
.legal-page p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-page ul li {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 4px;
}
.legal-page a {
  color: var(--green-dark);
  text-decoration: underline;
}
.legal-page a:hover {
  color: var(--green);
}
@media (max-width: 768px) {
  .legal-page h1 { font-size: 1.8rem; }
  .legal-page h2 { font-size: 1.2rem; }
}
