/* ============================================
   HIGH DETAILING UZWIL
   Vice City · West Coast Chill Vibe
   ============================================ */

/* The actual GTA Pricedown font — loaded locally */
@font-face {
    font-family: 'Pricedown';
    src: url('../fonts/pricedown-bl.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Vice City Palette */
    --night: #0a0414;
    --bg: #110820;
    --bg-card: #1a0e2e;
    --bg-elev: #241640;
    --border: rgba(255, 107, 157, 0.15);
    --border-strong: rgba(255, 107, 157, 0.4);

    /* Hot pinks (Vice City signature) */
    --pink: #ff2d92;
    --pink-soft: #ff6bb5;
    --pink-deep: #c91a6a;

    /* Miami teal/cyan */
    --teal: #00d9e0;
    --teal-bright: #06ffa5;

    /* Sunset palette */
    --sunset-1: #ff6b35;
    --sunset-2: #ff8c42;
    --sunset-3: #ffc93c;
    --sunset-peach: #ffb088;

    /* Deep purples */
    --purple: #6b1fba;
    --purple-deep: #2d0a4a;

    /* Cream / warm tones */
    --cream: #fff5e1;
    --warm-white: #faf0d9;

    /* Text */
    --text: #fff5e1;
    --text-dim: #d4b8e6;
    --text-muted: #8e7aa3;

    /* Fonts */
    --font-display: 'Pricedown', 'Bebas Neue', 'Anton', sans-serif;
    --font-head: 'Pricedown', 'Bebas Neue', 'Anton', sans-serif;
    --font-head-alt: 'Bebas Neue', 'Anton', sans-serif;
    --font-script: 'Pricedown', 'Bebas Neue', 'Anton', sans-serif;
    --font-body: 'Outfit', 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Effects */
    --glow-pink: 0 0 32px rgba(255, 45, 146, 0.35);
    --glow-teal: 0 0 32px rgba(0, 217, 224, 0.3);
    --glow-sunset: 0 0 40px rgba(255, 140, 66, 0.3);

    /* Gradients */
    --sunset-gradient: linear-gradient(135deg, #ff006e 0%, #ff6b35 35%, #ffc93c 70%, #06ffa5 100%);
    --vice-gradient: linear-gradient(135deg, #ff2d92, #6b1fba);
    --miami-gradient: linear-gradient(135deg, #00d9e0, #ff2d92);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--night);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; border: none; background: none; color: inherit; cursor: pointer; }

::selection {
    background: var(--pink);
    color: var(--cream);
}

/* ============ LOADING SCREEN ============ */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--night);
    z-index: 99998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(255, 45, 146, 0.25), transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(107, 31, 186, 0.3), transparent 50%),
        linear-gradient(180deg, #0a0414 0%, #2d0a4a 100%);
}

/* NEW loading animation — Uzwil map waking up from the dark */
.loading-map {
    position: absolute;
    inset: 0;
    background: url('../images/map-uzwil.png') center / cover no-repeat;
    filter: brightness(0.1) saturate(0.25) contrast(1.05);
    animation: mapLightUp 5s ease-in forwards;
}

.loading-map::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(6, 4, 14, 0.25) 0%, rgba(6, 4, 14, 0.7) 100%);
}

/* warm street-lights that flick on one by one */
.loading-map-lights {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.loading-map-lights span {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 220, 130, 0.95), rgba(255, 165, 45, 0.5) 50%, transparent 72%);
    box-shadow: 0 0 16px 5px rgba(255, 185, 75, 0.6);
    opacity: 0;
    animation: lightOn 0.7s ease forwards;
}

.loading-map-lights span:nth-child(1) { left: 24%; top: 38%; animation-delay: 0.8s; }
.loading-map-lights span:nth-child(2) { left: 46%; top: 28%; animation-delay: 1.3s; }
.loading-map-lights span:nth-child(3) { left: 63%; top: 42%; animation-delay: 1.8s; }
.loading-map-lights span:nth-child(4) { left: 34%; top: 56%; animation-delay: 2.3s; }
.loading-map-lights span:nth-child(5) { left: 71%; top: 60%; animation-delay: 2.8s; }
.loading-map-lights span:nth-child(6) { left: 52%; top: 70%; animation-delay: 3.3s; }
.loading-map-lights span:nth-child(7) { left: 17%; top: 64%; animation-delay: 3.7s; }
.loading-map-lights span:nth-child(8) { left: 80%; top: 34%; animation-delay: 4.1s; }

