:root {
    --bg-wood: #2c1b12;
    --bg-wood-light: #4a3020;
    --accent: #e5b879;
    --accent-dark: #cc9c56;
    --text-light: #fdfbf7;
    --text-muted: #d4c5b3;
    --card-bg: rgba(22, 14, 9, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: Candara, "Trebuchet MS", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(229,184,121,0.12) 0, transparent 34%),
        radial-gradient(circle at bottom right, rgba(74,48,32,0.28) 0, transparent 40%),
        linear-gradient(135deg, rgba(5,3,2,0.42) 0%, rgba(44,27,18,0.26) 48%, rgba(20,11,6,0.48) 100%),
        url('../img/hintergrund.jpeg') center/cover fixed;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Animations */
html.animations-ready .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

html.animations-ready .fade-in-up.visible,
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Halbtransparenter Overlay-Hintergrund für Lesbarkeit */
.page-wrap {
    min-height: 100vh;
    background: linear-gradient(120deg, rgba(0,0,0,0.54), rgba(0,0,0,0.28));
    display: flex;
    flex-direction: column;
}

/* Header / Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 10, 6, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Platzhalter-Logo – hier später dein richtiges Logo einfügen */
.logo-image {
    height: 46px;
    max-width: 210px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.25rem;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 0.1rem;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: width 0.25s ease-out;
}

nav a:hover::after {
    width: 100%;
}

.nav-shop-link {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(243, 200, 136, 0.7);
    background: rgba(229, 184, 121, 0.08);
}

.nav-shop-link::after {
    display: none;
}

.nav-shop-link:hover {
    background: rgba(229, 184, 121, 0.16);
}

/* Hauptbereich */
main {
    flex: 1;
}

/* Hero-Bereich */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 3rem;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.hero-text h1 span {
    color: var(--accent);
}

.hero-text p {
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    max-width: 40rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.badge {
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    border: 1px solid rgba(243, 200, 136, 0.7);
    font-size: 0.8rem;
    background: radial-gradient(circle at top left, rgba(211,165,107,0.3), rgba(0,0,0,0.4));
    backdrop-filter: blur(6px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s ease-out;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #1c120a;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.55);
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid rgba(243, 200, 136, 0.7);
}

.btn-outline:hover {
    background: rgba(0,0,0,0.4);
    transform: translateY(-1px);
}

.hero-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Hero Bild / Karte */
.hero-card {
    position: relative;
    border-radius: 1.5rem;
    padding: 1.5rem;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.06), rgba(0,0,0,0.9));
    box-shadow: 0 18px 45px rgba(0,0,0,0.6);
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 0 42%, rgba(229,184,121,0.12) 42% 44%, transparent 44%),
        radial-gradient(circle at 18% 20%, rgba(255,255,255,0.12), transparent 34%);
    opacity: 0.85;
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-card-inner {
    position: relative;
    z-index: 1;
}

.hero-card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.hero-card-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(0,0,0,0.55);
    font-size: 0.8rem;
    border: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 1rem;
}

.hero-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.2rem;
}

.mini-card {
    background: rgba(0,0,0,0.6);
    border-radius: 1rem;
    padding: 0.6rem 0.75rem;
    border: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
}

.mini-card strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
}

.laser-line {
    position: relative;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #7df9ff, #ffffff, #7df9ff, transparent);
    margin: 0.8rem 0 0.4rem;
    overflow: hidden;
}

.laser-line::after {
    content: "";
    position: absolute;
    left: -20%;
    top: -40%;
    width: 18%;
    height: 180%;
    background: radial-gradient(circle, #ffffff 0, #7df9ff 45%, transparent 70%);
    animation: laserSweep 2.4s linear infinite;
    opacity: 0.9;
}

@keyframes laserSweep {
    0% { transform: translateX(0); }
    100% { transform: translateX(600%); }
}

.hero-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Sektionen */
section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.8rem 1.5rem;
}

section h1,
section h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 40rem;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--card-bg);
    border-radius: 1.25rem;
    padding: 1.2rem 1.3rem;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 10px 26px rgba(0,0,0,0.5);
    transform: translateY(0);
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0,0,0,0.7), 0 0 15px rgba(229,184,121,0.2);
    border-color: rgba(229,184,121,0.4);
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.card-link {
    color: inherit;
    display: block;
    text-decoration: none;
}

.card-link::after {
    content: "Mehr erfahren →";
    display: inline-flex;
    margin-top: 0.9rem;
    color: var(--accent);
    font-size: 0.86rem;
    font-weight: 700;
}

.service-hero,
.landing-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem 2.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
    gap: 2rem;
    align-items: center;
}

