@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ===== VARIABLES ===== */
:root {
  --green:        #3acf8d;
  --green-dark:   #2db574;
  --green-glow:   rgba(58,207,141,0.15);
  --green-subtle: rgba(58,207,141,0.08);
  --orange:       #fc5200;
  --bg:           #fafafa;
  --white:        #ffffff;
  --text:         #1a1a1a;
  --muted:        #666666;
  --subtle:       #999999;
  --border:       #e0e0e0;
  --border-light: #f0f0f0;
  --dark:         #0f0f0f;
  --dark-2:       #1a1a1a;

  --ff-display: 'Inter', sans-serif;
  --ff-body:    'Plus Jakarta Sans', sans-serif;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 48px rgba(0,0,0,0.10), 0 8px 16px rgba(0,0,0,0.06);
  --shadow-green: 0 8px 28px rgba(58,207,141,0.28);
}

/* ===== BASE ===== */
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

h1,h2,h3,h4,h5 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
}
h1 { font-size: clamp(2.5rem,5vw,4rem);    letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem,3.5vw,2.75rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.125rem,2vw,1.625rem); letter-spacing: -0.015em; }
h4 { font-size: 1.0625rem; font-weight: 600; font-family: var(--ff-body); }

p { color: var(--muted); line-height: 1.7; }

/* ===== LAYOUT ===== */
.container        { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px;  margin: 0 auto; padding: 0 24px; }
section           { padding: 96px 0; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,250,0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; gap: 36px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Archivo Black', sans-serif; font-size: 1.5rem; font-weight: 400;
  color: var(--text); letter-spacing: 0.045em; flex-shrink: 0;
}
.nav-logo span { color: var(--green); }
.nav-logo-img {
  width: 32px; height: 32px; border-radius: 8px;
  object-fit: cover; flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 28px; flex: 1; }
.nav-links a {
  font-size: 0.9375rem; font-weight: 500; color: var(--muted);
  transition: color 0.18s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.btn-nav {
  flex-shrink: 0; white-space: nowrap;
  font-family: var(--ff-body); font-size: 0.875rem; font-weight: 600;
  color: var(--white) !important; background: var(--green); padding: 9px 20px;
  border-radius: var(--r-pill); border: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-nav:hover { background: var(--green-dark); transform: translateY(-1px); }

/* Mobile nav toggle */
.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; margin-left: auto;
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
}
.mobile-nav-overlay {
  display: none; position: fixed; inset: 68px 0 0 0;
  background: var(--white); z-index: 99;
  flex-direction: column; padding: 32px 24px; gap: 6px;
  border-top: 1px solid var(--border-light);
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a {
  font-size: 1.125rem; font-weight: 600; color: var(--text);
  padding: 12px 0; border-bottom: 1px solid var(--border-light);
}
.mobile-nav-overlay .btn-nav { margin-top: 16px; text-align: center; display: block; color: white !important; }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); padding: 64px 0 32px; }
.footer-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .nav-logo { color: white; display: flex; margin-bottom: 12px; }
.footer-tagline { color: rgba(255,255,255,0.38); font-size: 0.875rem; line-height: 1.55; margin-bottom: 24px; }
.footer-col h4 {
  font-family: var(--ff-body); font-size: 0.75rem; font-weight: 600;
  color: rgba(255,255,255,0.35); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9375rem; color: rgba(255,255,255,0.6); transition: color 0.18s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  max-width: 1140px; margin: 0 auto; padding: 24px 24px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.25); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-body); font-size: 1rem; font-weight: 600;
  color: var(--white); background: var(--green);
  padding: 13px 26px; border-radius: var(--r-pill); border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-green); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-body); font-size: 1rem; font-weight: 600;
  color: var(--text); background: transparent;
  padding: 12px 26px; border-radius: var(--r-pill);
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--text); transform: translateY(-2px); }