/* GTA-style rotating loading spinner (bottom-right) */
.loading-spinner {
    position: absolute;
    bottom: 40px;
    right: 48px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 60%,
        var(--pink-soft) 82%,
        var(--cream) 100%);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 5px));
            mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 5px));
    filter: drop-shadow(0 0 10px rgba(255, 45, 146, 0.6));
    animation: spinGta 0.9s linear infinite;
    z-index: 3;
}

@media (max-width: 768px) {
    .loading-spinner { width: 42px; height: 42px; bottom: 28px; right: 28px; }
}

.loading-artwork { display: none; } /* Removed gamey collage */

.loading-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.loading-logo-img {
    max-width: 280px;
    margin: 0 auto 32px;
    filter: drop-shadow(0 0 40px rgba(255, 45, 146, 0.5));
    animation: logoFloat 4s ease-in-out infinite;
}

/* ============================================
   BRAND TEXT — Recreated from the logo using Pricedown
   White fill + thick black outline + drop shadow
   ============================================ */
.brand-text {
    display: inline-block;
    font-family: var(--font-display);
    line-height: 0.85;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: lowercase;
    position: relative;
    -webkit-text-stroke: 6px #000;
    paint-order: stroke fill;
    text-shadow:
        8px 8px 0 #000,
        12px 12px 0 rgba(0,0,0,0.4),
        0 0 48px rgba(255, 45, 146, 0.4);
}

.brand-line {
    display: block;
    line-height: 0.78;
}

.brand-uzwil-tag {
    position: absolute;
    top: -8%;
    right: -4%;
    font-family: var(--font-display);
    font-size: 0.22em;
    color: #f5e8d3;
    background: transparent;
    -webkit-text-stroke: 3px #000;
    paint-order: stroke fill;
    letter-spacing: 4px;
    transform: rotate(-2deg);
    text-shadow:
        3px 3px 0 #000,
        0 0 16px rgba(255, 193, 7, 0.4);
}

/* ============================================
   LOADING BRAND
   ============================================ */
.loading-brand {
    font-size: clamp(60px, 12vw, 140px);
    margin-bottom: 24px;
    animation: logoFloat 4s ease-in-out infinite;
}

.loading-brand .brand-uzwil-tag {
    top: -4%;
    font-size: 0.18em;
}

/* ============================================
   NAV BRAND
   ============================================ */
.nav-brand {
    font-size: 22px;
    letter-spacing: 1px;
    line-height: 0.78;
    -webkit-text-stroke: 2.5px #000;
    text-shadow: 3px 3px 0 #000, 0 0 16px rgba(255, 45, 146, 0.3);
}

.nav-brand-line {
    display: block;
    line-height: 0.78;
}

.navbar.scrolled .nav-brand {
    font-size: 18px;
    -webkit-text-stroke: 2px #000;
}

/* ============================================
   FOOTER BRAND
   ============================================ */
.footer-brand {
    font-size: 56px;
    margin-bottom: 16px;
    -webkit-text-stroke: 4px #000;
    text-shadow: 5px 5px 0 #000, 0 0 24px rgba(255, 45, 146, 0.3);
}

.loading-subtitle {
    font-family: var(--font-script);
    font-size: 32px;
    color: var(--sunset-3);
    margin-top: 8px;
    letter-spacing: 1px;
    font-style: italic;
}

.loading-location {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 6px;
    margin-top: 4px;
    text-transform: uppercase;
}

.loading-bar-wrap { margin-top: 64px; }

.loading-bar {
    width: 100%;
    max-width: 480px;
    height: 2px;
    background: rgba(255, 245, 225, 0.1);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.loading-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--sunset-gradient);
    transition: width 0.4s ease;
    box-shadow: 0 0 16px rgba(255, 45, 146, 0.6);
}

