/* ============================================================
   GÖRING AUTOSERVICE – Unfallreparatur
   Cinematic Dark Automotive Design System
   ============================================================ */

/* --- 1. Variables --- */
:root {
    --bg: #000000;
    --bg-elevated: #080808;
    --bg-card: #0d0d0d;
    --text: #f0f0f0;
    --text-muted: rgba(255, 255, 255, 0.45);
    --accent: #3B82F6;
    --accent-hover: #2563EB;
    --accent-glow: rgba(59, 130, 246, 0.2);
    --gold: #C4A35A;
    --gold-glow: rgba(196, 163, 90, 0.15);
    --success: #22c55e;
    --success-hover: #16a34a;
    --error: #ef4444;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.06);
    --radius: 12px;
    --radius-sm: 8px;
    --header-height: 72px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

[data-theme="light"] {
    --bg: #F8F7F4;
    --bg-elevated: #FFFFFF;
    --bg-card: #FFFFFF;
    --text: #0a0a0a;
    --text-muted: rgba(0, 0, 0, 0.5);
    --accent: #2563EB;
    --accent-hover: #1D4ED8;
    --accent-glow: rgba(37, 99, 235, 0.12);
    --gold: #9E7C36;
    --gold-glow: rgba(158, 124, 54, 0.1);
    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.16);
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.08);
}

/* --- 2. Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; scroll-padding-top: var(--header-height); }

body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}


/* --- Animated Background Glows --- */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 150%;
    height: 150%;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(800px circle at 15% 20%, rgba(55,99,244,0.15), transparent 50%),
        radial-gradient(600px circle at 85% 50%, rgba(196,163,90,0.10), transparent 50%),
        radial-gradient(700px circle at 40% 80%, rgba(139,92,246,0.10), transparent 50%),
        radial-gradient(500px circle at 70% 10%, rgba(59,130,246,0.08), transparent 50%);
    animation: bg-glows 16s ease-in-out infinite alternate;
}

[data-theme="light"] body::after {
    background:
        radial-gradient(800px circle at 15% 20%, rgba(55,99,244,0.10), transparent 50%),
        radial-gradient(600px circle at 85% 50%, rgba(196,163,90,0.07), transparent 50%),
        radial-gradient(700px circle at 40% 80%, rgba(139,92,246,0.06), transparent 50%),
        radial-gradient(500px circle at 70% 10%, rgba(59,130,246,0.05), transparent 50%);
}

@keyframes bg-glows {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 30px) scale(1.08); }
    100% { transform: translate(30px, -20px) scale(0.95); }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* --- 3. Noise Texture Overlay --- */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

[data-theme="light"] .noise-overlay {
    opacity: 0.02;
}

/* --- 4. Fonts --- */
@font-face { font-family: 'Inter'; src: url('../fonts/inter-regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('../fonts/inter-medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('../fonts/inter-semibold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('../fonts/inter-bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

/* --- 5. Typography --- */
h1, h2, h3 {
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
h4 { font-size: 1rem; font-weight: 600; }

.lead {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 520px;
}

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

.section-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--gold);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    margin-bottom: 24px;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 520px;
    font-size: 1rem;
    line-height: 1.7;
}

/* --- 6. Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 160px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: var(--bg);
}

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

/* --- 6b. Glow Orbs --- */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}
.glow-orb-1 { width: 500px; height: 500px; background: rgba(59,130,246,0.06); top: -200px; right: -100px; }
.glow-orb-2 { width: 400px; height: 400px; background: rgba(196,163,90,0.04); bottom: -150px; left: -80px; }
.glow-orb-3 { width: 350px; height: 350px; background: rgba(59,130,246,0.05); top: -120px; left: -60px; }
[data-theme="light"] .glow-orb { opacity: 0.4; }

/* --- 7. Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    border-radius: 0;
    padding: 16px 36px;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: #fff;
    box-shadow: 0 0 40px var(--accent-glow);
    transform: translateY(-2px);
}

.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: var(--success-hover); color: #fff; transform: translateY(-2px); }

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-hover);
}

.btn-ghost:hover {
    border-color: var(--text);
    color: var(--text);
    transform: translateY(-2px);
}

[data-theme="light"] .btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-lg { padding: 20px 48px; font-size: 0.75rem; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- 8. Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    height: var(--header-height);
}

[data-theme="light"] .header {
    background: rgba(248, 247, 244, 0.8);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

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

.nav-links a {
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}

.nav-links a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.theme-toggle {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.theme-toggle:hover { border-color: var(--gold); color: var(--gold); }

.header-cta {
    padding: 10px 24px;
    font-size: 0.6rem;
}

/* Hamburger */
.hamburger {
    display: none;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 1002;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.3s var(--ease);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu.active { opacity: 1; visibility: visible; }

.mobile-menu a {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.01em;
    transition: color 0.3s;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color 0.3s, background 0.3s;
}
.mobile-menu-close:hover { color: var(--text); background: rgba(255,255,255,0.1); }

.mobile-menu a:hover { color: var(--accent); }

.mobile-theme-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    font-size: 1.2rem;
    margin-top: 16px;
    transition: border-color 0.3s, color 0.3s;
}

.mobile-theme-toggle:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 900px) {
    .mobile-theme-toggle { display: flex; align-items: center; justify-content: center; }
}

