/* ============================================================
   Mein Altersvorsorgedepot – finale Webseite
   ============================================================ */

:root {
  --navy:         #071B34;
  --navy-deep:    #041326;
  --blue-muted:   #476A88;
  --teal:         #2D7C82;
  --teal-v:       #0D8A92;
  --teal-soft:    #E7F3F2;
  --gold:         #E8A030;
  --gold-soft:    #FDF3E3;
  --bg:           #F4F7F7;
  --card:         #FFFFFF;
  --surface:      #F9FBFB;
  --line:         #E4E8EA;
  --text:         #071B34;
  --muted:        #56616B;
  --success:      #2F7D5A;
  --warning:      #9B6A1B;

  --r-card:  22px;
  --r-sm:    14px;
  --r-xs:    10px;

  --shadow:  0 2px 20px rgba(7,27,52,.07);
  --shadow-md: 0 8px 40px rgba(7,27,52,.1);

  --w: 1140px;
  --pad: clamp(20px, 5vw, 48px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: -apple-system, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
p   { color: var(--muted); line-height: 1.7; }

h1,h2,h3,h4 { line-height: 1.2; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); }

/* ── Layout ──────────────────────────────────────────────── */
.wrap {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section { padding: clamp(72px, 9vw, 108px) 0; }
.section--tinted { background: var(--surface); }
.section--white  { background: var(--card); }
.section--dark   { background: var(--navy); }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(228,232,234,.7);
}

.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__logo {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  object-fit: contain;
  display: block;
}

.nav__name {
  font-weight: 760;
  font-size: .93rem;
  color: var(--navy);
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav__links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .18s;
}
.nav__links a:hover { color: var(--navy); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 640;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .18s;
  white-space: nowrap;
  line-height: 1;
}

.btn--navy {
  background: var(--navy);
  color: #fff;
  padding: 11px 20px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(7,27,52,.16);
}
.btn--navy:hover { background: var(--navy-deep); transform: translateY(-1px); }

.btn--teal {
  background: var(--teal-v);
  color: #fff;
  padding: 11px 20px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(13,138,146,.22);
}
.btn--teal:hover { background: var(--teal); transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  color: var(--navy);
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
}
.btn--outline:hover { border-color: var(--teal-v); color: var(--teal-v); }

.btn--ghost-white {
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.88);
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.18);
}
.btn--ghost-white:hover { background: rgba(255,255,255,.22); }

.btn--hero-white {
  background: #fff;
  color: var(--navy-deep);
  padding: 15px 30px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(7,27,52,.14);
}
.btn--hero-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(7,27,52,.2); }

.btn--large { padding: 16px 32px; font-size: 1rem; }

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}
.nav__toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 1px;
  transition: all .2s;
}

@media (max-width: 780px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__links--open {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--line);
    padding: 20px var(--pad);
  }
}

/* ── Status Pill ─────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .75rem;
  font-weight: 640;
  padding: 5px 11px;
  border-radius: 999px;
  line-height: 1;
}
.pill--teal  { background: var(--teal-soft); color: var(--teal); border: 1px solid rgba(45,124,130,.18); }
.pill--gold  { background: var(--gold-soft); color: var(--warning); border: 1px solid rgba(232,160,48,.22); }
.pill--white { background: rgba(255,255,255,.16); color: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.2); }

.pill__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pill--teal  .pill__dot { background: var(--teal-v); }
.pill--gold  .pill__dot { background: var(--gold); }
.pill--white .pill__dot { background: rgba(255,255,255,.7); animation: blink 2s ease-in-out infinite; }

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(140deg, #0D8A92 0%, #1A607A 100%);
  padding: clamp(72px,10vw,130px) 0 clamp(64px,8vw,110px);
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -8%;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(255,255,255,.055) 0%, transparent 68%);
  pointer-events: none;
}

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

.hero h1 { color: #fff; margin-bottom: 18px; }

.hero__lead {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.65;
}

.hero__lead strong { color: #fff; }

.hero__eyebrow { margin-bottom: 22px; }

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero visual card */
.hero__visual { display: flex; justify-content: center; }