.loading-info {
    display: flex;
    justify-content: space-between;
    max-width: 480px;
    margin: 16px auto 0;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.loading-percent { color: var(--pink-soft); font-weight: 700; }

.loading-rotating-tip {
    margin-top: 48px;
    font-family: var(--font-script);
    font-style: italic;
    color: var(--text-dim);
    font-size: 22px;
    min-height: 28px;
    transition: opacity 0.5s;
}

.loading-press {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 4px;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 2;
    text-transform: uppercase;
}

.loading-press.visible {
    opacity: 1;
    animation: softPulse 2s ease-in-out infinite;
}

.key-icon {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 245, 225, 0.08);
    border: 1px solid rgba(255, 245, 225, 0.2);
    color: var(--cream);
    font-weight: 700;
    border-radius: 4px;
    margin: 0 4px;
}

/* ============ NAVIGATION ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 40px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(10, 4, 20, 0.85) 0%, rgba(10, 4, 20, 0.3) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 14px 40px;
    background: rgba(10, 4, 20, 0.95);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.03);
}

.nav-logo-img {
    height: 54px;
    width: 54px;
    border-radius: 50%;
    object-fit: cover;
    transition: height 0.3s ease, width 0.3s ease;
}

.navbar.scrolled .nav-logo-img {
    height: 46px;
    width: 46px;
}

.nav-logo-text {
    display: none;
}

.nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-link {
    position: relative;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-dim);
    transition: color 0.3s;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--pink);
}

.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { width: calc(100% - 40px); }

.nav-link.active {
    color: var(--pink-soft);
}

.nav-link.active::after { width: calc(100% - 40px); }

.nav-cta {
    margin-left: 16px;
    padding: 12px 28px;
    background: var(--pink);
    color: var(--cream) !important;
    border-radius: 100px;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(255, 45, 146, 0.3);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--pink-soft);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 45, 146, 0.5);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-burger span {
    width: 24px;
    height: 2px;
    background: var(--pink-soft);
    transition: 0.3s;
}

.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ============ HERO — GTA PAUSE-MENU MAP ============ */
.hero {
    position: relative;
    min-height: 112vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 120px 24px 80px;
    background: #060509;
}

/* The map IS the background — with subtle road-grid fallback */
.hero-map {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(15, 25, 18, 1), rgba(6, 5, 9, 1)),
        linear-gradient(180deg, #0b1410 0%, #060509 100%);
}

.hero-map::before {
    /* fallback "roads" if image missing */
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg, transparent 48%, rgba(255, 245, 225, 0.04) 49%, rgba(255, 245, 225, 0.04) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 245, 225, 0.04) 49%, rgba(255, 245, 225, 0.04) 51%, transparent 52%),
        linear-gradient(0deg, transparent 48%, rgba(255, 245, 225, 0.04) 49%, rgba(255, 245, 225, 0.04) 51%, transparent 52%);
    background-size: 120px 120px, 120px 120px, 180px 180px;
    opacity: 0.6;
}

.hero-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    filter: saturate(1.12) contrast(1.04) brightness(0.82);
    animation: mapDriftIn 2s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

@keyframes mapDriftIn {
    0% { transform: scale(1.08); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Dark overlay — uniformly darker so character becomes moody backdrop */
.hero-map-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at center, rgba(6, 5, 9, 0.32) 0%, rgba(6, 5, 9, 0.58) 72%, rgba(6, 5, 9, 0.9) 100%),
        radial-gradient(ellipse at 70% 60%, rgba(255, 45, 146, 0.1), transparent 50%),
        linear-gradient(180deg, rgba(6, 5, 9, 0.65) 0%, transparent 25%, transparent 65%, rgba(6, 5, 9, 0.95) 100%);
    pointer-events: none;
}

/* Subtle CRT scanlines for game-screen feel */
.hero-scanlines {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: repeating-linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0px,
        rgba(255, 255, 255, 0) 2px,
        rgba(255, 255, 255, 0.018) 2px,
        rgba(255, 255, 255, 0.018) 3px
    );
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* ============ HUD CORNER BADGES ============ */
.hud-corner {
    position: absolute;
    z-index: 4;
    padding: 14px 18px;
    background: rgba(6, 5, 9, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 245, 225, 0.12);
    border-radius: 12px;
    font-family: var(--font-mono);
    color: var(--cream);
    min-width: 200px;
    animation: hudFadeIn 1s 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

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

.hud-tl { top: 100px; left: 32px; }
.hud-tr { top: 100px; right: 32px; text-align: right; }
.hud-bl { bottom: 32px; left: 32px; }

.hud-tag {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--pink-soft);
    margin-bottom: 4px;
    text-transform: uppercase;
    opacity: 0.9;
}