/* ===== STORE BADGE ===== */
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--text); color: white;
  padding: 10px 18px; border-radius: 10px;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none; flex-shrink: 0;
}
.store-badge:hover { background: #2a2a2a; transform: translateY(-2px); }
.store-badge svg { width: 22px; height: 22px; flex-shrink: 0; fill: white; }
.badge-text { display: flex; flex-direction: column; line-height: 1.2; }
.badge-text .b1 { font-size: 0.625rem; font-weight: 400; opacity: 0.75; letter-spacing: 0.02em; }
.badge-text .b2 { font-size: 0.9375rem; font-weight: 700; font-family: var(--ff-display); letter-spacing: -0.01em; }
.badge-group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* ===== PHONE MOCKUP ===== */
.phone-wrap { display: flex; justify-content: center; align-items: flex-start; }
.phone {
  position: relative;
  width: 250px;
  aspect-ratio: 9/19.5;
  background: var(--white);
  border-radius: 38px;
  border: 7px solid var(--dark-2);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.07), var(--shadow-lg);
  overflow: hidden; flex-shrink: 0;
}
.phone::before {
  content: '';
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 56px; height: 14px;
  background: var(--dark-2); border-radius: 10px; z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(155deg, rgba(58,207,141,0.1) 0%, rgba(58,207,141,0.03) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 20px;
}
.phone-screen-img {
  padding: 0; background: none; display: block;
}
.phone-screen-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: top; display: block;
}
.phone-label {
  font-size: 0.6875rem; font-weight: 600; color: var(--green);
  background: rgba(58,207,141,0.12); border: 1px solid rgba(58,207,141,0.22);
  padding: 5px 12px; border-radius: var(--r-pill);
  text-align: center; line-height: 1.4; margin-top: 28px;
}
.phone-desc { font-size: 0.625rem; color: var(--subtle); text-align: center; line-height: 1.4; }

/* ===== SECTION LABELS ===== */
.eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  color: var(--green); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 12px;
}

/* ===== FADE IN ===== */
.fade {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade.in { opacity: 1; transform: translateY(0); }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(140deg, #0a1c13 0%, #0d2418 60%, #081510 100%);
  padding: 96px 0; position: relative; overflow: hidden; text-align: center;
}
.cta-band::before {
  content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(58,207,141,0.14) 0%, transparent 72%);
  pointer-events: none;
}
.cta-band-inner { position: relative; max-width: 640px; margin: 0 auto; padding: 0 24px; }
.cta-band h2 { color: white; margin-bottom: 14px; }
.cta-band p  { color: rgba(255,255,255,0.5); font-size: 1.0625rem; margin-bottom: 36px; }
.cta-band .badge-group { justify-content: center; }
.cta-fine { margin-top: 16px; font-size: 0.8125rem; color: rgba(255,255,255,0.28); }