/* --- 9. Hero (Split-Layout) --- */
.hero {
    position: relative;
    padding: 100px 20px 80px;
    padding-top: calc(var(--header-height) + 60px);
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 13v6M13 16h6' stroke='%23ffffff' stroke-opacity='0.12' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
    z-index: 0;
    pointer-events: none;
}

[data-theme="light"] .hero::before {
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 13v6M13 16h6' stroke='%23000000' stroke-opacity='0.08' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
}

.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -15%;
    width: 50%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(59,130,246,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: hero-glow-drift 8s ease-in-out infinite alternate;
}

@keyframes hero-glow-drift {
    0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(-30px, 20px) scale(1.1); opacity: 1; }
    100% { transform: translate(20px, -10px) scale(0.95); opacity: 0.7; }
}

/* Zweiter animierter Glow – Gold-Akzent links */
.hero-content::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(196,163,90,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: hero-glow-gold 10s ease-in-out infinite alternate;
}

@keyframes hero-glow-gold {
    0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    100% { transform: translate(40px, 30px) scale(1.2); opacity: 0.9; }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content (left) */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--accent);
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 20px;
}

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

.hero-text {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

[data-theme="light"] .hero-text {
    color: rgba(0,0,0,0.6);
}

/* Feature Pills */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

[data-theme="light"] .hero-feature {
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.1);
}

[data-theme="light"] .hero-feature:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.hero-feature svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Hero Card Stack (right) */
.hero-cards {
    position: relative;
    height: 480px;
    perspective: 1000px;
}

.hero-card {
    position: absolute;
    width: 260px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.5s var(--ease);
    cursor: default;
}

.hero-card:nth-child(1) {
    top: 30px;
    left: 10px;
    transform: rotate(-3deg);
    z-index: 3;
}

.hero-card:nth-child(2) {
    top: 10px;
    left: 180px;
    transform: rotate(2deg);
    z-index: 2;
}

.hero-card:nth-child(3) {
    top: 140px;
    left: 90px;
    transform: rotate(5deg);
    z-index: 1;
}

.hero-card:hover {
    transform: rotate(0deg) scale(1.03);
    z-index: 10 !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.08);
}

.hero-card img,
.hero-card-video {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.hero-card-content {
    padding: 14px 16px;
}

.hero-card-tag {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 6px;
}

.hero-card-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #0a0a0a;
}

.hero-card-content p {
    font-size: 0.8rem;
    color: #666666;
    line-height: 1.4;
}

[data-theme="light"] .hero-card {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.04);
}

[data-theme="light"] .hero-card:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.06);
}

/* Hero Stats */
.hero-stats {
    max-width: 1200px;
    margin: 48px auto 0;
    display: flex;
    justify-content: center;
    gap: 2px;
    position: relative;
    z-index: 2;
}

.stat-badge {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    padding: 20px 32px;
    text-align: center;
    min-width: 160px;
    border-radius: 0;
}

.stat-badge:first-child { border-right: none; }

