/* funnel.css — Verkaufsseite /preset-bundle (Ultimate Preset Bundle)
   Eigenständiger Funnel: lädt NACH styles.css und nutzt dessen Theme-
   Variablen (--color-accent, --color-surface, …), damit die Seite im
   Look der Website bleibt und Theme-Änderungen mitzieht. Keine Abhängigkeit
   zu Header/Nav der Hauptseite. */

.funnel {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- schmaler Kopf (Marke + Sprachumschalter) ---------- */
.funnel-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.funnel-brand {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    text-decoration: none;
}

.funnel .lang-toggle {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-family: inherit;
    color: var(--color-text-muted);
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    padding: 0.375rem 0.875rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.funnel .lang-toggle:hover {
    color: var(--color-text);
    border-color: var(--color-text);
}

/* ---------- Hero ---------- */
.fn-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0 4rem;
}

.fn-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    border-radius: 100px;
    padding: 0.375rem 0.875rem;
    margin-bottom: 1.25rem;
}

.fn-hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.fn-sub {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.fn-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.875rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.fn-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    font-variant-numeric: tabular-nums;
}

.fn-price-old {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.fn-save {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0a0a0a;
    background: var(--color-accent);
    border-radius: 100px;
    padding: 0.25rem 0.75rem;
}

/* ---------- CTA-Button (Dopamin: kräftig, pulsierender Fokus) ---------- */
.fn-cta {
    display: inline-block;
    background: var(--color-accent);
    color: #0a0a0a;
    font-size: 1.0625rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    border-radius: 12px;
    padding: 1.125rem 2.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: fn-pulse 2.5s ease-out infinite;
}

.fn-cta:hover {
    transform: translateY(-2px);
    animation: none;
    box-shadow: 0 12px 40px color-mix(in srgb, var(--color-accent) 35%, transparent);
}

@keyframes fn-pulse {
    0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--color-accent) 45%, transparent); }
    70% { box-shadow: 0 0 0 16px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}

/* Bewegungsreduktion respektieren: kein Dauer-Pulsieren der CTAs */
@media (prefers-reduced-motion: reduce) {
    .fn-cta {
        animation: none;
    }

    .fn-cta:hover {
        transform: none;
    }
}

.fn-micro {
    margin-top: 0.875rem;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.fn-hero-img img {
    width: 100%;
    max-width: 460px;
    height: auto;
    margin: 0 auto;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    display: block;
}

/* Fakten-Chips im Hero (Conversion: Inhalt auf einen Blick) */
.fn-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.fn-fact {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    padding: 0.375rem 0.875rem;
}

/* ---------- Sektionen ---------- */
.fn-section {
    padding: 3.5rem 0;
    border-top: 1px solid var(--color-border);
}

.fn-section h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
}

.fn-lead {
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.7;
    max-width: 62ch;
    margin-bottom: 2rem;
}

/* Value-Stack */
.fn-stack {
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: var(--color-surface);
    overflow: hidden;
}

.fn-stack-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 1.125rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.fn-stack-row small {
    display: block;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-top: 0.25rem;
}