.hud-value {
    font-family: var(--font-head);
    font-size: 22px;
    color: var(--cream);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 6px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: inherit;
}

.hud-tr .hud-value { justify-content: flex-end; }

.hud-sub {
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.7;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--teal-bright);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--teal-bright);
    animation: statusBlink 1.6s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 1100px;
    padding: 0 20px;
}

.hero-eyebrow {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(6, 5, 9, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 45, 146, 0.4);
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--pink-soft);
    margin-bottom: 28px;
    text-transform: uppercase;
    box-shadow: 0 0 24px rgba(255, 45, 146, 0.2);
    animation: hudFadeIn 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.hero-logo,
.hero-title,
.hero-ferrari-wrap,
.hero-ferrari,
.ferrari-glow,
.scene-tile,
.hero-bg,
.hero-grid,
.hero-sun,
.hero-mountains,
.hero-palms,
.hero-road,
.hero-passed-bar,
.hero-location {
    display: none !important;
}

/* ============================================
   HERO BRAND TEXT — The Pricedown showcase
   ============================================ */
.hero-brand {
    font-size: clamp(70px, 14vw, 200px);
    margin: 0 auto 12px;
    line-height: 0.82;
    -webkit-text-stroke: clamp(4px, 0.7vw, 9px) #000;
    text-shadow:
        clamp(6px, 0.9vw, 13px) clamp(6px, 0.9vw, 13px) 0 #000,
        clamp(10px, 1.4vw, 18px) clamp(10px, 1.4vw, 18px) 0 rgba(0,0,0,0.6),
        0 0 80px rgba(255, 45, 146, 0.5),
        0 0 160px rgba(0, 0, 0, 0.8);
    animation: heroBrandFloat 5s ease-in-out infinite;
}