/* ===== HOME — HERO ===== */
.hero {
  min-height: calc(100vh - 68px);
  display: flex; align-items: center;
  padding: 72px 0 88px; overflow: hidden; position: relative;
}
.hero::after {
  content: ''; position: absolute; top: -180px; right: -180px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(58,207,141,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 56px;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8125rem; font-weight: 600; color: var(--green-dark);
  background: var(--green-subtle); border: 1px solid rgba(58,207,141,0.2);
  padding: 6px 14px; border-radius: var(--r-pill); margin-bottom: 20px;
}
.hero-kicker .pulse {
  width: 7px; height: 7px; background: var(--green); border-radius: 50%;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1);    }
  50%      { opacity:.5; transform:scale(.8); }
}
.hero h1 { margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--green); }
.hero-sub { font-size: 1.125rem; max-width: 460px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-proof { display: flex; align-items: center; gap: 12px; }
.proof-avatars { display: flex; }
.proof-avatars .av {
  width: 30px; height: 30px; border-radius: 50%; border: 2px solid white;
  background: linear-gradient(135deg, rgba(58,207,141,0.25), var(--green));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6875rem; font-weight: 700; color: var(--green-dark);
  margin-right: -7px; overflow: hidden; flex-shrink: 0;
}
.proof-avatars .av img {
  width: 100%; height: 100%; object-fit: cover; object-position: top; display: block;
}
.proof-text { font-size: 0.875rem; color: var(--muted); padding-left: 12px; }
.proof-text strong { color: var(--text); }

/* Hero phone stack */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.phone-stack { position: relative; width: 300px; height: 580px; }
.phone-stack .phone { position: absolute; }
.phone-stack .phone-main  { width: 245px; left: 50%; transform: translateX(-50%); top: 0; z-index: 2; }
.phone-stack .phone-back  {
  width: 210px; right: -10px; top: 55px; z-index: 1;
  transform: rotate(5deg); opacity: 0.65;
}

/* ===== HOME — FEATURE TEASERS ===== */
.teasers { background: var(--white); padding: 96px 0; }
.section-head { margin-bottom: 52px; }
.section-head h2 { margin-bottom: 10px; }
.section-head p  { max-width: 500px; font-size: 1.0625rem; }
.teasers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.teaser {
  background: var(--bg); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.teaser:hover {
  border-color: rgba(58,207,141,0.3);
  box-shadow: 0 8px 24px rgba(58,207,141,0.08);
  transform: translateY(-3px);
}
.teaser-icon {
  width: 44px; height: 44px; background: var(--green-subtle);
  border-radius: var(--r-md); display: flex; align-items: center;
  justify-content: center; font-size: 1.375rem; margin-bottom: 16px;
}
.teaser-icon svg {
  width: 22px; height: 22px; stroke: var(--green); stroke-width: 2;
  fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}
.teaser h3 { font-size: 1rem; letter-spacing: -0.01em; margin-bottom: 6px; }
.teaser p  { font-size: 0.875rem; line-height: 1.55; }
.teasers-link { text-align: center; margin-top: 40px; }

/* ===== HOME — STATS ===== */
.stats { background: var(--dark); padding: 80px 0; }
.stats-hl {
  text-align: center; font-family: var(--ff-display);
  font-size: clamp(1.125rem,2.5vw,1.5rem); font-weight: 700;
  color: white; letter-spacing: -0.02em; margin-bottom: 48px;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2px;
}
.stat {
  text-align: center; padding: 32px 20px;
  background: rgba(255,255,255,0.025); border-radius: var(--r-md);
}
.stat-num {
  font-family: var(--ff-display); font-size: clamp(2rem,4vw,3rem); font-weight: 800;
  color: var(--green); letter-spacing: -0.04em; line-height: 1; margin-bottom: 6px;
}
.stat-lbl { font-size: 0.875rem; color: rgba(255,255,255,0.4); font-weight: 500; }

/* ===== HOME — TESTIMONIALS ===== */
.testimonials { padding: 96px 0; overflow: hidden; }
.testimonials .section-head { text-align: center; }
.testimonials .section-head p { margin: 0 auto; }
.marquee-wrap {
  position: relative; overflow: hidden; margin-top: 48px;
}
.marquee-wrap::before, .marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px;
  z-index: 2; pointer-events: none;
}
.marquee-wrap::before { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }
.marquee-track {
  display: flex; gap: 18px; width: max-content;
  animation: scroll-left 34s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.tcard {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); padding: 26px; width: 310px; flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.tcard-stars { color: var(--orange); font-size: 0.875rem; letter-spacing: 1px; margin-bottom: 10px; }
.tcard-quote { font-size: 0.9375rem; color: var(--text); line-height: 1.6; margin-bottom: 18px; }
.tcard-author { display: flex; align-items: center; gap: 11px; }
.tcard-avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(58,207,141,0.2), rgba(58,207,141,0.5));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 0.8125rem; font-weight: 700; color: var(--green-dark);
}
.tcard-name { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.tcard-role { font-size: 0.75rem; color: var(--subtle); }

/* ===== HOME — GALLERY ===== */
.gallery { background: var(--white); padding: 96px 0; }
.gallery .section-head { text-align: center; }
.gallery-scroll {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 12px 24px 32px;
  margin: 40px -24px 0; scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-scroll .phone { scroll-snap-align: start; width: 220px; }

/* ===== FEATURES PAGE ===== */
.page-hero {
  padding: 80px 0 56px; text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero p  { font-size: 1.125rem; max-width: 520px; margin: 0 auto; }

.feat-section { padding: 88px 0; border-top: 1px solid var(--border-light); }
.feat-section:nth-child(even) { background: var(--white); }
.feat-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.feat-section:nth-child(odd) .feat-inner { direction: rtl; }
.feat-section:nth-child(odd) .feat-inner > * { direction: ltr; }

.feat-content .eyebrow { margin-bottom: 10px; }
.feat-content h2 { font-size: clamp(1.625rem,3vw,2.25rem); margin-bottom: 12px; }
.feat-content > p { font-size: 1rem; margin-bottom: 24px; }
.feat-checks { display: flex; flex-direction: column; gap: 9px; margin-bottom: 0; }
.feat-check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9375rem; color: var(--text); }
.check-dot {
  width: 20px; height: 20px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.check-dot svg { width: 11px; height: 11px; stroke: white; stroke-width: 2.5; fill: none; }

/* ===== SUPPORT PAGE ===== */
.support-hero {
  padding: 72px 0 48px; text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.faq-wrap { padding: 64px 0; }
.faq-group { margin-bottom: 48px; }
.faq-group-label {
  font-size: 0.75rem; font-weight: 600; color: var(--green);
  text-transform: uppercase; letter-spacing: 0.1em;
  padding-bottom: 12px; margin-bottom: 4px;
  border-bottom: 2px solid rgba(58,207,141,0.2);
}
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-btn {
  width: 100%; background: none; border: none; padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left; font-size: 1rem; font-weight: 600; color: var(--text);
  transition: color 0.18s;
}
.faq-btn:hover { color: var(--green); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--subtle); transition: transform 0.25s, color 0.18s; }
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--green); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-body-inner { padding: 0 0 20px; font-size: 0.9375rem; color: var(--muted); line-height: 1.7; }
.faq-body-inner a { color: var(--green); font-weight: 500; }
.faq-item.open .faq-body { max-height: 600px; }
.support-contact {
  background: var(--white); border-top: 1px solid var(--border-light);
  padding: 64px 0; text-align: center;
}
.support-contact h2 { font-size: 1.75rem; margin-bottom: 10px; }
.support-contact p  { margin-bottom: 24px; }

/* ===== CONTACT PAGE ===== */
.contact-page { padding: 80px 0 96px; }
.contact-grid {
  display: grid; grid-template-columns: 5fr 4fr;
  gap: 64px; align-items: start; margin-top: 48px;
}
.contact-info h3 { font-size: 1.375rem; margin-bottom: 10px; }
.contact-info > p { margin-bottom: 24px; font-size: 0.9375rem; }
.contact-email {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green); font-weight: 600; font-size: 1.0625rem;
  transition: color 0.18s;
}
.contact-email:hover { color: var(--green-dark); }
.contact-cards { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.contact-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r-md);
  transition: border-color 0.2s, box-shadow 0.2s; color: var(--text);
}
.contact-card:hover {
  border-color: rgba(58,207,141,0.35);
  box-shadow: 0 4px 14px rgba(58,207,141,0.08);
}
.contact-card-icon {
  width: 40px; height: 40px; background: var(--green-subtle);
  border-radius: var(--r-sm); display: flex; align-items: center;
  justify-content: center; font-size: 1.125rem; flex-shrink: 0;
}
.contact-card-icon svg {
  width: 18px; height: 18px; stroke: var(--green); stroke-width: 2;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.contact-card-text strong { display: block; font-size: 0.9375rem; font-weight: 600; margin-bottom: 2px; }
.contact-card-text span  { font-size: 0.8125rem; color: var(--muted); }
.contact-aside { padding-top: 8px; }
.contact-aside h4 { margin-bottom: 10px; }
.contact-aside p  { font-size: 0.9375rem; margin-bottom: 20px; }

/* ===== LEGAL PAGES ===== */
.legal-page { padding: 60px 0 100px; }
.legal-hdr {
  padding-bottom: 32px; border-bottom: 1px solid var(--border); margin-bottom: 48px;
}
.legal-hdr h1 { font-size: clamp(1.75rem,3vw,2.5rem); margin-bottom: 8px; }
.legal-meta { font-size: 0.875rem; color: var(--subtle); }
.legal-body h2 {
  font-family: var(--ff-display); font-size: 1.1875rem; font-weight: 700;
  margin-top: 40px; margin-bottom: 12px; letter-spacing: -0.01em;
}
.legal-body h3 {
  font-family: var(--ff-body); font-size: 1rem; font-weight: 600;
  margin-top: 24px; margin-bottom: 8px; color: var(--text);
}
.legal-body p  { font-size: 0.9375rem; color: var(--muted); margin-bottom: 14px; line-height: 1.72; }
.legal-body ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.legal-body ul li { font-size: 0.9375rem; color: var(--muted); margin-bottom: 6px; line-height: 1.65; }
.legal-body a  { color: var(--green); font-weight: 500; }
.legal-body a:hover { color: var(--green-dark); }
.legal-divider { height: 1px; background: var(--border-light); margin: 8px 0 32px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner         { grid-template-columns: 1fr; text-align: center; }
  .hero-visual        { display: none; }
  .hero-actions       { justify-content: center; }
  .hero-proof         { justify-content: center; }
  .hero-sub           { margin-left: auto; margin-right: auto; }
  .teasers-grid       { grid-template-columns: repeat(2,1fr); }
  .stats-grid         { grid-template-columns: repeat(2,1fr); }
  .feat-inner         { grid-template-columns: 1fr; gap: 40px; direction: ltr !important; }
  .footer-inner       { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand       { grid-column: 1 / -1; }
  .contact-grid       { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section             { padding: 64px 0; }
  .teasers-grid       { grid-template-columns: 1fr; }
  .btn-nav            { display: none; }
  .nav-links          { display: none; }
  .mobile-toggle      { display: flex; }
  .footer-inner       { grid-template-columns: 1fr 1fr; }
  .footer-bottom      { flex-direction: column; text-align: center; }
  .page-hero          { padding: 52px 0 36px; }
}