.fn-stack-value {
    color: var(--color-text-muted);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.fn-stack-row.fn-stack-total {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.125rem;
}

.fn-stack-row.fn-stack-total .fn-stack-value {
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.fn-stack-row.fn-stack-price {
    border-bottom: none;
    background: color-mix(in srgb, var(--color-accent) 8%, transparent);
    font-weight: 700;
    font-size: 1.25rem;
}

.fn-stack-row.fn-stack-price .fn-stack-value {
    color: var(--color-accent);
    font-size: 1.5rem;
}

/* Gratis-Position im Value-Stack (Wallpaper-Beigabe) */
.fn-stack-row .fn-stack-free {
    color: var(--color-accent);
    font-weight: 700;
    text-decoration: none;
}

/* Pack-Detailkarten („Die Packs im Detail") */
.fn-packs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.fn-pack {
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: var(--color-surface);
    overflow: hidden;
}

.fn-pack > img {
    width: 100%;
    height: auto;
    display: block;
}

.fn-pack-body {
    padding: 1.5rem;
}

.fn-pack-body h3 {
    font-size: 1.125rem;
    margin-bottom: 0.375rem;
}

.fn-pack-count {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.fn-pack-tag {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.fn-pack-listlabel {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 0.625rem;
}

.fn-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.fn-chip {
    font-size: 0.75rem;
    color: var(--color-text);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    padding: 0.25rem 0.625rem;
}

/* Looks-Galerie */
.fn-looks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.fn-looks-grid figure {
    margin: 0;
}

.fn-looks-grid img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    display: block;
}

.fn-looks-grid figcaption {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Schritte */
.fn-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.fn-step {
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: var(--color-surface);
    padding: 1.5rem;
}

.fn-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #0a0a0a;
    font-weight: 700;
    margin-bottom: 1rem;
}

.fn-step h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
}

.fn-step p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.6;
}

/* Testimonials */
.fn-testis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.fn-testi {
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: var(--color-surface);
    padding: 1.5rem;
}

.fn-testi p {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.fn-testi cite {
    font-size: 0.8125rem;
    font-style: normal;
    color: var(--color-text-muted);
}

/* Pricing-Box */
.fn-pricing-box {
    border: 2px solid var(--color-accent);
    border-radius: 20px;
    background: var(--color-surface);
    text-align: center;
    padding: 3rem 2rem;
    max-width: 560px;
    margin: 0 auto;
    box-shadow: 0 0 60px color-mix(in srgb, var(--color-accent) 12%, transparent);
}

.fn-pricing-box .fn-price-row {
    justify-content: center;
}

.fn-pricing-box .fn-cta {
    width: 100%;
}

/* Cross-Sell (Upsell-Add-on) */
.fn-upsell {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: var(--color-surface);
    padding: 1.5rem;
    margin-top: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.fn-upsell img {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    flex-shrink: 0;
}

.fn-upsell h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.fn-upsell p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 0.75rem;
}

/* Gratis-Beigabe (Bonus im Bundle, kein Verkauf) */
.fn-bonus {
    border-color: var(--color-accent);
}

/* Phone-Mockups: Wallpaper-Bonus sichtbar machen (echte Motive aus der Serie) */
.fn-phones {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.fn-phone {
    width: 108px;
    aspect-ratio: 9 / 19.5;
    border-radius: 16px;
    border: 3px solid #2a2a2a;
    overflow: hidden;
    position: relative;
    background: #000000;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Notch */
.fn-phone::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 34%;
    height: 9px;
    background: #0a0a0a;
    border-radius: 100px;
    z-index: 1;
}

.fn-phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 860px) {
    .fn-phones {
        justify-content: center;
    }
}

.fn-bonus-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0a0a0a;
    background: var(--color-accent);
    border-radius: 100px;
    padding: 0.25rem 0.75rem;
    margin-bottom: 0.5rem;
}

/* FAQ */
.fn-faq details {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: var(--color-surface);
    margin-bottom: 0.875rem;
    padding: 1.25rem 1.625rem;
}

.fn-faq summary {
    cursor: pointer;
    font-weight: 500;
    list-style: none;
}

/* Safari zeigt sonst zusätzlich zum + das native Disclosure-Dreieck */
.fn-faq summary::-webkit-details-marker {
    display: none;
}

.fn-faq summary::before {
    content: '+';
    display: inline-block;
    color: var(--color-accent);
    font-weight: 700;
    margin-right: 0.75rem;
    transition: transform 0.25s ease;
}

.fn-faq details[open] summary::before {
    transform: rotate(45deg);
}

.fn-faq details p {
    margin-top: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Finaler CTA */
.fn-final {
    text-align: center;
    padding: 4.5rem 0;
    border-top: 1px solid var(--color-border);
}

.fn-final h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1.75rem;
}

/* Footer */
.fn-footer {
    border-top: 1px solid var(--color-border);
    padding: 2rem 0 3rem;
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--color-text-muted);
}