.hero-brand .brand-line {
    animation: brandLineSlam 0.9s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.hero-brand .brand-line:nth-child(1) { animation-delay: 0.4s; }
.hero-brand .brand-line:nth-child(2) { animation-delay: 0.6s; }

.hero-brand .brand-uzwil-tag {
    top: -2%;
    right: 2%;
    font-size: 0.2em;
    animation: uzwilTagDrop 0.8s 1s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

@keyframes heroBrandFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes brandLineSlam {
    0% {
        opacity: 0;
        transform: scale(0.6) translateY(-60px);
        filter: blur(12px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

@keyframes uzwilTagDrop {
    0% {
        opacity: 0;
        transform: rotate(-15deg) translateY(-40px) scale(0.6);
    }
    100% {
        opacity: 1;
        transform: rotate(-2deg) translateY(0) scale(1);
    }
}

/* ============================================
   HERO FERRARI — Cinematic integration
   ============================================ */
.hero-ferrari-wrap {
    position: relative;
    margin: 40px auto 56px;
    max-width: 900px;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(255, 45, 146, 0.4);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.6),
        0 16px 40px rgba(255, 45, 146, 0.3),
        inset 0 0 40px rgba(0, 0, 0, 0.4);
    animation: ferrariRollIn 1.4s 1.2s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.hero-ferrari-wrap::before {
    content: 'NOW DETAILING';
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 245, 225, 0.2);
    color: var(--cream);
    padding: 6px 14px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    border-radius: 100px;
    text-transform: uppercase;
}

.hero-ferrari-wrap::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 6px;
    width: 8px;
    height: 8px;
    background: var(--pink);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--pink);
    animation: recBlink 1.4s ease-in-out infinite;
    z-index: 4;
    margin-top: 8px;
    margin-left: 8px;
}

@keyframes recBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-ferrari {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-ferrari-wrap:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.7),
        0 20px 50px rgba(255, 45, 146, 0.4);
}

.hero-ferrari-wrap:hover .hero-ferrari {
    transform: scale(1.06);
}

.ferrari-glow {
    position: absolute;
    bottom: -30px;
    left: 10%;
    right: 10%;
    height: 60px;
    background: radial-gradient(ellipse at center, rgba(255, 45, 146, 0.6), transparent 70%);
    filter: blur(30px);
    z-index: -1;
    animation: ferrariGlow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ferrariRollIn {
    0% {
        opacity: 0;
        transform: translateX(80px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ferrariGlow {
    0%, 100% { opacity: 0.6; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.1); }
}

/* ============================================
   SCENE TILES — Decorative collage corners
   ============================================ */
.scene-tile {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    opacity: 0.55;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.4));
    transition: opacity 0.4s ease;
}

.scene-tile img {
    width: 100%;
    height: auto;
    display: block;
}

.scene-tile-tl {
    top: 110px;
    left: -40px;
    width: 280px;
    transform: rotate(-5deg);
    animation: tileSwayLeft 6s ease-in-out infinite;
}

.scene-tile-tr {
    top: 110px;
    right: -40px;
    width: 280px;
    transform: rotate(5deg);
    animation: tileSwayRight 6s ease-in-out infinite;
}

@keyframes tileSwayLeft {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(-3deg) translateY(-8px); }
}

@keyframes tileSwayRight {
    0%, 100% { transform: rotate(5deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-8px); }
}

@media (max-width: 1024px) {
    .scene-tile { width: 200px; opacity: 0.4; }
    .scene-tile-tl { left: -60px; top: 100px; }
    .scene-tile-tr { right: -60px; top: 100px; }
}

@media (max-width: 768px) {
    .scene-tile { display: none; }
    .hero-brand {
        -webkit-text-stroke: 4px #000;
        text-shadow: 6px 6px 0 #000, 0 0 30px rgba(255, 45, 146, 0.5);
    }
    .hero-ferrari-wrap { max-width: 92%; margin: 24px auto 36px; }
    .footer-brand { font-size: 42px; -webkit-text-stroke: 3px #000; }
}

.hero-tagline {
    font-family: var(--font-script);
    font-size: clamp(28px, 4vw, 44px);
    color: var(--cream);
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
    margin-bottom: 12px;
    font-style: italic;
    font-weight: 600;
}

.hero-location {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--cream);
    text-transform: uppercase;
    margin-bottom: 56px;
    opacity: 0.9;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.stat {
    text-align: center;
    position: relative;
    padding: 0 8px;
}

.stat::after {
    content: '';
    position: absolute;
    right: -28px;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--cream), transparent);
    opacity: 0.3;
}

.stat:last-child::after { display: none; }

.stat-num {
    font-family: var(--font-head);
    font-size: 56px;
    color: var(--cream);
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
    line-height: 1;
    letter-spacing: 2px;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--cream);
    margin-top: 6px;
    opacity: 0.8;
    text-transform: uppercase;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ BUTTONS ============ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 100px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--pink);
    color: var(--cream);
    box-shadow: 0 6px 24px rgba(255, 45, 146, 0.4);
}

.btn-primary:hover {
    background: var(--pink-soft);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 45, 146, 0.6);
}

.btn-secondary {
    background: rgba(255, 245, 225, 0.06);
    color: var(--cream);
    border-color: rgba(255, 245, 225, 0.4);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 245, 225, 0.12);
    border-color: var(--cream);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--pink-soft);
    border-color: var(--pink);
}

.btn-outline:hover {
    background: var(--pink);
    color: var(--cream);
    border-color: var(--pink);
    box-shadow: var(--glow-pink);
}

.btn-xl {
    font-size: 16px;
    padding: 22px 52px;
}

.btn-icon { font-size: 0.8em; }

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
    pointer-events: none;
}

.btn:hover .btn-shine { left: 100%; }

/* ============ SCROLL INDICATOR ============ */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 1.5px solid var(--cream);
    border-radius: 14px;
    margin: 0 auto 8px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 2px;
    height: 8px;
    background: var(--cream);
    border-radius: 2px;
    animation: scrollWheel 1.8s infinite;
}

.scroll-text {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--cream);
    opacity: 0.7;
    text-transform: uppercase;
}

/* ============ SECTIONS ============ */
.section {
    padding: 140px 32px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 5px;
    color: var(--teal);
    margin-bottom: 20px;
    text-transform: uppercase;
    padding: 4px 0;
    position: relative;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--teal);
    opacity: 0.5;
}

.section-eyebrow::before { right: calc(100% + 12px); }
.section-eyebrow::after { left: calc(100% + 12px); }