[data-theme="light"] .stat-badge {
    background: rgba(255,255,255,0.8);
}

.stat-badge-value {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.stat-badge-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 1;
    transition: opacity 0.5s;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 20px;
    border-right: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transform: rotate(45deg);
    animation: scroll-bounce 2.5s ease-in-out infinite;
}

.scroll-indicator span:nth-child(2) { animation-delay: 0.2s; opacity: 0.4; }

@keyframes scroll-bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.3; }
    50% { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

[data-theme="light"] .scroll-indicator span { border-color: rgba(0,0,0,0.2); }

/* --- 10. Marquee Ticker --- */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    background: var(--bg);
}

.marquee-track {
    display: inline-flex;
    animation: marquee-scroll 30s linear infinite;
    will-change: transform;
    -webkit-animation: marquee-scroll 30s linear infinite;
}

.marquee-track span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    padding: 0 40px;
    display: inline-flex;
    align-items: center;
    gap: 40px;
}

.marquee-track span::after {
    content: '◆';
    font-size: 0.4rem;
    color: var(--gold);
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- 11. Service Boxes --- */
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.service-box {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

[data-theme="light"] .service-box {
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

[data-theme="light"] .service-box:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.service-box-header {
    padding: 30px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-elevated) 100%);
}

.service-box-icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.service-box-icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

.service-box-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.service-box-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.service-box-body {
    padding: 30px;
}

.service-box-body > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text);
}

.service-list li svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

/* --- 12. Section Images --- */
.section-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin-bottom: 64px;
}

.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.section-split-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.section-split-content p { color: var(--text-muted); line-height: 1.7; }

/* --- 13. Process Grid --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.process-card {
    position: relative;
    padding: 32px 24px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
    cursor: default;
}

.process-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.section-alt .process-card { background: var(--bg-elevated); }

.process-number {
    position: absolute;
    top: -8px;
    right: -4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--border);
    line-height: 1;
    opacity: 0.4;
    transition: opacity 0.4s, color 0.4s;
    pointer-events: none;
}

.process-card:hover .process-number { opacity: 0.15; color: var(--accent); }

.process-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(55, 99, 244, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 16px;
    transition: background 0.3s, transform 0.3s;
}

.process-card:hover .process-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1);
}

.process-card h3 { font-size: 1rem; margin-bottom: 8px; }
.process-card p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.6; }

.process-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.5s var(--ease);
}

.process-card:hover .process-line { width: 100%; }

.timeline-step-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-top: 16px;
    border: 1px solid var(--border);
}

/* --- 14. Advantage Cards --- */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.advantage-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px 28px;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

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

.advantage-card:hover {
    background: rgba(59, 130, 246, 0.03);
    border-color: var(--border-hover);
}

.advantage-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 24px;
    transition: all 0.4s var(--ease);
}

.advantage-card:hover .advantage-icon {
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.advantage-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.advantage-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; }

/* --- 16. Wizard --- */
.wizard-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto;
}

.wizard {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 48px;
    max-width: none;
}

.wizard-side-media {
    position: relative;
    overflow: hidden;
}

.wizard-side-media video,
.wizard-side-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2);
}

.wizard-side-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5) 100%);
}

.wizard-side-caption {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    z-index: 1;
    color: #fff;
}

.wizard-side-caption strong {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.wizard-side-caption span { font-size: 0.8rem; opacity: 0.7; }

.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.wizard-progress-step { display: flex; align-items: center; }

.wizard-progress-dot {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
}

.wizard-progress-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 24px var(--accent-glow);
}

.wizard-progress-dot.completed {
    background: var(--success);
    border-color: var(--success);
    color: #fff;
}

.wizard-progress-line {
    width: 48px;
    height: 1px;
    background: var(--border);
    transition: background 0.3s;
}

.wizard-progress-line.active { background: var(--accent); }

.wizard-step { display: none; }
.wizard-step.active { display: block; animation: fadeSlideIn 0.4s var(--ease); }

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard-step h3 { margin-bottom: 8px; font-size: 1.2rem; }
.wizard-step .sub { margin-bottom: 28px; }

/* Role Selection */
.role-options { display: flex; flex-direction: column; gap: 10px; }