.service-hero h1,
.landing-hero h1 {
    font-size: clamp(2.1rem, 4vw, 3.3rem);
    line-height: 1.08;
    margin-bottom: 1rem;
}

.service-hero-panel,
.landing-media-card,
.text-panel,
.conversion-band {
    border-radius: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    background:
        radial-gradient(circle at top left, rgba(229,184,121,0.14), transparent 42%),
        rgba(0,0,0,0.42);
    box-shadow: 0 18px 45px rgba(0,0,0,0.42);
}

.service-hero-panel {
    padding: 1.35rem;
    display: grid;
    gap: 0.8rem;
}

.service-hero-panel strong,
.service-hero-panel span {
    display: block;
}

.service-hero-panel span {
    color: var(--text-muted);
    padding-left: 1rem;
    border-left: 2px solid rgba(229,184,121,0.45);
}

.landing-media-card {
    padding: 0.75rem;
    overflow: hidden;
}

.landing-media-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 1.1rem;
}

.service-link-grid,
.feature-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
    gap: 1.2rem;
}

.service-link-card,
.feature-grid article,
.process-grid article {
    color: inherit;
    text-decoration: none;
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.25rem;
    padding: 1.2rem;
    box-shadow: 0 10px 26px rgba(0,0,0,0.45);
}

.service-link-card {
    transition: transform 0.18s ease-out, border-color 0.18s ease-out;
}

.service-link-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229,184,121,0.45);
}

.service-link-card span,
.process-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    margin-bottom: 0.8rem;
    border-radius: 999px;
    color: #1c120a;
    background: var(--accent);
    font-weight: 800;
}

.service-link-card h3,
.feature-grid h3,
.process-grid h3 {
    margin-bottom: 0.55rem;
}

.service-link-card p,
.feature-grid p,
.process-grid p,
.text-panel p,
.conversion-band p {
    color: var(--text-muted);
}

.text-panel {
    padding: 1.3rem;
    display: grid;
    gap: 0.8rem;
}

.conversion-band {
    padding: 1.4rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
}

.decision-panel {
    padding: 1.5rem;
    border-radius: 1.6rem;
    border: 1px solid rgba(255,255,255,0.1);
    background:
        radial-gradient(circle at top left, rgba(229,184,121,0.18), transparent 38%),
        linear-gradient(135deg, rgba(22,14,9,0.92), rgba(50,32,20,0.78));
    box-shadow: 0 22px 55px rgba(0,0,0,0.45);
}

.decision-panel > div:first-child {
    max-width: 760px;
    margin-bottom: 1.25rem;
}

.decision-panel h2 {
    margin-bottom: 0.55rem;
}

.decision-panel p {
    color: var(--text-muted);
}

.decision-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.decision-card {
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1.15rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.38);
    color: inherit;
    text-decoration: none;
    transition: transform 0.18s ease-out, border-color 0.18s ease-out, background 0.18s ease-out;
}

.decision-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229,184,121,0.55);
    background: rgba(0,0,0,0.48);
}

.decision-card-primary {
    background:
        radial-gradient(circle at top right, rgba(229,184,121,0.2), transparent 42%),
        rgba(0,0,0,0.42);
    border-color: rgba(229,184,121,0.38);
}

.decision-kicker {
    width: fit-content;
    padding: 0.22rem 0.65rem;
    border-radius: 999px;
    background: rgba(229,184,121,0.16);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.decision-card h3 {
    font-size: 1.15rem;
}

.decision-card p {
    flex: 1;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.decision-card strong {
    color: var(--accent);
}

.review-cta {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1.4rem;
    align-items: center;
    padding: 1.35rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    background:
        radial-gradient(circle at top left, rgba(66,133,244,0.2), transparent 36%),
        linear-gradient(135deg, rgba(22,14,9,0.88), rgba(48,31,20,0.74));
    box-shadow: 0 18px 45px rgba(0,0,0,0.42);
}

.review-cta-mark {
    width: 4rem;
    height: 4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.15rem;
    background: #f8f4ec;
    color: #1f1f1f;
    font-size: 2.2rem;
    font-weight: 800;
    box-shadow: inset 0 -4px 0 rgba(229,184,121,0.5), 0 12px 24px rgba(0,0,0,0.35);
}

.review-cta h2 {
    margin-bottom: 0.45rem;
}

.review-cta p:not(.eyebrow) {
    color: var(--text-muted);
}

.split-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.8rem;
}

.shop-bridge {
    background: linear-gradient(135deg, rgba(22, 14, 9, 0.92), rgba(48, 31, 20, 0.8));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.5rem;
    padding: 1.6rem;
    box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}

.shop-bridge-copy {
    margin-bottom: 0;
    max-width: 50rem;
}

.shop-bridge-grid,
.faq-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.shop-bridge-card,
.faq-item,
.contact-callout {
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
    padding: 1rem 1.1rem;
}

.shop-bridge-card h3,
.faq-item h3 {
    margin-bottom: 0.45rem;
    font-size: 1rem;
}

.shop-bridge-card p,
.faq-item p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* Kontaktformular */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2rem;
}