.section-title {
    font-family: var(--font-head);
    font-size: clamp(48px, 7vw, 88px);
    letter-spacing: 4px;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--cream);
    text-transform: uppercase;
}

.section-sub {
    font-family: var(--font-script);
    font-size: 22px;
    color: var(--text-dim);
    max-width: 640px;
    margin: 0 auto;
    font-style: italic;
}

.text-pink { color: var(--pink-soft); }
.text-teal { color: var(--teal); }
.text-sunset { color: var(--sunset-3); }
.text-yellow { color: var(--sunset-3); }
.text-green { color: var(--teal-bright); }

/* ============ SERVICES GRID ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 60px;
}

.service-card {
    position: relative;
    background: linear-gradient(180deg, var(--bg-card), var(--bg));
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: var(--sunset-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 45, 146, 0.2);
}

.service-card:hover::before { opacity: 1; }

.service-card.featured {
    background: linear-gradient(180deg, rgba(255, 45, 146, 0.08), var(--bg));
    border-color: var(--border-strong);
}

.service-card.featured::before { opacity: 1; }

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--pink);
    color: var(--cream);
    padding: 6px 14px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    border-radius: 100px;
    font-weight: 700;
    z-index: 2;
}

.service-num {
    font-family: var(--font-script);
    font-size: 38px;
    color: var(--pink-soft);
    line-height: 1;
    margin-bottom: 12px;
    font-style: italic;
    opacity: 0.7;
}

.service-difficulty {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.diff-stars {
    color: var(--sunset-3);
    font-size: 14px;
    letter-spacing: 2px;
}

.service-title {
    font-family: var(--font-head);
    font-size: 32px;
    letter-spacing: 3px;
    margin-bottom: 14px;
    line-height: 1;
    color: var(--cream);
    text-transform: uppercase;
}

.service-desc {
    color: var(--text-dim);
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.6;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.service-time {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.service-price {
    font-family: var(--font-head);
    font-size: 28px;
    color: var(--teal-bright);
    letter-spacing: 1px;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--pink-soft);
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s;
}

.service-cta:hover {
    color: var(--cream);
    gap: 14px;
}

.services-more {
    text-align: center;
}

/* ============ ABOUT TEASER ============ */
.about-teaser {
    background: linear-gradient(180deg, var(--night) 0%, var(--purple-deep) 100%);
    border-radius: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-content .section-eyebrow::before { display: none; }
.about-content .section-eyebrow { padding-left: 0; }

.about-text {
    color: var(--text-dim);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--cream);
    font-weight: 600;
}

.character-card {
    background: linear-gradient(180deg, var(--bg-card), var(--bg));
    border: 1px solid var(--border-strong);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(255, 45, 146, 0.15);
    position: relative;
    overflow: hidden;
}

.character-img {
    width: 100%;
    height: auto;
    background: var(--sunset-gradient);
    border-radius: 16px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.character-silhouette {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 88%;
    background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.4) 100%);
    clip-path: polygon(40% 0%, 60% 0%, 70% 20%, 75% 50%, 90% 100%, 10% 100%, 25% 50%, 30% 20%);
}

.character-photo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.character-name {
    font-family: var(--font-head);
    font-size: 32px;
    letter-spacing: 3px;
    color: var(--cream);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.character-role {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--pink-soft);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.character-stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.char-stat {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-dim);
    text-transform: uppercase;
}

.char-stat .bar {
    height: 4px;
    background: rgba(255, 45, 146, 0.15);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.char-stat .bar span {
    display: block;
    height: 100%;
    background: var(--sunset-gradient);
    animation: barFill 2s 0.5s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    transform-origin: left;
    border-radius: 2px;
}

/* ============ SHOWCASE / RECENT WORK ============ */
.showcase {
    background: linear-gradient(180deg, var(--night) 0%, var(--purple-deep) 100%);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    margin-bottom: 56px;
}

.showcase-card {
    position: relative;
    background: linear-gradient(180deg, var(--bg-card), var(--bg));
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: var(--sunset-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 1;
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 70px rgba(255, 45, 146, 0.25);
}

.showcase-card:hover::before { opacity: 1; }

.showcase-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card:hover .showcase-img img {
    transform: scale(1.06);
}

.showcase-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 245, 225, 0.2);
    color: var(--cream);
    padding: 8px 16px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    border-radius: 100px;
    z-index: 2;
    text-transform: uppercase;
    font-weight: 700;
}

