/* ============================================================
   style.css — Complete stylesheet for Greeta Voice landing page
   ============================================================
   HOW TO CHANGE COLORS:
   Edit values in :root — they update everywhere.

   Main accent (purple): --accent
   Backgrounds:          --bg, --bg2, --bg3
   Text:                 --text, --muted, --dim
   Success green:        --green
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:    #0a0a0f;
  --bg2:   #111118;
  --bg3:   #18181f;
  --border:  rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.14);
  --text:  #faf9ff;
  --muted: #b8b5c9;
  --dim:   #7a768f;
  --accent:  #c8a8ff;
  --accent2: #8b5cf6;
  --green:    #34d399;
  --green-bg: rgba(52,211,153,0.08);
  --red:      #f87171;
  --legal-text: #e8e5f1;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: 0.18s ease;
}

/* ── Light mode ─────────────────────────────────────────────── */
body.light-mode {
  --bg:    #ffffff;
  --bg2:   #f7f6ff;
  --bg3:   #eeedf8;
  --border:  rgba(0,0,0,0.07);
  --border2: rgba(0,0,0,0.13);
  --text:  #0e0d1a;
  --muted: #4a485f;
  --dim:   #747188;
  --accent:  #7c3aed;
  --green:   #059669;
  --green-bg: rgba(5,150,105,0.08);
  --legal-text: #242234;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { background: var(--bg); color: var(--text); font-family: var(--sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; transition: background var(--transition), color var(--transition); }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
button { cursor: pointer; }
h1 em, h2 em { font-style: italic; color: var(--accent); }

/* ── Layout helpers ─────────────────────────────────────────── */
.section { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }
.section-divider { max-width: 1100px; margin: 0 auto; height: 1px; background: var(--border); }
.eyebrow { display: inline-block; font-size: 11.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: .875rem; }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp  { from { opacity:0; transform:translateY(10px);} to { opacity:1; transform:translateY(0);} }
@keyframes pulse   { 0%,100% { opacity:1;} 50% { opacity:.4;} }

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  font-family: var(--sans); font-size: 13.5px; font-weight: 500;
  color: #0a0a0f; background: var(--accent); border: none;
  border-radius: var(--radius-sm); padding: 8px 18px;
  transition: background var(--transition), transform var(--transition);
  display: inline-block;
}
.btn-primary:hover { background: #d4b8ff; transform: translateY(-1px); }

.btn-primary-lg {
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  color: #0a0a0f; background: var(--accent); border: none;
  border-radius: var(--radius-md); padding: 13px 28px;
  transition: background var(--transition), transform var(--transition);
  display: inline-block;
}
.btn-primary-lg:hover { background: #d4b8ff; transform: translateY(-1px); }

.btn-ghost-lg {
  font-family: var(--sans); font-size: 15px; color: var(--muted);
  background: transparent; border: 1px solid var(--border2);
  border-radius: var(--radius-md); padding: 13px 28px;
  transition: border-color var(--transition), color var(--transition);
  display: inline-block;
}
.btn-ghost-lg:hover { border-color: var(--accent); color: var(--text); }

.btn-theme {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border); background: transparent; color: var(--muted);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: border-color var(--transition);
}
.btn-theme:hover { border-color: var(--border2); color: var(--text); }

.link-disabled {
  opacity: 0.65;
  pointer-events: none;
  cursor: not-allowed;
}

/* ── Lang toggle ────────────────────────────────────────────── */
.lang-toggle { display: flex; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 3px; gap: 2px; }
.lang-btn { font-family: var(--sans); font-size: 12px; font-weight: 500; padding: 4px 10px; border: none; border-radius: 4px; background: transparent; color: var(--muted); transition: all var(--transition); }
.lang-btn.active { background: var(--bg2); color: var(--text); border: 1px solid var(--border2); }

/* ── Badges & pills ─────────────────────────────────────────── */
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--bg3); border: 1px solid var(--border2); border-radius: 99px; padding: 5px 14px; font-size: 12.5px; color: var(--muted); margin-bottom: 1.5rem; }
.badge-dot  { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green); animation: pulse 2s ease infinite; }
.badge-featured { display: inline-block; font-size: 11px; font-weight: 500; background: rgba(200,168,255,.1); color: var(--accent); border: 1px solid rgba(200,168,255,.2); padding: 3px 10px; border-radius: 99px; margin-bottom: 1rem; }
.pill { font-size: 11px; padding: 3px 10px; border-radius: 99px; white-space: nowrap; flex-shrink: 0; }
.pill-green { background: var(--green-bg); color: var(--green); border: 1px solid rgba(52,211,153,.2); }
.pill-red   { background: rgba(248,113,113,.08); color: var(--red); border: 1px solid rgba(248,113,113,.2); }

