/* ════════════════════════════════════
   ROOT & RESET
════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    cursor: none !important;
}

:root {
    --black: #0a0a0a;
    --deep: #0d0d0d;
    --card: #121212;
    --card2: #161616;
    --border: rgba(214, 180, 100, 0.12);
    --border2: rgba(214, 180, 100, 0.25);
    --gold-brand: #d4af37;
    --gold-light: #fdf0a6;
    --gold-dark: #997a15;
    --gold: var(--gold-brand);
    --gold2: var(--gold-light);
    --gold3: var(--gold-dark);
    --white: #ffffff;
    --text-muted: #a3a3a3;
    --muted2: #8a8a8a;
    --font-main: 'Inter', sans-serif;
    --font-b: 'Outfit', sans-serif;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none !important;
}

/* ── CUSTOM GOLD CURSOR ── */
#cursor-outer {
    position: fixed;
    width: 35px;
    height: 35px;
    border: 1px solid var(--gold-brand);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, width 0.3s, height 0.3s, background 0.3s;
}

#cursor-inner {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--gold-brand);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

.cursor-hover {
    transform: translate(-50%, -50%) scale(1.6) !important;
    background: rgba(212, 175, 55, 0.15);
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-brand);
    border-radius: 3px;
}

#particles-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

/* ════════════════════════════════════
   1. NAVIGATION
════════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 70px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s ease;
}

.logo-wrap {
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 5px;
    cursor: none !important;
}

.logo-bc {
    font-size: 26px;
    font-weight: 700;
    color: var(--gold-brand);
    letter-spacing: 0.5px;
}

.logo-cars {
    font-size: 26px;
    font-weight: 300;
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #d1d1d1;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.4s ease;
    cursor: none !important;
}

.nav-links a:hover {
    color: var(--gold-light);
}

/* ════════════════════════════════════
   BUTTON SYSTEM
════════════════════════════════════ */
.nav-btn-call,
.btn-primary,
.band-btn-gold,
.btn-submit,
.btn-secondary,
.band-btn-dark,
.btn-google {
    cursor: none !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 4px;
    font-family: var(--font-main);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.nav-btn-call,
.btn-primary,
.band-btn-gold,
.btn-submit {
    background: linear-gradient(90deg, var(--gold-brand) 0%, var(--gold-light) 50%, var(--gold-brand) 100%);
    background-size: 200% auto;
    color: #000;
    border: none;
    font-weight: 700;
    transition: all 0.7s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.nav-btn-call:hover,
.btn-primary:hover,
.band-btn-gold:hover,
.btn-submit:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.btn-secondary,
.band-btn-dark {
    background: rgba(0, 0, 0, 0.6);
    color: var(--gold-light);
    border: 1px solid var(--gold-brand);
    font-weight: 500;
    backdrop-filter: blur(4px);
    transition: color 0.8s ease, transform 0.3s ease;
}

.btn-secondary::before,
.band-btn-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-brand) 0%, var(--gold-light) 50%, var(--gold-brand) 100%);
    transition: left 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-secondary:hover,
