/* ============================================================
   Wadim Webstudio — Portfolio 2026
   Mobile-first · Unbounded (lokal) + System-Stack · kein Framework
   ============================================================ */

/* ---------- Schrift (lokal, SIL OFL 1.1 — ../fonts/LICENSE-Unbounded.txt) ---------- */
@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("/fonts/unbounded-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;
}
@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("/fonts/unbounded-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: "Unbounded";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("/fonts/unbounded-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; -webkit-text-size-adjust: 100%; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea { font: inherit; }

/* ---------- Tokens ---------- */
:root {
  --paper:   #f6f3ec;
  --card:    #fffdf8;
  --ink:     #16130f;
  --muted:   #6d6558;
  --line:    #e6dfd1;

  --dark:    #141210;
  --dark-2:  #1e1a16;
  --cream:   #f4efe6;

  --accent:      #e8542f;
  --accent-deep: #c43e1c;
  --accent-soft: rgba(232, 84, 47, 0.12);

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 14px 40px -16px rgba(22, 19, 15, 0.25);

  --display: "Unbounded", "Arial Black", sans-serif;
  --body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --header-h: 4.25rem;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper:  #131110;
    --card:   #1d1a17;
    --ink:    #f0ebe1;
    --muted:  #a89f90;
    --line:   #2e2924;
    --shadow: 0 14px 40px -16px rgba(0, 0, 0, 0.6);
    --accent-soft: rgba(232, 84, 47, 0.18);
  }
}

/* ---------- Basis ---------- */
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.container { width: min(100% - 2.5rem, 1140px); margin-inline: auto; }
.container-narrow { max-width: 46rem; }
.section { padding-block: 4.5rem; }