/* ── NAV ────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 60px;
  background: rgba(10,10,15,.88); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
body.light-mode nav { background: rgba(255,255,255,.9); }

.logo { font-family: var(--serif); font-size: 22px; color: var(--text); }
.logo em { font-style: normal; color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 13.5px; color: var(--muted); transition: color var(--transition); }
.nav-links a:hover { color: var(--text); }
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  line-height: 1;
  padding: 18px 0;
  transition: color var(--transition);
}
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger {
  color: var(--text);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  min-width: 230px;
  padding: 8px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translate(-50%, 6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 13px;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: var(--bg3);
  color: var(--accent);
}

.nav-right { display: flex; align-items: center; gap: 10px; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative; max-width: 1100px; margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: center;
  min-height: calc(100vh - 60px);
}
.hero::before {
  content: ''; position: absolute; top: 10%; left: 15%;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(139,92,246,.09) 0%, transparent 70%);
  pointer-events: none; z-index: -1;
}
.hero h1 { font-family: var(--serif); font-size: clamp(38px,5vw,56px); line-height: 1.1; letter-spacing: -1px; margin-bottom: 1.25rem; }
.hero-sub  { font-size: 17px; color: var(--muted); line-height: 1.65; margin-bottom: 2rem; font-weight: 300; max-width: 460px; }
.hero-actions { display: flex; gap: 10px; margin-bottom: 2rem; flex-wrap: wrap; }
.hero-trust { font-size: 12.5px; color: var(--dim); }

/* ── CALL CARD (hero right column) ─────────────────────────── */
/* Label says "Phone call · Not a chatbot" to avoid chatbot confusion */
.call-card { background: var(--bg2); border: 1px solid var(--border2); border-radius: var(--radius-lg); overflow: hidden; }
.call-card-header { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid var(--border); background: var(--bg3); }
.call-dots { display: flex; gap: 5px; }
.call-dots span { width: 10px; height: 10px; border-radius: 50%; }
.call-dots span:nth-child(1) { background: #ff5f57; }
.call-dots span:nth-child(2) { background: #febc2e; }
.call-dots span:nth-child(3) { background: #28c840; }
.call-live { margin-left: auto; display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--green); }
.call-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.msg { font-size: 13.5px; line-height: 1.55; padding: 10px 14px; border-radius: 12px; max-width: 88%; }
.msg.ai     { background: var(--bg3); border: 1px solid var(--border); color: var(--text); border-radius: 12px 12px 12px 3px; }
.msg.client { background: rgba(200,168,255,.1); border: 1px solid rgba(200,168,255,.18); color: var(--accent); border-radius: 12px 12px 3px 12px; align-self: flex-end; }
.call-footer { padding: 12px 16px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.call-timer { font-size: 12px; color: var(--dim); font-variant-numeric: tabular-nums; }
.call-lang-pill { font-size: 11px; background: rgba(200,168,255,.08); border: 1px solid rgba(200,168,255,.18); color: var(--accent); padding: 3px 10px; border-radius: 99px; }

/* ── STATS BAR ──────────────────────────────────────────────── */
.stats-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg2); }
.stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { padding: 1.75rem 2rem; border-right: 1px solid var(--border); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num   { font-family: var(--serif); font-size: 32px; color: var(--text); letter-spacing: -1px; display: block; }
.stat-label { font-size: 12.5px; color: var(--dim); margin-top: 2px; }

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.how-section { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }
.how-section h2 { font-family: var(--serif); font-size: clamp(30px,3.5vw,42px); line-height: 1.15; letter-spacing: -.5px; margin-bottom: .75rem; }
.section-sub { font-size: 16px; color: var(--muted); font-weight: 300; }

/* Tabs */
.tab-nav { display: flex; gap: 4px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 4px; margin: 2.5rem 0 2rem; overflow-x: auto; }
.tab-btn { font-family: var(--sans); font-size: 13.5px; color: var(--muted); background: transparent; border: none; border-radius: 7px; padding: 9px 18px; white-space: nowrap; transition: color var(--transition); flex: 1; }
.tab-btn:hover { color: var(--text); }
.tab-btn.active { background: var(--bg3); color: var(--text); font-weight: 500; border: 1px solid var(--border2); }
.tab-content { display: none; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.tab-content.active { display: grid; animation: fadeUp .22s ease both; }

/* Steps (left column) */
.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.step:last-child { border-bottom: none; }
.step-num { width: 26px; height: 26px; min-width: 26px; border-radius: 50%; background: rgba(200,168,255,.08); border: 1px solid rgba(200,168,255,.2); color: var(--accent); font-size: 12px; font-weight: 500; display: flex; align-items: center; justify-content: center; margin-top: 2px; flex-shrink: 0; }
.step h3 { font-size: 14.5px; font-weight: 500; color: var(--text); margin-bottom: 3px; }
.step p  { font-size: 13.5px; color: var(--muted); line-height: 1.55; font-weight: 300; }

/* Tab visual (right column) */
.tab-visual { background: var(--bg2); border: 1px solid var(--border2); border-radius: var(--radius-lg); padding: 1.25rem; }
.vis-label  { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--dim); margin-bottom: 1rem; }
.flow-row   { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 6px; }
.flow-icon  { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.flow-title { font-size: 13px; font-weight: 500; color: var(--text); }
.flow-sub   { font-size: 12px; color: var(--muted); }
.flow-arrow { text-align: center; font-size: 12px; color: var(--dim); margin: 2px 0; }
.sms-bubble { background: rgba(52,211,153,.07); border: 1px solid rgba(52,211,153,.15); border-radius: 10px 10px 10px 3px; padding: 10px 13px; margin-bottom: 6px; font-size: 13px; color: var(--text); line-height: 1.5; }
.sms-time   { font-size: 11px; color: var(--dim); margin-top: 5px; }
.sms-reply  { background: var(--bg3); border: 1px solid var(--border); border-radius: 10px 10px 3px 10px; padding: 9px 13px; font-size: 13px; color: var(--muted); margin-bottom: 6px; width: fit-content; margin-left: auto; }
.impact-box { background: var(--bg3); border: 1px solid var(--border2); border-radius: var(--radius-sm); padding: 14px; margin-top: 8px; }
.impact-label { font-size: 11px; color: var(--dim); margin-bottom: 4px; }
.impact-value { font-family: var(--serif); font-size: 26px; color: var(--green); letter-spacing: -.5px; }
.impact-sub   { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── VIDEO DEMO ─────────────────────────────────────────────── */
/* HOW TO ADD VIDEO: replace .video-placeholder div with:
   <iframe width="100%" style="aspect-ratio:16/9;border:none;border-radius:16px"
     src="https://www.youtube.com/embed/YOUR_ID" allowfullscreen></iframe>    */
.video-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 5rem 2rem; }
.video-inner   { max-width: 1100px; margin: 0 auto; }
.video-inner h2 { font-family: var(--serif); font-size: clamp(28px,3vw,38px); letter-spacing: -.5px; margin-bottom: .5rem; }
.video-inner p  { font-size: 15px; color: var(--muted); font-weight: 300; }
.video-placeholder { background: var(--bg3); border: 1px solid var(--border2); border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; max-width: 760px; margin: 2rem auto 0; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color var(--transition); }
.video-placeholder:hover { border-color: rgba(200,168,255,.3); }
.video-placeholder-inner { text-align: center; }
.play-btn { width: 68px; height: 68px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; transition: transform var(--transition); }
.play-btn:hover { transform: scale(1.08); }
.play-btn svg { width: 26px; height: 26px; fill: #0a0a0f; margin-left: 3px; }
.video-caption       { font-size: 14px; color: var(--muted); }
.video-caption-small { font-size: 12px; color: var(--dim); margin-top: 4px; }

/* ── CALL ME NOW ────────────────────────────────────────────── */
.call-now-section { padding: 3.5rem 2rem; text-align: center; border-bottom: 1px solid var(--border); }
.call-now-inner   { max-width: 520px; margin: 0 auto; }
.call-now-inner h3 { font-family: var(--serif); font-size: 26px; margin-bottom: .5rem; }
.call-now-inner p  { font-size: 15px; color: var(--muted); margin-bottom: 1.5rem; font-weight: 300; }
.call-now-form { display: flex; gap: 8px; max-width: 380px; margin: 0 auto; }
.phone-input { flex: 1; font-family: var(--sans); font-size: 15px; background: var(--bg2); border: 1px solid var(--border2); border-radius: var(--radius-md); padding: 12px 16px; color: var(--text); outline: none; transition: border-color var(--transition); }
.phone-input:focus { border-color: rgba(200,168,255,.5); }
.phone-input::placeholder { color: var(--dim); }
.btn-call { font-family: var(--sans); font-size: 14px; font-weight: 500; color: #0a0a0f; background: var(--accent); border: none; border-radius: var(--radius-md); padding: 12px 22px; white-space: nowrap; transition: background var(--transition); }
.btn-call:hover { background: #d4b8ff; }
.call-now-note  { font-size: 12px; color: var(--dim); margin-top: .75rem; }
.call-now-state { display: none; margin-top: 1rem; font-size: 14px; }

/* ── PRICING ────────────────────────────────────────────────── */
.pricing-section { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }
.pricing-section h2 { font-family: var(--serif); font-size: clamp(30px,3.5vw,42px); letter-spacing: -.5px; margin-bottom: .75rem; }
.lang-note { display: inline-block; font-size: 13px; color: var(--dim); background: var(--bg2); border: 1px solid var(--border); border-radius: 99px; padding: 4px 14px; margin-top: .75rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 2.5rem; }
.price-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; transition: border-color var(--transition); display: flex; flex-direction: column; }
.price-card:hover { border-color: var(--border2); }
.price-card.featured { border: 1px solid rgba(200,168,255,.32); background: linear-gradient(145deg,var(--bg2) 0%,rgba(139,92,246,.05) 100%); }
.price-name   { font-size: 13.5px; color: var(--muted); margin-bottom: 6px; }
.price-amount { font-family: var(--serif); font-size: 40px; color: var(--text); letter-spacing: -1.5px; margin-bottom: 4px; }
.price-amount sup  { font-size: 20px; vertical-align: top; margin-top: 8px; display: inline-block; letter-spacing: 0; }
.price-amount span { font-family: var(--sans); font-size: 14px; color: var(--dim); font-weight: 300; letter-spacing: 0; }
.price-desc    { font-size: 13px; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.4; font-weight: 300; }
.price-divider { height: 1px; background: var(--border); margin: 1rem 0; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.price-features li { font-size: 13px; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; font-weight: 300; }
.price-features li::before { content: '✓'; color: var(--green); font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.price-cta { display: block; text-align: center; margin-top: 1.25rem; font-family: var(--sans); font-size: 13.5px; font-weight: 500; color: #0a0a0f; background: var(--accent); border-radius: var(--radius-sm); padding: 10px; transition: background var(--transition); }
.price-cta:hover { background: #d4b8ff; }
.price-card.featured .price-cta { padding: 11px; font-size: 14px; }

/* ── REVIEWS ────────────────────────────────────────────────── */
.reviews-section { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }
.reviews-section h2 { font-family: var(--serif); font-size: clamp(30px,3.5vw,42px); letter-spacing: -.5px; margin-bottom: .5rem; }
.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 2.5rem; }
.tcard { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; transition: border-color var(--transition); display: flex; flex-direction: column; }
.tcard:hover { border-color: var(--border2); }
.trating { display: flex; gap: 2px; margin-bottom: .75rem; }
.trating span { font-size: 13px; color: #facc15; }
/* Georgia for quotes — more legible at small size than display serifs */
.tquote { font-family: Georgia, 'Times New Roman', serif; font-size: 14.5px; font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 1.25rem; flex: 1; }
.tauthor { display: flex; align-items: center; gap: 10px; }
.tavatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(200,168,255,.1); border: 1px solid rgba(200,168,255,.2); color: var(--accent); font-size: 12px; font-weight: 500; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--sans); }
.tname { font-size: 13px; font-weight: 500; color: var(--text); }
.tbiz  { font-size: 11.5px; color: var(--dim); }

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section { text-align: center; padding: 6rem 2rem; position: relative; }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 300px; background: radial-gradient(ellipse,rgba(139,92,246,.08) 0%,transparent 70%); pointer-events: none; }
.cta-section h2 { font-family: var(--serif); font-size: clamp(32px,4vw,50px); letter-spacing: -.5px; margin-bottom: .75rem; }
.cta-section > p { font-size: 16px; color: var(--muted); margin-bottom: 2rem; font-weight: 300; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 10px; justify-content: center; margin-bottom: 1rem; flex-wrap: wrap; }
.cta-note { font-size: 12.5px; color: var(--dim); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer-copy { font-size: 14px; color: var(--muted); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.footer-links a { font-size: 14px; color: var(--muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--text); }
.footer-note { width: 100%; font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.footer-note a { color: var(--text); }

/* ── CUSTOMER LEGAL PAGES ───────────────────────────────────── */
.legal-page { max-width: 1220px; margin: 0 auto; padding: 5rem 2.5rem; }
.legal-page h1 { font-family: var(--serif); font-size: clamp(38px,5vw,58px); line-height: 1.05; letter-spacing: -1px; margin-bottom: .75rem; color: var(--text); }
.legal-meta { font-size: 14px; color: var(--muted); margin-bottom: 2.5rem; }
.legal-content { color: var(--legal-text); font-weight: 300; }
.legal-content h2 { font-family: var(--serif); font-size: 28px; line-height: 1.15; color: var(--text); margin: 2.25rem 0 .75rem; letter-spacing: -.25px; }
.legal-content p { margin-bottom: 1rem; }
.legal-content ul { margin: .25rem 0 1.25rem 1.2rem; }
.legal-content li { margin-bottom: .35rem; }
.legal-content a { color: var(--accent); }
.legal-content strong { color: var(--text); font-weight: 500; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .testimonials { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 3rem 1.25rem; }
  .call-card { display: none; }
  .nav-links { display: none; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .tab-content.active { grid-template-columns: 1fr; }
  .tab-visual { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .call-now-form { flex-direction: column; }
  footer { flex-direction: column; text-align: center; }
  .section { padding: 3rem 1.25rem; }
  .how-section, .pricing-section, .reviews-section { padding: 3rem 1.25rem; }
  .video-section, .call-now-section { padding: 3rem 1.25rem; }
}