.fn-footer a {
    color: var(--color-text-muted);
    text-decoration: none;
}

.fn-footer a:hover {
    color: var(--color-text);
}

/* Sticky-CTA-Leiste (erscheint nach dem Hero, verschwindet an Pricing/Final) */
.fn-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    background: color-mix(in srgb, var(--color-bg) 88%, transparent);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--color-border);
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

/* Platz für die fixe Leiste lassen, solange sie eingeblendet sein kann —
   sonst überdeckt sie die untersten Zeilen (z. B. der FAQ) */
body:not(.fn-no-sticky) .funnel {
    padding-bottom: 4.5rem;
}

.fn-sticky.show {
    transform: translateY(0);
}

.fn-sticky-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.fn-sticky-price {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-accent);
    white-space: nowrap;
}

.fn-sticky-price small {
    display: block;
    font-size: 0.6875rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.fn-sticky .fn-cta {
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    animation: none;
}

/* Anleitungs-Link zum Blog (Schritt „Importieren") — interne Verlinkung
   Verkaufsseite ↔ Ratgeber-Artikel (SEO + Vertrauen) */
.fn-guide-link {
    display: inline-block;
    margin-top: 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
}

.fn-guide-link:hover {
    text-decoration: underline;
}

/* Urgency-Zeile (echte Preis-Staffelung mit jedem neuen Pack, kein Fake-Countdown) */
.fn-urgency {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent);
}

/* Ehrlichkeits-Note (Vertrauen: Presets als Ausgangspunkt, kein 1-Klick-Wunder) */
.fn-honest {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.6;
    border-left: 2px solid var(--color-accent);
    padding-left: 1rem;
    max-width: 62ch;
}

/* Cross-Sell zu den Einzelpacks (Ausstiegsoption statt Abbruch) */
.fn-crosssell {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8125rem;
}

.fn-crosssell a {
    color: var(--color-text-muted);
    text-decoration: none;
}

.fn-crosssell a:hover {
    color: var(--color-text);
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .fn-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0 3rem;
    }

    /* Mobile bleibt Text → CTA → Bild: Headline und Kauf-Button sollen
       ohne Scrollen sichtbar sein (Conversion) */

    .fn-steps,
    .fn-testis,
    .fn-packs {
        grid-template-columns: 1fr;
    }

    .fn-hero-img img {
        max-width: 320px;
    }

    .fn-upsell {
        flex-direction: column;
        text-align: center;
    }

    .fn-sticky-price small {
        display: none;
    }
}

/* ---------- Seitenspezifische Design-Einstellungen (Edit-Modus) ----------
   Body-Klassen aus editMode.js (settings.pages['preset-bundle']) */
body.fn-no-sticky .fn-sticky {
    display: none;
}

body.fn-no-pulse .fn-cta {
    animation: none;
}

body.fn-no-glow .fn-pricing-box {
    box-shadow: none;
}

body.fn-hide-looks #fn-sec-looks,
body.fn-hide-steps #fn-sec-steps,
body.fn-hide-testimonials #fn-sec-testis,
body.fn-hide-faq #fn-sec-faq,
body.fn-hide-ba #fn-sec-ba {
    display: none;
}

body.fn-hide-upsell .fn-upsell {
    display: none;
}

/* Trust-Zeile mit Icons unter den CTAs (Download/Einmalzahlung, Unendlichkeit, Update) */
.fn-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem 1.25rem;
}

.fn-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.fn-trust-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--color-accent);
}

/* Kompatibilitäts-Checkliste (Häkchen-Chips, nutzt .fn-fact-Styles) */
.fn-compat {
    margin-top: 1.75rem;
    align-items: center;
}

.fn-compat .fn-fact {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.fn-compat-icon {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    display: block;
}

.fn-compat-label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-right: 0.25rem;
}

