@charset "utf-8";
/* =========================================================
   SELFIE Terminal – Stylesheet
   Mobile first. Keine externen Fonts, keine Frameworks.
   ========================================================= */

:root {
    --brand:        #a3208d;
    --brand-light:  #d43aa8;
    --brand-glow:   #e8319b;
    --accent:       #ffb020;

    --bg:           #140e1b;
    --bg-2:         #1c1426;
    --bg-3:         #251a33;
    --card:         #1f1729;
    --line:         rgba(255,255,255,.10);
    --line-strong:  rgba(255,255,255,.18);

    --text:         #f3eef8;
    --muted:        #b6a9c4;
    --muted-2:      #8d7f9c;

    --radius:       18px;
    --radius-sm:    12px;
    --wrap:         1160px;
    --shadow:       0 18px 50px rgba(0,0,0,.45);
    --shadow-brand: 0 14px 40px rgba(163,32,141,.35);

    --ease:         cubic-bezier(.22,.75,.28,1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    overflow-x: hidden;
}

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

a { color: var(--brand-light); text-decoration: none; }
a:hover { color: var(--brand-glow); }

h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .6em; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4.2vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1.1em; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }

.skip {
    position: absolute; left: -9999px; top: 0; z-index: 999;
    background: var(--brand); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* --- Icons ---------------------------------------------------------- */
.ico { width: 24px; height: 24px; flex: none; vertical-align: -.3em; }
.ico-sm { width: 17px; height: 17px; vertical-align: -.2em; }
.ico-lg { width: 32px; height: 32px; }

/* --- Buttons -------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; gap: .5em;
    background: linear-gradient(120deg, var(--brand) 0%, var(--brand-glow) 100%);
    color: #fff; font-weight: 700; font-size: 1rem;
    padding: .85em 1.6em; border: 0; border-radius: 999px;
    cursor: pointer; text-align: center;
    box-shadow: var(--shadow-brand);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
}
.btn:hover { color: #fff; transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 18px 46px rgba(232,49,155,.45); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 20px; height: 20px; transition: transform .25s var(--ease); }
.btn:hover .ico { transform: translateX(4px); }
.btn-lg { font-size: 1.08rem; padding: 1em 2em; }
.btn-sm { font-size: .92rem; padding: .6em 1.15em; box-shadow: none; }
.btn-ghost {
    background: transparent; color: var(--text);
    border: 1.5px solid var(--line-strong); box-shadow: none;
}
.btn-ghost:hover { border-color: var(--brand-light); background: rgba(163,32,141,.12); }

/* --- Kopfbereich ---------------------------------------------------- */
.site-head {
    position: sticky; top: 0; z-index: 100;
    background: rgba(20,14,27,.82);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, background .3s;
}
.site-head.is-stuck { border-bottom-color: var(--line); background: rgba(20,14,27,.95); }

.head-inner { position: relative; display: flex; align-items: center; gap: 16px; min-height: 72px; padding-block: 8px; }
.logo { flex: none; display: block; }
/* Das Logo ist ein gestapeltes Zeichen (Blende ueber Schriftzug) – deshalb
   ueber die Hoehe begrenzen, sonst wird der Kopfbereich zu wuchtig. */
.logo img { height: 52px; width: auto; }

.nav-toggle { display: none; }
.burger {
    margin-left: auto; width: 44px; height: 44px; border-radius: 10px;
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    padding: 0 10px; cursor: pointer; border: 1px solid var(--line);
}
.burger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle:checked ~ .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle:checked ~ .burger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden;
    transition: max-height .4s var(--ease);
}
.nav-toggle:checked ~ .main-nav { max-height: 80vh; overflow-y: auto; }
.main-nav ul { list-style: none; margin: 0; padding: 8px 20px 24px; }
.main-nav a {
    display: block; padding: 13px 4px; color: var(--text);
    font-weight: 600; border-bottom: 1px solid var(--line);
}
.main-nav a.is-active { color: var(--brand-glow); }
.nav-cta { margin-top: 16px; }
.nav-cta a { border: 0; text-align: center; }
.nav-cta .btn { display: flex; justify-content: center; }

/* Umbruchpunkt bewusst erst bei 1100px: mit acht Menuepunkten plus Knopf
   wuerde die Leiste darunter in zwei Zeilen rutschen. */