.hero__card {
  width: 320px;
  max-width: 100%;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  padding: 22px 22px 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  position: relative;
}

.hero__card-back {
  position: absolute;
  top: -10px; left: 14px; right: -14px;
  height: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  z-index: -1;
}

.hero__card-label {
  font-size: .7rem;
  font-weight: 660;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 7px;
}
.hero__card-amount {
  font-size: 2.6rem;
  font-weight: 760;
  letter-spacing: -.03em;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}
.hero__card-sub {
  font-size: .82rem;
  color: rgba(255,255,255,.68);
  margin-bottom: 18px;
}
.hero__card-bar {
  height: 5px;
  background: rgba(255,255,255,.15);
  border-radius: 3px;
  margin-bottom: 8px;
  overflow: hidden;
}
.hero__card-bar-fill {
  height: 100%;
  background: rgba(255,255,255,.72);
  border-radius: 3px;
}
.hero__card-row {
  display: flex;
  justify-content: space-between;
  font-size: .76rem;
  color: rgba(255,255,255,.6);
}

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { display: none; }
  .hero__lead { max-width: 100%; }
}

/* ── Trust strip ─────────────────────────────────────────── */
.trust {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.trust__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--muted);
}
.trust__item svg { color: var(--teal-v); flex-shrink: 0; }

/* ── Section headings ────────────────────────────────────── */
.sh { margin-bottom: clamp(36px, 5vw, 52px); }
.sh--center { text-align: center; }
.sh__eye {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 660;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-v);
  margin-bottom: 11px;
}
.sh h2 { color: var(--navy); margin-bottom: 12px; }
.sh p  { font-size: 1.05rem; max-width: 540px; }
.sh--center p { margin: 0 auto; }

/* ── Card ─────────────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 26px;
  box-shadow: var(--shadow);
}

/* ── Fact card ───────────────────────────────────────────── */
.fact-card { padding: 28px; }
.fact-card__hed {
  font-size: .7rem;
  font-weight: 660;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 18px;
}
.fact-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}
.fact-item:first-of-type { border-top: none; padding-top: 0; }

.fact-item__icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--teal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-v);
  flex-shrink: 0;
}
.fact-item__lbl { font-size: .78rem; color: var(--muted); margin-bottom: 2px; }
.fact-item__val { font-size: 1rem; font-weight: 700; color: var(--navy); }
.fact-item__note { font-size: .74rem; color: var(--muted); margin-top: 1px; }

/* ── Grid ────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width: 860px) { .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .grid-3 { grid-template-columns: 1fr; } }

/* ── Feature cards ───────────────────────────────────────── */
.feat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.feat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.feat__icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
}
.feat__icon--teal { background: var(--teal-v); }
.feat__icon--gold { background: var(--gold); }
.feat__icon--blue { background: var(--blue-muted); }

.feat h3 { color: var(--navy); margin-bottom: 9px; font-size: 1rem; }
.feat p  { font-size: .875rem; line-height: 1.65; }

/* ── Check / calculator ──────────────────────────────────── */
.check-section { background: var(--teal-soft); border-top: 1px solid rgba(45,124,130,.12); border-bottom: 1px solid rgba(45,124,130,.12); }

.check__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}
@media (max-width: 820px) { .check__layout { grid-template-columns: 1fr; gap: 28px; } }

.check__form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 28px;
  box-shadow: var(--shadow);
}