.contact-callout {
    margin-bottom: 1.4rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-callout strong {
    color: var(--text-light);
}

form {
    display: grid;
    gap: 0.9rem;
}

label {
    font-size: 0.9rem;
}

input, textarea, select {
    width: 100%;
    padding: 0.55rem 0.8rem;
    border-radius: 0.7rem;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.5);
    color: var(--text-light);
    font: inherit;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(211,165,107,0.6);
}

input[type="file"] {
    padding: 0.75rem;
    cursor: pointer;
}

.form-help {
    margin-top: 0.35rem;
    color: var(--text-muted);
    font-size: 0.82rem;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-info strong {
    color: var(--text-light);
}

/* Form-Meldungen */
.form-message {
    border-radius: 0.7rem;
    padding: 0.6rem 0.9rem;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(46, 125, 50, 0.3);
    border: 1px solid rgba(129, 199, 132, 0.7);
    color: #c8e6c9;
}

.form-message.error {
    display: block;
    background: rgba(198, 40, 40, 0.3);
    border: 1px solid rgba(229, 115, 115, 0.7);
    color: #ffcdd2;
}

/* Rechtliche Texte */
.legal {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 900px;
}

.legal h3 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.4rem;
    color: var(--text-light);
}

.legal a {
    color: var(--accent);
}

.content-narrow {
    max-width: 900px;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

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

.footer-links a:hover {
    color: var(--accent);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 1.2rem;
    transform: translateX(-50%);
    max-width: min(420px, 100% - 2rem);
    background: rgba(0,0,0,0.9);
    border-radius: 1.2rem;
    padding: 1.1rem 1.2rem;
    box-shadow: 0 18px 40px rgba(0,0,0,0.8);
    font-size: 0.85rem;
    color: var(--text-muted);
    z-index: 50;
    border: 1px solid rgba(255,255,255,0.1);
    display: none;
}

.cookie-banner strong {
    color: var(--text-light);
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.9rem;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
}

.cookie-link {
    text-decoration: underline;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 860px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
        padding-top: 2.2rem;
    }

    .service-hero,
    .landing-hero,
    .conversion-band,
    .review-cta,
    .decision-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .split-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 700px) {
    nav ul {
        display: none;
    }

    .hero {
        padding: 2.2rem 1.2rem 2.3rem;
    }

    section {
        padding: 2.1rem 1.2rem;
    }

    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-callout {
        align-items: flex-start;
    }

}

/* ----------------------------------------------------------
   AUTOMATIC SCALE BOX FÜR DAS 3D KARUSSELL
---------------------------------------------------------- */
.carousel-scale-box {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 13rem;
    margin-bottom: 1.5rem;
    min-height: 560px;
    overflow: visible;
    transform-origin: top center;
}

/* 3D Karussell */
.carousel-3d-wrap {
    perspective: 1300px;
    position: relative;
    width: 900px;      
    min-height: 500px;
    --carouselRadius: 430px; 
}

.carousel-3d {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.carousel-panel {
    position: absolute;
    top: 0;
    left: 25%;
    width: 50%;
    transform-style: preserve-3d;
    transform: rotateY(calc(var(--panel-index) * 60deg)) translateZ(var(--carouselRadius));
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.9rem 1rem 1.2rem;
    border-radius: 1.4rem;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.07), transparent 55%),
        linear-gradient(135deg, rgba(15,10,6,0.85), rgba(0,0,0,0.65));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.7),
        0 0 0 1px rgba(255,255,255,0.04);
    backdrop-filter: blur(8px);
}

.carousel-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(to bottom, rgba(255,255,255,0.14), transparent 45%);
    mix-blend-mode: screen;
    opacity: 0.6;
    pointer-events: none;
}

.carousel-media {
    width: 100%;
    padding: 0.4rem;
    border-radius: 1.1rem;
    background:
        linear-gradient(135deg, rgba(229,184,121,0.2), rgba(69,46,30,0.6));
    box-shadow: inset 0 0 12px rgba(0,0,0,0.6);
}