@media (min-width: 1100px) {
    .burger { display: none; }
    .main-nav { position: static; max-height: none; overflow: visible; background: none; border: 0; margin-left: auto; }
    .main-nav ul { display: flex; align-items: center; gap: 4px; padding: 0; }
    .main-nav a { border: 0; padding: 8px 10px; border-radius: 8px; font-size: .93rem; }
    .main-nav a:not(.btn):hover { background: rgba(255,255,255,.06); color: var(--text); }
    .main-nav a.is-active { background: rgba(232,49,155,.14); color: var(--brand-glow); }
    .nav-cta { margin: 0 0 0 8px; }
    .nav-cta .btn { display: inline-flex; }
}

/* --- Breadcrumb ----------------------------------------------------- */
.crumbs { border-bottom: 1px solid var(--line); background: rgba(255,255,255,.02); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 10px 0; font-size: .85rem; color: var(--muted-2); }
.crumbs li + li::before { content: "›"; margin-right: 8px; color: var(--muted-2); }
.crumbs a { color: var(--muted); }

/* --- Abschnitte ----------------------------------------------------- */
section { padding: clamp(56px, 9vw, 100px) 0; }
.section-tight { padding: clamp(36px, 6vw, 64px) 0; }
.kicker {
    text-transform: uppercase; letter-spacing: .16em; font-size: .76rem; font-weight: 800;
    color: var(--brand-glow); margin: 0 0 .8em;
}
.lead { font-size: clamp(1.02rem, 2.2vw, 1.18rem); color: var(--muted); max-width: 62ch; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* --- Hero ----------------------------------------------------------- */
.hero { position: relative; padding: clamp(48px, 9vw, 96px) 0 clamp(56px, 9vw, 100px); overflow: hidden; }
.hero::before {
    content: ""; position: absolute; inset: -30% -20% auto -20%; height: 90%;
    background: radial-gradient(60% 60% at 30% 0%, rgba(163,32,141,.55), transparent 70%),
                radial-gradient(50% 50% at 80% 20%, rgba(232,49,155,.32), transparent 70%);
    filter: blur(20px); pointer-events: none;
}
.hero-grid { position: relative; display: grid; gap: 40px; }
.hero h1 span { display: block; background: linear-gradient(100deg, var(--brand-glow), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 26px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: .95rem; }
.hero-facts li { display: flex; align-items: center; gap: .45em; }
.hero-facts .ico { color: var(--brand-glow); width: 18px; height: 18px; }

.hero-media { position: relative; }
.hero-media img {
    width: 100%; border-radius: var(--radius); box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
.hero-price {
    position: absolute; right: -6px; bottom: -18px;
    background: linear-gradient(130deg, var(--brand), var(--brand-glow));
    color: #fff; border-radius: 16px; padding: 12px 18px;
    box-shadow: var(--shadow-brand); text-align: center; line-height: 1.15;
}
.hero-price b { display: block; font-size: 1.7rem; letter-spacing: -.02em; }
.hero-price small { font-size: .72rem; opacity: .85; text-transform: uppercase; letter-spacing: .1em; }

@media (min-width: 900px) {
    .hero-grid { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 56px; }
}

/* --- Filmstreifen-Band ---------------------------------------------- */
.filmstrip { padding: 0; border-block: 1px solid var(--line); background: #0e0a14; overflow: hidden; }
.filmstrip img { width: 100%; opacity: .95; }

/* --- Karten --------------------------------------------------------- */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
}

.card {
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 24px;
    transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(232,49,155,.4); box-shadow: var(--shadow); }
.card h3 { margin-bottom: .4em; }
.card p { color: var(--muted); margin: 0; font-size: .96rem; }
.card .ico-wrap {
    width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
    background: linear-gradient(140deg, rgba(163,32,141,.35), rgba(232,49,155,.18));
    color: var(--brand-glow); margin-bottom: 16px;
    border: 1px solid rgba(232,49,155,.28);
}

/* Anlass-Kacheln mit Bild */
.tile {
    position: relative; display: block; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); background: var(--card); min-height: 260px;
    color: var(--text);
}
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tile::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20,14,27,.15) 20%, rgba(20,14,27,.92) 92%);
}
.tile-body { position: relative; z-index: 1; padding: 22px; margin-top: auto; display: flex; flex-direction: column; height: 100%; justify-content: flex-end; }
.tile h3 { margin: 0 0 .25em; }
.tile p { margin: 0; color: var(--muted); font-size: .93rem; }
.tile span.more { display: inline-flex; align-items: center; gap: .4em; margin-top: 12px; color: var(--brand-glow); font-weight: 700; font-size: .92rem; }
.tile:hover img { transform: scale(1.06); }
.tile:hover { color: var(--text); border-color: rgba(232,49,155,.45); }