.showcase-body {
    padding: 28px 32px 32px;
}

.showcase-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 8px;
}

.showcase-service {
    color: var(--pink-soft);
    font-weight: 700;
}

.showcase-title {
    font-family: var(--font-script);
    font-size: 36px;
    color: var(--cream);
    margin-bottom: 10px;
    font-style: italic;
    line-height: 1;
}

.showcase-desc {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.7;
}

.showcase-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .showcase-grid { grid-template-columns: 1fr; gap: 20px; }
    .showcase-body { padding: 20px 22px 24px; }
    .showcase-title { font-size: 30px; }
}

/* ============ TESTIMONIALS ============ */
.testimonials-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.phone-frame {
    background: linear-gradient(180deg, var(--bg-card), var(--bg));
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: var(--text-muted);
    border-radius: 2px;
    opacity: 0.3;
}

.phone-frame:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(255, 45, 146, 0.15);
}

.phone-header {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 16px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 2px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    text-transform: uppercase;
}

.phone-contact {
    color: var(--teal);
    font-weight: 700;
}

.phone-msg {
    font-size: 16px;
    color: var(--cream);
    line-height: 1.6;
    margin-bottom: 16px;
    font-family: var(--font-script);
    font-style: italic;
    font-size: 19px;
}

.phone-rating {
    color: var(--sunset-3);
    font-size: 16px;
    letter-spacing: 3px;
}

/* ============ FINAL CTA ============ */
.final-cta {
    position: relative;
    padding: 160px 32px;
    background:
        radial-gradient(ellipse at center, rgba(255, 45, 146, 0.3), transparent 60%),
        linear-gradient(180deg, var(--night) 0%, var(--purple-deep) 100%);
    text-align: center;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 6px;
    color: var(--teal);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.cta-title {
    font-family: var(--font-head);
    font-size: clamp(56px, 9vw, 120px);
    line-height: 0.95;
    margin-bottom: 28px;
    letter-spacing: 4px;
    color: var(--cream);
    text-transform: uppercase;
}

.cta-text {
    font-family: var(--font-script);
    font-size: 26px;
    color: var(--text-dim);
    margin-bottom: 48px;
    font-style: italic;
}

.cta-layout {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

.cta-layout .cta-content {
    flex: 1 1 380px;
    max-width: 520px;
    text-align: left;
    margin: 0;
}

.cta-map {
    position: relative;
    flex: 1 1 420px;
    max-width: 560px;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 245, 225, 0.14);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 45, 146, 0.12);
}

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

/* Pulsing location marker — positioned over the garage pin on the map */
.cta-map-pin {
    position: absolute;
    left: 52%;
    top: 79%;
    width: 22px;
    height: 22px;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.pin-dot {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 14px;
    height: 14px;
    background: var(--pink, #ff2d92);
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 45, 146, 0.9);
    animation: pinBlink 1.2s ease-in-out infinite;
}

.pin-pulse {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 45, 146, 0.5);
    animation: pinPulse 1.6s ease-out infinite;
}

@keyframes pinPulse {
    0%   { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(3.4); opacity: 0; }
}

@keyframes pinBlink {
    0%, 100% { opacity: 1;   transform: scale(1); }
    50%      { opacity: 0.4; transform: scale(0.85); }
}

.cta-money-rain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.4;
}

.money-bill {
    position: absolute;
    font-size: 28px;
    animation: moneyFall linear infinite;
    opacity: 0;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--night);
    padding: 100px 32px 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    max-width: 1400px;
    margin: 0 auto 64px;
}

.footer-col:has(.footer-logo-img) {
    text-align: center;
}

.footer-logo-img {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto 16px;
    border-radius: 12px;
}

.footer-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--text-dim);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-stars {
    color: var(--sunset-3);
    font-size: 18px;
    letter-spacing: 4px;
}

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 18px;
    letter-spacing: 3px;
    color: var(--pink-soft);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-col p {
    color: var(--text-dim);
    line-height: 1.8;
    font-size: 14px;
}