.role-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: transparent;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.role-option:hover { border-color: var(--accent); }

.role-option.selected {
    border-color: var(--accent);
    background: var(--accent-glow);
}

.role-option input[type="radio"] { display: none; }

.role-radio {
    width: 20px;
    height: 20px;
    border: 1px solid var(--border-hover);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.role-option.selected .role-radio { border-color: var(--accent); }

.role-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    transform: scale(0);
    transition: transform 0.3s var(--ease);
}

.role-option.selected .role-radio::after { transform: scale(1); }

.role-label strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.role-label span { font-size: 0.75rem; color: var(--text-muted); }

.wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

/* Photo Upload */
.photo-upload-area {
    border: 1px dashed var(--border-hover);
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.photo-upload-area:hover { border-color: var(--accent); background: var(--accent-glow); }
.photo-upload-area svg { margin-bottom: 12px; color: var(--text-muted); }

.photo-preview-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 8px; margin-top: 16px; }
.photo-preview { position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 1; }
.photo-preview img { width: 100%; height: 100%; object-fit: cover; }
.photo-preview-remove { position: absolute; top: 4px; right: 4px; width: 20px; height: 20px; border-radius: 50%; background: rgba(0,0,0,0.7); color: #fff; border: none; cursor: pointer; font-size: 0.6rem; display: flex; align-items: center; justify-content: center; }

.wizard-success { text-align: center; padding: 40px 20px; }
.wizard-success-icon { width: 64px; height: 64px; background: rgba(34,197,94,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--success); font-size: 1.8rem; }

/* --- 17. Forms --- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.75rem; font-weight: 600; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.form-label .required { color: var(--error); }

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s;
    outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-input.error, .form-select.error, .form-textarea.error {
    border-color: var(--error);
}

.form-input.success, .form-select.success { border-color: var(--success); }
.form-textarea { resize: vertical; min-height: 100px; }

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-error { font-size: 0.75rem; color: var(--error); margin-top: 4px; display: none; }
.form-error.visible { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-checkbox { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.form-checkbox input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; }

.hnpt { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* --- 18. Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
}

.contact-info { padding-top: 20px; }

.contact-phone {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--gold);
    margin-bottom: 32px;
    transition: all 0.4s var(--ease);
}

.contact-phone:hover {
    background: var(--gold-glow);
    box-shadow: 0 0 30px var(--gold-glow);
    transform: translateY(-2px);
}

.contact-phone-icon {
    width: 44px;
    height: 44px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    flex-shrink: 0;
}

.contact-phone-text span { font-size: 0.7rem; color: var(--text-muted); display: block; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-phone-text strong { font-family: 'DM Sans', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--text); }

.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-detail-icon { width: 36px; height: 36px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); flex-shrink: 0; }
.contact-detail-text strong { display: block; font-size: 0.85rem; margin-bottom: 2px; }
.contact-detail-text span { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.visible { display: block; }
.form-success-icon { width: 56px; height: 56px; background: rgba(34,197,94,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--success); font-size: 1.6rem; }
/* --- 18b. Street View Slider --- */
.sv-slider-wrapper {
    position: relative;
    border-radius: var(--radius) var(--radius) 0 0;
    border: 1px solid var(--border);
    border-bottom: none;
    overflow: hidden;
}
.sv-slide { position: absolute; inset: 0; width: 100%; height: 500px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; display: block; }
.sv-slide.active { position: relative; opacity: 1; pointer-events: auto; }
.sv-tabs { display: flex; gap: 0; margin-top: 0; }
.sv-tab {
    flex: 1;
    padding: 10px 4px;
    font-size: 0.65rem;
    font-weight: 600;
    border: 1px solid var(--border);
    border-top: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.sv-tab:first-child { border-radius: 0 0 0 var(--radius); border-left: 1px solid var(--border); }
.sv-tab:last-child { border-radius: 0 0 var(--radius) 0; }
.sv-tab + .sv-tab { border-left: none; }
.sv-tab.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* --- 19. FAQ --- */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s;
}

.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item.active { border-color: var(--accent); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
    width: 24px;
    height: 24px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.faq-item.active .faq-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-answer-inner { padding: 0 0 24px; color: var(--text-muted); font-size: 0.85rem; line-height: 1.8; }

/* --- 20. Mobile CTA --- */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    padding: 10px 12px 10px;
    transform: translateY(100%);
    transition: transform 0.3s var(--ease);
    will-change: transform;
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .mobile-cta { padding-bottom: calc(10px + env(safe-area-inset-bottom)); }
}

.mobile-cta.visible {
    transform: translateY(0);
}
.mobile-cta-inner { display: flex; gap: 8px; }
.mobile-cta .btn { flex: 1; padding: 14px 12px; font-size: 0.6rem; justify-content: center; }

/* --- 21. Footer --- */
.footer {
    background: var(--bg);
    position: relative;
    padding: 80px 0 32px;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, var(--gold) 50%, transparent 90%);
}