/* --- Preistabelle --------------------------------------------------- */
.pricing { display: grid; gap: 20px; }
@media (min-width: 800px) { .pricing { grid-template-columns: repeat(2, 1fr); } }

.plan {
    position: relative; background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 30px 26px; display: flex; flex-direction: column;
}
.plan.is-featured { border-color: rgba(232,49,155,.5); box-shadow: var(--shadow-brand); background: linear-gradient(180deg, rgba(163,32,141,.14), var(--card) 55%); }
.plan .badge {
    position: absolute; top: -13px; left: 26px;
    background: linear-gradient(120deg, var(--brand), var(--brand-glow)); color: #fff;
    font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 999px;
}
.plan h3 { font-size: 1.4rem; margin-bottom: .2em; }
.plan .plan-sub { color: var(--muted); font-size: .92rem; margin-bottom: 18px; }
.plan .price { font-size: 3rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.plan .price small { font-size: .95rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.plan ul { list-style: none; margin: 22px 0; padding: 0; display: grid; gap: 10px; }
.plan li { display: flex; gap: .6em; align-items: flex-start; font-size: .96rem; color: var(--muted); }
.plan li .ico { width: 19px; height: 19px; color: var(--brand-glow); margin-top: .25em; }
.plan .btn { margin-top: auto; justify-content: center; }

.opt-list { display: grid; gap: 14px; }
.opt {
    display: flex; gap: 16px; align-items: flex-start;
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius-sm); padding: 18px 20px;
}
.opt .ico-wrap { width: 42px; height: 42px; margin: 0; border-radius: 12px; }
.opt h3 { font-size: 1.02rem; margin: 0 0 .25em; }
.opt p { margin: 0; color: var(--muted); font-size: .92rem; }
.opt .opt-price { margin-left: auto; font-weight: 800; font-size: 1.15rem; white-space: nowrap; padding-left: 12px; }
.opt .opt-price small { display: block; font-size: .68rem; font-weight: 500; color: var(--muted-2); text-align: right; }
@media (max-width: 560px) {
    .opt { flex-wrap: wrap; }
    .opt .opt-price { margin-left: 58px; padding-left: 0; }
    .opt .opt-price small { text-align: left; }
}

/* --- Text + Bild Wechsel -------------------------------------------- */
.split { display: grid; gap: 32px; align-items: center; }
@media (min-width: 880px) {
    .split { grid-template-columns: 1fr 1fr; gap: 56px; }
    .split.reverse > *:first-child { order: 2; }
}
.split img { border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }

/* --- Galerie -------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 800px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery img { border-radius: var(--radius-sm); aspect-ratio: 4/3; object-fit: cover; width: 100%; border: 1px solid var(--line); transition: transform .5s var(--ease); }
.gallery a:hover img, .gallery figure:hover img { transform: scale(1.03); }

/* --- Video-Vorfuehrung ---------------------------------------------- */
.demo {
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow); background: #0b0b0f;
}
.demo video { width: 100%; height: auto; display: block; }
.figcap { color: var(--muted-2); font-size: .86rem; margin: 12px 0 0; text-align: center; }
.shots { display: grid; gap: 18px; }
@media (min-width: 760px) { .shots { grid-template-columns: 1fr 1fr; } }
.shots figure { margin: 0; }
.shots img { border-radius: var(--radius-sm); border: 1px solid var(--line); width: 100%; }
.shots figcaption { color: var(--muted); font-size: .88rem; margin-top: 10px; }

/* --- Checkliste ----------------------------------------------------- */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.checks li { display: flex; gap: .7em; align-items: flex-start; color: var(--muted); }
.checks .ico { width: 20px; height: 20px; color: var(--brand-glow); margin-top: .25em; }

/* --- Badgeliste ----------------------------------------------------- */
.usp { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0 0 28px; }
.usp li {
    background: rgba(232,49,155,.12); border: 1px solid rgba(232,49,155,.28);
    color: var(--text); border-radius: 999px; padding: 7px 15px; font-size: .88rem; font-weight: 600;
}

