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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Vollbreite fixierte Schiffsteile dürfen nie über den Horizont (Viewport) hinausragen */
.nav, #loader, .cc-banner { max-width: 100vw; }

/* ====== NAVIGATION ====== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    background: transparent;
    transition: background 0.4s, padding 0.4s;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    padding: 0.7rem 2.5rem;
    border-bottom: 1px solid rgba(200, 160, 80, 0.2);
}

.nav-logo {
    font-family: 'Pirata One', cursive;
    font-size: 2rem;
    color: #f0d68a;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 0.55rem;
}

.nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 0.71rem;
    font-weight: 600;
    color: #d4b87a;
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.3s;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.nav-links a:hover { color: #fff; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #d4b87a;
    transition: transform 0.3s, opacity 0.3s;
}

/* ====== HERO ====== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.15) 40%,
        rgba(0, 0, 0, 0.4) 80%,
        rgba(10, 10, 10, 1) 100%
    );
    z-index: 1;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-size: 2rem;
    color: #c8a050;
    animation: bounce 2s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-12px); }
}

/* ====== BANDEROLE ====== */
.banner {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    max-width: 95vw;
}

.banner-center {
    background: linear-gradient(180deg, #3b2314 0%, #2a1709 40%, #1e1005 100%);
    border-top: 3px solid #c8a050;
    border-bottom: 3px solid #c8a050;
    padding: 2.5rem 4rem;
    text-align: center;
    position: relative;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.8), inset 0 0 80px rgba(0, 0, 0, 0.3);
    transform: scaleX(0);
    animation: unroll 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.5s;
}

.banner-center::before,
.banner-center::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c8a050, transparent);
}

.banner-center::before { top: 6px; }
.banner-center::after { bottom: 6px; }

.banner-left,
.banner-right {
    width: 55px;
    height: 110px;
    flex-shrink: 0;
    opacity: 0;
}

.banner-left {
    background: linear-gradient(180deg, #3b2314, #1e1005);
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    animation: tipLeft 0.4s ease forwards;
    animation-delay: 1.3s;
}

.banner-right {
    background: linear-gradient(180deg, #3b2314, #1e1005);
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    animation: tipRight 0.4s ease forwards;
    animation-delay: 1.3s;
}

.banner-center h1,
.banner-center p,
.banner-divider { opacity: 0; }

.banner-center h1 { animation: textReveal 0.6s ease forwards; animation-delay: 1.5s; }
.banner-divider { animation: textReveal 0.6s ease forwards; animation-delay: 1.6s; }
.banner-center p { animation: textReveal 0.6s ease forwards; animation-delay: 1.7s; }

.banner-center h1 {
    font-family: 'Pirata One', cursive;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.3;
    color: #f0d68a;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    letter-spacing: 0.02em;
}

.banner-divider {
    width: 140px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c8a050, transparent);
    margin: 1rem auto;
}

.banner-center p {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: #d4b87a;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ====== ANIMATIONS ====== */
@keyframes unroll { 0% { transform: scaleX(0); } 100% { transform: scaleX(1); } }
@keyframes tipLeft { 0% { opacity: 0; transform: translateX(30px); } 100% { opacity: 1; transform: translateX(0); } }
@keyframes tipRight { 0% { opacity: 0; transform: translateX(-30px); } 100% { opacity: 1; transform: translateX(0); } }
@keyframes textReveal { 0% { opacity: 0; transform: translateY(10px); } 100% { opacity: 1; transform: translateY(0); } }

/* ====== SCROLL REVEAL ====== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ====== SECTIONS ====== */
.section {
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-content { max-width: 1100px; width: 100%; margin: 0 auto; }

.section-dark { background: #0a0a0a; }

.section-wood {
    background: linear-gradient(180deg, #14100a, #1a1209 50%, #14100a);
    border-top: 1px solid rgba(200, 160, 80, 0.1);
    border-bottom: 1px solid rgba(200, 160, 80, 0.1);
}

.section-cinematic { position: relative; overflow: hidden; min-height: 60vh; }

.cinematic-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(200, 160, 80, 0.08) 0%, transparent 70%);
}

.section-title {
    font-family: 'Pirata One', cursive;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #f0d68a;
    text-align: center;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(200, 160, 80, 0.3);
}

.section-subtitle {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.85rem, 1.8vw, 1.1rem);
    color: #c8a050;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
}

.section-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-weight: 300;
}

.section-text strong { color: #f0d68a; font-weight: 600; }
.section-text.large { font-size: 1.2rem; line-height: 1.9; }

/* ====== STATS ====== */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem 1rem;
    border: 1px solid rgba(200, 160, 80, 0.15);
    background: rgba(200, 160, 80, 0.03);
    transition: border-color 0.4s, background 0.4s;
}

.stat:hover { border-color: rgba(200, 160, 80, 0.4); background: rgba(200, 160, 80, 0.06); }

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #f0d68a;
    display: inline;
}

.stat-plus { font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 700; color: #c8a050; }

.stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ====== SERVICES ====== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    padding: 2.5rem 2rem;
    background: rgba(200, 160, 80, 0.04);
    border: 1px solid rgba(200, 160, 80, 0.12);
    text-align: center;
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 160, 80, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(200, 160, 80, 0.05);
}

.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #f0d68a;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    flex-grow: 1;
}