.band-btn-dark:hover {
    color: #000;
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-secondary:hover::before,
.band-btn-dark:hover::before {
    left: 0;
}

.nav-btn-call {
    padding: 12px 30px;
    font-size: 14px;
}

.btn-primary,
.btn-secondary {
    padding: 18px 36px;
    font-size: 16px;
}

.band-btn-gold,
.band-btn-dark {
    padding: 16px 36px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn-submit {
    width: 100%;
    padding: 22px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ════════════════════════════════════
   HERO BEREICH
════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    padding: 0 70px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url('Headerbg.png');
    background-size: cover;
    background-position: center 20%;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8, 8, 8, 0.98) 0%, rgba(8, 8, 8, 0.85) 35%, rgba(8, 8, 8, 0.3) 70%, rgba(8, 8, 8, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 750px;
    margin-top: 50px;
}

.hero-headline {
    font-size: clamp(65px, 8vw, 96px);
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.hero-headline .gold {
    color: var(--gold-brand);
    display: block;
}

.hero-headline .white {
    color: var(--white);
    display: block;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.hero-sub {
    font-size: 26px;
    font-weight: 400;
    color: #eaeaea;
    margin-bottom: 50px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
}

.simulated-cursor {
    position: absolute;
    left: 140px;
    top: 10px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    animation: cursorMove 6s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

.simulated-cursor-ripple {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold-brand);
    border-radius: 50%;
    opacity: 0;
    animation: cursorClick 6s infinite;
}

.simulated-cursor-icon {
    position: relative;
    width: 32px;
    height: 32px;
    fill: none;
    stroke: var(--white);
    stroke-width: 2;
    transform: rotate(-15deg);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.8));
    animation: cursorPress 6s infinite;
}

@keyframes cursorMove {
    0% {
        transform: translate(150px, 200px);
        opacity: 0;
    }

    10% {
        transform: translate(0, 0);
        opacity: 1;
    }

    40% {
        transform: translate(0, 0);
        opacity: 1;
    }

    50% {
        transform: translate(100px, 200px);
        opacity: 0;
    }

    100% {
        transform: translate(150px, 200px);
        opacity: 0;
    }
}

@keyframes cursorClick {

    0%,
    15% {
        transform: scale(0.2);
        opacity: 0;
    }

    16% {
        transform: scale(0.2);
        opacity: 1;
    }

    35% {
        transform: scale(2.5);
        opacity: 0;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes cursorPress {

    0%,
    14% {
        transform: rotate(-15deg) scale(1);
    }

    16% {
        transform: rotate(-15deg) scale(0.85);
    }

    20% {
        transform: rotate(-15deg) scale(1);
    }

    100% {
        transform: rotate(-15deg) scale(1);
    }
}

.static-star {
    position: absolute;
    right: 60px;
    bottom: 60px;
    z-index: 10;
    width: 45px;
    height: 45px;
    opacity: 0.6;
}

.static-star svg {
    width: 100%;
    height: 100%;
    fill: var(--gold-brand);
}

/* MARQUEE */
.marquee-wrap {
    position: relative;
    z-index: 5;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    background: rgba(214, 180, 100, .03);
    font-family: var(--font-b);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 28s linear infinite;
}

.marquee-item {
    font-size: 15px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0 40px;
    font-weight: 400;
    white-space: nowrap;
    opacity: .75;
}

.marquee-sep {
    color: var(--border2);
    font-size: 6px;
    vertical-align: middle;
    opacity: .5;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* SECTIONS */
.section {
    padding: 120px 70px;
    position: relative;
    z-index: 5;
    font-family: var(--font-b);
}

.section-bg {
    background: var(--card2);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.1s ease, transform 1.1s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-150px);
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(150px);
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.s-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 18px;
}

.s-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--gold3));
}

.s-title {
    font-size: clamp(40px, 6vw, 84px);
    font-weight: 300;
    line-height: .92;
    letter-spacing: -.5px;
}

.s-title .gold {
    color: var(--gold);
    font-weight: 500;
}

.s-title em {
    font-style: italic;
    color: rgba(245, 240, 232, .35);
}

.gold-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 28px 0;
}

/* DUAL BAND */
.dual-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    position: relative;
    z-index: 5;
    font-family: var(--font-b);
}

.band-cell {
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: none !important;
}

.band-cell:hover {
    transform: translateY(-6px);
}

.band-cell::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s;
    pointer-events: none;
    z-index: -1;
}

.band-sell {
    background: linear-gradient(135deg, var(--gold3), var(--gold));
    color: var(--black);
}

.band-sell:hover::after {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    opacity: 1;
}

.band-buy {
    background: var(--card2);
    color: var(--white);
    border-left: 1px solid var(--border);
}

.band-buy:hover::after {
    background: radial-gradient(circle at top right, rgba(214, 180, 100, 0.08), transparent);
    opacity: 1;
}

.band-bg-text {
    position: absolute;
    bottom: -30px;
    right: -10px;
    font-size: clamp(90px, 10vw, 140px);
    font-weight: 700;
    color: rgba(0, 0, 0, .1);
    pointer-events: none;
    user-select: none;
    line-height: 1;
    letter-spacing: -3px;
    white-space: nowrap;
    z-index: 0;
}

.band-buy .band-bg-text {
    color: rgba(214, 180, 100, .05);
}