.carousel-media-inner {
    border-radius: 0.9rem;
    overflow: hidden;
    background: radial-gradient(circle at center, #160e09, #050302);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-panel img {
    max-width: 100%;
    max-height: 250px;
    width: auto;
    height: auto;
    object-fit: contain;
    cursor: zoom-in;
}

.carousel-media {
    cursor: zoom-in;
}

.card,
.shop-bridge,
.faq-item,
.decision-card,
.decision-panel,
.service-link-card,
.feature-grid article,
.process-grid article {
    content-visibility: auto;
    contain-intrinsic-size: 280px;
}

.carousel-text {
    margin-top: 0.9rem;
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
}

.carousel-floor {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%) rotateX(80deg);
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0,0,0,0.7), transparent 70%);
    opacity: 0.9;
    pointer-events: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle at top left, rgba(229,184,121,0.35), rgba(0,0,0,0.9));
    border: 1px solid rgba(255,255,255,0.35);
    padding: 0.7rem 1rem;
    border-radius: 999px;
    cursor: pointer;
    color: var(--text-light);
    font-size: 1.4rem;
    backdrop-filter: blur(6px);
    transition: 0.25s;
    z-index: 20;
}

.carousel-left { left: 1.5rem; }
.carousel-right { right: 1.5rem; }

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.06);
    background: radial-gradient(circle at top left, rgba(229,184,121,0.5), rgba(0,0,0,0.9));
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.5);
    background: rgba(0,0,0,0.5);
    cursor: pointer;
    transition: 0.2s;
}

.carousel-dot.active {
    background: var(--accent);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(229,184,121,0.8);
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(0,0,0,0.86);
    backdrop-filter: blur(10px);
}

.image-lightbox.open {
    display: flex;
}

.image-lightbox-inner {
    position: relative;
    width: min(980px, 100%);
    max-height: min(86vh, 900px);
    border-radius: 1.25rem;
    background: rgba(12,8,5,0.95);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 28px 80px rgba(0,0,0,0.75);
    padding: 1rem;
}

.image-lightbox img {
    display: block;
    width: 100%;
    max-height: 76vh;
    object-fit: contain;
    border-radius: 0.9rem;
    background: #070403;
}

.image-lightbox-caption {
    margin-top: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    font-size: 0.95rem;
}

.image-lightbox-close {
    position: absolute;
    top: -0.9rem;
    right: -0.9rem;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.24);
    background: var(--accent);
    color: #1c120a;
    cursor: pointer;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1;
}

@media (max-width: 700px) {
    .carousel-scale-box {
        margin-top: 8rem;
        margin-bottom: 1.5rem;
        min-height: 520px;
    }

    .carousel-3d-wrap {
        min-height: 480px;
    }

    .image-lightbox {
        padding: 0.75rem;
    }

    .image-lightbox-close {
        top: 0.5rem;
        right: 0.5rem;
    }
}

/* -------------------------
   NAVIGATION RESPONSIVE (FIX)
-------------------------- */

/* wichtig, damit das mobile Dropdown absolut unter dem Header sitzt */
header .nav-inner {
  position: relative;
}

.nav-toggle{
  display:none;
  background:none;
  border:none;
  font-size:2rem;
  color:var(--text-light);
  cursor:pointer;
  transition: transform 0.2s;
}
.nav-toggle:hover {
  transform: scale(1.1);
}

/* Basis: Desktop-Nav sichtbar */
#mainNav{
  display:block;
}

#mainNav ul{
  list-style:none;
  display:flex !important;          /* überschreibt style.css */
  gap:1.25rem;
  align-items:center;
}

/* Mobile */
@media (max-width: 900px){

  .nav-toggle{
    display:block;
  }

  /* Nav-Container als Dropdown */
  #mainNav{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background: rgba(15,10,6,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1rem 0;
    z-index: 999;
    display:none;                   /* zu, bis open */
    border-bottom: 1px solid var(--glass-border);
  }

  #mainNav.open{
    display:block;
    animation: slideDown 0.3s ease-out forwards;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* UL muss im offenen Zustand sichtbar sein (style.css hat oft display:none) */
  #mainNav ul{
    display:none !important;
    flex-direction:column;
    gap:1.2rem;
    align-items:center;
    margin:0;
    padding:0;
  }

  #mainNav.open ul{
    display:flex !important;
  }

  #mainNav a{
    font-size:1.1rem;
  }
}

/* -------------------------
   CONVERSION OPTIMIZATION
-------------------------- */

/* Pulse Animation for main CTA */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(229,184,121, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(229,184,121, 0); }
    100% { box-shadow: 0 0 0 0 rgba(229,184,121, 0); }
}

.btn-pulse {
    animation: pulseGlow 2s infinite;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-light);
    background: rgba(0,0,0,0.4);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
}

.trust-badge span {
    color: var(--accent);
    font-size: 1.1rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: pulseGlowGreen 2s infinite;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

@keyframes pulseGlowGreen {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 700px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}