.card-link {
    display: inline-block;
    margin-top: 1.2rem;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #c8a050;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.card-link:hover { color: #f0d68a; }

/* ====== SEEKARTE ====== */
.scroll {
    position: relative;
    max-width: 860px;
    margin: 1rem auto 0;
}

.rod {
    position: relative;
    height: 26px;
    border-radius: 13px;
    background: linear-gradient(180deg, #6b4a26 0%, #3a2410 50%, #2a1709 100%);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6), inset 0 2px 3px rgba(255, 220, 160, 0.25);
    z-index: 3;
}

.rod-cap {
    position: absolute;
    top: 50%;
    width: 22px;
    height: 34px;
    background: radial-gradient(ellipse at center, #8a6a3a, #4a3018);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
}

.rod-cap-left { left: -12px; }
.rod-cap-right { right: -12px; }

.parchment-clip {
    overflow: hidden;
    max-height: 0;
    transition: max-height 1.6s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    z-index: 2;
}

.reveal-scroll.unrolled .parchment-clip { max-height: 1400px; }

.parchment {
    background:
        radial-gradient(ellipse at 30% 20%, rgba(120, 90, 50, 0.12), transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(120, 90, 50, 0.12), transparent 60%),
        linear-gradient(135deg, #e8d4a8 0%, #dcc290 40%, #d2b67e 100%);
    border-left: 2px solid #b89a60;
    border-right: 2px solid #b89a60;
    box-shadow: inset 0 0 60px rgba(120, 80, 40, 0.35), inset 0 0 8px rgba(90, 60, 30, 0.5);
    padding: 1.5rem 1rem;
}

.map-svg { width: 100%; height: auto; display: block; }

.map-marker text:first-child { fill: #7a3a1a; }

/* ====== CTA BUTTON ====== */
.cta-button {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0a0a0a;
    background: linear-gradient(135deg, #f0d68a, #c8a050);
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(200, 160, 80, 0.3);
}

.cta-button:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(200, 160, 80, 0.5); }

.cta-small { font-size: 0.8rem; padding: 0.7rem 1.4rem; letter-spacing: 0.08em; }

/* ====== COURSES / HEUERBÜRO ====== */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.course-card {
    padding: 2rem 1.5rem;
    background: linear-gradient(180deg, rgba(200, 160, 80, 0.07), rgba(200, 160, 80, 0.02));
    border: 1px solid rgba(200, 160, 80, 0.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s, border-color 0.4s;
}

.course-card:hover { transform: translateY(-6px); border-color: rgba(200, 160, 80, 0.45); }

.course-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }

.course-card h3 {
    font-family: 'Pirata One', cursive;
    font-size: 1.4rem;
    color: #f0d68a;
    margin-bottom: 0.7rem;
    letter-spacing: 0.02em;
}

.course-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    flex-grow: 1;
    margin-bottom: 1.2rem;
}

/* ====== CHALLENGES ====== */
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.challenge { padding: 2rem; border-left: 3px solid #c8a050; background: rgba(200, 160, 80, 0.03); }
.challenge-icon { font-size: 2rem; margin-bottom: 0.8rem; }

.challenge h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #f0d68a;
    margin-bottom: 0.5rem;
}

.challenge p { font-size: 0.95rem; line-height: 1.7; color: rgba(255, 255, 255, 0.65); font-weight: 300; }

/* ====== TESTIMONIALS ====== */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    padding: 2.5rem 2rem;
    background: rgba(200, 160, 80, 0.04);
    border: 1px solid rgba(200, 160, 80, 0.1);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-family: 'Pirata One', cursive;
    font-size: 5rem;
    color: rgba(200, 160, 80, 0.15);
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: block;
    margin-top: 1.2rem;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: #c8a050;
    letter-spacing: 0.08em;
}

/* ====== CONTACT ====== */
.contact-info { text-align: center; }

.contact-meta { margin-top: 1.5rem; }
.contact-meta a {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: #c8a050;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}
.contact-meta a:hover { color: #f0d68a; }

/* ====== FOOTER ====== */
.footer {
    border-top: 1px solid rgba(200, 160, 80, 0.15);
    padding: 2rem;
    background: #0a0a0a;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo { font-family: 'Pirata One', cursive; font-size: 1.4rem; color: #c8a050; }
.footer-copy { font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; }

.footer-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover { color: #c8a050; }

/* ====== MOBILE ====== */
@media (max-width: 900px) {
    .courses-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav { padding: 0.8rem 1.2rem; }
    .nav-toggle { display: flex; }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(12px);
        padding: 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }

    .nav-links.open { max-height: 460px; padding: 1rem 0; border-bottom: 1px solid rgba(200, 160, 80, 0.2); }
    .nav-links li { text-align: center; padding: 0.8rem 2rem; }

    .section { padding: 4rem 1.2rem; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .challenges-grid { grid-template-columns: 1fr; }
    .testimonials { grid-template-columns: 1fr; }

    .banner-center { padding: 1.5rem 1.8rem; }
    .banner-left, .banner-right { width: 28px; height: 75px; }

    .footer-content { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .courses-grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .stat { padding: 1.2rem 0.5rem; }
    .stat-number { font-size: 2.2rem; }
    .reveal-scroll.unrolled .parchment-clip { max-height: 1600px; }
}

/* ===================================================================
   DROPDOWN NAVIGATION
   =================================================================== */
.nav-links li { position: relative; }

.dropdown-caret { font-size: 0.6em; margin-left: 0.3em; opacity: 0.8; }

.dropdown {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 240px;
    background: rgba(16, 12, 7, 0.97);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(200, 160, 80, 0.25);
    border-radius: 6px;
    padding: 0.6rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
    z-index: 120;
}

.has-dropdown:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown li { display: block; }

.dropdown a {
    display: block;
    padding: 0.6rem 1.4rem;
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    text-transform: none;
    letter-spacing: 0.04em;
    color: #d4b87a;
    white-space: nowrap;
}

.dropdown a:hover { color: #fff; background: rgba(200, 160, 80, 0.1); }
.dropdown a small { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.45); font-family: 'Inter', sans-serif; text-transform: none; letter-spacing: 0; margin-top: 2px; }

/* ===================================================================
   SUBPAGE HERO (kleiner als Startseiten-Hero)
   =================================================================== */
.page-hero {
    position: relative;
    padding: 2.5rem 2rem 4rem;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(200, 160, 80, 0.1), transparent 60%),
        linear-gradient(180deg, #14100a, #0a0a0a);
    border-bottom: 1px solid rgba(200, 160, 80, 0.15);
    overflow: hidden;
}

.page-hero::after {
    content: '⚓';
    position: absolute;
    bottom: -10px;
    right: 5%;
    font-size: 8rem;
    opacity: 0.05;
}

.page-hero h1 {
    font-family: 'Pirata One', cursive;
    font-size: clamp(2.4rem, 6vw, 4rem);
    color: #f0d68a;
    text-shadow: 0 2px 14px rgba(200, 160, 80, 0.3);
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.page-hero .lead {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.95rem, 2vw, 1.25rem);
    color: #c8a050;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===================================================================
   BREADCRUMBS
   =================================================================== */
.breadcrumb {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5.5rem 2rem 0;
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
}

.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.breadcrumb a { color: #c8a050; text-decoration: none; }
.breadcrumb a:hover { color: #f0d68a; }
.breadcrumb li::after { content: '›'; margin-left: 0.5rem; color: rgba(255,255,255,0.3); }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb li:last-child { color: rgba(255,255,255,0.5); }

/* ===================================================================
   PROSE / CONTENT
   =================================================================== */
.prose {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 300;
}

.prose h3 {
    font-family: 'Pirata One', cursive;
    font-size: 1.8rem;
    color: #f0d68a;
    margin: 2.5rem 0 1rem;
    letter-spacing: 0.02em;
}

.prose h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    color: #e0c280;
    margin: 1.8rem 0 0.7rem;
    font-weight: 700;
}

.prose p { margin-bottom: 1.2rem; }
.prose strong { color: #f0d68a; font-weight: 600; }
.prose ul, .prose ol { margin: 0 0 1.4rem 1.4rem; }
.prose li { margin-bottom: 0.6rem; }
.prose li::marker { color: #c8a050; }
.prose a { color: #e0c280; }

/* ===== Fließtext-Links einheitlich in GOLD (nie Browser-Blau) ===== */
section a:not(.cta-button):not(.link-card):not(.card-link):not(.lc-more):not(.nav-logo),
.section-content a, .section-text a, .prose a, .faq-a a, .contact-detail a,
.pain-list a, .gain-list a {
    color: #e8c574;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    text-decoration-color: rgba(200, 160, 80, 0.5);
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
section a:not(.cta-button):not(.link-card):not(.card-link):not(.lc-more):hover,
.section-content a:hover, .section-text a:hover, .prose a:hover, .faq-a a:hover,
.contact-detail a:hover, .pain-list a:hover, .gain-list a:hover {
    color: #fff4cf;
    text-decoration-color: #f0d68a;
}

.content-section { padding: 5rem 2rem; }

/* feature list with check-anchors */
.anchor-list { list-style: none; margin-left: 0 !important; }
.anchor-list li { position: relative; padding-left: 2rem; }
.anchor-list li::before { content: '⚓'; position: absolute; left: 0; color: #c8a050; font-size: 0.9em; }

/* ===================================================================
   FAQ ACCORDION
   =================================================================== */
.faq-list { max-width: 860px; margin: 2rem auto 0; }

.faq-item {
    border: 1px solid rgba(200, 160, 80, 0.15);
    border-radius: 6px;
    margin-bottom: 1rem;
    background: rgba(200, 160, 80, 0.03);
    overflow: hidden;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #f0d68a;
    transition: background 0.3s;
}

.faq-q:hover { background: rgba(200, 160, 80, 0.06); }
.faq-q::after { content: '⚓'; font-size: 1.1rem; transition: transform 0.4s; flex-shrink: 0; }
.faq-item.open .faq-q::after { transform: rotate(180deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    font-weight: 300;
}

.faq-item.open .faq-a { max-height: 600px; padding: 0 1.5rem 1.4rem; }

/* ===================================================================
   KONTAKTFORMULAR
   =================================================================== */
.contact-form {
    max-width: 620px;
    margin: 2.5rem auto 0;
    text-align: left;
    background: rgba(200, 160, 80, 0.04);
    border: 1px solid rgba(200, 160, 80, 0.18);
    border-radius: 8px;
    padding: 2.5rem;
}

.form-row { margin-bottom: 1.3rem; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.contact-form label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    color: #c8a050;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(200, 160, 80, 0.25);
    border-radius: 5px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c8a050;
    box-shadow: 0 0 0 3px rgba(200, 160, 80, 0.12);
}

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

.contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
    margin-top: 0.5rem;
}

.form-status { margin-top: 1rem; text-align: center; font-size: 0.92rem; min-height: 1.4em; }
.form-status.sending { color: #c8a050; }
.form-status.ok { color: #8fd18f; }
.form-status.err { color: #e08a7a; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.contact-detail { padding-top: 1rem; }
.contact-detail h3 { font-family: 'Pirata One', cursive; font-size: 1.8rem; color: #f0d68a; margin-bottom: 1rem; }
.contact-detail p { color: rgba(255,255,255,0.72); line-height: 1.8; margin-bottom: 0.8rem; font-weight: 300; }
.contact-detail a { color: #e0c280; text-decoration: none; }
.contact-detail a:hover { color: #f0d68a; }

/* ===================================================================
   LINK CARD GRID (LP-Querverweise)
   =================================================================== */
.link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.link-card {
    display: block;
    padding: 2rem 1.6rem;
    background: rgba(200, 160, 80, 0.04);
    border: 1px solid rgba(200, 160, 80, 0.14);
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.link-card:hover { transform: translateY(-5px); border-color: rgba(200, 160, 80, 0.4); box-shadow: 0 16px 36px rgba(0,0,0,0.4); }
.link-card .lc-icon { font-size: 2rem; }
.link-card h3 { font-family: 'Cinzel', serif; font-size: 1.1rem; color: #f0d68a; margin: 0.7rem 0 0.5rem; }
.link-card p { font-size: 0.9rem; line-height: 1.65; color: rgba(255,255,255,0.62); font-weight: 300; }
.link-card .lc-more { display: inline-block; margin-top: 0.8rem; font-family: 'Cinzel', serif; font-size: 0.75rem; color: #c8a050; text-transform: uppercase; letter-spacing: 0.08em; }

/* ===================================================================
   MOBILE Anpassungen für neue Komponenten
   =================================================================== */
@media (max-width: 1300px) {
    .nav-toggle { display: flex; }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(12px);
        padding: 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        overflow-y: auto;
        transition: max-height 0.4s ease;
    }

    .nav-links.open { max-height: 85vh; padding: 0.5rem 0 1.5rem; border-bottom: 1px solid rgba(200,160,80,0.2); }
    .nav-links > li { text-align: center; padding: 0.5rem 1rem; }

    .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        min-width: 0;
        background: rgba(200, 160, 80, 0.05);
        border: none;
        box-shadow: none;
        transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .has-dropdown.open > .dropdown { max-height: 600px; padding: 0.4rem 0 0.8rem; }
    .has-dropdown:hover > .dropdown { transform: none; }
    .dropdown a { text-align: center; }

    .contact-grid { grid-template-columns: 1fr; }
    .link-grid { grid-template-columns: 1fr; }
    .form-row.two { grid-template-columns: 1fr; }
    .contact-form { padding: 1.8rem; }
}

/* ===================================================================
   PREMIUM OVERHAUL  (Gold-Foil · Skulls · Coins · 3D · Header-Slots)
   =================================================================== */
:root {
    --gold-1: #fff4cf;
    --gold-2: #f0d68a;
    --gold-3: #c8a050;
    --gold-4: #8a6328;
    --ink: #08070a;
    --crimson: #7a1f1f;
    --gold-grad: linear-gradient(135deg, #fff4cf 0%, #f0d68a 28%, #c8a050 55%, #9a7634 75%, #f0d68a 100%);
}

/* ---- Tiefer Hintergrund + Grain + Vignette ---- */
body {
    background:
        radial-gradient(1200px 700px at 80% -10%, rgba(200,160,80,0.10), transparent 60%),
        radial-gradient(900px 600px at 0% 30%, rgba(122,31,31,0.08), transparent 60%),
        radial-gradient(1000px 800px at 50% 120%, rgba(200,160,80,0.07), transparent 60%),
        #08070a;
}
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Custom Scrollbar + Selection ---- */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: #0c0a07; }
::-webkit-scrollbar-thumb { background: linear-gradient(#c8a050, #8a6328); border-radius: 6px; border: 2px solid #0c0a07; }
::selection { background: rgba(200,160,80,0.3); color: #fff; }

/* ---- Page Loader ---- */
#loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: radial-gradient(circle at 50% 45%, #14100a, #050404 75%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}
#loader.done { opacity: 0; visibility: hidden; }
#loader .loader-art { width: 92px; height: 92px; animation: loaderSpin 2.4s linear infinite; filter: drop-shadow(0 0 14px rgba(200,160,80,0.5)); }
#loader .loader-text { position: absolute; bottom: 34%; font-family: 'Pirata One', cursive; font-size: 1.4rem; letter-spacing: 0.12em; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
@keyframes loaderSpin { to { transform: rotate(360deg); } }

/* ---- Gold-Foil Headings (shimmer) ---- */
.section-title, .page-hero h1, .nav-logo, .footer-logo, .gold {
    background: linear-gradient(110deg, #fff4cf 0%, #f0d68a 25%, #fffbe9 38%, #c8a050 55%, #9a7634 70%, #f0d68a 88%, #fff4cf 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: goldShimmer 7s linear infinite;
}
@keyframes goldShimmer { to { background-position: 250% center; } }

/* ---- Ornamentale Trenner ---- */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2.5rem auto;
    max-width: 560px;
    opacity: 0.9;
}
.ornament .line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-3)); }
.ornament .line.r { background: linear-gradient(90deg, var(--gold-3), transparent); }
.ornament .art { width: 42px; height: 42px; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5)); }

/* ---- SVG-Kunst Helfer ---- */
.art { display: inline-block; line-height: 0; }
.art svg { width: 100%; height: 100%; display: block; }

/* ---- Schwebende Goldmünzen ---- */
.coin-field { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.coin-field .coin { position: absolute; width: 34px; height: 34px; opacity: 0; animation: coinFloat linear infinite; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4)); }
.coin-field .coin .art { width: 100%; height: 100%; }
@keyframes coinFloat {
    0% { transform: translateY(40px) scale(0.8); opacity: 0; }
    15% { opacity: 0.8; }
    85% { opacity: 0.8; }
    100% { transform: translateY(-140px) scale(1.05); opacity: 0; }
}
.coin-spin .art svg { animation: coinSpinY 3.5s linear infinite; }
@keyframes coinSpinY { to { transform: rotateY(360deg); } }

/* ---- Premium Buttons (Shine-Sweep + Glow) ---- */
.cta-button {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: linear-gradient(135deg, #fff4cf, #f0d68a 40%, #c8a050);
    box-shadow: 0 6px 24px rgba(200,160,80,0.35), inset 0 1px 0 rgba(255,255,255,0.6);
    isolation: isolate;
}
.cta-button::before {
    content: '';
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255,255,255,0.85), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    z-index: -1;
}
.cta-button:hover::before { left: 130%; }
.cta-button:hover { box-shadow: 0 10px 36px rgba(200,160,80,0.6), inset 0 1px 0 rgba(255,255,255,0.7); }

/* ---- Karten: Glow, Rahmen, 3D-Tilt ---- */
.service-card, .course-card, .link-card, .testimonial, .challenge, .stat {
    position: relative;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.3s cubic-bezier(.2,.7,.3,1), border-color 0.4s, box-shadow 0.4s, background 0.4s;
}
.service-card::after, .course-card::after, .link-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(140deg, rgba(240,214,138,0.5), transparent 40%, transparent 60%, rgba(240,214,138,0.3));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.service-card:hover::after, .course-card:hover::after, .link-card:hover::after { opacity: 1; }
.service-card:hover, .course-card:hover, .link-card:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(200,160,80,0.12);
}
.tilt-glare {
    position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
    background: radial-gradient(220px circle at var(--mx,50%) var(--my,50%), rgba(255,244,207,0.18), transparent 60%);
    opacity: 0; transition: opacity 0.3s; z-index: 2;
}
.service-card:hover .tilt-glare, .course-card:hover .tilt-glare, .link-card:hover .tilt-glare { opacity: 1; }

/* Icons reagieren auf Hover */
.service-icon, .course-icon, .challenge-icon { transition: transform 0.4s cubic-bezier(.2,.7,.3,1), filter 0.4s; }
.service-card:hover .service-icon, .course-card:hover .course-icon, .challenge:hover .challenge-icon {
    transform: translateY(-4px) scale(1.12) rotate(-4deg);
    filter: drop-shadow(0 6px 12px rgba(200,160,80,0.5));
}

.section-cinematic .cinematic-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(600px circle at 50% 40%, rgba(122,31,31,0.12), transparent 70%);
}

/* =========================================================
   LANDINGPAGE-HEADER mit Bild-Slot + SVG-Szene + Parallax
   ========================================================= */
.page-hero {
    padding: 8.5rem 2rem 5rem;
    min-height: 56vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.page-hero::after { display: none; }

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.5;
    transform: scale(1.04);
}
.hero-media::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(8,7,10,0.55) 0%, rgba(8,7,10,0.35) 40%, rgba(8,7,10,0.92) 100%);
}
.hero-art {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.hero-art .art { position: absolute; opacity: 0.16; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5)); }
.hero-art .art.big { width: 340px; height: 340px; }
.hero-art .art.mid { width: 180px; height: 180px; }
.hero-art .art.sm { width: 90px; height: 90px; }
.page-hero > .breadcrumb, .page-hero > * { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-family: 'Cinzel', serif; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold-3); border: 1px solid rgba(200,160,80,0.3); border-radius: 100px;
    padding: 0.4rem 1.1rem; margin-bottom: 1.4rem; background: rgba(200,160,80,0.05); backdrop-filter: blur(4px);
}
.hero-badge .art { width: 18px; height: 18px; opacity: 1; }
.page-hero h1 { filter: drop-shadow(0 4px 20px rgba(0,0,0,0.6)); }

/* Floating + Spin Animationen */
.floaty { animation: floaty 6s ease-in-out infinite; }
.floaty.d2 { animation-delay: -2s; }
.floaty.d4 { animation-delay: -4s; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(0deg);} 50% { transform: translateY(-18px) rotate(3deg);} }
.spin-slow { animation: spinSlow 26s linear infinite; }
@keyframes spinSlow { to { transform: rotate(360deg); } }

.reveal { transition: opacity 0.9s cubic-bezier(.16,1,.3,1), transform 0.9s cubic-bezier(.16,1,.3,1); }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }

.title-skull { width: 54px; height: 54px; margin: 0 auto 0.8rem; display: block; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)); }
.title-skull svg { width: 100%; height: 100%; }

.nav-logo { display: inline-flex; align-items: center; gap: 0.5rem; }
.nav-logo .art { width: 30px; height: 30px; -webkit-text-fill-color: initial; }

.banner-center { border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.01s !important; }
    .coin-field, .floaty, .spin-slow { display: none; }
}

@media (max-width: 768px) {
    .hero-art .art.big { width: 200px; height: 200px; }
    .hero-art .art.mid { width: 120px; height: 120px; }
    .page-hero { min-height: 48vh; padding: 7rem 1.2rem 3.5rem; }
}

/* ---- Video-Header (Ausguck & Krähennest) ---- */
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6;
}
.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(8,7,10,0.5) 0%, rgba(8,7,10,0.35) 38%, rgba(8,7,10,0.93) 100%);
}

/* ---- Nav-Icon: Anker → Totenkopf-Flip beim Hover ---- */
.nav-ico {
    position: relative;
    display: inline-block;
    width: 13px;
    height: 13px;
    margin-right: 4px;
    vertical-align: -2px;
    transform-style: preserve-3d;
    transition: transform 0.55s cubic-bezier(.2,.7,.3,1);
    flex-shrink: 0;
}
.nav-ico::before,
.nav-ico::after {
    content: '';
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    backface-visibility: hidden;
}
.nav-ico::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e0c47a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='4.5' r='2'/%3E%3Cpath d='M12 6.5V21'/%3E%3Cpath d='M7.5 11h9'/%3E%3Cpath d='M5 14a7 7 0 0 0 14 0'/%3E%3Cpath d='M5 14l-2-1M19 14l2-1'/%3E%3C/svg%3E");
}
.nav-ico::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f0d68a'%3E%3Cpath d='M12 2C7.6 2 4 5.3 4 9.4c0 2.4 1.1 4.2 2.6 5.4.4.3.4.8.4 1.3V17c0 .6.4 1 1 1h.7v-1.3a.7.7 0 0 1 1.4 0V18h1.2v-1.3a.7.7 0 0 1 1.4 0V18h1.2v-1.3a.7.7 0 0 1 1.4 0V18h.7c.6 0 1-.4 1-1v-.9c0-.5 0-1 .4-1.3C18.9 13.6 20 11.8 20 9.4 20 5.3 16.4 2 12 2z'/%3E%3Ccircle cx='9' cy='10.4' r='1.7' fill='%23140d06'/%3E%3Ccircle cx='15' cy='10.4' r='1.7' fill='%23140d06'/%3E%3Cpath d='M12 13.6l-1 2h2z' fill='%23140d06'/%3E%3C/svg%3E");
    transform: rotateY(180deg);
}
.nav-links > li:hover > a .nav-ico,
.nav-links > li > a:hover .nav-ico {
    transform: rotateY(180deg) scale(1.12);
}
.nav-logo .nav-ico { display: none; }

/* ===================================================================
   SZENEN-BILDER (gemeinfreie Piraten-Gemälde, Sepia-Gold-Duoton)
   =================================================================== */
.scene { position: relative; max-width: 780px; margin: 3.5rem auto; }
.scene.wide { max-width: 1040px; }

.scene-frame {
    position: relative;
    padding: 10px;
    background: linear-gradient(145deg, #3a2410, #1e1206);
    border: 1px solid rgba(200,160,80,0.5);
    border-radius: 4px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(200,160,80,0.22);
    overflow: hidden;
}
.scene-frame::before {
    content: '';
    position: absolute; inset: 5px;
    border: 1px solid rgba(200,160,80,0.4);
    border-radius: 3px;
    pointer-events: none; z-index: 3;
}
.scene-frame::after {
    content: '';
    position: absolute; inset: 10px;
    background: linear-gradient(180deg, rgba(200,160,80,0.16), transparent 38%, rgba(30,18,6,0.42));
    mix-blend-mode: soft-light;
    pointer-events: none; z-index: 2;
}
.scene img {
    display: block; width: 100%; height: auto; border-radius: 2px;
    filter: sepia(0.45) saturate(1.05) contrast(1.03) brightness(0.95);
    transition: transform 0.8s cubic-bezier(.2,.7,.3,1), filter 0.6s;
}
.scene:hover img { transform: scale(1.04); filter: sepia(0.28) saturate(1.12) contrast(1.05) brightness(1); }
.scene figcaption {
    margin-top: 0.9rem; text-align: center;
    font-family: 'Cinzel', serif; font-size: 0.82rem; letter-spacing: 0.05em;
    color: #c8a050; font-style: italic;
}

/* Bild neben Text */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; max-width: 1120px; margin: 4.5rem auto; }
.split .scene { margin: 0; max-width: none; }
.split .split-media { min-width: 0; }
.split.rev .split-media { order: -1; }
.split .prose { margin: 0; }

@media (max-width: 768px) {
    .split { grid-template-columns: 1fr; gap: 2rem; margin: 3rem auto; }
    .split.rev .split-media { order: 0; }
    .scene { margin: 2.5rem auto; }
}

/* ---- Bilder kleiner & responsiver (Override) ---- */
.scene { max-width: 440px; }
.scene.wide { max-width: 620px; }
.scene img { max-height: 560px; object-fit: cover; }
.split { max-width: 980px; gap: 3rem; }
.split .scene { max-width: 380px; margin: 0 auto; }
@media (max-width: 768px) {
    .scene, .scene.wide { max-width: 84%; }
    .split .scene { max-width: 100%; }
    .scene img { max-height: 440px; }
}

/* ---- Anker→Totenkopf-Flip auch in Dropdown-Unterpunkten ---- */
.dropdown a:hover .nav-ico { transform: rotateY(180deg) scale(1.12); }
.dropdown a .nav-ico { vertical-align: -1px; }

/* ===================================================================
   SCHATZKARTEN-HOVER: Weg zeichnet sich Strich für Strich, dann ✕
   (im Ruhezustand unsichtbar — lenkt beim Hovern die Aufmerksamkeit)
   =================================================================== */
.section-title, .page-hero h1, .banner-center h1,
.prose h3, .prose h4,
.service-card h3, .course-card h3, .challenge h3, .contact-detail h3 {
    position: relative;
    padding-bottom: 0.9em;
}

/* Strichelweg: versteckt, wächst beim Hovern langsam zum ✕ */
.section-title::before, .page-hero h1::before, .banner-center h1::before,
.prose h3::before, .prose h4::before,
.service-card h3::before, .course-card h3::before, .challenge h3::before, .contact-detail h3::before {
    content: "";
    position: absolute;
    bottom: 0.35em;
    left: calc(50% - 75px);
    width: 0;
    height: 0;
    border-bottom: 2px dashed #c8a050;
    opacity: 0;
    transition: width 1.1s linear, opacity 0.25s ease;
    pointer-events: none;
}
.section-title:hover::before, .page-hero h1:hover::before, .banner-center h1:hover::before,
.service-card:hover h3::before, .course-card:hover h3::before, .challenge:hover h3::before, .contact-detail h3:hover::before {
    width: 150px;
    opacity: 0.95;
}

/* ✕ erscheint ERST, wenn der Weg gezeichnet is — wie ein gefundener Schatz */
.section-title::after, .page-hero h1::after, .banner-center h1::after,
.prose h3::after, .prose h4::after,
.service-card h3::after, .course-card h3::after, .challenge h3::after, .contact-detail h3::after {
    content: "\2715";
    position: absolute;
    bottom: 0.35em;
    left: calc(50% + 75px);
    transform: translate(-50%, 55%) scale(0.2) rotate(-10deg);
    opacity: 0;
    color: #e6bf52;
    -webkit-text-fill-color: #e6bf52;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.42em;
    line-height: 1;
    text-shadow: 0 1px 4px rgba(0,0,0,.6);
    transition: opacity 0.3s ease, transform 0.5s cubic-bezier(.2,1.8,.4,1);
    pointer-events: none;
}
.section-title:hover::after, .page-hero h1:hover::after, .banner-center h1:hover::after,
.service-card:hover h3::after, .course-card:hover h3::after, .challenge:hover h3::after, .contact-detail h3:hover::after {
    opacity: 1;
    transform: translate(-50%, 55%) scale(1) rotate(-10deg);
    transition-delay: 1.05s;
}

/* Prose-Überschriften linksbündig → Weg startet links */
.prose h3::before, .prose h4::before { left: 0; }
.prose h3:hover::before, .prose h4:hover::before { width: 110px; opacity: 0.95; }
.prose h3::after, .prose h4::after { left: 110px; }
.prose h3:hover::after, .prose h4:hover::after { opacity: 1; transform: translate(-50%, 55%) scale(1) rotate(-10deg); transition-delay: 0.9s; }

/* Karten-Titel: kürzerer Weg, etwas schneller */
.service-card h3::before, .course-card h3::before, .challenge h3::before, .contact-detail h3::before { left: calc(50% - 45px); transition-duration: 0.8s, 0.25s; }
.service-card:hover h3::before, .course-card:hover h3::before, .challenge:hover h3::before, .contact-detail h3:hover::before { width: 90px; }
.service-card h3::after, .course-card h3::after, .challenge h3::after, .contact-detail h3::after { left: calc(50% + 45px); }
.service-card:hover h3::after, .course-card:hover h3::after, .challenge:hover h3::after, .contact-detail h3:hover::after { transition-delay: 0.75s; }

/* ===================================================================
   COOKIE-CONSENT-BANNER
   =================================================================== */
.cc-banner {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 10001;
    background: rgba(12,10,7,0.97); backdrop-filter: blur(12px);
    border-top: 1px solid rgba(200,160,80,0.35);
    box-shadow: 0 -12px 44px rgba(0,0,0,0.55);
    padding: 1.3rem 1.5rem;
    transform: translateY(115%); transition: transform .55s cubic-bezier(.2,.8,.3,1);
}
.cc-banner.show { transform: translateY(0); }
.cc-inner { max-width: 1120px; margin: 0 auto; display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; justify-content: space-between; }
.cc-text { flex: 1; min-width: 260px; font-size: .9rem; line-height: 1.6; color: rgba(255,255,255,.8); font-weight: 300; }
.cc-text strong { display:block; color: #f0d68a; font-family: 'Pirata One', cursive; font-weight: 400; font-size: 1.2rem; letter-spacing: .02em; margin-bottom:.2rem; }
.cc-text a { color: #e0c280; }
.cc-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.cc-btn {
    font-family: 'Cinzel', serif; font-size: .76rem; letter-spacing: .06em; text-transform: uppercase;
    padding: .72rem 1.2rem; border-radius: 4px; cursor: pointer;
    border: 1px solid rgba(200,160,80,.4); background: transparent; color: #d4b87a; transition: all .3s; white-space: nowrap;
}
.cc-btn:hover { border-color: #c8a050; color: #fff; }
.cc-btn.primary { background: linear-gradient(135deg,#f0d68a,#c8a050); color: #0a0a0a; border: none; font-weight: 700; }
.cc-btn.primary:hover { box-shadow: 0 6px 22px rgba(200,160,80,.45); color: #0a0a0a; }

.cc-modal { position: fixed; inset: 0; z-index: 10002; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.cc-modal.show { display: flex; }
.cc-modal-bg { position: absolute; inset: 0; background: rgba(0,0,0,.72); backdrop-filter: blur(3px); }
.cc-modal-card {
    position: relative; max-width: 560px; width: 100%;
    background: linear-gradient(180deg,#14100a,#0c0a07);
    border: 1px solid rgba(200,160,80,.3); border-radius: 8px; padding: 2rem;
    max-height: 86vh; overflow: auto; box-shadow: 0 30px 80px rgba(0,0,0,.7);
}
.cc-modal-card h3 { font-family: 'Pirata One', cursive; color: #f0d68a; font-size: 1.9rem; margin-bottom: .4rem; }
.cc-modal-card .intro { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.6; margin-bottom: 1.3rem; font-weight: 300; }
.cc-cat { border: 1px solid rgba(200,160,80,.18); border-radius: 6px; padding: 1rem 1.1rem; margin-bottom: .9rem; background: rgba(200,160,80,.03); }
.cc-cat-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.cc-cat-head h4 { font-family: 'Cinzel', serif; font-size: .95rem; color: #f0d68a; }
.cc-cat p { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.5; margin-top: .4rem; font-weight: 300; }
.cc-toggle { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.cc-toggle input { opacity: 0; width: 0; height: 0; }
.cc-slider { position: absolute; inset: 0; background: #3a3026; border-radius: 26px; transition: .3s; cursor: pointer; }
.cc-slider::before { content: ''; position: absolute; height: 20px; width: 20px; left: 3px; top: 3px; background: #d4b87a; border-radius: 50%; transition: .3s; }
.cc-toggle input:checked + .cc-slider { background: linear-gradient(135deg,#c8a050,#8a6328); }
.cc-toggle input:checked + .cc-slider::before { transform: translateX(20px); background: #fff4cf; }
.cc-toggle input:disabled + .cc-slider { opacity: .55; cursor: not-allowed; }
.cc-modal-actions { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1.3rem; }
.cc-reopen {
    position: fixed; left: 14px; bottom: 14px; z-index: 9999;
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(12,10,7,.92); border: 1px solid rgba(200,160,80,.45);
    color: #e0c280; font-size: 1.35rem; cursor: pointer;
    display: none; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,.5); transition: transform .3s, border-color .3s;
}
.cc-reopen:hover { transform: scale(1.08); border-color: #c8a050; }
.cc-reopen.show { display: flex; }
@media (max-width: 600px) {
    .cc-actions { width: 100%; }
    .cc-btn { flex: 1 1 auto; text-align: center; }
    .cc-modal-actions .cc-btn { flex: 1 1 100%; }
}

/* ===================================================================
   KURS-SEITE (Blipp AI): Preis-Karte, Modul-Nummern, Pain-Hook
   =================================================================== */
.price-card {
    max-width: 540px; margin: 2.5rem auto; padding: 2.6rem 2rem; text-align: center;
    background: linear-gradient(180deg, rgba(200,160,80,0.10), rgba(200,160,80,0.02));
    border: 1px solid rgba(200,160,80,0.4); border-radius: 12px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.55), inset 0 0 40px rgba(200,160,80,0.04);
    position: relative; overflow: hidden;
}
.price-card::before { content:''; position:absolute; top:-50%; left:-50%; width:200%; height:200%;
    background: conic-gradient(from 0deg, transparent, rgba(200,160,80,0.12), transparent 30%); animation: priceGlow 8s linear infinite; }
@keyframes priceGlow { to { transform: rotate(360deg); } }
.price-card > * { position: relative; z-index: 1; }
.price-card .price-label { font-family:'Cinzel',serif; font-size:.8rem; letter-spacing:.18em; text-transform:uppercase; color:#c8a050; }
.price-card .price { font-family:'Cinzel',serif; font-size:3.4rem; font-weight:900; color:#f0d68a; line-height:1.05; margin:.3rem 0 .2rem; text-shadow:0 2px 14px rgba(200,160,80,.35); }
.price-card .price-sub { color: rgba(255,255,255,.6); font-size:.9rem; margin-bottom:1.4rem; }
.price-card ul { list-style:none; text-align:left; max-width:380px; margin:0 auto 1.6rem; }
.price-card li { position:relative; padding-left:1.8rem; margin-bottom:.6rem; color:rgba(255,255,255,.8); font-size:.95rem; }
.price-card li::before { content:'⚓'; position:absolute; left:0; color:#c8a050; }

.module-num { display:inline-flex; align-items:center; justify-content:center; width:30px; height:30px; border-radius:50%;
    background: linear-gradient(135deg,#f0d68a,#8a6328); color:#0a0a0a; font-family:'Cinzel',serif; font-weight:700; font-size:.82rem; margin-right:.7rem; flex-shrink:0; box-shadow:0 2px 8px rgba(0,0,0,.4); }
.faq-q .module-num { vertical-align: middle; }

.pain-hook { max-width: 820px; margin: 0 auto; }
.pain-hook .pain-list { list-style:none; margin: 1.5rem 0; display:grid; gap:.8rem; }
.pain-hook .pain-list li { padding:1rem 1.2rem 1rem 3rem; position:relative; background:rgba(122,31,31,0.08); border-left:3px solid #7a1f1f; border-radius:4px; color:rgba(255,255,255,.82); font-weight:300; }
.pain-hook .pain-list li::before { content:'✗'; position:absolute; left:1rem; top:1rem; color:#c0584a; font-weight:700; }
.gain-list { list-style:none; margin:1.5rem 0; display:grid; gap:.8rem; }
.gain-list li { padding:1rem 1.2rem 1rem 3rem; position:relative; background:rgba(200,160,80,0.06); border-left:3px solid #c8a050; border-radius:4px; color:rgba(255,255,255,.88); font-weight:300; }
.gain-list li::before { content:'⚓'; position:absolute; left:1rem; top:1rem; color:#c8a050; }
.gain-list li strong, .pain-list li strong { color:#f0d68a; }

/* ===================================================================
   LINK-CARDS: Gold-Optik + Schatzkarten-Flip beim Hover
   =================================================================== */
.link-card { position: relative; overflow: hidden; }
.link-card strong { color: #f0d68a; }
.link-card > span { color: rgba(255,255,255,0.62); }
.link-card > *:not(.lc-map) { transition: opacity 0.25s ease; }
.link-card:hover > *:not(.lc-map) { opacity: 0; }

.lc-map {
    position: absolute; inset: 0; z-index: 4; border-radius: inherit;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; gap: 0.4rem; padding: 1.2rem;
    background: linear-gradient(135deg, #fff4cf 0%, #f0d68a 30%, #c8a050 70%, #a8801f 100%);
    box-shadow: inset 0 0 0 2px rgba(42,28,12,0.45), inset 0 0 0 5px rgba(42,28,12,0.12);
    opacity: 0; transform: rotateY(100deg); transform-origin: center;
    transition: opacity 0.3s ease, transform 0.6s cubic-bezier(.2,.85,.3,1);
    pointer-events: none;
}
.lc-map .lc-map-title { font-family: 'Pirata One', cursive; font-size: 1.4rem; line-height: 1.1; color: #2a1c0c; }
.lc-map .lc-map-route { width: 62%; height: 0; border-bottom: 2px dashed #4a3416; margin: 0.1rem 0; }
.lc-map .lc-map-sub { font-family: 'Cinzel', serif; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: #4a3416; font-weight: 700; }
.lc-map .lc-map-x { font-size: 1.3rem; color: #7a1f1f; font-weight: 700; margin-top: 0.1rem; }
.link-card:hover .lc-map { opacity: 1; transform: rotateY(0); }
.link-card:hover { border-color: rgba(200,160,80,0.6) !important; box-shadow: 0 18px 42px rgba(0,0,0,0.5), 0 0 32px rgba(200,160,80,0.18); }