.band-tag {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: .5;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.band-title {
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 700;
    line-height: .9;
    letter-spacing: -.5px;
    position: relative;
    z-index: 1;
    margin: 24px 0 20px;
}

.band-desc {
    font-size: 14px;
    line-height: 1.75;
    opacity: .7;
    max-width: 340px;
    margin-bottom: 36px;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* PROCESS */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 64px;
}

.process-card {
    background: var(--card);
    padding: 56px 44px;
    position: relative;
    overflow: hidden;
    transition: all .7s ease;
    cursor: none !important;
}

.process-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold3));
    transition: width .7s ease;
}

.process-card:hover {
    background: #0f0f0f;
    transform: translateY(-3px);
}

.process-card:hover::before {
    width: 100%;
}

.process-num {
    font-size: 88px;
    font-weight: 700;
    color: rgba(214, 180, 100, .07);
    line-height: 1;
    margin-bottom: 28px;
    letter-spacing: -4px;
    transition: all 0.7s ease;
}

.process-card:hover .process-num {
    color: var(--gold-light);
    text-shadow: 0 0 25px rgba(214, 180, 100, 0.4);
}

.process-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 22px;
    background: rgba(214, 180, 100, .04);
}

.process-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
}

.process-desc {
    font-size: 14px;
    color: var(--muted2);
    line-height: 1.8;
    font-weight: 300;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 64px;
}

.service-card {
    background: var(--card);
    padding: 40px 32px;
    transition: all .5s ease;
    position: relative;
    overflow: hidden;
    cursor: none !important;
}

.service-card:hover {
    background: #0f0f0f;
    transform: translateY(-2px);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to bottom, rgba(214, 180, 100, .08), transparent);
    transition: height .5s ease;
}

.service-card:hover::after {
    height: 100%;
}

.service-icon {
    font-size: 24px;
    margin-bottom: 18px;
    display: block;
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 13px;
    color: var(--muted2);
    line-height: 1.75;
    font-weight: 300;
}

.service-arrow {
    margin-top: 20px;
    font-size: 18px;
    color: var(--gold3);
    opacity: 0;
    transform: translateX(-8px);
    transition: all .4s ease;
    display: block;
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* WHY US */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
    margin-top: 80px;
}

.why-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    transition: border-color .5s ease;
    cursor: none !important;
}

.why-item:hover {
    border-bottom-color: rgba(214, 180, 100, .5);
}

.why-num {
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
}

.why-text-title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 6px;
}

.why-text-desc {
    font-size: 14px;
    color: var(--muted2);
    line-height: 1.75;
    font-weight: 300;
}

.gold-card {
    background: linear-gradient(135deg, var(--gold3) 0%, var(--gold) 50%, var(--gold2) 100%);
    padding: 60px 52px;
    color: var(--black);
    border-radius: 4px 4px 0 0;
    position: relative;
}

.gold-card-big {
    font-size: 96px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -3px;
}

.dark-sub-card {
    background: var(--card2);
    padding: 28px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border);
    border-top: none;
}

.location-card {
    background: var(--card);
    padding: 22px 40px;
    border: 1px solid var(--border);
    border-top: none;
    display: flex;
    gap: 14px;
    align-items: center;
}

.map-container {
    width: 100%;
    height: 250px;
    border: 1px solid var(--border);
    border-top: none;
    filter: grayscale(1) invert(1) opacity(0.5);
    transition: filter 0.5s ease;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
}

.map-container:hover {
    filter: grayscale(0.5) invert(1) opacity(0.8);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* TESTIMONIALS SECTION */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--card);
    padding: 40px;
    border: 1px solid var(--border);
    position: relative;
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-brand);
}

.testi-stars {
    color: var(--gold-brand);
    margin-bottom: 15px;
    font-size: 14px;
}

.testi-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--white);
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 300;
}

.testi-author {
    font-weight: 600;
    font-size: 14px;
    color: var(--gold-light);
}

.testi-author span {
    display: block;
    font-size: 11px;
    color: var(--muted2);
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 4px;
}

/* QUOTE */
.quote-section {
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 100px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-text {
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
}

.quote-text .gold-word {
    color: var(--gold);
    font-weight: 600;
    font-style: normal;
}

/* CONTACT FORM */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-top: 80px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    transition: border-color .4s ease;
    cursor: none !important;
}