h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.12; text-wrap: balance; letter-spacing: -0.01em; }
p { max-width: 62ch; }
a { color: var(--accent-deep); }
::selection { background: rgba(232, 84, 47, 0.3); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.section-head { margin-bottom: 2.5rem; }
.section-head h2 { font-size: clamp(1.6rem, 4.5vw, 2.5rem); margin-bottom: 0.9rem; }
.section-head .intro { color: var(--muted); font-size: 1.05rem; }

.skip-link { position: absolute; top: -100%; left: 1rem; z-index: 100; padding: 0.6rem 1rem; background: var(--accent); color: #fff; border-radius: 0 0 10px 10px; text-decoration: none; }
.skip-link:focus { top: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.7rem; border-radius: 999px;
  font-weight: 650; font-size: 1rem; text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 26px -10px rgba(232, 84, 47, 0.7); }
.btn-primary:hover { background: var(--accent-deep); }
.btn-ghost { border: 1.5px solid currentColor; color: var(--cream); }
.btn-ghost:hover { background: rgba(244, 239, 230, 0.1); }
.btn-small { padding: 0.55rem 1.15rem; font-size: 0.9rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; height: var(--header-h);
  background: rgba(20, 18, 16, 0.9);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  color: var(--cream);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 28px -10px rgba(0, 0, 0, 0.5); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; color: inherit; }
.brand-mark { width: 2.1rem; height: 2.1rem; flex: none; }
.brand-name { font-family: var(--display); font-size: 0.98rem; font-weight: 600; white-space: nowrap; letter-spacing: 0.01em; }
.brand-name em { font-style: normal; color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 0.4rem; }

/* Sprachwahl */
.lang { position: relative; }
.lang summary {
  list-style: none; display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 0.75rem; border: 1px solid rgba(244, 239, 230, 0.25);
  border-radius: 999px; cursor: pointer; font-size: 0.82rem; font-weight: 700;
}
.lang summary::-webkit-details-marker { display: none; }
.lang-code { text-transform: uppercase; letter-spacing: 0.08em; }
.lang-list {
  position: absolute; right: 0; top: calc(100% + 0.5rem); z-index: 60;
  list-style: none; margin: 0; padding: 0.4rem;
  background: var(--dark-2); border: 1px solid rgba(244, 239, 230, 0.14);
  border-radius: var(--radius-sm); min-width: 10.5rem;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.55);
}
.lang-list a {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.5rem 0.75rem; border-radius: 8px;
  color: var(--cream); text-decoration: none; font-size: 0.9rem;
}
.lang-list a:hover { background: rgba(244, 239, 230, 0.1); }
.lang-list a.active { color: var(--accent); font-weight: 700; }
.lang-list .code { text-transform: uppercase; font-size: 0.75rem; opacity: 0.6; }

/* Burger */
.nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 2.6rem; height: 2.6rem; padding: 0.6rem; }
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--cream); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav ul { list-style: none; margin: 0; padding: 0; }
.site-nav {
  position: absolute; top: var(--header-h); left: 0; right: 0;
  background: rgba(20, 18, 16, 0.98);
  padding: 0.75rem 1.25rem 1.5rem;
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
body.nav-open .site-nav { opacity: 1; transform: none; pointer-events: auto; }
.site-nav a:not(.btn) {
  display: block; padding: 0.85rem 0.25rem;
  color: var(--cream); text-decoration: none; font-weight: 550;
  border-bottom: 1px solid rgba(244, 239, 230, 0.1);
}
.site-nav a:not(.btn):hover { color: var(--accent); }
.site-nav .nav-cta { padding-top: 1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--dark); color: var(--cream);
  padding-block: 4.5rem 5rem;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(50% 40% at 85% 15%, rgba(232, 84, 47, 0.22), transparent 70%),
    radial-gradient(40% 45% at 10% 90%, rgba(232, 84, 47, 0.1), transparent 70%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: linear-gradient(rgba(244, 239, 230, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(244, 239, 230, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(70% 70% at 60% 40%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(70% 70% at 60% 40%, #000, transparent 80%);
}
.hero-grid { position: relative; display: grid; gap: 3rem; }
.hero h1 { font-size: clamp(1.9rem, 6.2vw, 3.4rem); font-weight: 700; margin-bottom: 1.25rem; }
.hero h1 .accent { color: var(--accent); }
.lede { font-size: clamp(1.02rem, 2.3vw, 1.18rem); color: rgba(244, 239, 230, 0.8); margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.25rem; }
.hero-trust { list-style: none; padding: 0; display: grid; gap: 0.55rem; font-size: 0.93rem; color: rgba(244, 239, 230, 0.75); }
.hero-trust li { display: flex; align-items: center; gap: 0.55rem; }
.hero-trust li::before { content: ""; flex: none; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--accent); }

/* Builder-Mockup */
.hero-visual { display: flex; align-items: center; }
.builder {
  position: relative; width: 100%; max-width: 34rem; margin-inline: auto;
  background: #201c18; border: 1px solid rgba(244, 239, 230, 0.14);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 30px 70px -25px rgba(0, 0, 0, 0.7);
}
.chrome { display: flex; align-items: center; gap: 0.45rem; padding: 0.7rem 0.9rem; border-bottom: 1px solid rgba(244, 239, 230, 0.1); }
.chrome .dot { width: 0.6rem; height: 0.6rem; border-radius: 50%; background: rgba(244, 239, 230, 0.22); }
.chrome .urlbar {
  flex: 1; margin-left: 0.4rem; padding: 0.28rem 0.8rem;
  background: rgba(244, 239, 230, 0.08); border-radius: 999px;
  font-size: 0.72rem; color: rgba(244, 239, 230, 0.55); letter-spacing: 0.03em;
}
.canvas { position: relative; padding: 1.1rem; display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.7rem; min-height: 17rem; align-content: start; }
.b { border-radius: 9px; background: rgba(244, 239, 230, 0.16); opacity: 0; transform: translateY(14px) scale(0.96); }
.builder.play .b { animation: bpop 0.55s cubic-bezier(0.2, 0.8, 0.3, 1.2) forwards; }
.b-logo { grid-column: 1 / 2; height: 1.1rem; background: var(--accent); animation-delay: 0.15s !important; }
.b-nav { grid-column: 4 / 7; height: 1.1rem; display: flex; gap: 0.5rem; background: none; animation-delay: 0.3s !important; }
.b-nav i { flex: 1; border-radius: 6px; background: rgba(244, 239, 230, 0.16); }
.b-h1 { grid-column: 1 / 6; height: 1.9rem; animation-delay: 0.55s !important; background: rgba(244, 239, 230, 0.28); }
.b-h2 { grid-column: 1 / 5; height: 1.9rem; animation-delay: 0.7s !important; background: rgba(244, 239, 230, 0.28); }
.b-btn { grid-column: 1 / 3; height: 1.5rem; border-radius: 999px; background: var(--accent); animation-delay: 0.9s !important; }
.b-img1 { grid-column: 1 / 4; aspect-ratio: 4 / 3; animation-delay: 1.15s !important; background: linear-gradient(135deg, rgba(232, 84, 47, 0.5), rgba(244, 239, 230, 0.12)); }
.b-img2 { grid-column: 4 / 7; aspect-ratio: 4 / 3; animation-delay: 1.3s !important; background: linear-gradient(225deg, rgba(232, 84, 47, 0.35), rgba(244, 239, 230, 0.12)); }
.b-line { height: 0.55rem; }
.l1 { grid-column: 1 / 5; animation-delay: 1.5s !important; }
.l2 { grid-column: 1 / 4; animation-delay: 1.6s !important; }
@keyframes bpop { to { opacity: 1; transform: none; } }
.replay {
  position: absolute; right: 0.7rem; bottom: 0.7rem;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: rgba(244, 239, 230, 0.1); color: var(--cream);
  font-size: 1rem; transition: background-color 0.2s ease, transform 0.3s ease;
}
.replay:hover { background: rgba(244, 239, 230, 0.22); transform: rotate(180deg); }

/* ---------- Vorher/Nachher ---------- */
.compare {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  aspect-ratio: 1280 / 800; user-select: none; touch-action: none;
  --pos: 50%;
}
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cmp-before-wrap { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.cmp-divider {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px;
  background: var(--accent); transform: translateX(-50%); pointer-events: none;
}
.cmp-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: grid; place-items: center; width: 2.9rem; height: 2.9rem;
  background: var(--accent); color: #fff; border-radius: 50%;
  font-size: 0.95rem; letter-spacing: -0.05em;
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.5);
}
.cmp-tag {
  position: absolute; top: 0.9rem; z-index: 2;
  padding: 0.3rem 0.85rem; border-radius: 999px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(20, 18, 16, 0.82); color: #fff;
}
.tag-before { left: 0.9rem; }
.tag-after { right: 0.9rem; background: var(--accent); }
.cmp-range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
}
.cmp-caption { margin-top: 1rem; font-size: 0.92rem; color: var(--muted); }

.video-block { margin-top: 3rem; }
.video-block h3 { font-size: 1.15rem; margin-bottom: 1rem; }
.video-block video { width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); background: #000; }
.video-note { margin-top: 0.6rem; font-size: 0.85rem; color: var(--muted); }

/* ---------- Dunkle Sektionen ---------- */
.section-dark { background: var(--dark); color: var(--cream); }
.section-dark .section-head .intro { color: rgba(244, 239, 230, 0.7); }
.section-dark a { color: #ff8b66; }

/* ---------- Pakete ---------- */
.plans { display: grid; gap: 1.25rem; }
.plan {
  position: relative; display: flex; flex-direction: column;
  background: var(--dark-2); border: 1px solid rgba(244, 239, 230, 0.12);
  border-radius: var(--radius); padding: 1.75rem 1.5rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.plan:hover { transform: translateY(-6px); border-color: rgba(232, 84, 47, 0.6); }
.plan-popular { border-color: var(--accent); background: linear-gradient(160deg, rgba(232, 84, 47, 0.14), rgba(232, 84, 47, 0.03) 55%), var(--dark-2); }
.plan-badge {
  position: absolute; top: -0.8rem; left: 1.5rem;
  padding: 0.25rem 0.9rem; border-radius: 999px;
  background: var(--accent); color: #fff;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
}
.plan h3 { font-size: 1.3rem; }
.plan-tagline { color: rgba(244, 239, 230, 0.65); font-size: 0.92rem; margin: 0.3rem 0 1.1rem; }
.plan-price { font-family: var(--display); font-size: 1.7rem; font-weight: 700; }
.plan-time { font-size: 0.85rem; color: var(--accent); font-weight: 700; margin: 0.2rem 0 1.2rem; }
.plan-features { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: 0.55rem; font-size: 0.93rem; color: rgba(244, 239, 230, 0.85); }
.plan-features li { display: flex; gap: 0.55rem; align-items: baseline; }
.plan-features li::before { content: "✓"; flex: none; color: var(--accent); font-weight: 800; }
.plan .btn { margin-top: auto; width: 100%; }

.care {
  margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem;
  border: 1.5px dashed rgba(232, 84, 47, 0.55);
  border-radius: var(--radius); padding: 1.75rem 1.5rem;
}
.care h3 { font-size: 1.15rem; }
.care p { color: rgba(244, 239, 230, 0.7); font-size: 0.95rem; margin-top: 0.3rem; }
.care-price { font-family: var(--display); font-size: 1.5rem; font-weight: 700; white-space: nowrap; }
.care-price small { font-family: var(--body); font-size: 0.85rem; color: rgba(244, 239, 230, 0.6); font-weight: 400; }
.care-features { list-style: none; padding: 0; display: grid; gap: 0.45rem; font-size: 0.9rem; color: rgba(244, 239, 230, 0.8); }
.care-features li { display: flex; gap: 0.55rem; }
.care-features li::before { content: "✓"; color: var(--accent); font-weight: 800; }
.plans-note { margin-top: 1.75rem; font-size: 0.88rem; color: rgba(244, 239, 230, 0.55); }

/* ---------- Ablauf ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; counter-reset: step; }
.steps li {
  counter-increment: step; position: relative;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.5rem;
}
.steps li::before {
  content: "0" counter(step);
  font-family: var(--display); font-size: 2rem; font-weight: 700;
  color: var(--accent-soft); -webkit-text-stroke: 1.5px var(--accent);
  display: block; margin-bottom: 0.6rem; letter-spacing: 0.02em;
}
.steps h3 { font-size: 1.08rem; margin-bottom: 0.45rem; }
.steps p { font-size: 0.95rem; color: var(--muted); }

/* ---------- Über mich ---------- */
.section-alt { background: linear-gradient(to bottom, transparent, var(--accent-soft) 200%); border-block: 1px solid var(--line); }
.about-grid { display: grid; gap: 2.5rem; align-items: center; }
.avatar {
  width: min(16rem, 60vw); aspect-ratio: 1; margin-inline: auto;
  border-radius: 28% 72% 65% 35% / 30% 35% 65% 70%;
  background: radial-gradient(120% 120% at 25% 20%, #ff8b66, var(--accent) 45%, #8c2c10);
  display: grid; place-items: center;
  box-shadow: var(--shadow);
}
.avatar span { font-family: var(--display); font-size: 5rem; font-weight: 800; color: #fff; }
.about-copy p { margin-bottom: 1rem; }
.stats { list-style: none; padding: 0; margin-top: 1.75rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.stats .num { display: block; font-family: var(--display); font-size: clamp(1.15rem, 3.5vw, 1.6rem); font-weight: 700; color: var(--accent); }
.stats .label { font-size: 0.82rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 0.25rem; cursor: pointer; font-weight: 650; font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--display); color: var(--accent); font-size: 1.3rem; transition: transform 0.25s ease; flex: none; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 0.25rem 1.25rem; color: var(--muted); font-size: 0.97rem; }

/* ---------- Kontakt ---------- */
.contact-form { display: grid; gap: 1rem; margin-bottom: 1.5rem; }
.contact-form label { display: grid; gap: 0.4rem; font-size: 0.9rem; font-weight: 650; }
.contact-form input, .contact-form textarea {
  padding: 0.85rem 1rem; border-radius: var(--radius-sm);
  border: 1px solid rgba(244, 239, 230, 0.25);
  background: rgba(244, 239, 230, 0.06); color: var(--cream);
  transition: border-color 0.2s ease;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }
.contact-form .btn { justify-self: start; }
.form-note { font-size: 0.83rem; color: rgba(244, 239, 230, 0.55); }
.contact-direct { font-size: 1rem; }

.hp { position: absolute; left: -9999px; top: -9999px; height: 1px; width: 1px; opacity: 0; }
.form-paket {
  display: inline-flex; align-items: center; gap: 0.5rem; justify-self: start;
  background: rgba(232, 84, 47, 0.16); border: 1px solid rgba(232, 84, 47, 0.5);
  border-radius: 999px; padding: 0.35rem 0.9rem; font-size: 0.9rem;
}
.form-paket button { font-size: 1rem; opacity: 0.7; line-height: 1; }
.form-paket button:hover { opacity: 1; }
.form-status { font-size: 0.95rem; font-weight: 600; }
.form-status.ok { color: #8fe6b4; }
.form-status.err { color: #ff9c86; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: rgba(244, 239, 230, 0.75); padding-block: 2.75rem; border-top: 1px solid rgba(244, 239, 230, 0.1); }
.footer-inner { display: grid; gap: 2rem; }
.footer-tagline { margin-top: 0.9rem; font-size: 0.92rem; max-width: 30ch; }
.legal-links { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-bottom: 0.75rem; }
.site-footer a { color: rgba(244, 239, 230, 0.85); text-decoration: none; }
.site-footer a:hover { color: var(--accent); text-decoration: underline; }
.footer-legal-note { font-size: 0.8rem; color: rgba(244, 239, 230, 0.45); margin-bottom: 0.75rem; }
.footer-rights { font-size: 0.85rem; color: rgba(244, 239, 230, 0.5); }

/* ---------- Sprachhinweis ---------- */
.lang-hint {
  position: fixed; left: 50%; bottom: 1.25rem; transform: translateX(-50%);
  z-index: 90; display: flex; align-items: center; gap: 0.9rem;
  max-width: min(94vw, 34rem);
  background: var(--dark-2); color: var(--cream);
  border: 1px solid rgba(244, 239, 230, 0.16);
  padding: 0.8rem 1rem 0.8rem 1.25rem; border-radius: 999px;
  box-shadow: 0 22px 50px -15px rgba(0, 0, 0, 0.6);
  font-size: 0.92rem;
}
.lang-hint button { font-size: 1.1rem; opacity: 0.7; }
.lang-hint button:hover { opacity: 1; }
@media (max-width: 600px) {
  .lang-hint {
    left: 1rem; right: 1rem; transform: none;
    flex-wrap: wrap; justify-content: center; text-align: center;
    border-radius: 18px; row-gap: 0.65rem; padding: 1rem 2.5rem 1rem 1.25rem;
  }
  .lang-hint button { position: absolute; top: 0.45rem; right: 0.8rem; }
}

/* ---------- Rechtsseiten ---------- */
.prose { max-width: 46rem; padding-block: 3.5rem; }
.prose h1 { font-size: clamp(1.7rem, 5vw, 2.4rem); margin-bottom: 1.75rem; }
.prose h2 { font-size: 1.25rem; margin: 2rem 0 0.7rem; }
.prose p + p { margin-top: 0.85rem; }
.prose ul { padding-left: 1.25rem; }
.prose .adresse { font-style: normal; line-height: 1.7; }
.zurueck { display: inline-flex; gap: 0.4rem; margin-bottom: 2rem; font-size: 0.92rem; font-weight: 600; text-decoration: none; }
.todo {
  background: rgba(232, 84, 47, 0.1); border: 1.5px dashed var(--accent);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem; margin: 1rem 0;
  font-size: 0.92rem;
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Desktop ---------- */
@media (min-width: 760px) {
  .section { padding-block: 6rem; }
  .hero { padding-block: 6rem 6.5rem; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
  .plans { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .about-grid { grid-template-columns: 0.8fr 1.2fr; }
  .care { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer-inner { grid-template-columns: 1fr auto; align-items: end; }
  .footer-meta { text-align: right; }
  .footer-meta .legal-links { justify-content: flex-end; }
}
@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .site-nav { position: static; background: none; padding: 0; opacity: 1; transform: none; pointer-events: auto; }
  .site-nav ul { display: flex; align-items: center; gap: 1.6rem; }
  .site-nav a:not(.btn) { padding: 0.25rem 0; border-bottom: 0; font-size: 0.94rem; position: relative; }
  .site-nav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 2px; background: var(--accent); transition: right 0.25s ease; }
  .site-nav a:not(.btn):hover::after { right: 0; }
  .site-nav .nav-cta { padding-top: 0; }
}

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal, .b { opacity: 1 !important; transform: none !important; }
}
