/* ============================================================
   DerAdel – Landing Page im Apple-Stil
   Ink #1d1d1f · Grau #f5f5f7 · Gold #b8933f · Nachtblau #14192b
   ============================================================ */

:root {
  --ink: #1d1d1f;
  --ink-soft: #6e6e73;
  --gray: #f5f5f7;
  --gold: #b8933f;
  --gold-soft: #d8bc77;
  --night: #14192b;
  --radius: 22px;
  --maxw: 1040px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* ---------- Nav (Glasleiste) ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 22px;
  height: 52px; display: flex; align-items: center; gap: 28px;
}
.nav__logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--ink);
}
.nav__wordmark { font-weight: 700; font-size: 17px; letter-spacing: -0.02em; }
.crown { width: 20px; height: 20px; fill: var(--gold); flex: none; }
.crown--gold { width: 14px; height: 14px; }
.crown--big { width: 44px; height: 44px; margin-bottom: 18px; }

.nav__links { display: flex; gap: 24px; margin-left: 8px; }
.nav__links a {
  color: var(--ink-soft); text-decoration: none; font-size: 14px;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--ink); }

.nav__right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav__cta {
  font-size: 13px; font-weight: 600; color: #fff; text-decoration: none;
  background: var(--ink); border-radius: 999px; padding: 7px 15px;
  transition: background 0.2s;
}
.nav__cta:hover { background: #3a3a3c; }

/* Sprachumschalter (SVG-Flaggen) */
.lang { display: flex; gap: 6px; }
.lang__btn {
  border: 1.5px solid transparent; border-radius: 6px; padding: 2px;
  background: none; cursor: pointer; line-height: 0; opacity: 0.45;
  transition: opacity 0.2s, border-color 0.2s;
}
.lang__btn svg { width: 26px; height: 16px; border-radius: 3px; display: block; }
.lang__btn:hover { opacity: 0.8; }
.lang__btn--active { opacity: 1; border-color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding: 88px 22px 0;
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 50% -180px, rgba(184, 147, 63, 0.10), transparent 70%),
    #fff;
}
.hero__pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(184, 147, 63, 0.35); border-radius: 999px;
  padding: 7px 16px; margin-bottom: 26px; background: rgba(184, 147, 63, 0.06);
}
.hero__h1 {
  font-size: clamp(44px, 8vw, 76px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.05;
}
.hero__h1-accent {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead {
  max-width: 640px; margin: 24px auto 0;
  font-size: clamp(17px, 2.4vw, 21px); color: var(--ink-soft);
}
.hero__actions { margin-top: 34px; }
.hero__note { margin-top: 16px; font-size: 13px; color: var(--ink-soft); }

.btn {
  display: inline-block; text-decoration: none; font-weight: 600;
  border-radius: 999px; transition: transform 0.15s, background 0.2s;
}
.btn--primary {
  background: var(--ink); color: #fff; font-size: 17px; padding: 14px 32px;
}
.btn--primary:hover { background: #3a3a3c; transform: scale(1.02); }
.btn--big { font-size: 19px; padding: 16px 40px; }

.hero__phone { margin: 64px auto -2px; max-width: 320px; }

/* Telefonrahmen */
.phone {
  border-radius: 44px; border: 10px solid #1a1a1c;
  background: #1a1a1c; overflow: hidden;
  box-shadow: 0 30px 80px rgba(20, 25, 43, 0.35);
}
.phone img { display: block; width: 100%; height: auto; }
.phone--small { border-width: 8px; border-radius: 36px; }
.hero__phone .phone {
  border-bottom: none; border-radius: 44px 44px 0 0;
}

/* ---------- Trust ---------- */
.trust { background: var(--night); color: #fff; padding: 26px 22px; }
.trust__list {
  max-width: var(--maxw); margin: 0 auto; list-style: none;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 44px;
}
.trust__list li {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; color: rgba(255, 255, 255, 0.85);
}
.tick { width: 15px; height: 15px; fill: var(--gold-soft); flex: none; }

/* ---------- Sections ---------- */
.section { padding: 96px 22px; }
.section--gray { background: var(--gray); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section__head h2 {
  font-size: clamp(32px, 5vw, 48px); font-weight: 700; letter-spacing: -0.025em;
}
.section__head p { margin-top: 14px; font-size: 19px; color: var(--ink-soft); }

/* Feature-Karten */
.cards {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.card {
  background: #fff; border-radius: var(--radius); padding: 40px 36px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--night), #2a3352);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.card__icon svg { width: 26px; height: 26px; fill: var(--gold-soft); }
.card h3 { font-size: 23px; letter-spacing: -0.02em; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 16px; }

/* Screens */
.screens {
  max-width: 900px; margin: 0 auto;
  display: flex; justify-content: center; align-items: flex-end; gap: 40px;
  flex-wrap: wrap;
}
.screens__item { width: 230px; text-align: center; }
.screens__item--center { width: 260px; }
.screens__item figcaption {
  margin-top: 18px; font-size: 15px; font-weight: 600; color: var(--ink-soft);
}

/* About (dunkel) */
.section--dark {
  background:
    radial-gradient(900px 400px at 50% 0, rgba(184, 147, 63, 0.14), transparent 70%),
    var(--night);
  color: #fff; text-align: center;
}
.about { max-width: 680px; margin: 0 auto; }
.about h2 { font-size: clamp(30px, 4.6vw, 44px); letter-spacing: -0.025em; }
.about p { margin-top: 18px; font-size: 18px; color: rgba(255, 255, 255, 0.75); }

/* CTA */
.section--cta { text-align: center; background: var(--gray); }
.section--cta h2 { font-size: clamp(30px, 4.6vw, 44px); letter-spacing: -0.025em; }
.section--cta p { margin: 14px auto 30px; font-size: 18px; color: var(--ink-soft); max-width: 520px; }

/* ---------- Footer ---------- */
.footer { background: #fff; border-top: 1px solid rgba(0, 0, 0, 0.08); padding: 40px 22px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; text-align: center; }
.footer__brand {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; margin-bottom: 8px;
}
.footer__claim { font-weight: 400; color: var(--ink-soft); }
.footer__claim::before { content: "· "; }
.footer__links { margin-bottom: 8px; }
.footer__links a { color: var(--ink-soft); font-size: 14px; text-decoration: none; }
.footer__links a:hover { color: var(--ink); text-decoration: underline; }
.footer__copy { font-size: 13px; color: var(--ink-soft); }

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal--visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .nav__links { display: none; }
  .cards { grid-template-columns: 1fr; }
  .screens { gap: 28px; }
  .screens__item, .screens__item--center { width: 200px; }
  .section { padding: 72px 18px; }
}