/* --- Zahlenband ----------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; text-align: center; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat b { display: block; font-size: clamp(1.9rem, 5vw, 2.6rem); font-weight: 800; letter-spacing: -.03em;
          background: linear-gradient(100deg, var(--brand-glow), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--muted); font-size: .9rem; }

/* --- FAQ ------------------------------------------------------------ */
.faq { display: grid; gap: 10px; max-width: 860px; margin-inline: auto; }
.faq details {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
    padding: 0 20px; transition: border-color .25s;
}
.faq details[open] { border-color: rgba(232,49,155,.35); }
.faq summary {
    cursor: pointer; list-style: none; padding: 17px 32px 17px 0; font-weight: 700; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: ""; position: absolute; right: 4px; top: 50%; width: 11px; height: 11px;
    border-right: 2px solid var(--brand-glow); border-bottom: 2px solid var(--brand-glow);
    transform: translateY(-70%) rotate(45deg); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq .faq-a { padding: 0 0 18px; color: var(--muted); }

/* --- Abschluss-Aufruf ----------------------------------------------- */
.cta-band {
    text-align: center;
    background:
        radial-gradient(70% 120% at 50% 0%, rgba(163,32,141,.35), transparent 70%),
        var(--bg-2);
    border-top: 1px solid var(--line);
}
.cta-band .lead { margin-inline: auto; margin-bottom: 1.6em; }

/* --- Formular ------------------------------------------------------- */
.form-layout { display: grid; gap: 28px; align-items: start; }
@media (min-width: 1000px) { .form-layout { grid-template-columns: 1fr 340px; gap: 40px; } }

fieldset { border: 0; margin: 0 0 26px; padding: 0; }
legend {
    font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
    color: var(--brand-glow); padding: 0 0 14px; width: 100%; border-bottom: 1px solid var(--line); margin-bottom: 18px;
}
.f-row { display: grid; gap: 16px; }
@media (min-width: 620px) { .f-row.cols-2 { grid-template-columns: 1fr 1fr; } .f-row.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: .88rem; font-weight: 600; color: var(--muted); }
.field .req { color: var(--brand-glow); }
input[type=text], input[type=email], input[type=tel], input[type=date], input[type=number], select, textarea {
    width: 100%; font: inherit; font-size: 1rem; color: var(--text);
    background: rgba(255,255,255,.045); border: 1.5px solid var(--line-strong);
    border-radius: var(--radius-sm); padding: 12px 14px;
    transition: border-color .2s, background .2s, box-shadow .2s;
    -webkit-appearance: none; appearance: none;
}
select {
    background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
    background-position: calc(100% - 20px) 52%, calc(100% - 14px) 52%;
    background-size: 6px 6px, 6px 6px; background-repeat: no-repeat;
    padding-right: 40px;
}
select option { background: var(--bg-2); color: var(--text); }
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus {
    outline: none; border-color: var(--brand-glow); background: rgba(255,255,255,.07);
    box-shadow: 0 0 0 3px rgba(232,49,155,.18);
}
input::placeholder, textarea::placeholder { color: var(--muted-2); }

/* Paketauswahl als Karten */
.choice-grid { display: grid; gap: 12px; }
@media (min-width: 620px) { .choice-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice > span {
    display: flex; gap: 12px; align-items: flex-start; cursor: pointer;
    background: rgba(255,255,255,.035); border: 1.5px solid var(--line-strong);
    border-radius: var(--radius-sm); padding: 15px 16px;
    transition: border-color .2s, background .2s, transform .2s var(--ease);
}
.choice > span:hover { border-color: rgba(232,49,155,.5); transform: translateY(-2px); }
.choice input:focus-visible + span { box-shadow: 0 0 0 3px rgba(232,49,155,.25); }
.choice input:checked + span { border-color: var(--brand-glow); background: rgba(232,49,155,.12); }
.choice .mark {
    width: 22px; height: 22px; flex: none; border-radius: 50%; margin-top: 2px;
    border: 2px solid var(--line-strong); display: grid; place-items: center; transition: border-color .2s, background .2s;
}
.choice input[type=checkbox] + span .mark { border-radius: 7px; }
.choice input:checked + span .mark { border-color: var(--brand-glow); background: var(--brand-glow); }
.choice .mark::after {
    content: ""; width: 10px; height: 6px; border-left: 2px solid #fff; border-bottom: 2px solid #fff;
    transform: rotate(-45deg) scale(0); transition: transform .2s var(--ease); margin-top: -3px;
}
.choice input:checked + span .mark::after { transform: rotate(-45deg) scale(1); }
.choice .c-title { font-weight: 700; display: block; }
.choice .c-desc { display: block; color: var(--muted); font-size: .87rem; margin-top: 2px; }
.choice .c-price { margin-left: auto; font-weight: 800; white-space: nowrap; padding-left: 10px; }

/* Preis-Zusammenfassung */
.summary {
    background: linear-gradient(180deg, rgba(163,32,141,.18), var(--card) 60%);
    border: 1px solid rgba(232,49,155,.35); border-radius: var(--radius); padding: 24px;
}
@media (min-width: 1000px) { .summary { position: sticky; top: 96px; } }
.summary h3 { font-size: 1.05rem; margin-bottom: 16px; }
.summary dl { margin: 0 0 16px; display: grid; gap: 9px; font-size: .93rem; }
.summary .line { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); }
.summary .line.is-muted { color: var(--muted-2); font-style: italic; }
.summary .line b { color: var(--text); font-weight: 600; text-align: right; }
.summary .total {
    display: flex; justify-content: space-between; align-items: baseline;
    border-top: 1px solid var(--line-strong); padding-top: 14px; margin-bottom: 6px;
}
.summary .total span { font-weight: 700; }
.summary .total b { font-size: 2rem; font-weight: 800; letter-spacing: -.03em; }
.summary .hint { font-size: .78rem; color: var(--muted-2); margin: 0; }
.summary .btn { width: 100%; justify-content: center; margin-top: 18px; }

/* Honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { border-radius: var(--radius-sm); padding: 16px 18px; margin-bottom: 22px; border: 1px solid; }
.alert.ok  { background: rgba(46,160,110,.14); border-color: rgba(46,160,110,.45); }
.alert.err { background: rgba(220,60,80,.13); border-color: rgba(220,60,80,.45); }
.alert p:last-child { margin-bottom: 0; }

.note { font-size: .82rem; color: var(--muted-2); }

/* --- Erfolgsseite --------------------------------------------------- */
.success-box { max-width: 640px; margin-inline: auto; text-align: center; }
.success-box .ico-wrap { margin-inline: auto; width: 64px; height: 64px; }
.success-box .ico-wrap .ico { width: 32px; height: 32px; }

/* --- Rechtstexte ---------------------------------------------------- */
.legal { max-width: 820px; }
.legal h2 { font-size: 1.35rem; margin-top: 2em; }
.legal h3 { font-size: 1.08rem; margin-top: 1.6em; }
.legal p, .legal li { color: var(--muted); font-size: .96rem; }
.legal ul { padding-left: 1.2em; }
.legal .addr { color: var(--text); }

/* --- Fussbereich ---------------------------------------------------- */
.site-foot { background: #0e0a14; border-top: 1px solid var(--line); padding: 56px 0 24px; font-size: .92rem; }
.foot-grid { display: grid; gap: 34px; }
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; } }
.site-foot h3 { font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: var(--brand-glow); margin-bottom: 1.2em; }
.site-foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.site-foot a { color: var(--muted); }
.site-foot a:hover { color: var(--text); }
.foot-brand p { color: var(--muted-2); font-size: .87rem; margin-top: 16px; }
.foot-brand img { width: 140px; }
.foot-regions { max-height: none; }
.foot-note { color: var(--muted-2); font-size: .84rem; margin: 14px 0 0; display: flex; gap: .5em; align-items: flex-start; }
.foot-note .ico { color: var(--brand-glow); margin-top: .15em; }
.foot-bottom {
    margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line);
    display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between;
    color: var(--muted-2); font-size: .8rem;
}
.foot-bottom p { margin: 0; }
.foot-keywords { opacity: .65; }

/* --- Schwebender Aktionsknopf (mobil) ------------------------------- */
.fab {
    position: fixed; right: 16px; bottom: 16px; z-index: 90;
    display: inline-flex; align-items: center; gap: .5em;
    background: linear-gradient(120deg, var(--brand), var(--brand-glow)); color: #fff;
    padding: 13px 20px; border-radius: 999px; font-weight: 700; font-size: .95rem;
    box-shadow: var(--shadow-brand);
    transform: translateY(120%); transition: transform .4s var(--ease);
}
.fab.is-visible { transform: translateY(0); }
.fab:hover { color: #fff; }
.fab .ico { width: 20px; height: 20px; }
@media (min-width: 1100px) { .fab { display: none; } }

/* --- Einblend-Animation --------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; }
    .reveal { opacity: 1; transform: none; }
    .fab { transform: none; }
}
