/* ============================================================
   Meal IQ — Landing Page Styles
   ============================================================ */

/* ── Inter: lokal gehostet (DSGVO-konform, kein Google-Server-Kontakt) ── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --coral:      #FF6B5B;
  --coral-dark: #E85A4A;
  --olive:      #8B9A6B;
  --olive-dark: #7A8A5A;
  --bg:         #0F0F0F;
  --surface:    #1A1A1A;
  --surface2:   #222222;
  --border:     #2A2A2A;
  --text:       #FFFFFF;
  --muted:      #9CA3AF;
  --radius:     16px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,.45);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* ── Utility ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
}

.badge--coral { background: rgba(255,107,91,.15); color: var(--coral); }
.badge--olive { background: rgba(139,154,107,.15); color: var(--olive); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s, background .15s;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255,107,91,.35);
}
.btn--primary:hover { background: var(--coral-dark); box-shadow: 0 8px 28px rgba(255,107,91,.45); }

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--outline:hover { border-color: var(--coral); color: var(--coral); }

.btn--olive {
  background: var(--olive);
  color: #fff;
  box-shadow: 0 6px 20px rgba(139,154,107,.35);
}
.btn--olive:hover { background: var(--olive-dark); box-shadow: 0 8px 28px rgba(139,154,107,.45); }

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--coral);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 60px;
}
.section-label--olive { color: var(--olive); }

h1, h2, h3 { line-height: 1.2; font-weight: 700; }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(15,15,15,.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
}
.nav__logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
}
.nav__logo span { color: var(--coral); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  font-size: .9rem;
  color: var(--muted);
  transition: color .15s;
}
.nav__links a:hover { color: var(--text); }

.nav__cta { font-size: .9rem; padding: 10px 20px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero__glow--coral {
  width: 600px; height: 600px;
  background: rgba(255,107,91,.12);
  top: -100px; right: -100px;
}
.hero__glow--olive {
  width: 500px; height: 500px;
  background: rgba(139,154,107,.14);
  bottom: -50px; left: -80px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__eyebrow { margin-bottom: 20px; }

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--coral), #FF9E94);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  transition: border-color .15s, transform .15s;
  cursor: pointer;
}
.store-badge:hover { border-color: var(--coral); transform: translateY(-2px); }
.store-badge svg { width: 22px; height: 22px; }
.store-badge__text { line-height: 1.2; }
.store-badge__text small { font-size: .7rem; color: var(--muted); display: block; }
.store-badge__text strong { font-size: .95rem; }

/* Phone Mockup */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone {
  width: 280px;
  height: 580px;
  background: var(--surface);
  border-radius: 44px;
  border: 2px solid var(--border);
  box-shadow: var(--shadow), 0 0 0 8px rgba(255,255,255,.03);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.phone::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 28px;
  background: var(--bg);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone__screen {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: 56px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.phone__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.phone__header-title { font-size: .85rem; font-weight: 700; }
.phone__header-date { font-size: .65rem; color: var(--muted); }

.phone__macro-ring {
  background: var(--surface2);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ring-svg { width: 64px; height: 64px; flex-shrink: 0; }
.ring-bg  { stroke: var(--border); }
.ring-fill { stroke: var(--coral); stroke-linecap: round; stroke-dasharray: 163; stroke-dashoffset: 52; transition: stroke-dashoffset 1.5s ease; }

.phone__macro-info { flex: 1; }
.phone__macro-cal { font-size: 1.1rem; font-weight: 700; }
.phone__macro-cal span { font-size: .65rem; color: var(--muted); font-weight: 400; }

.macro-bars { display: flex; flex-direction: column; gap: 4px; margin-top: 4px; }
.macro-bar-row { display: flex; align-items: center; gap: 6px; }
.macro-bar-label { font-size: .55rem; color: var(--muted); width: 28px; }
.macro-bar-track { flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.macro-bar-fill { height: 100%; border-radius: 2px; }
.macro-bar-fill--protein { background: var(--coral); width: 65%; }
.macro-bar-fill--carbs   { background: #F59E0B; width: 40%; }
.macro-bar-fill--fat     { background: var(--olive); width: 55%; }

.phone__recipe-card {
  background: var(--surface2);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.phone__recipe-img {
  height: 80px;
  background: linear-gradient(135deg, #2d1f1f, #1a2d1a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.phone__recipe-body { padding: 8px 10px; }
.phone__recipe-name { font-size: .7rem; font-weight: 600; margin-bottom: 4px; }
.phone__recipe-meta { display: flex; gap: 6px; }
.recipe-chip {
  font-size: .55rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}
.recipe-chip--coral { background: rgba(255,107,91,.2); color: var(--coral); }
.recipe-chip--olive { background: rgba(139,154,107,.2); color: var(--olive); }

.phone__meals { display: flex; flex-direction: column; gap: 6px; }
.meal-slot {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface2);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
}
.meal-slot__icon { font-size: 1rem; }
.meal-slot__info { flex: 1; }
.meal-slot__label { font-size: .55rem; color: var(--muted); }
.meal-slot__name  { font-size: .65rem; font-weight: 600; }
.meal-slot__cal   { font-size: .55rem; color: var(--coral); }

.phone--secondary {
  width: 240px;
  height: 500px;
  position: absolute;
  right: -40px;
  top: 40px;
  opacity: .7;
  transform: rotate(6deg) scale(.9);
  z-index: -1;
}

/* ── Stats ───────────────────────────────────────────────── */
.stats {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__number--olive { color: var(--olive); }

.stat__label {
  font-size: .875rem;
  color: var(--muted);
}

/* ── Features ────────────────────────────────────────────── */
.features {
  padding: 100px 0;
}

.features__header {
  max-width: 600px;
  margin: 0 auto 64px;
  text-align: center;
}

.features__header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.features__header p {
  color: var(--muted);
  font-size: 1.05rem;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.feature-card:hover {
  border-color: var(--coral);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255,107,91,.12);
}

.feature-card--highlight {
  border-color: var(--coral);
  background: linear-gradient(135deg, rgba(255,107,91,.08), var(--surface));
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-icon--coral { background: rgba(255,107,91,.15); }
.feature-icon--olive { background: rgba(139,154,107,.15); }
.feature-icon--amber { background: rgba(245,158,11,.15); }
.feature-icon--blue  { background: rgba(59,130,246,.15); }
.feature-icon--purple{ background: rgba(139,92,246,.15); }

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
}

/* ── How It Works ────────────────────────────────────────── */
.how {
  padding: 100px 0;
  background: var(--surface);
}

.how__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.how__steps { display: flex; flex-direction: column; gap: 40px; }

.step {
  display: flex;
  gap: 20px;
}

.step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,107,91,.15);
  border: 1.5px solid rgba(255,107,91,.3);
  color: var(--coral);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.step__num--olive {
  background: rgba(139,154,107,.15);
  border-color: rgba(139,154,107,.3);
  color: var(--olive);
}

.step__content h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step__content p  { color: var(--muted); font-size: .9rem; }

.how__visual {
  display: flex;
  justify-content: center;
}

/* AI Demo Card */
.ai-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  width: 100%;
  max-width: 360px;
  box-shadow: var(--shadow);
}

.ai-card__title {
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ai-prompt {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: .85rem;
  color: var(--muted);
}
.ai-prompt svg { flex-shrink: 0; color: var(--coral); }

.ai-photo-btn {
  width: 100%;
  background: rgba(255,107,91,.08);
  border: 1.5px dashed rgba(255,107,91,.3);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--coral);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 16px;
  transition: background .15s;
}
.ai-photo-btn:hover { background: rgba(255,107,91,.14); }
.ai-photo-btn svg { width: 28px; height: 28px; }

.ai-result {
  background: var(--surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.ai-result__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.ai-result__title { font-size: .85rem; font-weight: 600; }
.ai-result__chips { display: flex; gap: 6px; }
.ai-result__chip {
  font-size: .65rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  background: rgba(255,107,91,.15);
  color: var(--coral);
}
.ai-result__chip--olive {
  background: rgba(139,154,107,.15);
  color: var(--olive);
}
.ai-result__meta {
  display: flex;
  gap: 16px;
  padding: 10px 14px;
}
.ai-result__stat { font-size: .7rem; color: var(--muted); }
.ai-result__stat strong { color: var(--text); display: block; font-size: .85rem; }

/* ── Pricing ─────────────────────────────────────────────── */
.pricing {
  padding: 100px 0;
}

.pricing__header {
  max-width: 520px;
  margin: 0 auto 64px;
  text-align: center;
}

.pricing__header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

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

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  transition: transform .2s;
}
.price-card:hover { transform: translateY(-4px); }

.price-card--featured {
  border-color: var(--coral);
  background: linear-gradient(160deg, rgba(255,107,91,.08) 0%, var(--surface) 60%);
}

.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
}

.price-card__name {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.price-card__amount {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1;
}
.price-card__amount sup { font-size: 1.2rem; vertical-align: top; margin-top: 6px; }
.price-card__amount span { font-size: .9rem; color: var(--muted); font-weight: 400; }

.price-card__desc {
  color: var(--muted);
  font-size: .875rem;
  margin-bottom: 28px;
}

.price-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.price-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
}

.check-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(139,154,107,.15);
  color: var(--olive);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .7rem;
}

.price-card--featured .check-icon {
  background: rgba(255,107,91,.15);
  color: var(--coral);
}

.price-card__btn { width: 100%; justify-content: center; }

/* ── CTA ─────────────────────────────────────────────────── */
.cta {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__glow {
  position: absolute;
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,107,91,.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 20px;
  position: relative;
}

.cta p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto 40px;
  position: relative;
}

.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand { max-width: 280px; }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.footer__logo img {
  width: 32px; height: 32px;
  border-radius: 7px;
  object-fit: contain;
}
.footer__logo span { color: var(--coral); }

.footer__tagline {
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.65;
}

.footer__col h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col li a {
  font-size: .875rem;
  color: var(--muted);
  transition: color .15s;
}
.footer__col li a:hover { color: var(--text); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--muted);
}

.footer__legal { display: flex; gap: 24px; }
.footer__legal a { transition: color .15s; }
.footer__legal a:hover { color: var(--text); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 99;
    font-size: 1.3rem;
  }
  .nav__links.open a { color: var(--text); }

  .hero__inner { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .hero__desc { margin: 0 auto 40px; }
  .hero__actions { justify-content: center; }
  .hero__stores { justify-content: center; }
  .hero__visual { display: none; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }

  .features__grid { grid-template-columns: 1fr; }

  .how__inner { grid-template-columns: 1fr; }
  .how__visual { display: none; }

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

  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }

  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat__number { font-size: 2rem; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
}

/* ── Legal Pages ─────────────────────────────────────────── */
.legal-hero {
  padding: 140px 0 60px;
  border-bottom: 1px solid var(--border);
}

.legal-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: .875rem;
  margin-bottom: 24px;
  transition: color .15s;
}
.legal-hero__back:hover { color: var(--coral); }
.legal-hero__back svg { width: 16px; height: 16px; }

.legal-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 10px;
}

.legal-hero__meta {
  color: var(--muted);
  font-size: .875rem;
}

.legal-body {
  padding: 60px 0 100px;
}

.legal-body__inner {
  max-width: 760px;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: var(--text);
}

.legal-section p,
.legal-section address {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.75;
  font-style: normal;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.legal-table tr { border-bottom: 1px solid var(--border); }
.legal-table tr:last-child { border-bottom: none; }
.legal-table td {
  padding: 10px 0;
  font-size: .9rem;
  vertical-align: top;
}
.legal-table td:first-child {
  color: var(--muted);
  width: 180px;
  padding-right: 16px;
  flex-shrink: 0;
}
.legal-table td:last-child { color: var(--text); }
.legal-table a { color: var(--coral); }
.legal-table a:hover { text-decoration: underline; }

/* ── Animations ──────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.phone { animation: float 5s ease-in-out infinite; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  animation: fade-up .6s ease forwards;
}
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* Intersection observer targets */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