.check__result {
  background: linear-gradient(140deg, #0D8A92, #1A607A);
  border-radius: var(--r-card);
  padding: 28px;
  color: #fff;
  box-shadow: 0 12px 48px rgba(13,138,146,.22);
  position: sticky;
  top: 88px;
}

.check__result-lbl  { font-size: .7rem; font-weight: 660; letter-spacing: .08em; text-transform: uppercase; opacity: .7; margin-bottom: 7px; }
.check__result-amt  { font-size: 3.2rem; font-weight: 760; letter-spacing: -.03em; line-height: 1; margin-bottom: 5px; }
.check__result-sub  { font-size: .86rem; opacity: .75; margin-bottom: 26px; }

.check__breakdown { display: flex; flex-direction: column; gap: 8px; }
.check__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,.11);
  border-radius: 10px;
  padding: 9px 13px;
  font-size: .86rem;
}
.check__row-lbl { opacity: .78; }
.check__row-val { font-weight: 660; }
.check__row--total { background: rgba(255,255,255,.2); font-weight: 700; font-size: .92rem; }

.check__disc { font-size: .7rem; opacity: .58; margin-top: 14px; line-height: 1.5; }

.check__app-cta {
  margin-top: 48px;
}

.check__app-cta-inner {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 20px;
  background: var(--navy);
  color: #fff;
  border-radius: 22px;
  padding: 28px 32px;
}

.check__app-cta-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check__app-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.check__app-cta-copy strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.check__app-cta-copy span {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}

.check__app-cta-btn {
  flex-shrink: 0;
  background: var(--teal-v) !important;
  color: #fff !important;
  border-color: transparent !important;
  white-space: nowrap;
}

.check__app-cta-btn:hover {
  background: var(--teal) !important;
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  .check__app-cta-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 22px;
  }
  .check__app-cta-btn { width: 100%; text-align: center; justify-content: center; }
}

.form-group { margin-bottom: 24px; }
.form-group:last-child { margin-bottom: 0; }

.form-lbl {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: .86rem;
  font-weight: 640;
  color: var(--navy);
  margin-bottom: 10px;
}
.form-lbl-val { font-size: .98rem; font-weight: 720; color: var(--teal-v); }

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%; height: 4px;
  background: var(--line);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--teal-v);
  box-shadow: 0 2px 8px rgba(13,138,146,.3);
  transition: transform .15s;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--teal-v);
  border: none;
}

.child-btns { display: flex; gap: 8px; }
.child-btn {
  flex: 1;
  padding: 10px 6px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: transparent;
  font-size: .86rem;
  font-weight: 640;
  color: var(--muted);
  cursor: pointer;
  transition: all .15s;
  text-align: center;
}
.child-btn.active { border-color: var(--teal-v); background: var(--teal-soft); color: var(--teal-v); }

.form-hint { font-size: .74rem; color: var(--muted); margin-top: 7px; line-height: 1.5; }

.check__hint-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 12px 14px;
  margin-top: 22px;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Provider grid ───────────────────────────────────────── */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.provider-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform .18s, box-shadow .18s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.provider-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.provider-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.provider-card__logo {
  height: 26px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.provider-card__type {
  font-size: .68rem;
  font-weight: 640;
  color: var(--muted);
  background: var(--surface);
  padding: 3px 7px;
  border-radius: 6px;
  white-space: nowrap;
}

.provider-card__status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 640;
  padding: 3px 9px;
  border-radius: 999px;
}
.provider-card__status--announced { background: var(--teal-soft); color: var(--teal); }
.provider-card__status--preparing { background: var(--gold-soft); color: var(--warning); }

.provider-card__status svg { flex-shrink: 0; }

.provider-card__name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.provider-card__desc { font-size: .8rem; line-height: 1.55; }

.provider-card__link {
  display: inline-block;
  margin-top: 10px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--teal-v);
}

.provider-disclaimer {
  text-align: center;
  font-size: .78rem;
  color: var(--muted);
  margin-top: 18px;
  padding: 12px 16px;
  background: var(--gold-soft);
  border: 1px solid rgba(232,160,48,.22);
  border-radius: 10px;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 0; max-width: 740px; margin: 0 auto; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item:hover { box-shadow: var(--shadow); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.faq-q h4 { font-size: .9rem; font-weight: 640; color: var(--navy); flex: 1; line-height: 1.4; }

.faq-chevron {
  width: 18px; height: 18px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .22s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}
.faq-item.open .faq-a { max-height: 500px; }

.faq-a-inner {
  border-top: 1px solid var(--line);
  padding: 14px 20px 18px;
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-a-inner p + p { margin-top: 8px; }

/* ── Download ────────────────────────────────────────────── */
.dl-section {
  background: var(--navy);
  padding: clamp(72px,8vw,100px) 0;
  text-align: center;
}
.dl-section h2 { color: #fff; margin-bottom: 14px; }
.dl-section p  { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }

.dl-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--navy);
  font-weight: 720;
  font-size: .95rem;
  padding: 14px 24px;
  border-radius: 13px;
  transition: all .18s;
}
.dl-badge:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.2); }