.footer-top { display: flex; justify-content: space-between; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; margin-top: 16px; line-height: 1.7; max-width: 320px; }
.footer-contact h4 { font-family: 'Inter', sans-serif; font-size: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 12px; color: var(--gold); }
.footer-contact p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; }
.footer-contact a { color: var(--text-muted); transition: color 0.3s; }
.footer-contact a:hover { color: var(--accent); }

.footer-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
.footer-gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; display: block; }
.footer-gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%); z-index: 1; pointer-events: none; }
.footer-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.footer-gallery-item:hover img { transform: scale(1.06); }
.footer-gallery-label { position: absolute; bottom: 10px; left: 10px; z-index: 2; background: rgba(0,0,0,0.7); color: #fff; padding: 5px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 600; backdrop-filter: blur(4px); }

.footer-links-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-bottom: 48px; padding-top: 48px; border-top: 1px solid var(--border); }

.footer-links h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-links a, .footer-links span { display: block; color: var(--text-muted); font-size: 0.85rem; padding: 4px 0; transition: color 0.3s; }
.footer-links a:hover { color: var(--text); }
.footer-cta-link { color: var(--accent) !important; font-weight: 600; margin-top: 8px; }
.footer-cta-link:hover { opacity: 0.8; }

.footer-legal { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; font-size: 0.75rem; color: var(--text-muted); }
.footer-made-by { text-align: center; margin-top: 12px; font-size: 0.7rem; color: var(--text-muted); }

@media (max-width: 900px) {
    .footer-made-by { padding-bottom: 80px; }
}
.footer-heart { color: #e25555; }
.footer-made-by a { color: var(--accent); font-weight: 600; transition: opacity 0.3s; }
.footer-made-by a:hover { opacity: 0.7; }

/* --- Floating Cookie Button --- */
.cookie-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--gold);
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(196,163,90,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}
.cookie-float:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(196,163,90,0.6); }

@media (max-width: 900px) {
    .cookie-float { bottom: 24px; left: 16px; width: 38px; height: 38px; transition: bottom 0.3s var(--ease), transform 0.3s; }
    body.cta-visible .cookie-float { bottom: 80px; }
}

/* --- Info Modal --- */
.info-modal { display: none; position: fixed; inset: 0; z-index: 10000; align-items: center; justify-content: center; padding: 16px; }
.info-modal.open { display: flex; }
.info-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); animation: modalFadeIn 0.25s ease; }
.info-modal-dialog {
    position: relative;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
    animation: modalSlideUp 0.3s ease;
}
.info-modal-close {
    position: absolute; top: 12px; right: 12px;
    background: none; border: none; color: var(--text-muted);
    font-size: 1.75rem; line-height: 1; cursor: pointer;
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; transition: color 0.3s, background 0.3s;
}
.info-modal-close:hover { color: var(--text); background: rgba(255,255,255,0.1); }
.info-modal-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; padding-right: 40px; }
.info-modal-body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.info-modal-body p { margin-bottom: 12px; }
.info-modal-body p:last-child { margin-bottom: 0; }
.info-modal-body ul { margin: 12px 0; padding-left: 0; }
.info-modal-body ul li { position: relative; padding-left: 20px; margin-bottom: 6px; }
.info-modal-body ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.info-modal-body strong { color: var(--text); }
.info-modal-cta { display: inline-block; margin-top: 24px; }
@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalSlideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* --- 22. Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out), filter 0.8s var(--ease-out);
    filter: blur(3px);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }

