/* =====================================================================
   Website-Konfigurator – Dark Theme
   Aufbau: Tokens · Basis · Layout-Bausteine · Landing · Konfigurator ·
           Animationen · Responsive
   ===================================================================== */

:root {
    /* Flächen */
    --bg:        #070b14;
    --bg-2:      #0a1020;
    --surface:   #0f1728;
    --card:      #121c30;
    --card-2:    #16213a;
    --line:      rgba(148, 163, 184, .16);
    --line-2:    rgba(148, 163, 184, .30);

    /* Text */
    --ink:       #e9eefc;
    --ink-2:     #c7d2e5;
    --muted:     #8ba0be;

    /* Akzente */
    --brand:     #6d5efc;
    --brand-2:   #22d3ee;
    --brand-3:   #a855f7;
    --glow:      rgba(109, 94, 252, .40);
    --ok:        #34d399;
    --ok-soft:   rgba(52, 211, 153, .12);
    --gold:      #fbbf24;
    --danger:    #f87171;

    --grad:      linear-gradient(135deg, #6d5efc 0%, #a855f7 50%, #22d3ee 100%);
    --radius:    16px;
    --shadow:    0 18px 50px rgba(0, 0, 0, .45);
    --shadow-lg: 0 30px 70px rgba(0, 0, 0, .55);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Ruhiger Farbschleier im Hintergrund */
body::before {
    content: "";
    position: fixed; inset: -20%;
    z-index: -1; pointer-events: none;
    background:
        radial-gradient(46% 40% at 18% 8%,  rgba(109, 94, 252, .20), transparent 60%),
        radial-gradient(40% 38% at 84% 14%, rgba(34, 211, 238, .14), transparent 60%),
        radial-gradient(50% 45% at 50% 96%, rgba(168, 85, 247, .14), transparent 62%);
    animation: drift 24s ease-in-out infinite alternate;
}

.page { max-width: 1120px; margin: 0 auto; padding: 0 18px 72px; }

h1, h2, h3 { line-height: 1.22; }

.grad-text {
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}

/* =====================  Kopfleiste  ===================== */
.topbar {
    position: sticky; top: 0; z-index: 60;
    display: flex; align-items: center; gap: 16px;
    padding: 14px 18px; margin: 0 -18px 0;
    background: rgba(7, 11, 20, .72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, background .3s, padding .3s;
}
.topbar.is-stuck { border-bottom-color: var(--line); padding: 10px 18px; }
.topbar-brand { font-weight: 800; font-size: 17px; letter-spacing: -.01em; }
.topbar-dot {
    display: inline-block; width: 9px; height: 9px; border-radius: 50%;
    background: var(--grad); margin-right: 9px;
    box-shadow: 0 0 12px var(--glow);
}
.topbar-cta { margin-left: auto; }

/* =====================  Hero  ===================== */
.hero { text-align: center; padding: 72px 0 56px; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 700; letter-spacing: .02em;
    color: var(--ink-2);
    background: rgba(109, 94, 252, .12);
    border: 1px solid rgba(109, 94, 252, .30);
    border-radius: 999px; padding: 7px 16px; margin-bottom: 24px;
}
.eyebrow::before {
    content: ""; width: 7px; height: 7px; border-radius: 50%;
    background: var(--ok); box-shadow: 0 0 10px var(--ok);
    animation: pulse 2.4s ease-in-out infinite;
}

.hero h1 {
    font-size: clamp(32px, 5.4vw, 58px);
    margin: 0 0 20px; letter-spacing: -.025em; font-weight: 800;
}
.hero-sub {
    max-width: 640px; margin: 0 auto 32px;
    font-size: clamp(15px, 2vw, 18px); color: var(--ink-2);
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.trust-row {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px;
    margin-top: 34px; font-size: 13.5px; color: var(--muted);
}
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row span::before {
    content: "✓"; color: var(--ok); font-weight: 800; font-size: 12px;
    width: 18px; height: 18px; border-radius: 50%; background: var(--ok-soft);
    display: grid; place-items: center; flex: none;
}

/* =====================  Nutzen-Karten  ===================== */
.section-head { text-align: center; margin-bottom: 34px; }
.section-head h2 { font-size: clamp(24px, 3.4vw, 34px); margin: 0 0 10px; letter-spacing: -.02em; }
.section-head p { color: var(--muted); margin: 0; font-size: 15.5px; }

.value-grid {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px;
    margin-bottom: 84px;
}
.value-card {
    background: linear-gradient(160deg, var(--card), var(--surface));
    border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px 24px; transition: transform .3s, border-color .3s, box-shadow .3s;
}
.value-card:hover {
    transform: translateY(-5px); border-color: var(--line-2); box-shadow: var(--shadow);
}
.value-icon {
    width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
    font-size: 24px; margin-bottom: 16px;
    background: rgba(109, 94, 252, .14); border: 1px solid rgba(109, 94, 252, .28);
}
.value-card h3 { margin: 0 0 8px; font-size: 18px; }
.value-card p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* KI als Preis-Erklärung */
.ai-strip {
    display: flex; align-items: center; gap: 22px; margin-top: 20px;
    background: linear-gradient(135deg, rgba(34, 211, 238, .10), rgba(109, 94, 252, .10));
    border: 1px solid rgba(34, 211, 238, .28); border-radius: var(--radius);
    padding: 24px 26px; transition: border-color .3s, box-shadow .3s;
}
.ai-strip:hover { border-color: rgba(34, 211, 238, .5); box-shadow: 0 0 38px rgba(34, 211, 238, .13); }
.ai-icon {
    width: 58px; height: 58px; flex: none; border-radius: 16px; display: grid; place-items: center;
    font-size: 28px; background: rgba(34, 211, 238, .14); border: 1px solid rgba(34, 211, 238, .3);
    animation: float 4s ease-in-out infinite;
}
.ai-text h3 { margin: 0 0 6px; font-size: 18px; }
.ai-text p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* =====================  Preispakete  ===================== */
.pricing { margin-bottom: 84px; scroll-margin-top: 90px; }

.basics {
    background: linear-gradient(160deg, var(--card), var(--surface));
    border: 1px solid var(--line); border-radius: var(--radius);
    padding: 24px 26px; margin-bottom: 30px;
}
.basics-title { margin: 0 0 18px; font-size: 16px; text-align: center; color: var(--ink-2); }
.basics-title u { text-decoration-color: var(--ok); text-underline-offset: 4px; }
.basics-list {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 20px; font-size: 13.5px; color: var(--ink-2);
}
.basics-list li { padding-left: 28px; position: relative; }
.basics-list li::before {
    content: "✓"; position: absolute; left: 0; top: 1px;
    width: 19px; height: 19px; border-radius: 50%;
    background: var(--ok-soft); color: var(--ok); border: 1px solid rgba(52, 211, 153, .3);
    font-size: 11px; font-weight: 800; display: grid; place-items: center;
}

.pricing-hint {
    text-align: center; font-size: 14px; font-weight: 600; color: var(--muted);
    margin: 0 0 26px;
}

.pricing-grid {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px; align-items: stretch;
}

.price-card {
    position: relative; display: flex; flex-direction: column;
    background: linear-gradient(165deg, var(--card-2), var(--surface));
    border: 1px solid var(--line); border-radius: var(--radius);
    padding: 32px 22px 24px;
    transition: transform .3s, border-color .3s, box-shadow .3s;
}
.price-card:hover {
    transform: translateY(-7px); border-color: var(--line-2); box-shadow: var(--shadow);
}

/* Empfohlenes Paket: leuchtender Rahmen */
.price-card.is-featured { border-color: transparent; }
.price-card.is-featured::before {
    content: ""; position: absolute; inset: -1px; border-radius: inherit; z-index: -1;
    background: var(--grad); opacity: .85;
}
.price-card.is-featured::after {
    content: ""; position: absolute; inset: 1px; border-radius: calc(var(--radius) - 1px);
    z-index: -1; background: linear-gradient(165deg, var(--card-2), var(--surface));
}
.price-card.is-featured { box-shadow: 0 0 46px rgba(109, 94, 252, .22); }

.price-card.is-selected {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(109, 94, 252, .28), var(--shadow);
}

.price-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--grad); color: #fff; font-size: 11.5px; font-weight: 800;
    padding: 6px 15px; border-radius: 999px; white-space: nowrap;
    box-shadow: 0 6px 20px rgba(109, 94, 252, .45);
}
.price-badge.alt { background: rgba(148, 163, 184, .16); border: 1px solid var(--line-2); box-shadow: none; }
.price-badge.sp {
    position: static; transform: none; display: inline-block; margin-bottom: 10px;
    background: linear-gradient(135deg, var(--ok), #10b981); box-shadow: 0 6px 20px rgba(52, 211, 153, .3);
}

.price-name { margin: 0 0 6px; font-size: 22px; letter-spacing: -.02em; }
.price-claim { margin: 0 0 18px; font-size: 13.5px; color: var(--muted); min-height: 56px; }

.price-amounts {
    display: flex; flex-direction: column; gap: 12px;
    background: rgba(255, 255, 255, .03); border: 1px solid var(--line);
    border-radius: 12px; padding: 16px 18px; margin-bottom: 18px;
}
.price-row { display: flex; flex-direction: column; }
.price-num {
    font-size: 30px; font-weight: 800; line-height: 1.1; letter-spacing: -.03em;
    background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-num.small { font-size: 20px; background: none; color: var(--ink); }
.price-lbl { font-size: 12px; color: var(--muted); margin-top: 2px; }
.price-perday { font-size: 11.5px; color: var(--ok); font-weight: 600; margin-top: 3px; }

.price-list {
    list-style: none; margin: 0 0 22px; padding: 0; flex: 1;
    display: flex; flex-direction: column; gap: 11px; font-size: 13.5px; color: var(--ink-2);
}
.price-list li { padding-left: 26px; position: relative; }
.price-list li::before {
    content: "+"; position: absolute; left: 0; top: 0;
    width: 19px; height: 19px; border-radius: 50%;
    background: rgba(109, 94, 252, .16); color: #b9adff;
    border: 1px solid rgba(109, 94, 252, .3);
    font-size: 13px; font-weight: 800; display: grid; place-items: center;
}
.price-list b { color: var(--ink); }
.price-card .btn-package { width: 100%; }

/* Starterpack – festes Bündel */
.starterpack {
    position: relative; margin-top: 22px;
    display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(52, 211, 153, .07), var(--card));
    border: 1px solid rgba(52, 211, 153, .28); border-radius: var(--radius);
    padding: 26px; transition: transform .3s, border-color .3s, box-shadow .3s;
}
.starterpack:hover {
    transform: translateY(-4px); border-color: rgba(52, 211, 153, .5);
    box-shadow: 0 0 40px rgba(52, 211, 153, .15);
}
.starterpack.is-selected { box-shadow: 0 0 0 3px rgba(52, 211, 153, .3); }
.starterpack-head { flex: 1; min-width: 190px; }
.starterpack-head .price-name { margin-bottom: 4px; font-size: 20px; }
.starterpack-head .price-claim { margin: 0; min-height: 0; }
.sp-list {
    list-style: none; margin: 0; padding: 0; flex: 2; min-width: 250px;
    display: flex; flex-direction: column; gap: 9px; font-size: 14px; color: var(--ink-2);
}
.sp-list li {
    background: rgba(255, 255, 255, .04); border: 1px solid var(--line);
    border-radius: 10px; padding: 10px 14px;
}
.sp-list b { color: var(--ink); }
.starterpack-buy {
    display: flex; flex-direction: column; align-items: stretch; gap: 10px; min-width: 190px;
}
.sp-price { font-size: 13px; font-weight: 700; color: var(--ink-2); text-align: center; }
.sp-price b { font-size: 22px; display: block; color: var(--ok); }

.pricing-note {
    margin: 22px 0 0; padding: 16px 20px; font-size: 13.5px; color: var(--muted);
    background: rgba(255, 255, 255, .03); border: 1px solid var(--line);
    border-radius: 12px; text-align: center;
}
.pricing-note b { color: var(--ink-2); }

/* =====================  Ablauf  ===================== */
.how { margin-bottom: 84px; }
.how-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.how-card {
    position: relative; background: linear-gradient(160deg, var(--card), var(--surface));
    border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px;
    transition: transform .3s, border-color .3s;
}
.how-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.how-num {
    width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
    font-weight: 800; font-size: 16px; margin-bottom: 14px;
    background: var(--grad); color: #fff; box-shadow: 0 8px 22px var(--glow);
}
.how-card h3 { margin: 0 0 6px; font-size: 17px; }
.how-card p { margin: 0; color: var(--muted); font-size: 14px; }

/* =====================  FAQ  ===================== */
.faq { margin-bottom: 84px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: linear-gradient(160deg, var(--card), var(--surface));
    border: 1px solid var(--line); border-radius: 12px;
    transition: border-color .25s, background .25s;
}
.faq-item[open] { border-color: rgba(109, 94, 252, .4); }
.faq-item summary {
    cursor: pointer; list-style: none; padding: 18px 22px;
    font-weight: 600; font-size: 15.5px; display: flex; align-items: center; gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+"; margin-left: auto; font-size: 22px; font-weight: 400; color: var(--muted);
    transition: transform .25s, color .25s; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--brand-2); }
.faq-item summary:hover { color: #fff; }
.faq-answer {
    padding: 0 22px 20px; margin: 0; color: var(--muted); font-size: 14.5px;
    animation: fadeUp .3s ease;
}

/* =====================  Fortschrittsleiste  ===================== */
.steps {
    display: flex; flex-wrap: wrap; gap: 10px; list-style: none;
    padding: 0; margin: 0 0 22px;
}
.step {
    flex: 1 1 150px; display: flex; align-items: center; gap: 10px; cursor: pointer;
    font-size: 13px; color: var(--muted); padding: 12px 14px;
    background: var(--card); border-radius: 12px; border: 1px solid var(--line);
    transition: .25s;
}
.step:hover { border-color: var(--line-2); color: var(--ink-2); }
.step span {
    width: 25px; height: 25px; border-radius: 50%; display: grid; place-items: center;
    background: rgba(148, 163, 184, .14); color: var(--muted);
    font-weight: 700; font-size: 12px; flex: none; transition: .25s;
}
.step.is-active {
    border-color: rgba(109, 94, 252, .55); color: #fff; font-weight: 600;
    box-shadow: 0 0 24px rgba(109, 94, 252, .18);
}
.step.is-active span { background: var(--grad); color: #fff; box-shadow: 0 0 14px var(--glow); }
.step.is-done span { background: var(--ok); color: #05261a; }

/* =====================  Karte / Panels  ===================== */
.card {
    background: linear-gradient(165deg, var(--card), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius); box-shadow: var(--shadow);
    padding: 32px; margin-bottom: 22px; scroll-margin-top: 90px;
}
.panel { display: none; }
.panel.is-active { display: block; animation: fadeUp .35s ease; }

.panel h2 { margin: 0 0 6px; font-size: 24px; letter-spacing: -.02em; }
.muted { color: var(--muted); margin: 0 0 22px; }
.cat {
    margin: 26px 0 12px; font-size: 13px; text-transform: uppercase;
    letter-spacing: .06em; color: var(--muted);
}

/* Raster – minmax(0,1fr) verhindert Überlauf durch breite Inhalte */
.grid { display: grid; gap: 16px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.types { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.span2 { grid-column: 1 / -1; }

/* Formularfelder */
.field { display: flex; flex-direction: column; gap: 7px; font-size: 14px; font-weight: 600; }
.field input, .field select, .field textarea {
    font: inherit; font-weight: 400; padding: 12px 14px;
    border: 1px solid var(--line); border-radius: 11px;
    background: rgba(255, 255, 255, .04); color: var(--ink); transition: .18s;
}
.field input::placeholder, .field textarea::placeholder { color: #61748f; }
.field select option { background: var(--surface); color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(109, 94, 252, .22);
    background: rgba(255, 255, 255, .06);
}
.field.req label::after { content: " *"; color: var(--danger); }
.field input[type=color] { height: 48px; padding: 5px; cursor: pointer; }
.field.error input, .field.error select { border-color: var(--danger); }

.upload input[type=file] { padding: 10px; cursor: pointer; }
.upload-hint { font-weight: 400; font-size: 12px; color: var(--muted); }
#logoPreview {
    margin-top: 12px; max-height: 90px; object-fit: contain; border-radius: 10px;
    border: 1px solid var(--line); padding: 8px; background: rgba(255, 255, 255, .05);
}

/* =====================  Auswahlkarten  ===================== */
.type-card, .feature-card { position: relative; cursor: pointer; }
.type-card input, .feature-card input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }

.type-card {
    display: flex; flex-direction: column; gap: 5px; padding: 22px 18px; text-align: center;
    border: 1px solid var(--line); border-radius: 14px;
    background: linear-gradient(160deg, var(--card), var(--surface));
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.type-card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.type-icon { font-size: 34px; }
.type-name { font-weight: 700; font-size: 15.5px; }
.type-desc { font-size: 12.5px; color: var(--muted); }
.type-price { margin-top: 8px; font-size: 14px; font-weight: 800; color: #b9adff; }
.type-price.ask { color: var(--muted); font-weight: 600; }
.type-card:has(input:checked) {
    border-color: var(--brand); background: linear-gradient(160deg, rgba(109, 94, 252, .16), var(--surface));
    box-shadow: 0 0 0 2px rgba(109, 94, 252, .25);
}
.type-card:has(input:checked) .type-name { color: #fff; }

.type-check {
    position: absolute; top: 12px; right: 12px;
    width: 23px; height: 23px; border-radius: 7px; border: 1px solid var(--line-2);
    display: grid; place-items: center; transition: .2s; background: rgba(255, 255, 255, .05);
}
.type-card:has(input:checked) .type-check { background: var(--grad); border-color: transparent; }
.type-card:has(input:checked) .type-check::after {
    content: "✓"; color: #fff; font-size: 13px; font-weight: 800;
}

/* Die Website selbst: immer dabei, im Paketpreis enthalten */
.type-card.is-base {
    align-items: center; cursor: default; margin-bottom: 10px;
    border-color: rgba(52, 211, 153, .35);
    background: linear-gradient(135deg, rgba(52, 211, 153, .09), var(--surface));
}
.type-card.is-base:hover { transform: none; border-color: rgba(52, 211, 153, .5); }
.base-flag {
    background: linear-gradient(135deg, var(--ok), #10b981); color: #04241a;
    font-size: 11px; font-weight: 800; padding: 4px 14px; border-radius: 999px; margin-bottom: 6px;
}

/* Im Paket enthaltene Positionen zeigen keinen zweiten Preis */
.type-price-incl, .feature-price-incl { display: none; }
body.has-package .type-card.is-base .type-price,
.type-card.is-included .type-price { display: none; }
body.has-package .type-card.is-base .type-price-incl,
.type-card.is-included .type-price-incl {
    display: block; margin-top: 8px; font-size: 13px; font-weight: 700; color: var(--ok);
}
.type-card.is-included {
    border-color: rgba(52, 211, 153, .35);
    background: linear-gradient(160deg, rgba(52, 211, 153, .09), var(--surface));
}
.type-card.is-included:has(input:checked) { box-shadow: 0 0 0 2px rgba(52, 211, 153, .25); }
.type-card.is-included:has(input:checked) .type-check {
    background: linear-gradient(135deg, var(--ok), #10b981);
}

/* Funktionskarten */
.feature-card {
    display: flex; align-items: center; gap: 14px; padding: 16px 18px;
    border: 1px solid var(--line); border-radius: 14px;
    background: linear-gradient(160deg, var(--card), var(--surface));
    transition: border-color .25s, transform .25s, background .25s;
}
.feature-card:hover { border-color: var(--line-2); transform: translateX(3px); }
.feature-card:has(input:checked) {
    border-color: var(--brand); background: linear-gradient(160deg, rgba(109, 94, 252, .14), var(--surface));
}
.feature-check {
    width: 23px; height: 23px; border-radius: 7px; border: 1px solid var(--line-2);
    flex: none; display: grid; place-items: center; transition: .2s; background: rgba(255, 255, 255, .05);
}
.feature-card:has(input:checked) .feature-check { background: var(--grad); border-color: transparent; }
.feature-card:has(input:checked) .feature-check::after {
    content: "✓"; color: #fff; font-size: 13px; font-weight: 800;
}
.feature-body { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.feature-name { font-weight: 600; font-size: 14.5px; }
.feature-desc { font-size: 12.5px; color: var(--muted); }
.feature-price { font-size: 13.5px; font-weight: 800; color: #b9adff; white-space: nowrap; }

.feature-card.is-included {
    border-color: rgba(52, 211, 153, .32);
    background: linear-gradient(160deg, rgba(52, 211, 153, .09), var(--surface));
}
.feature-card.is-included .feature-price { display: none; }
.feature-card.is-included .feature-price-incl {
    display: inline; font-size: 12.5px; font-weight: 700; color: var(--ok); white-space: nowrap;
}
.feature-card.is-included:has(input:checked) .feature-check {
    background: linear-gradient(135deg, var(--ok), #10b981);
}

/* =====================  Paket-Chip  ===================== */
.package-chip {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    background: linear-gradient(135deg, rgba(109, 94, 252, .16), rgba(34, 211, 238, .07));
    border: 1px solid rgba(109, 94, 252, .38); border-radius: 12px;
    padding: 13px 16px; margin-bottom: 22px; font-size: 14px;
    animation: fadeUp .3s ease;
}
.package-chip strong { color: #fff; }
.package-chip em { font-style: normal; color: var(--ink-2); font-size: 13px; margin-left: 8px; }
.package-chip button {
    border: 0; background: transparent; color: var(--muted); font-size: 22px;
    cursor: pointer; line-height: 1; padding: 2px 8px; border-radius: 8px; transition: .2s;
}
.package-chip button:hover { color: var(--danger); background: rgba(248, 113, 113, .14); }

/* =====================  Übersicht & Preisboxen  ===================== */
.summary { display: grid; gap: 2px; margin-bottom: 22px; }
.summary .row {
    display: flex; justify-content: space-between; gap: 18px; padding: 12px 0;
    border-bottom: 1px solid var(--line); font-size: 14px;
}
.summary .row .k { color: var(--muted); }
.summary .row .v { font-weight: 600; text-align: right; }
.summary .swatches { display: flex; gap: 7px; }
.summary .sw { width: 22px; height: 22px; border-radius: 6px; border: 1px solid var(--line-2); }

.price-box {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    background: linear-gradient(135deg, rgba(109, 94, 252, .16), rgba(34, 211, 238, .07));
    border: 1px solid rgba(109, 94, 252, .34); border-radius: 14px;
    padding: 18px 22px; margin-bottom: 12px;
}
.price-box span { display: flex; flex-direction: column; }
.price-box em { font-style: normal; font-size: 12px; color: var(--muted); }
.price-box strong {
    font-size: 28px; letter-spacing: -.03em;
    background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-box.monthly {
    background: rgba(255, 255, 255, .03); border-color: var(--line);
}
.price-box.monthly strong { font-size: 21px; background: none; color: var(--ink); }
.price-box.monthly[hidden] { display: none; }

.consent {
    display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px;
    color: var(--muted); cursor: pointer; margin-top: 18px;
}
.consent input { margin-top: 4px; accent-color: var(--brand); width: 17px; height: 17px; }

.reassure {
    margin: 16px 0 0; font-size: 13px; color: var(--muted); text-align: center;
}
.reassure b { color: var(--ok); }

/* =====================  Navigation & Buttons  ===================== */
.nav {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line);
}
.nav-price { margin-left: auto; font-size: 14px; color: var(--muted); }
.nav-price strong {
    color: #fff; font-size: 16px;
    background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

.btn {
    position: relative; overflow: hidden;
    font: inherit; font-weight: 700; font-size: 15px; padding: 13px 26px;
    border-radius: 12px; border: 0; cursor: pointer;
    transition: transform .2s, box-shadow .25s, background .25s, opacity .2s;
}
.btn.primary {
    background: var(--grad); background-size: 180% 180%; color: #fff;
    box-shadow: 0 10px 28px rgba(109, 94, 252, .32);
}
.btn.primary:hover {
    transform: translateY(-2px); box-shadow: 0 16px 38px rgba(109, 94, 252, .45);
    background-position: 100% 0;
}
.btn.primary:active { transform: translateY(0); }
.btn.primary:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
/* Lichtreflex beim Überfahren */
.btn.primary::after {
    content: ""; position: absolute; top: 0; left: -70%; width: 45%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .30), transparent);
    transform: skewX(-18deg); transition: left .55s ease;
}
.btn.primary:hover::after { left: 130%; }

.btn.ghost {
    background: rgba(255, 255, 255, .05); border: 1px solid var(--line-2); color: var(--ink);
}
.btn.ghost:hover { background: rgba(255, 255, 255, .09); border-color: var(--brand); }
.btn.big { padding: 16px 34px; font-size: 16.5px; }
.btn.sm { padding: 9px 18px; font-size: 14px; }

/* =====================  Erfolg  ===================== */
.success { text-align: center; padding: 52px 32px; animation: fadeUp .4s ease; }
.success-icon {
    width: 78px; height: 78px; border-radius: 50%;
    background: linear-gradient(135deg, var(--ok), #10b981); color: #04241a;
    font-size: 40px; font-weight: 800; display: grid; place-items: center;
    margin: 0 auto 20px; box-shadow: 0 0 44px rgba(52, 211, 153, .4);
    animation: pop .45s cubic-bezier(.3, 1.5, .5, 1);
}
.success h2 { margin: 0 0 12px; }
.success p { color: var(--ink-2); }
.success .ref { margin-top: 16px; font-size: 15px; }
.success .btn { margin-top: 22px; }

.foot { text-align: center; margin-top: 40px; color: var(--muted); font-size: 13px; }
.foot a { color: var(--muted); text-decoration: none; transition: color .2s; }
.foot a:hover { color: var(--brand-2); }

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

/* Hinweis-Einblendung */
.toast {
    position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, #b91c1c, #dc2626); color: #fff;
    padding: 14px 24px; border-radius: 12px; font-size: 14px; font-weight: 600;
    box-shadow: var(--shadow-lg); z-index: 90; animation: toastIn .3s ease;
}

/* =====================  Video  ===================== */
.btn-video {
    position: relative; z-index: 10; margin-top: 12px; padding: 7px 12px;
    border-radius: 9px; background: rgba(255, 255, 255, .06); color: var(--brand-2);
    font-weight: 600; font-size: 12px; border: 1px solid var(--line);
    cursor: pointer; transition: .2s;
}
.btn-video:hover { background: rgba(34, 211, 238, .14); border-color: var(--brand-2); }

.video-modal { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; padding: 22px; }
.video-modal[hidden] { display: none !important; }
.video-modal-bg {
    position: absolute; inset: 0; background: rgba(3, 6, 14, .82);
    backdrop-filter: blur(6px); animation: fade .25s ease;
}
.video-modal-content {
    position: relative; z-index: 10000; width: 100%; max-width: 860px;
    background: #000; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
    box-shadow: var(--shadow-lg); animation: fadeUp .3s ease;
}
.video-modal-close {
    position: absolute; top: -42px; right: 0; background: transparent; color: #fff;
    border: 0; font-size: 34px; cursor: pointer; opacity: .8; padding: 0; line-height: 1;
}
.video-modal-close:hover { opacity: 1; }

/* =====================  Animationen  ===================== */
@keyframes fade    { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp  { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, 16px); } to { opacity: 1; transform: translate(-50%, 0); } }
@keyframes pop     { 0% { transform: scale(.5); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
@keyframes pulse   { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.85); } }
@keyframes drift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(0, -3%, 0) scale(1.08); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-7px); }
}

/* Einblenden beim Scrollen */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal.is-visible {
    opacity: 1; transform: none;
    transition: opacity .65s ease, transform .65s cubic-bezier(.2, .7, .3, 1);
    transition-delay: var(--d, 0s);
}

/* =====================  Responsive  ===================== */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .price-claim { min-height: 0; }
    .basics-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
    .value-grid, .how-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .types { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero { padding: 52px 0 44px; }
    .card { padding: 26px 20px; }
}

@media (max-width: 640px) {
    .page { padding: 0 14px 60px; }
    .topbar { margin: 0 -14px; padding: 12px 14px; }
    .topbar-cta .btn { padding: 10px 16px; font-size: 14px; }
    .pricing-grid, .value-grid, .how-grid,
    .basics-list, .features, .grid.two, .grid.three { grid-template-columns: minmax(0, 1fr); }
    .types { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .starterpack { flex-direction: column; align-items: stretch; }
    .ai-strip { flex-direction: column; text-align: center; gap: 16px; }
    .step { flex-basis: 100%; }
    .hero-actions .btn { width: 100%; }
    .nav { flex-direction: column-reverse; align-items: stretch; }
    .nav .btn { width: 100%; }
    .nav-price { margin: 0 0 4px; text-align: center; }
    .price-box strong { font-size: 24px; }
    .summary .row { flex-direction: column; gap: 2px; }
    .summary .row .v { text-align: left; }
}

@media (max-width: 400px) {
    .types { grid-template-columns: minmax(0, 1fr); }
}

/* Rücksicht auf Systemeinstellung "weniger Bewegung" */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important; animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