.dl-note { font-size: .8rem; color: rgba(255,255,255,.4); margin-top: 18px; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  padding: 52px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 460px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.footer__brand img { width: 26px; height: 26px; border-radius: 7px; }
.footer__brand-name { font-weight: 720; font-size: .9rem; color: #fff; }
.footer__brand-desc { font-size: .8rem; color: rgba(255,255,255,.38); line-height: 1.6; max-width: 280px; }

.footer__col h5 {
  font-size: .7rem;
  font-weight: 680;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: rgba(255,255,255,.38);
  margin-bottom: 14px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer__links a { font-size: .83rem; color: rgba(255,255,255,.56); transition: color .18s; }
.footer__links a:hover { color: rgba(255,255,255,.88); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__copy  { font-size: .75rem; color: rgba(255,255,255,.28); }
.footer__disc  { font-size: .72rem; color: rgba(255,255,255,.22); text-align: right; max-width: 400px; }
@media (max-width: 600px) { .footer__disc { text-align: left; max-width: 100%; } }

/* ── Legal pages ─────────────────────────────────────────── */
.legal {
  max-width: 740px;
  margin: 0 auto;
  padding: 64px var(--pad) 96px;
}
.legal h1 { color: var(--navy); font-size: clamp(1.7rem,4vw,2.2rem); margin-bottom: 7px; }
.legal__intro { font-size: .98rem; margin-bottom: 5px; }
.legal__date  { font-size: .78rem; color: var(--muted); margin-bottom: 36px; }

.legal-section {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 22px 24px;
  margin-bottom: 12px;
}
.legal-section h2 { font-size: 1rem; color: var(--navy); margin-bottom: 11px; }
.legal-section p  { font-size: .88rem; line-height: 1.7; margin-bottom: 9px; }
.legal-section p:last-child { margin-bottom: 0; }

.legal-section ul { list-style: none; margin-top: 10px; display: flex; flex-direction: column; gap: 7px; }
.legal-section ul li { display: flex; gap: 9px; font-size: .88rem; color: var(--muted); }
.legal-section ul li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--teal-v); margin-top: 7px; flex-shrink: 0; }

.placeholder { background: #FFF7ED; border: 1px dashed #F5A623; border-radius: 8px; padding: 9px 13px; font-size: .8rem; color: #9B6A1B; font-weight: 600; margin-bottom: 12px; }

/* ── Support ─────────────────────────────────────────────── */
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px; }
@media (max-width: 560px) { .support-grid { grid-template-columns: 1fr; } }

.support-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 22px;
  text-decoration: none;
  display: block;
  transition: all .18s;
  box-shadow: var(--shadow);
}
.support-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--teal-v); }

.support-card__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--teal-soft);
  color: var(--teal-v);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
}
.support-card h3 { font-size: .95rem; color: var(--navy); margin-bottom: 6px; }
.support-card p  { font-size: .83rem; line-height: 1.6; }

/* ── Inline link ─────────────────────────────────────────── */
.ilink { color: var(--teal-v); font-weight: 500; text-decoration: underline; text-decoration-color: rgba(13,138,146,.3); text-underline-offset: 3px; }
.ilink:hover { text-decoration-color: var(--teal-v); }

/* ── Fade-in ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .fade { opacity: 0; transform: translateY(18px); transition: opacity .48s ease, transform .48s ease; }
  .fade.in { opacity: 1; transform: none; }
}