/* --- 23. Utility --- */
.text-center { text-align: center; }
.text-center .section-label::before { display: none; }
.text-center .section-label::after { content: ''; width: 32px; height: 1px; background: var(--gold); }
.text-accent { color: var(--accent); }
.mb-0 { margin-bottom: 0; }
.mb-12 { margin-bottom: 12px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mt-24 { margin-top: 24px; }

/* --- 24. Light Mode Overrides --- */
[data-theme="light"] .advantage-card { background: var(--bg-card); box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
[data-theme="light"] .advantage-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
[data-theme="light"] .wizard { background: var(--bg-card); box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
[data-theme="light"] .service-box { background: var(--bg-card); }
[data-theme="light"] .faq-item { background: transparent; }
[data-theme="light"] .contact-form-card { box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
[data-theme="light"] .footer { background: #F0EDE8; }
[data-theme="light"] .stat-badge { background: rgba(255,255,255,0.9); }

/* --- 25. Responsive 900px --- */
/* ===== TABLET: 900px ===== */
@media (max-width: 900px) {
    :root { --header-height: 60px; }

    .section { padding: 80px 0; }
    .container { padding: 0 24px; }

    /* Nav */
    .nav-links, .header-cta { display: none; }
    .header-actions > .theme-toggle { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }
    .mobile-cta { display: block; }

    /* Hero – 900px von außen nach innen */
    .hero {
        padding: 0;
        padding-top: calc(var(--header-height) + 32px);
        padding-bottom: 40px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
        padding: 0 20px;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-title { font-size: clamp(1.5rem, 4.5vw, 2.2rem); }
    .hero-text { font-size: 0.9rem; margin-bottom: 16px; max-width: 460px; }
    .hero-features { justify-content: center; flex-wrap: wrap; }
    .hero-badge { margin-bottom: 16px; font-size: 0.6rem; }
    .btn-group { margin-top: 20px !important; }

    /* Hero Cards → Horizontal Scroll */
    .hero-cards {
        position: relative;
        height: auto;
        display: flex;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 8px 20px;
        perspective: none;
        scrollbar-width: none;
    }
    .hero-cards::-webkit-scrollbar { display: none; }
    .hero-card {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: calc(50vw - 40px);
        min-width: calc(50vw - 40px);
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    .hero-card:nth-child(n) {
        top: auto;
        left: auto;
        transform: none;
        z-index: auto;
    }
    .hero-card img, .hero-card-video { height: 130px; }
    .hero-card:hover { transform: scale(1.02); }

    .hero-stats { margin-top: 24px; padding: 0 20px; }
    .stat-badge { min-width: auto; padding: 14px 20px; }
    .stat-badge-value { font-size: 1.6rem; }
    .scroll-indicator { bottom: 24px; }

    /* Marquee */
    .marquee { padding: 14px 0; }

    /* Service Boxes */
    .service-grid { grid-template-columns: 1fr; gap: 20px; }

    /* Section Split */
    .section-split { grid-template-columns: 1fr; gap: 24px; }
    .section-split-image { height: 200px; }
    .section-image { max-height: 240px; margin-bottom: 48px; }

    /* Process Grid */
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .process-card { padding: 24px 20px 20px; }

    /* Advantage Cards */
    .advantage-grid { grid-template-columns: 1fr 1fr; gap: 2px; }

    /* Wizard */
    .wizard-layout { grid-template-columns: 1fr; }
    .wizard-side-media { max-height: 260px; }
    .wizard { padding: 28px 24px; }
    .wizard-progress-line { width: 32px; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }

    /* Footer */
    .footer-top { flex-direction: column; gap: 28px; }
    .footer-gallery { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .footer-links-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

    /* Glow Orbs */
    .glow-orb { opacity: 0.3; }
    .glow-orb-1 { width: 280px; height: 280px; }
    .glow-orb-2 { width: 220px; height: 220px; }
    .glow-orb-3 { width: 200px; height: 200px; }
}

/* Touch: show captions always, no grayscale, no card rotations */
@media (hover: none) {
    .advantage-card::before { display: none; }
    .hero-card { transform: none !important; }
    .hero-card:hover { transform: none !important; }
}

/* ===== MOBILE: 600px ===== */
@media (max-width: 600px) {
    :root { --header-height: 56px; }

    .container { padding: 0 16px; }
    .section { padding: 64px 0; }

    /* Typography */
    h1 { font-size: 2rem; line-height: 0.95; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.1rem; }
    .lead { font-size: 0.9rem; }
    .section-label { font-size: 0.6rem; letter-spacing: 0.25em; margin-bottom: 14px; }
    .section-subtitle { font-size: 0.9rem; }
    .mb-64 { margin-bottom: 40px; }

    /* Buttons */
    .btn { padding: 14px 24px; font-size: 0.65rem; letter-spacing: 0.15em; }
    .btn-lg { padding: 16px 28px; font-size: 0.7rem; }
    .btn-group { flex-direction: column; align-items: stretch; gap: 10px; }
    .btn-group .btn { justify-content: center; }

    /* Hero – 600px von außen nach innen */
    .hero {
        padding-top: calc(var(--header-height) + 20px);
        padding-bottom: 32px;
    }
    .hero-container { padding: 0 16px; gap: 20px; }
    .hero-title { font-size: clamp(1.3rem, 5vw, 1.6rem); line-height: 1.1; }
    .hero-text { font-size: 0.8rem; max-width: 100%; margin-bottom: 12px; line-height: 1.5; }
    .hero-badge { font-size: 0.5rem; padding: 5px 12px; margin-bottom: 12px; }
    .hero-feature { font-size: 0.6rem; padding: 5px 10px; }
    .hero-cards { padding: 6px 16px; gap: 10px; }
    .hero-card { width: calc(70vw - 32px); min-width: calc(70vw - 32px); }
    .hero-card img, .hero-card-video { height: 110px; }
    .hero-card-content { padding: 10px 12px; }
    .hero-card-content h3 { font-size: 0.8rem; }
    .hero-card-content p { font-size: 0.68rem; }
    .hero-card-tag { font-size: 0.5rem; padding: 3px 8px; }
    .hero-stats { flex-direction: row; margin-top: 20px; gap: 0; padding: 0 16px; }
    .btn-group { margin-top: 16px !important; }
    .stat-badge { padding: 12px 16px; flex: 1; }
    .stat-badge-value { font-size: 1.4rem; }
    .stat-badge-label { font-size: 0.55rem; letter-spacing: 0.1em; }
    .scroll-indicator { bottom: 16px; }
    .scroll-indicator span { width: 16px; height: 16px; }

    /* Marquee */
    .marquee { padding: 12px 0; }
    .marquee-track span { padding: 0 20px; font-size: 0.55rem; letter-spacing: 0.2em; }

    /* Service Boxes */
    .service-box-header { padding: 24px 20px; }
    .service-box-body { padding: 24px 20px; }
    .service-box-icon { width: 56px; height: 56px; border-radius: 12px; }
    .service-box-icon svg { width: 26px; height: 26px; }
    .service-box-header h3 { font-size: 1.1rem; }
    .service-box-tagline { font-size: 0.8rem; }
    .service-box-body > p { font-size: 0.85rem; }
    .service-list li { font-size: 0.8rem; }

    /* Section Split */
    .section-split { gap: 20px; }
    .section-split-image { height: 180px; }
    .section-image { max-height: 200px; margin-bottom: 36px; }

    /* Process Grid */
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .process-card { padding: 20px 16px 16px; }
    .process-card h3 { font-size: 0.9rem; }
    .process-card p { font-size: 0.75rem; }
    .process-number { font-size: 3rem; }
    .process-icon { width: 36px; height: 36px; border-radius: 10px; }

    /* Advantage Cards */
    .advantage-grid { grid-template-columns: 1fr; gap: 2px; }
    .advantage-card { padding: 28px 20px; }
    .advantage-icon { width: 40px; height: 40px; margin-bottom: 16px; }
    .advantage-card h3 { font-size: 0.95rem; }
    .advantage-card p { font-size: 0.8rem; }


    /* Wizard */
    .wizard { padding: 20px 16px; }
    .wizard-side-media { max-height: 200px; }
    .wizard-progress { margin-bottom: 28px; }
    .wizard-progress-dot { width: 32px; height: 32px; font-size: 0.65rem; }
    .wizard-progress-line { width: 16px; }
    .wizard-step h3 { font-size: 1.05rem; }
    .wizard-nav { flex-direction: column; gap: 10px; margin-top: 24px; padding-top: 20px; }
    .wizard-nav .btn { width: 100%; justify-content: center; }
    .role-option { padding: 14px 14px; }
    .role-label strong { font-size: 0.85rem; }
    .role-label span { font-size: 0.7rem; }
    .wizard-side-caption strong { font-size: 1rem; }

    /* FAQ */
    .faq-question { padding: 18px 0; font-size: 0.8rem; }
    .faq-answer-inner { font-size: 0.8rem; padding-bottom: 18px; }
    .faq-icon { width: 20px; height: 20px; font-size: 0.65rem; }

    /* Forms */
    .form-row { grid-template-columns: 1fr; }
    .form-input, .form-select, .form-textarea { padding: 12px 14px; font-size: 0.85rem; }
    .form-label { font-size: 0.7rem; }
    .contact-form-card { padding: 24px 16px; }
    .contact-phone { padding: 16px; }
    .contact-phone-icon { width: 36px; height: 36px; }
    .contact-phone-text strong { font-size: 1rem; }
    .contact-detail { gap: 10px; }
    .contact-detail-icon { width: 32px; height: 32px; }

    /* Footer */
    .footer { padding: 56px 0 24px; }
    .footer-gallery { grid-template-columns: 1fr; gap: 10px; }
    .footer-links-grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
    .footer-brand p { font-size: 0.8rem; }
    .footer-legal { font-size: 0.7rem; padding-top: 20px; }

    /* Mobile CTA Bar */
    .mobile-cta .btn { padding: 12px 10px; font-size: 0.55rem; }

    /* Glow Orbs - minimal on small screens */
    .glow-orb { display: none; }
}

/* ===== SMALL MOBILE: 375px ===== */
@media (max-width: 375px) {
    .container { padding: 0 12px; }
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.3rem; }
    .hero-container { padding: 0 12px; gap: 16px; }
    .hero-title { font-size: 1.2rem; }
    .hero-text { font-size: 0.75rem; }
    .hero-cards { padding: 6px 12px; gap: 8px; }
    .hero-card { width: calc(72vw - 24px); min-width: calc(72vw - 24px); }
    .hero-card img, .hero-card-video { height: 95px; }
    .hero-card-content { padding: 8px 10px; }
    .hero-card-content h3 { font-size: 0.75rem; }
    .hero-card-content p { font-size: 0.62rem; }
    .hero-card-tag { font-size: 0.45rem; padding: 2px 7px; }
    .hero-stats { flex-direction: column; align-items: stretch; padding: 0 12px; }
    .stat-badge:first-child { border-right: 1px solid var(--border); border-bottom: none; }
    .btn { padding: 12px 20px; font-size: 0.6rem; }
    .btn-lg { padding: 14px 24px; }
    .wizard-progress-dot { width: 28px; height: 28px; font-size: 0.6rem; }
    .wizard-progress-line { width: 12px; }
    .advantage-card { padding: 24px 16px; }
    .process-grid { grid-template-columns: 1fr; gap: 10px; }
    .process-card { padding: 18px 14px 14px; }
    .process-number { font-size: 2.5rem; }
}

/* --- 27. Performance --- */
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; filter: none; transition: none; }
    .glow-orb, .noise-overlay { display: none; }
    .scroll-indicator span { animation: none; }
    .marquee-track { animation: marquee-scroll 60s linear infinite; }
    .hero::after, .hero-content::before { animation: none; }
}

/* --- 28. Print --- */
@media print {
    .header, .mobile-cta, .whatsapp-float, .theme-toggle, .glow-orb, .noise-overlay, .scroll-indicator, .marquee { display: none !important; }
    body { background: #fff; color: #111; }
    .section { padding: 24px 0; }
}