.contact-detail:hover {
    border-bottom-color: rgba(214, 180, 100, .4);
}

.c-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(214, 180, 100, .03);
}

.contact-form {
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    overflow: hidden;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.form-group {
    position: relative;
    border: 1px solid var(--border);
    background: var(--card);
    margin-top: -1px;
    margin-left: -1px;
}

.form-group label {
    display: block;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted2);
    padding: 14px 18px 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--white);
    padding: 10px 18px 18px;
    outline: none;
    font-family: var(--font-b);
    font-size: 15px;
    cursor: none !important;
}

.form-group select option {
    background: #000;
}

/* FOOTER */
footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 60px 70px 40px;
    font-family: var(--font-b);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    padding-bottom: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.footer-links a {
    font-size: 12px;
    color: var(--muted2);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: none !important;
}

/* WA FLOAT */
.wa-float {
    position: fixed;
    bottom: 36px;
    right: 36px;
    z-index: 600;
    width: 60px;
    height: 60px;
    background: #1db954;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(29, 185, 84, .35);
    cursor: none !important;
    transition: transform .3s;
}

.wa-float:hover {
    transform: scale(1.1);
}

/* FLY-UP MAGIC BUTTONS */
.nav-right-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-ctas {
    display: flex;
    gap: 12px;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

nav.show-magic-btns .sticky-ctas {
    max-width: 350px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.nav-btn-gold,
.nav-btn-dark-gold {
    padding: 12px 20px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    cursor: none !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    transition: all 0.5s ease;
}

.nav-btn-gold {
    background: linear-gradient(90deg, var(--gold-brand) 0%, var(--gold-light) 50%, var(--gold-brand) 100%);
    background-size: 200% auto;
    color: #000;
    box-shadow: 0 4px 15px rgba(214, 180, 100, 0.15);
}

.nav-btn-dark-gold {
    background: linear-gradient(90deg, var(--gold-dark) 0%, #b8973b 50%, var(--gold-dark) 100%);
    background-size: 200% auto;
    color: var(--white);
    border: 1px solid var(--gold-brand);
}

.nav-btn-gold:hover,
.nav-btn-dark-gold:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 180, 100, 0.4);
}

/* ════════════════════════════════════
   CUSTOM COOKIE BANNER
════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--border);
    z-index: 9999;
    padding: 20px 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: var(--font-main);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    gap: 30px;
}

.cookie-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

.cookie-content a {
    color: var(--gold-brand);
    text-decoration: none;
    transition: color 0.3s;
}

.cookie-content a:hover {
    color: var(--gold-light);
}

.cookie-btns {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* Versteckt spezielle Links auf dem Desktop */
/* 1. Standardmäßig überall ausblenden (für Desktop) */
.mobile-only {
    display: none !important;
}

/* 2. Nur auf dem Handy (bis 900px) erzwingen wir die Anzeige */
@media (max-width: 900px) {
    .nav-links .mobile-only {
        display: block !important;
    }
}

/* RESPONSIVE DESIGN */
@media (min-width: 1920px) {

    nav,
    .hero,
    .section,
    .dual-band,
    footer {
        padding-left: calc(50vw - 800px);
        padding-right: calc(50vw - 800px);
    }

    .hero-headline {
        font-size: 110px;
    }

    .s-title {
        font-size: 90px;
    }
}

@media (max-width: 1440px) {
    nav {
        padding: 25px 50px;
    }

    .hero,
    .section,
    .dual-band,
    footer {
        padding-left: 50px;
        padding-right: 50px;
    }

    .hero-headline {
        font-size: clamp(55px, 7vw, 85px);
    }

    .contact-grid,
    .why-grid {
        gap: 60px;
    }

    .band-cell {
        padding: 60px 50px;
    }
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .process-card {
        padding: 40px 25px;
    }

    .process-num {
        font-size: 60px;
        margin-bottom: 15px;
    }

    .hero-btns {
        gap: 15px;
    }

    .simulated-cursor {
        left: 50px;
        top: -20px;
        transform: scale(0.8);
    }
}

@media (max-width: 900px) {
    nav {
        padding: 15px 25px;
    }

    .nav-btn-call,
    .sticky-ctas {
        display: none !important;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger span {
        width: 25px;
        height: 2px;
        background: var(--gold-brand);
        transition: 0.3s;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 24px;
        padding: 15px;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        padding: 0 25px;
        min-height: 700px;
    }

    .hero-headline {
        font-size: clamp(45px, 10vw, 60px);
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .simulated-cursor,
    .static-star {
        display: none !important;
    }

    .section {
        padding: 80px 25px;
    }

    .s-title {
        font-size: clamp(36px, 7vw, 55px);
    }

    .dual-band {
        grid-template-columns: 1fr;
        padding: 0 25px;
        gap: 20px;
    }

    .band-cell {
        padding: 50px 30px;
        border-radius: 8px;
        border: 1px solid var(--border);
    }

    .band-bg-text {
        font-size: clamp(50px, 14vw, 80px) !important;
        right: 15px !important;
        bottom: 10px !important;
        letter-spacing: 0 !important;
        opacity: 0.08 !important;
    }

    .process-grid,
    .services-grid,
    .why-grid,
    .contact-grid,
    .form-row,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .slide-in-left,
    .slide-in-right {
        transform: translateY(40px);
        opacity: 0;
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .slide-in-left.visible,
    .slide-in-right.visible {
        transform: translateY(0);
        opacity: 1;
    }

    #cursor-outer,
    #cursor-inner {
        display: none !important;
    }

    html,
    body {
        cursor: auto !important;
    }

    .cookie-banner {
        padding: 20px 25px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-btns {
        width: 100%;
        justify-content: center;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    nav {
        padding: 15px 20px;
    }

    .logo-bc,
    .logo-cars {
        font-size: 22px;
    }

    .hero {
        padding: 0 20px;
        min-height: 600px;
    }

    .hero-headline {
        font-size: clamp(40px, 11vw, 55px);
        margin-bottom: 15px;
    }

    .hero-sub {
        font-size: 18px;
        margin-bottom: 30px;
        line-height: 1.4;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
    }

    .section {
        padding: 60px 20px;
    }

    .band-cell {
        padding: 50px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .quote-section {
        padding: 70px 20px;
    }

    .quote-text {
        font-size: clamp(20px, 6vw, 28px);
    }

    .gold-card {
        padding: 40px 30px;
    }

    .gold-card-big {
        font-size: 70px;
    }

    .dark-sub-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 25px 30px;
    }

    .dark-sub-label {
        text-align: left;
    }

    .contact-detail {
        flex-direction: row;
        align-items: center;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 400px) {
    .hero-headline {
        font-size: 38px;
    }

    .logo-bc,
    .logo-cars {
        font-size: 20px;
    }

    .process-card {
        padding: 30px 20px;
    }

    .process-num {
        font-size: 50px;
    }

    .contact-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}



/* ════════════════════════════════════
   SHOWROOM / UNSERE AUTOS
════════════════════════════════════ */
.showroom-header {
    padding: 180px 70px 60px;
    text-align: center;
    position: relative;
    z-index: 5;
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 70px 120px;
    position: relative;
    z-index: 5;
}

.car-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.5s ease, border-color 0.5s ease;
    cursor: none !important;
    display: flex;
    flex-direction: column;
}

.car-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-brand);
}

.car-image-wrap {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.car-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.car-card:hover .car-image {
    transform: scale(1.05);
    /* Edler Zoom */
}

/* Off-Market Tag / Status Tag */
.car-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(5px);
    color: var(--gold-brand);
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid var(--gold-dark);
    border-radius: 4px;
    z-index: 3;
}

.car-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: var(--card);
    z-index: 2;
}

.car-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.car-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
    border-bottom: 1px solid var(--border);
    padding-bottom: 25px;
}

.car-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-brand);
    margin-bottom: 25px;
    margin-top: auto;
    /* Drückt den Preis nach unten */
}

/* Responsive */
@media (max-width: 1440px) {

    .showroom-header,
    .car-grid {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 1100px) {
    .car-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .showroom-header {
        padding: 140px 25px 40px;
    }

    .car-grid {
        grid-template-columns: 1fr;
        padding: 0 25px 80px;
        gap: 40px;
    }
}