.footer-link {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--cream);
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 1px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-link svg {
    flex-shrink: 0;
    color: var(--pink-soft);
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
    color: var(--cream);
}

.social-link:hover svg {
    color: var(--pink, #ff2d92);
    transform: scale(1.12);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-fineprint {
    margin-top: 8px;
    opacity: 0.5;
}

/* ============ STICKY CTA BAR (Mobile only) ============ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: none;
    background: linear-gradient(180deg, rgba(6, 5, 9, 0.4), rgba(6, 5, 9, 0.98) 30%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 45, 146, 0.25);
    gap: 8px;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.6);
}

.sticky-cta .sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.sticky-call {
    background: rgba(0, 217, 224, 0.1);
    color: var(--teal-bright);
    border: 1.5px solid var(--teal);
}

.sticky-call:active {
    background: var(--teal);
    color: var(--night);
}

.sticky-book {
    background: var(--pink);
    color: var(--cream);
    box-shadow: 0 4px 16px rgba(255, 45, 146, 0.4);
}

.sticky-book:active {
    background: var(--pink-soft);
    transform: scale(0.98);
}

.sticky-icon {
    font-size: 14px;
}

@media (max-width: 768px) {
    .sticky-cta { display: flex; }
    body { padding-bottom: 80px; }
}

/* ============ HIDDEN / REMOVED GAMEY ELEMENTS ============ */
.custom-cursor,
.hud,
.achievement,
.notification,
.nav-key {
    display: none !important;
}

body { cursor: auto !important; }
a, button, input, textarea, select { cursor: pointer !important; }
input, textarea, select { cursor: text !important; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 1024px) {
    .hud-corner { min-width: 160px; padding: 12px 14px; }
    .hud-tl, .hud-tr { top: 90px; }
    .hud-value { font-size: 18px; }
}

@media (max-width: 768px) {
    .navbar { padding: 16px 20px; }
    .nav-logo-img { height: 36px; }

    /* Hide secondary HUD corners on mobile, keep just waypoint */
    .hud-tl, .hud-tr { display: none; }
    .hud-bl { left: 16px; right: 16px; bottom: 20px; min-width: 0; padding: 10px 14px; }
    .hud-bl .hud-value { font-size: 14px; }
    .hud-bl .hud-sub { font-size: 9px; }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 4, 20, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        transform: translateY(-200%);
        transition: transform 0.4s;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-burger { display: flex; }
    .nav-cta { margin-left: 0; }

    .hero-stats {
        gap: 24px;
    }

    .stat::after { display: none; }

    .stat-num { font-size: 40px; }

    .palm-1, .palm-4 { display: none; }
    .palm-2, .palm-3 { font-size: 80px; }

    .section { padding: 80px 20px; }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo-img { margin-left: auto; margin-right: auto; }
}

/* ============ GTA PRICEDOWN FOR SCRIPT TEXT — keep upright ============ */
.hero-tagline,
.cta-text,
.section-sub,
.loading-subtitle,
.loading-rotating-tip,
.showcase-title,
.phone-msg,
.service-num {
    font-style: normal;
    letter-spacing: 1.5px;
}

@media (max-width: 768px) {
    .cta-layout { gap: 36px; }
    .cta-layout .cta-content { text-align: center; max-width: 100%; flex-basis: 100%; }
    .cta-map { flex-basis: 100%; }
}

/* ============ UZWIL MAP — "Dein Standort" (Geolocation) ============ */
.cta-map-locate {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 4;
    background: rgba(6, 5, 9, 0.7);
    border: 1px solid rgba(255, 245, 225, 0.2);
    color: var(--cream);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
    padding: 8px 13px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cta-map-locate:hover {
    background: var(--pink);
    border-color: var(--pink);
    transform: translateY(-1px);
}

.cta-map-me {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.me-dot {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #0A84FF;
    border: 2px solid #fff;
    box-shadow: 0 0 12px rgba(10, 132, 255, 0.9);
}

.me-pulse {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(10, 132, 255, 0.5);
    animation: pinPulse 1.6s ease-out infinite;
}

.me-label {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: var(--pink);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(255, 45, 146, 0.5);
}

.cta-map-msg {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    background: rgba(6, 5, 9, 0.82);
    color: var(--cream);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
    padding: 8px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255, 245, 225, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
