:root {
    --primary: #c5a059;
    --dark: #000000;
    --dark-alt: #0a0a0a;
    --white: #ffffff;
    --gray: #86868b;
    --accent: #c5a059;
}

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

a, a:link, a:visited, a:hover, a:active {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

body {
    background: var(--dark);
    color: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --- HEADER & NAV --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary);
}

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

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--white);
}

/* --- SCROLL SYSTEM --- */
.scroller {
    width: 100%;
}

.scroll-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- TYPOGRAPHY & COMMON --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }
}

.giant-headline {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -4px;
    margin-bottom: 20px;
}

.sub-headline {
    font-size: 1.5rem;
    color: var(--gray);
    max-width: 600px;
}

.section-headline {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

.accent {
    color: var(--primary);
}

.dark-text {
    color: var(--dark);
}

/* --- BUTTONS & CTAs --- */
.cta-btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    cursor: pointer;
}

.cta-btn-primary, .cta-btn-primary:link, .cta-btn-primary:visited {
    background: var(--primary) !important;
    color: var(--white) !important;
    border: 1px solid var(--primary) !important;
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
}

.cta-btn-primary:hover {
    background: #b38d4a !important;
    border-color: #b38d4a !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.4);
    color: var(--white) !important;
}

.cta-btn-outline, .cta-btn-outline:link, .cta-btn-outline:visited {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(10px);
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--white) !important;
    transform: translateY(-3px);
    color: var(--white) !important;
}

.nav-cta, .nav-cta:link, .nav-cta:visited {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 12px 24px !important;
    border-radius: 30px !important;
    display: inline-block !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    border: 1px solid var(--primary) !important;
    margin-left: 25px;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
}

.nav-cta:hover {
    background: transparent !important;
    color: var(--primary) !important;
    box-shadow: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1000;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    z-index: 1100;
}

.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 30px;
    transition: background 0.3s, border-color 0.3s;
    backdrop-filter: blur(10px);
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1200;
}

.lang-dropdown-toggle:hover {
    background: rgba(255,255,255,0.13);
    border-color: rgba(255,255,255,0.3);
}

.lang-dropdown-toggle img {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.lang-chevron {
    color: rgba(255,255,255,0.5);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.lang-dropdown.open .lang-chevron {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(15,15,15,0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    overflow: hidden;
    min-width: 140px;
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
    z-index: 2000;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.lang-dropdown.open .lang-dropdown-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 18px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.55);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    text-align: left;
}

.lang-option:hover {
    background: rgba(255,255,255,0.06);
    color: var(--white);
}

.lang-option.active {
    color: var(--primary);
    font-weight: 700;
}

.lang-option img {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

/* --- BACKGROUNDS --- */
.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/hero.png') no-repeat center center/cover;
    z-index: -1;
}

.image-bg-fixed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.bg-dark {
    background: var(--dark-alt);
}

.bg-white {
    background: var(--white);
}

.bg-gold {
    background: var(--primary);
}

.bg-darkest {
    background: #000;
}

/* --- LAYOUTS & COMPONENTS --- */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.centered-content {
    text-align: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Digital Section Components */
.intro-p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.proc-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, background 0.3s;
}

.proc-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.proc-num {
    display: block;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 5px;
    opacity: 0.6;
}

.proc-item h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.proc-item p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.4;
}

.glass-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s;
}

.glass-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Business Section Components */
.business-timeline {
    display: flex;
    justify-content: space-between;
    margin: 60px 0;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.business-timeline::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    z-index: 1;
    opacity: 0.3;
}

.time-node {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    transition: transform 0.3s;
}

.time-node:hover {
    transform: scale(1.05);
}

.node-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: var(--primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
    position: relative;
    z-index: 2;
}

.stat-card {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.stat-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.stat-card p {
    color: var(--gray);
}

.note-business {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 40px;
    font-style: italic;
}

.business-info-text {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.business-meta-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.business-rules {
    width: 100%;
}

.business-rules-reveal {
    width: 100%;
}

.rules-header {
    margin-bottom: 60px;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.rule-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 50px 40px;
    border-radius: 30px;
    border: 1px solid rgba(197, 160, 89, 0.15);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.rule-item:hover {
    transform: translateY(-10px);
    background: rgba(197, 160, 89, 0.03);
    border-color: var(--primary);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.rule-icon {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 15px rgba(197, 160, 89, 0.3));
}

.rule-item h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rule-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
}

/* Monteur Section Components */
.overlay-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.monteur-box {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 30px;
    max-width: 600px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.advantage-grid {
    margin-top: 30px;
}

.adv-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.adv-icon {
    font-size: 1.2rem;
}

.adv-item p {
    font-size: 1.1rem;
    color: var(--gray);
}

.individual-offers {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.individual-offers h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

/* Privat Section Components */
.payment-marquee {
    position: absolute;
    top: 80px;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    opacity: 0.15;
    z-index: 0;
}

.marquee-content {
    display: inline-block;
    animation: marquee 40s linear infinite;
    font-size: clamp(4rem, 15vw, 10rem);
    font-weight: 900;
    color: var(--white);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.large-p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.payment-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.p-detail {
    background: rgba(0, 0, 0, 0.05);
    padding: 30px;
    border-radius: 20px;
}

.p-detail strong {
    display: block;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.p-detail span {
    font-size: 0.9rem;
    color: var(--dark);
    opacity: 0.6;
}

.payment-notes {
    margin-top: 40px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Help Section Components */
.help-desc {
    font-size: 1.4rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 40px;
}

.call-btn-modern {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -2px;
    transition: color 0.3s;
}

.call-btn-modern:hover {
    color: var(--primary);
}

.support-info-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.info-tab {
    text-align: left;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}

.info-tab strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-tab span {
    font-size: 0.9rem;
    color: var(--gray);
}

.accent-border {
    border-left: 3px solid var(--primary);
}

/* --- ANIMATIONS --- */
.headline-wrap,
.text-reveal,
.image-reveal,
.centered-content,
.overlay-content,
.process-grid,
.business-timeline,
.monteur-box,
.payment-details-grid,
.support-info-tabs {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* --- FOOTER --- */
footer {
    background: #111;
    color: var(--white);
    padding: 80px 0 20px;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-info .logo {
    margin-bottom: 20px;
}

.footer-links h4,
.footer-legal h4 {
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-legal a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

.legal-content p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #999;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
}

.restaurant-info {
    margin: 20px 0;
    line-height: 1.6;
}

.highlight-note {
    font-style: italic;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .scroll-section {
        height: auto;
        min-height: 100vh;
    }

    .content-split {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 80px 0;
    }

    .sticky-container {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 120px;
    }

    .giant-headline {
        font-size: 3.5rem;
        letter-spacing: -2px;
    }

    .section-headline {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .business-timeline {
        flex-direction: column;
        gap: 40px;
        margin: 40px 0;
    }

    .business-timeline::after {
        display: none;
    }

    .payment-details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .support-info-tabs {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .rules-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rule-item {
        padding: 30px 20px;
    }

    .centered-content {
        padding: 60px 0;
    }
}