/* Trust-Zeile in zentrierten Bereichen (Pricing-Box, Final-CTA) mittig */
.fn-pricing-box .fn-trust,
.fn-final .fn-trust {
    justify-content: center;
}

/* Dezente Scroll-Reveals — Startzustand wird NUR per JS gesetzt (.fn-reveal),
   ohne JS bleibt alles sichtbar; bei reduzierter Bewegung ebenfalls */
.fn-reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fn-reveal.fn-in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .fn-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ---------- Vorher/Nachher-Slider (Drag-Vergleich RAW vs. Look) ----------
   Pro Vergleich ein .fn-ba-Block: das "Vorher"-Bild liegt absolut über dem
   "Nachher"-Bild und wird per clip-path an --pos beschnitten. Der unsichtbare
   Range-Input über der Fläche liefert Maus-, Touch- und Tastatur-Bedienung
   (funnel.js setzt --pos). */
.fn-ba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.fn-ba {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    --pos: 50%;
}

.fn-ba img {
    display: block;
    width: 100%;
    height: auto;
}

.fn-ba .fn-ba-before {
    position: absolute;
    inset: 0;
    clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.fn-ba .fn-ba-before img {
    height: 100%;
    object-fit: cover;
}

.fn-ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--pos);
    width: 2px;
    background: #ffffff;
    transform: translateX(-1px);
    pointer-events: none;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.fn-ba-knob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: -0.05em;
}

.fn-ba-tag {
    position: absolute;
    top: 0.625rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(10, 10, 10, 0.55);
    border-radius: 100px;
    padding: 0.25rem 0.625rem;
    pointer-events: none;
}

.fn-ba-tag-before {
    left: 0.625rem;
}

.fn-ba-tag-after {
    right: 0.625rem;
}

.fn-ba-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
    -webkit-appearance: none;
    appearance: none;
}

/* Fokus sichtbar machen: der Regler ist unsichtbar, der Rahmen zeigt ihn */
.fn-ba:focus-within {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Display-Serif-Test: Headlines der Verkaufsseite editorialer wirken lassen
   (Playfair Display aus fonts.css — nur hier im Einsatz, sonst lädt sie keiner) */
.fn-hero h1,
.fn-section h2,
.fn-final h2 {
    font-family: 'Playfair Display', 'Inter', serif;
}

/* ---------- Hero: Pseudo-3D-Mockup aus den beiden Pack-Covern ----------
   Perspektive + Tiefe statt flacher Cover-Collage — wirkt wie ein physisches
   Produkt, ohne neue Assets (Spezifität über .fn-hero-img.fn-mockup, damit
   die generischen .fn-hero-img-img-Regeln nicht durchschlagen) */
.fn-hero-img.fn-mockup {
    position: relative;
    max-width: 460px;
    margin: 0 auto;
    perspective: 1200px;
    padding-bottom: 10%;
}

.fn-hero-img.fn-mockup img {
    height: auto;
    max-width: none;
}

.fn-hero-img.fn-mockup img.fn-mockup-back {
    width: 78%;
    margin-left: auto;
    transform: rotateY(16deg) rotateZ(2deg);
    box-shadow: -24px 32px 64px rgba(0, 0, 0, 0.5);
}

.fn-hero-img.fn-mockup img.fn-mockup-front {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70%;
    transform: rotateY(-12deg) rotateZ(-1deg);
    box-shadow: 28px 40px 80px rgba(0, 0, 0, 0.6);
}

@media (max-width: 860px) {
    .fn-hero-img.fn-mockup {
        max-width: 320px;
    }

    .fn-hero-img.fn-mockup img {
        max-width: none;
    }
}

/* ---------- Bildband (volle Breite, Overlay-Text) ---------- */
.fn-band {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.fn-band-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 6rem 1.5rem;
    text-align: center;
}

.fn-band-inner p {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 300;
    line-height: 1.5;
    color: #ffffff;
    max-width: 34ch;
    margin: 0 auto 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.fn-band-link {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
}

.fn-band-link:hover {
    text-decoration: underline;
}
