:root {
    /* Colors - Dark Premium Theme */
    --color-bg-dark: #030411;
    /* Deepest Black/Blue for main background */
    --color-bg-secondary: #121720;
    /* Slightly lighter for sections/cards */
    --color-text-main: #f8f8f8;
    /* Off-white for primary text */
    --color-text-muted: #b5b6c9;
    /* Muted text for secondary info */
    --color-accent: #f2eac0;
    /* Extracted Gold from User Image */
    --color-gold-shiny: linear-gradient(to right, #f2eac0, #fdfadd, #e6deb0, #fdfadd, #f2eac0);
    /* Gradient matching new extracted gold */
    --color-gold-highlight: #fdfadd;
    /* Highlight remains soft */
    --color-glass: rgba(33, 39, 52, 0.75);
    /* Glassmorphism background */
    --color-border: rgba(255, 255, 255, 0.1);

    /* Fonts */
    --font-primary: 'Outfit', sans-serif;
    /* For Headings - Geometric & Modern */
    --font-secondary: 'Roboto Condensed', sans-serif;
    /* For technical/body text */

    /* Spacing */
    --spacing-container: 5%;
    --border-radius-sm: 4px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-secondary);
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    /* Safe Area for iPhone Notch/Dynamic Island */
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

/* Typography Reset */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 300;
    /* Thin, elegant weights */
    color: var(--color-text-main);
    margin-top: 0;
    line-height: 1.2;
    text-transform: none;
    -webkit-hyphens: none;
    hyphens: none;
}

h1 {
    font-size: 4.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 3.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 2.5rem;
}

p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* --- Animations --- */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.app-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

/* Glassmorphism Cards (Shared) - moved up for clarity */

.glass-card {
    background: rgba(18, 23, 32, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

/* Header Styles */
header {
    background-color: var(--color-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 5%;
    border-bottom: 1px solid var(--color-border);
    transition: padding 0.3s ease, background-color 0.3s ease;
    /* Specific properties instead of 'all' */
    will-change: padding, background-color;
    /* Hint to browser */
    transform: translateZ(0);
    /* Force hardware accel */
}

header.scrolled {
    padding: 0.5rem 5%;
    background-color: rgba(20, 24, 34, 0.95);
    /* Darker, less transparent on scroll */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

/* Logo Container Revert */
.logo {
    position: relative;
    display: flex;
    align-items: center;
    height: 90px;
    min-width: 140px;
    /* Fixed width to prevent jump */
    transition: height 0.3s ease-out;
    /* Simpler, faster return */
}

header.scrolled .logo {
    height: 50px;
}

/* Main Logo (Helmet) */
.logo-main {
    height: 100%;
    width: auto;
    object-fit: contain;
    position: absolute;
    left: 0;
    top: 0;
    transform-origin: center left;

    /* Premium Exit Animation */
    opacity: 1;
    transform: translateY(0) scale(1);
    /* filter: blur(0); Removed for performance */
    will-change: transform, opacity;
    transition:
        opacity 0.3s ease-out,
        transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* Faster return */
}

/* Scroll Logo (Text) */
.logo-scroll {
    height: 35px;
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    position: absolute;
    left: 0;
    top: 58%;
    margin-top: -17.5px;
    transform-origin: center left;
    will-change: transform, opacity;

    /* Initial Hidden State */
    opacity: 0;
    transform: translateY(100%) scale(0.95);
    transition:
        opacity 0.3s ease-out,
        transform 0.4s ease-out;
    /* Simple exit */
    transition-delay: 0s;
}

/* --- Scrolled State Triggers --- */

header.scrolled .logo-main {
    opacity: 0;
    transform: translateY(-120%) scale(0.8);
    /* Move up and shrink */
    /* filter: blur(8px); Removed for performance */
    transition:
        opacity 0.3s cubic-bezier(0.4, 0, 1, 1),
        transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

header.scrolled .logo-scroll {
    opacity: 1;
    transform: translateY(0) scale(1);
    /* filter: blur(0); Removed for performance */
    transition-delay: 0s;
    /* Immediate reaction on scroll active */
}

/* --- Top Banner (Kleinanzeigen) --- */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(135deg, rgba(18, 23, 32, 0.95) 0%, rgba(3, 4, 17, 0.98) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    height: 36px;
}

.top-banner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    height: 100%;
    padding: 0 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-banner-link:hover {
    background: rgba(134, 184, 23, 0.1);
}

.top-banner-link:hover .top-banner-arrow {
    transform: translateX(3px);
}

.top-banner-text {
    color: var(--color-text-muted);
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.kleinanzeigen-logo {
    height: 22px;
    width: auto;
    flex-shrink: 0;
}

.top-banner-arrow {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .top-banner {
        height: 32px;
    }

    .top-banner-text {
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 200px;
    }

    .kleinanzeigen-logo {
        height: 18px;
    }

    .top-banner-arrow {
        width: 14px;
        height: 14px;
    }
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    padding: 0.5rem var(--spacing-container);
    /* Reduced padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background: rgba(3, 4, 17, 0.2);
    /* Slight tint initially */
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    padding: 1rem var(--spacing-container);
    background: rgba(3, 4, 17, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo-link {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: auto;
    z-index: 1;
    cursor: pointer;
}

.logo {
    height: 90px;
    /* Maximize within reduced header */
    width: auto;
    object-fit: contain;
    position: relative;
    /* Back to flow */
    z-index: 2;
    transition: transform 0.3s ease;
    transform: none;
    /* Reset transform */
    top: auto;
    left: auto;
}

.logo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .logo {
        height: 60px;
        /* Adjusted for mobile */
    }
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

/* Dropdown */
.dropdown-container {
    position: relative;
}

.dropdown-trigger i {
    font-size: 1rem;
    vertical-align: middle;
    transition: transform 0.3s ease;
    margin-left: 0.3rem;
}

.dropdown-container:hover .dropdown-trigger i {
    transform: rotate(180deg);
    color: var(--color-accent);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(18, 23, 32, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(167, 149, 99, 0.2);
    padding: 0.8rem 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

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

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.5rem;
    color: var(--color-text-muted);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(167, 149, 99, 0.1);
    color: var(--color-text-main);
    border-left-color: var(--color-accent);
    padding-left: 1.8rem;
}

.dropdown-menu a::before {
    content: '→';
    font-size: 0.8rem;
    color: var(--color-accent);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.dropdown-menu a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.dropdown-menu a::after {
    display: none;
}

/* Nav Actions (Phone, Mail, Button) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-toggle {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.lang-toggle:hover {
    color: var(--color-accent);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: rgba(18, 23, 32, 0.80);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(167, 149, 99, 0.2);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 100px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.lang-option:hover,
.lang-option.active {
    color: var(--color-accent);
    background: rgba(167, 149, 99, 0.1);
}

/* Mobile Header Actions */
.mobile-header-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
    position: relative;
}

.mobile-lang-toggle {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-lang-toggle:hover {
    color: var(--color-accent);
}

.mobile-lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: rgba(18, 23, 32, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(167, 149, 99, 0.3);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 100px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .mobile-header-actions {
        display: flex;
    }
}

.icon-link {
    font-size: 1.2rem;
    color: var(--color-text-main);
    transition: color 0.3s ease;
}

.icon-link:hover {
    color: var(--color-accent);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--color-gold-shiny);
    color: #000 !important;
    /* Contrast black text on gold */
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(196, 156, 72, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: var(--color-text-main);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: var(--color-text-main);
}

/* CTA Contact Button - Responsive Text */
.cta-contact-btn .cta-text-mobile {
    display: none;
}

.cta-contact-btn .cta-text-desktop {
    display: inline;
}

@media (max-width: 768px) {
    .cta-contact-btn .cta-text-mobile {
        display: inline;
    }

    .cta-contact-btn .cta-text-desktop {
        display: none;
    }
}

/* --- Hero Section & Background --- */

/* Video Background Wrapper */
.bg-image {
    position: fixed;
    /* Fixed for parallax effect */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    background: #000 url('assets/hero-poster.webp') center/cover no-repeat;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1.1);
    /* Slight zoom for cinematic feel */
    opacity: 1;
    /* Fully opaque to cover poster */
}

/* Premium Gradient Overlay - Key for legibility */
.bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(3, 4, 17, 0.9) 0%,
            rgba(3, 4, 17, 0.4) 50%,
            rgba(3, 4, 17, 0.8) 100%);
    z-index: 1;
}

/* Hero Content Layout */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    /* Centered content focus */
    align-items: center;
    padding: 0 var(--spacing-container);
    padding-top: 80px;
    /* Offset for fixed header */
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    z-index: 10;
}

.headline {
    font-family: var(--font-primary);
    font-size: clamp(3.5rem, 6vw, 6.5rem) !important;
    font-weight: 200 !important;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--color-text-main);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeSlideUp 1s ease forwards 0.2s;
    text-transform: none !important;
}

.headline-sub {
    display: block !important;
    font-size: 0.5em !important;
    font-weight: 300 !important;
    margin-top: 0.5rem;
    color: var(--color-accent) !important;
    opacity: 1 !important;
    text-transform: none !important;
}

.headline .highlight-text {
    font-weight: 500;
    background: var(--color-gold-shiny);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtext {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    color: var(--color-text-main);
    /* Brighter text for better readability */
    font-weight: 400;
    max-width: 600px;
    margin-bottom: 3.5rem;
    line-height: 1.7;
    border-left: 2px solid var(--color-accent);
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    /* Subtle dark bg for contrast */
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    opacity: 0;
    animation: fadeSlideUp 1s ease forwards 0.4s;
}

/* --- CTA Row --- */
.cta-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeSlideUp 1s ease forwards 0.8s;
}

/* --- Stats Row (Premium) --- */
.stats-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeSlideUp 1s ease forwards 0.6s;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 2rem;
    background: rgba(18, 23, 32, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    transition: all 0.4s ease;
}

.stat-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Stat Card as Link */
.stat-card-link {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

.stat-card-link:hover {
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: rgba(18, 23, 32, 0.7);
}

.stat-card-link:active {
    transform: translateY(-1px);
}

.stat-cta-subtitle {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.3rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.stat-card-link:hover .stat-cta-subtitle {
    opacity: 1;
    color: var(--color-text-main);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    opacity: 0.9;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--color-text-main);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-number sup {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-accent);
    margin-left: 0.2rem;
}

.stat-label {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.3rem;
}

.stat-card-link .stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-main);
    margin-top: 0;
    margin-bottom: 0.2rem;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--color-accent), transparent);
    opacity: 0.5;
}

/* --- Hero Card (Right Side) --- */
.hero-card-container {
    position: absolute;
    bottom: 6rem;
    right: var(--spacing-container);
    z-index: 10;
}

.hero-card-container .glass-card {
    width: 380px;
    /* Reduced width */
    padding: 2.5rem 2rem;
    /* Reduced padding */
    background: rgba(10, 14, 20, 0.4);
    /* More transparent */
    backdrop-filter: blur(20px);
    /* Reduced blur */
    border: 1px solid rgba(167, 149, 99, 0.15);
    /* More subtle border */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    /* Softer shadow */
}

/* Button removed in HTML, removing style block referenced previously */

.hero-card-container h3 {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    /* Smaller outline text */
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.hero-card-container h3 span {
    display: block;
    font-size: 2.2rem;
    /* Reduced headline size */
    font-weight: 400;
    color: var(--color-text-main);
    letter-spacing: -0.02em;
    margin-top: 0.4rem;
    text-transform: none;
}

.hero-card-container p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-card-container .card-footer {
    background: rgba(255, 255, 255, 0.02);
    /* Very subtle fill */
    border: 1px solid rgba(167, 149, 99, 0.3);
    /* Thinner look */
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    /* Compact footer */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-accent);
    box-shadow: none;
    /* Removed footer shadow to flatten */
}

.hero-card-container .avatars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
}

.hero-card-container .card-stats i {
    font-size: 1.5rem;
    color: var(--color-accent);
}

/* --- Content Sections --- */

.section-glass {
    position: relative;
    padding: 6rem var(--spacing-container);
    z-index: 10;
    background: rgba(3, 4, 17, 0.70);
    /* Dark background to delimit section */
    backdrop-filter: blur(20px);
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.5);
    /* Shadow to separate from video */
}

.section-header {
    margin-bottom: 5rem;
    max-width: 800px;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
    letter-spacing: -0.02em;
}

.section-header p {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-weight: 300;
    border-left: 1px solid var(--color-accent);
    padding-left: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Service Cards - "Showroom" Style */
.service-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.service-card p {
    flex-grow: 1;
}

.service-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card .icon-box {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-text-main);
}

.service-card p {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Card Link - "Mehr erfahren" */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: var(--color-text-main);
}

.card-link:hover i {
    transform: translateX(5px);
}

/* Projects Section - Horizontal Scroll */
#projects .grid-3 {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) var(--color-bg-secondary);
    -webkit-overflow-scrolling: touch;
}

#projects .grid-3::-webkit-scrollbar {
    height: 8px;
}

#projects .grid-3::-webkit-scrollbar-track {
    background: var(--color-bg-secondary);
    border-radius: 4px;
}

#projects .grid-3::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 4px;
}

#projects .grid-3::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-main);
}

#projects .project-card {
    flex: 0 0 350px;
    min-width: 350px;
}

/* Project Cards */
.project-card {
    padding: 0;
    background: transparent;
    border: none;
    overflow: hidden;
}

.project-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-img {
    opacity: 1;
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-card p {
    font-size: 0.9rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Reviews Section */
#reviews {
    padding: 6rem 2rem;
}

.reviews-grid {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: visible;
    padding-top: 10px;
    padding-bottom: 1rem;
    margin-top: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) var(--color-bg-secondary);
    -webkit-overflow-scrolling: touch;
    margin-bottom: 3rem;
}

.reviews-grid::-webkit-scrollbar {
    height: 8px;
}

.reviews-grid::-webkit-scrollbar-track {
    background: var(--color-bg-secondary);
    border-radius: 4px;
}

.reviews-grid::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 4px;
}

.reviews-grid::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-main);
}

.review-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    min-height: 200px;
    max-height: 280px;
    flex: 0 0 350px;
    min-width: 350px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, border-top-width 0.3s ease;
    border-top: 0 solid transparent;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    border-top: 4px solid var(--color-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 15px rgba(167, 149, 99, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-bg-main);
    flex-shrink: 0;
}

.review-author h4 {
    font-size: 1.1rem;
    margin: 0 0 0.25rem 0;
    color: var(--color-text-main);
}

.review-service {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    flex-shrink: 0;
}

.review-rating .icon {
    width: 18px;
    height: 18px;
    color: #fbbf24;
}

.review-rating .icon-star {
    color: rgba(251, 191, 36, 0.3);
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-main);
    margin: 0;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.review-date {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
    margin-top: auto;
}

.reviews-footer {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    #reviews {
        padding: 4rem 1.5rem;
    }
    
    .reviews-grid {
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
        flex: 0 0 300px;
        min-width: 300px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .review-rating {
        margin-top: 0.5rem;
    }
}

@media (min-width: 1025px) {
    #reviews {
        padding: 5.4rem 1.8rem;
    }
    
    .reviews-grid {
        gap: 1.8rem;
        margin-bottom: 2.7rem;
    }
    
    .review-card {
        padding: 1.8rem;
    }
}

/* About Section */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.text-block h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.text-block p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--color-text-main);
}

.check-list i {
    color: var(--color-accent);
}

/* Promo CTA */
.promo-cta {
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(18, 23, 32, 0.8), rgba(10, 14, 20, 0.9));
    border: 2px solid var(--color-accent);
    box-shadow: 0 20px 60px rgba(167, 149, 99, 0.2), 
                0 0 30px rgba(167, 149, 99, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.promo-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-bg-main);
    padding: 0.4rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(167, 149, 99, 0.4);
}

.promo-cta h3 {
    font-size: 1.8rem;
    margin: 1.5rem 0 1rem 0;
    color: var(--color-accent);
    font-weight: 600;
}

.promo-cta > p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-main);
    margin-bottom: 2rem;
}

.promo-code-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.promo-code {
    background: rgba(167, 149, 99, 0.1);
    border: 2px dashed var(--color-accent);
    border-radius: var(--border-radius-sm);
    padding: 1.2rem 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    font-family: 'Courier New', monospace;
    text-align: center;
    transition: all 0.3s ease;
}

.promo-code:hover {
    background: rgba(167, 149, 99, 0.15);
    border-color: var(--color-accent);
    transform: scale(1.02);
}

.promo-copy-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.promo-copy-btn .icon {
    width: 18px;
    height: 18px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.promo-copy-btn.copied {
    background: rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
}

.promo-copy-btn.copied .copy-text {
    display: none;
}

.promo-copy-btn.copied .copied-text {
    display: inline;
    color: #ffffff;
}

.promo-copy-btn.copied .icon {
    opacity: 1;
    transform: scale(1);
    color: #ffffff;
}

.promo-valid {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.promo-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
    margin-bottom: 0;
    line-height: 1.4;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .promo-cta {
        padding: 1.5rem 1.25rem;
        max-width: 100%;
    }
    
    .promo-cta h3 {
        font-size: 1.3rem;
        margin: 1rem 0 0.75rem 0;
        line-height: 1.3;
    }
    
    .promo-cta > p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .promo-code-wrapper {
        gap: 0.75rem;
        margin: 1.5rem 0;
    }
    
    .promo-code {
        font-size: 1.1rem;
        padding: 0.9rem 1.25rem;
        letter-spacing: 0.15em;
    }
    
    .promo-copy-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .promo-valid {
        font-size: 0.8rem;
        margin-top: 0.75rem;
    }
    
    .promo-note {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-top: 0.4rem;
    }
}

@media (max-width: 480px) {
    .promo-cta {
        padding: 1.25rem 1rem;
    }
    
    .promo-cta h3 {
        font-size: 1.15rem;
        margin: 0.75rem 0 0.5rem 0;
    }
    
    .promo-cta > p {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }
    
    .promo-code {
        font-size: 1rem;
        padding: 0.8rem 1rem;
        letter-spacing: 0.1em;
    }
    
    .promo-copy-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .promo-valid,
    .promo-note {
        font-size: 0.7rem;
    }
}

@media (max-width: 375px) {
    .promo-cta {
        padding: 1rem 0.875rem;
    }
    
    .promo-cta h3 {
        font-size: 1.05rem;
    }
    
    .promo-code {
        font-size: 0.95rem;
        padding: 0.75rem 0.875rem;
    }
}

/* iPhone and small devices optimization */
@media (max-width: 428px) {
    .visual-block {
        width: 100%;
        max-width: 100%;
    }
    
    .promo-cta {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
}

/* Large mobile devices (iPhone Pro Max, etc.) */
@media (min-width: 429px) and (max-width: 768px) {
    .promo-cta {
        max-width: 100%;
    }
}

@media (min-width: 1025px) {
    .promo-cta {
        padding: 2.7rem 2.25rem;
    }
    
    .promo-cta h3 {
        font-size: 1.62rem;
    }
}

.about-img {
    width: 100%;
    height: auto;
    /* Default aspect ratio */
    min-height: 300px;
    /* Ensure some height */
    object-fit: cover;
    /* Global safety against distortion */
    border-radius: var(--border-radius-sm);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--color-border);
    filter: brightness(0.9) contrast(1.1);
    /* Cinematic look */
}

/* Contact Section */
.contact-form-card {
    background: var(--color-bg-secondary);
    padding: 3rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--color-border);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 0.8rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
    padding: 1rem;
    color: var(--color-text-main);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    outline: none;
    background: rgba(0, 0, 0, 0.5);
}

.form-group input[type="file"] {
    padding: 0.75rem;
    cursor: pointer;
    border: 1px dashed var(--color-border);
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.form-group input[type="file"]:hover {
    border-color: var(--color-accent);
    background: rgba(0, 0, 0, 0.3);
}

.form-group input[type="file"]:focus {
    border-color: var(--color-accent);
    border-style: solid;
    outline: none;
}

.form-help {
    display: block;
    margin-top: 0.5rem;
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    opacity: 0.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-top: 2rem;
}

.detail-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.detail-item i {
    font-size: 2rem;
    color: var(--color-accent);
}

.detail-item h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
}

.detail-item p,
.detail-item a {
    color: var(--color-text-muted);
    font-size: 1rem;
    text-decoration: none;
}

.detail-item a:hover {
    color: var(--color-text-main);
}

/* Footer */
.glass-footer {
    background: linear-gradient(180deg,
        rgba(10, 14, 20, 0.95) 0%,
        rgba(3, 4, 17, 0.98) 100%);
    border-top: 1px solid rgba(167, 149, 99, 0.2);
    padding: 5rem 5% 3rem;
    margin-top: 5rem;
    position: relative;
}

.glass-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        var(--color-accent) 20%,
        var(--color-accent) 80%,
        transparent);
    opacity: 0.4;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-col {
    min-width: 150px;
}

.footer-col h4 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-text-main);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: var(--color-gold-shiny);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-col h5 {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(167, 149, 99, 0.2);
}

.footer-col a {
    display: block;
    color: var(--color-text-muted);
    font-family: var(--font-secondary);
    text-decoration: none;
    margin-bottom: 0.7rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-col a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--color-text-main);
    padding-left: 12px;
}

.footer-col a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-col p {
    color: var(--color-text-muted);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-branding {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

/* Override .footer-col a styles for branding link */
.footer-branding a.branding-link {
    display: inline-block !important;
    transition: opacity 0.3s ease;
    line-height: 0;
    margin-bottom: 0;
    color: transparent;
}

.footer-branding a.branding-link:hover {
    opacity: 0.8;
    color: transparent;
}

.branding-logo {
    display: block !important;
    height: auto;
    width: 300px;
    max-width: 100%;
    visibility: visible !important;
    opacity: 1 !important;
    object-fit: contain;
}

/* ===========================================
   RESPONSIVE / MOBILE STYLES
   =========================================== */

/* --- Mobile Menu Toggle (Hamburger) --- */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--color-text-main);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Menu Overlay --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(3, 4, 17, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    gap: 1.5rem;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-nav a {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--color-text-main);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
}

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

.mobile-nav .sub-link {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    padding: 0.5rem 1.5rem;
}

.mobile-nav .mobile-cta {
    margin-top: 1rem;
    font-size: 1rem;
    width: auto;
    align-self: center;
    text-align: center !important;
    padding: 0.6rem 2rem;
}

/* Mobile Dropdown */
.mobile-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.mobile-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    cursor: pointer;
    width: 100%;
    padding: 0.8rem 1.5rem;
}

.mobile-dropdown-trigger span {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-text-main);
}

.mobile-dropdown-trigger i {
    font-size: 1rem;
    color: var(--color-text-main);
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-trigger i {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    align-items: flex-start;
}

.mobile-dropdown.active .mobile-dropdown-content {
    max-height: 200px;
    padding-top: 0.8rem;
}

.mobile-dropdown-content a {
    font-size: 1.1rem !important;
    color: var(--color-text-muted) !important;
    padding: 0.5rem 1rem;
}

.mobile-dropdown-content a:hover {
    color: var(--color-accent) !important;
}

/* ===========================================
   TABLET-ONLY BREAKPOINT (769px-1024px)
   iPad, Galaxy Tab, Surface Go
   =========================================== */
@media (min-width: 769px) and (max-width: 1024px) {

    /* Use Mobile Navigation on Tablets (prevents overlap) */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-header-actions {
        display: flex;
    }

    /* 2-Column Grid for Service Cards on Tablets */
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Keep projects section horizontal scrollable */
    #projects .grid-3 {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        overflow-x: auto;
        overflow-y: hidden;
    }

    /* Optimized Typography for Tablets */
    .section-header h2 {
        font-size: 2.5rem;
    }

.headline {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 200;
}

    /* Stats Row: 2x2 Grid instead of hidden */
    .stats-row {
        display: flex !important;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stat-card {
        flex: 1 1 calc(50% - 0.5rem);
        padding: 1rem;
    }

    /* CTA Buttons: Side by side on tablets */
    .cta-row {
        flex-direction: row;
        gap: 2rem;
    }

    .cta-row .btn {
        width: auto;
        min-width: 180px;
    }

    /* Content Split: Keep 2 columns on tablets */
    .content-split {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    /* Header: Optimized for Tablets */
    header {
        padding: 0.8rem 5%;
    }

    .logo {
        height: 70px;
        min-width: 120px;
    }

    header.scrolled .logo {
        height: 45px;
    }

    /* About Image: Prevent distortion */
    .about-img {
        height: 350px;
        /* Explicit height forces crop */
        width: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        /* Ensure block behavior */
    }

    /* Project Images: Maintain aspect ratio */
    .project-img {
        aspect-ratio: 16/9;
        object-fit: cover;
        width: 100%;
    }

    /* Service Card Images */
    .service-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
        aspect-ratio: 16/10;
    }

    /* Contact Details: 2 columns */
    .contact-details {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Footer: 2 columns */
    .footer-content {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 45%;
    }
}

/* Tablet Landscape Optimization */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
        padding-top: 80px;
    }

    .hero-content {
        max-width: 70%;
    }

    /* 3-column grid in landscape if space allows */
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Keep projects section horizontal scrollable */
    #projects .grid-3 {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        overflow-x: auto;
        overflow-y: hidden;
    }
}

/* ===========================================
   LAPTOP OPTIMIZATION (1280px - 1440px)
   =========================================== */
@media (min-width: 1025px) and (max-width: 1440px) {
    /* Reduce headline size for 13" MacBook */
    .headline {
        font-size: clamp(2.8rem, 4.5vw, 4.5rem);
    }

    /* Reduce section headers */
    .section-header h2 {
        font-size: clamp(2.2rem, 4vw, 3rem);
    }

    /* Reduce section header margin */
    .section-header {
        margin-bottom: 3.5rem;
    }

    /* Reduce hero content max-width */
    .hero-content {
        max-width: 750px;
    }

    /* Reduce spacing container */
    :root {
        --spacing-container: 4%;
    }

    /* Reduce stat card padding */
    .stat-card {
        padding: 1.2rem 1.5rem;
    }

    /* Reduce service card padding */
    .service-card {
        padding: 2rem;
    }

    /* Reduce content split gap */
    .content-split {
        gap: 4rem;
    }

    /* Reduce contact form card padding */
    .contact-form-card {
        padding: 2.5rem;
    }

    /* Reduce h1 size */
    h1 {
        font-size: 3.5rem;
    }

    /* Reduce h2 size */
    h2 {
        font-size: 2.8rem;
    }

    /* Reduce paragraph size slightly */
    p {
        font-size: 1rem;
    }

    /* Reduce subtext size */
    .subtext {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    /* Reduce stats row gap */
    .stats-row {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    /* Reduce stat icon size */
    .stat-icon {
        font-size: 2rem;
    }

    /* Reduce stat number size */
    .stat-number {
        font-size: 2.2rem;
    }

    /* Reduce grid gap */
    .grid-3 {
        gap: 1.5rem;
    }

    /* Reduce project card spacing */
    .project-card h3 {
        font-size: 1.3rem;
    }

    /* Reduce text block spacing */
    .text-block h2 {
        font-size: clamp(2rem, 4vw, 2.8rem);
        margin-bottom: 1.5rem;
    }

    .text-block p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Reduce process grid gap */
    .process-grid {
        gap: 2rem;
    }

    /* Reduce button sizes slightly */
    .btn-large {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
}

/* ===========================================
   TABLET BREAKPOINT (1024px)
   =========================================== */
@media (max-width: 1024px) {

    /* Use Mobile Navigation on Tablets (fix cascade issue) */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-header-actions {
        display: flex;
    }

    .content-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-header h2 {
        font-size: 2.8rem;
    }

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

    /* Keep projects section horizontal scrollable on mobile */
    #projects .grid-3 {
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 1rem;
    }

    #projects .project-card {
        flex: 0 0 280px;
        min-width: 280px;
    }

    .stats-row {
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1 1 200px;
    }
}

/* ===========================================
   MOBILE BREAKPOINT (768px)
   =========================================== */
@media (max-width: 768px) {

    /* Container Spacing */
    :root {
        --spacing-container: 5%;
    }

    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .navbar {
        padding: 1rem var(--spacing-container);
        top: 32px;
    }

    .logo {
        font-size: 1.3rem;
    }

    /* Hero Section */
    .hero-section {
        padding-top: 140px;
        min-height: 100vh;
        align-items: flex-start;
        padding-bottom: 2rem;
    }

    .hero-content {
        max-width: 100%;
        height: calc(100vh - 180px);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .headline {
        font-size: clamp(2.2rem, 8vw, 3.5rem) !important;
        margin-bottom: 0;
    }

    h1 {
        font-size: 2.5rem !important;
    }

    /* Bottom section wrapper - stats + CTA pushed to bottom */
    .stats-row {
        margin-top: auto;
    }

    /* Stats Row - Hidden on Mobile */
    .stats-row {
        display: none;
    }

    .stat-card {
        flex: 1;
        padding: 0.8rem 1rem;
        gap: 0.6rem;
        background: rgba(18, 23, 32, 0.6);
    }

    .stat-icon {
        font-size: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-number sup {
        font-size: 0.7rem;
    }

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.05em;
    }

    /* CTA Buttons - Stack & Center at Bottom */
    .cta-row {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
        margin-top: auto;
        padding-bottom: 3rem;
    }

    .cta-row .btn {
        width: 80%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }

    /* Sections */
    .section-glass {
        padding: 4rem var(--spacing-container);
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Service Cards */
    .service-card {
        padding: 2rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    /* About Section */
    .about-img {
        height: 300px;
        /* Explicit height */
        /* object-fit inherited from global */
        width: 100%;
    }

    .text-block h2 {
        font-size: 2rem;
    }

    .check-list li {
        font-size: 1rem;
    }

    /* Contact Section */
    .contact-form-card {
        padding: 2rem;
    }

    .contact-details {
        gap: 2rem;
        padding: 1.5rem 0;
    }

    .detail-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 0.8rem;
        padding: 1rem;
        background: rgba(18, 23, 32, 0.4);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .detail-item i {
        font-size: 1.8rem;
        color: var(--color-accent);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .detail-item h4 {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }

    .detail-item p,
    .detail-item a {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        gap: 2rem;
    }

    .footer-col {
        width: 100%;
    }

    .footer-branding {
        justify-content: flex-start;
        margin-top: 1rem;
    }

    .branding-logo {
        width: 200px;
        max-width: 100%;
    }

    /* Dropdown - disable on mobile (use overlay instead) */
    .dropdown-menu {
        display: none !important;
    }
}

/* ===========================================
   SMALL PHONE BREAKPOINT (480px)
   =========================================== */
@media (max-width: 480px) {
.headline {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
    font-weight: 200;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--color-text-main);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeSlideUp 1s ease forwards 0.2s;
    text-transform: none;
}

h1 {
    font-size: 2.2rem !important;
}

.headline-sub {
    display: block;
    font-size: 0.5em;
    font-weight: 300;
    margin-top: 0.5rem;
    color: var(--color-accent);
    opacity: 1;
    text-transform: none;
}


    .stats-row {
        gap: 0.8rem;
    }

    .stat-card {
        padding: 1rem;
        gap: 0.8rem;
    }

    .stat-icon {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }

    .mobile-nav a {
        font-size: 1.2rem;
    }
}

/* ===========================================
   VERY SMALL PHONE BREAKPOINT (320px - iPhone SE)
   =========================================== */
@media (max-width: 320px) {
    .headline {
        font-size: 1.8rem !important;
    }

    h1 {
        font-size: 2rem !important;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .btn {
        width: 100%;
        font-size: 0.8rem;
        padding: 1rem 1.5rem;
    }

    .cta-row .btn {
        width: 100%;
        max-width: none;
    }

    .contact-form-card {
        padding: 1rem;
    }

    .detail-item {
        padding: 0.8rem;
    }
}

/* ===========================================
   SMARTPHONE TOUCH TARGET OPTIMIZATION
   =========================================== */
@media (max-width: 768px) {

    /* Ensure minimum 44px touch targets (Apple HIG) */
    .btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .burger-btn {
        min-width: 44px;
        min-height: 44px;
    }

    .icon-link,
    .mobile-lang-toggle {
        min-width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Typography: Hyphenation for German words */
    p {
        hyphens: auto;
        -webkit-hyphens: auto;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    h1,
    .headline {
        hyphens: none;
        -webkit-hyphens: none;
        word-break: normal;
    }

    /* Footer Safe Area for iPhone home indicator */
    .footer {
        padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    }

    /* Hero section bottom Safe Area */
    .cta-row {
        padding-bottom: calc(3rem + env(safe-area-inset-bottom));
    }
}

/* No hyphenation for specific words */
.no-hyphen {
    hyphens: none !important;
    -webkit-hyphens: none !important;
    white-space: nowrap;
}

/* --- Modal & Legal Popup Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 4, 17, 0.85);
    /* Dark overlay */
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

@media (min-width: 769px) {
    .modal-overlay {
        background: rgba(3, 4, 17, 0.75);
        backdrop-filter: blur(6px);
    }
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    width: 100%;
    max-width: 600px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    background: rgba(18, 23, 32, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    border-radius: 12px;
}

@media (min-width: 769px) {
    .modal-container {
        max-width: 550px;
        max-height: 80vh;
    }
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--color-text-main);
    letter-spacing: -0.01em;
    font-weight: 400;
}

@media (min-width: 769px) {
    .modal-header {
        padding: 1.25rem 1.75rem;
    }

    .modal-header h3 {
        font-size: 1.35rem;
    }
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--color-accent);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

@media (min-width: 769px) {
    .modal-body {
        padding: 1.75rem;
        font-size: 0.9rem;
    }
}

.modal-body h4 {
    color: var(--color-text-main);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 1.4rem;
}

@media (min-width: 769px) {
    .modal-body h4 {
        margin-top: 1.75rem;
        margin-bottom: 0.7rem;
        font-size: 1.3rem;
    }
}

.modal-body h5 {
    color: var(--color-text-main);
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

@media (min-width: 769px) {
    .modal-body h5 {
        margin-top: 1rem;
        margin-bottom: 0.4rem;
        font-size: 1.05rem;
    }
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    margin-bottom: 1rem;
}

.modal-body a {
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.modal-body a:hover {
    border-color: var(--color-accent);
}

/* Custom Scrollbar for Modal */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .modal-container {
        max-height: 95vh;
        width: 100%;
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }
}

/* --- Cookie Banner Styles --- */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    /* Start hidden below screen */
    width: 90%;
    max-width: 600px;
    background: rgba(18, 23, 32, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--color-gold-highlight);
    /* Subtle highlight */
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    z-index: 5000;
    /* Highest priority */
    padding: 1.5rem 2.5rem;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease, visibility 0.4s ease;
    visibility: hidden;
    opacity: 0;
}

.cookie-banner.active {
    transform: translateX(-50%) translateY(0);
    visibility: visible;
    opacity: 1;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-text h3 {
    font-size: 1.2rem;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.cookie-text h3 i {
    color: var(--color-accent);
}

.cookie-text p {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.cookie-link {
    font-size: 0.85rem;
    color: var(--color-accent);
    text-decoration: underline;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.cookie-link:hover {
    opacity: 1;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-text {
        max-width: 60%;
    }

    .cookie-actions {
        flex-direction: column;
        width: auto;
        align-items: flex-end;
    }
}

@media (max-width: 767px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        transform: translateY(100%);
        border-radius: 12px 12px 0 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        padding: 1.5rem;
        visibility: hidden;
        opacity: 0;
    }

    .cookie-banner.active {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }

    .cookie-actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn-sm {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
        /* Larger touch target */
    }
}

/* --- Process Section Styles (Premium) --- */
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    /* Optional: Connector line behind */
}

/* Tablet: 2 Spalten */
@media (min-width: 768px) and (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Desktop: 3 Spalten nebeneinander mit größeren, breiteren Cards */
/* ===========================================
   DESKTOP - 10% REDUCTION (like 90% zoom)
   =========================================== */
@media (min-width: 1025px) {
    /* Typography - 10% reduction */
    html {
        font-size: 14.4px; /* 16px * 0.9 */
    }

    h1 {
        font-size: 4.05rem; /* 4.5rem * 0.9 */
    }

    h2 {
        font-size: 3.15rem; /* 3.5rem * 0.9 */
    }

    h3 {
        font-size: 2.25rem; /* 2.5rem * 0.9 */
    }

    p {
        font-size: 0.99rem; /* 1.1rem * 0.9 */
    }

    /* Headline - 10% reduction (additional 10% for hero section) */
    .hero-section .headline {
        font-size: clamp(2.835rem, 4.86vw, 5.265rem); /* clamp(3.15rem, 5.4vw, 5.85rem) * 0.9 */
        margin-bottom: 1.8rem; /* 2rem * 0.9 */
        text-transform: none;
    }
    
    .headline {
        font-size: clamp(3.15rem, 5.4vw, 5.85rem); /* clamp(3.5rem, 6vw, 6.5rem) * 0.9 */
        text-transform: none;
    }

    /* Section Headers - 10% reduction */
    .section-header h2 {
        font-size: clamp(2.25rem, 4.5vw, 3.6rem); /* clamp(2.5rem, 5vw, 4rem) * 0.9 */
    }

    .section-header p {
        font-size: 0.99rem; /* 1.1rem * 0.9 */
    }

    /* Spacing - 10% reduction */
    .section-header {
        margin-bottom: 4.5rem; /* 5rem * 0.9 */
    }

    .content-split {
        gap: 5.4rem; /* 6rem * 0.9 */
    }

    .grid-3 {
        gap: 1.8rem; /* 2rem * 0.9 */
    }

    /* Cards - 10% reduction */
    .service-card {
        padding: 2.7rem; /* 3rem * 0.9 */
    }

    .contact-form-card {
        padding: 2.7rem; /* 3rem * 0.9 */
    }

    .stat-card {
        padding: 1.35rem 1.8rem; /* 1.5rem 2rem * 0.9 */
    }

    /* Stats - 10% reduction (additional 10% for hero section) */
    .hero-section .stat-icon {
        font-size: 2.025rem; /* 2.25rem * 0.9 */
    }

    .hero-section .stat-number {
        font-size: 2.268rem; /* 2.52rem * 0.9 */
    }

    .hero-section .stat-label {
        font-size: 0.729rem; /* 0.81rem * 0.9 */
    }

    .hero-section .stat-card-link .stat-label {
        font-size: 0.9rem; /* 1rem * 0.9 */
    }

    .hero-section .stat-cta-subtitle {
        font-size: 0.765rem; /* 0.85rem * 0.9 */
    }

    .hero-section .stat-card {
        padding: 1.215rem 1.62rem; /* 1.35rem 1.8rem * 0.9 */
    }

    .hero-section .stats-row {
        gap: 1.62rem; /* 1.8rem * 0.9 */
        margin-bottom: 2.43rem; /* 2.7rem * 0.9 */
    }

    .stat-icon {
        font-size: 2.25rem; /* 2.5rem * 0.9 */
    }

    .stat-number {
        font-size: 2.52rem; /* 2.8rem * 0.9 */
    }

    .stat-label {
        font-size: 0.81rem; /* 0.9rem * 0.9 */
    }

    .stats-row {
        gap: 1.8rem; /* 2rem * 0.9 */
        margin-bottom: 2.7rem; /* 3rem * 0.9 */
    }

    /* Buttons - 10% reduction (additional 10% for hero section) */
    .hero-section .btn-large {
        padding: 1.215rem 2.43rem; /* 1.35rem 2.7rem * 0.9 */
        font-size: 0.891rem; /* 0.99rem * 0.9 */
    }

    .hero-section .cta-row {
        gap: 1.8rem; /* 2rem * 0.9 */
    }

    .btn {
        padding: 0.9rem 1.8rem; /* 1rem 2rem * 0.9 */
        font-size: 0.9rem; /* 1rem * 0.9 */
    }

    .btn-large {
        padding: 1.35rem 2.7rem; /* 1.5rem 3rem * 0.9 */
        font-size: 0.99rem; /* 1.1rem * 0.9 */
    }

    /* Hero - 10% reduction (additional 10% for hero section) */
    .hero-content {
        max-width: 729px; /* 810px * 0.9 */
    }

    .hero-section .subtext {
        font-size: 1.053rem; /* 1.17rem * 0.9 */
        margin-bottom: 2.835rem; /* 3.15rem * 0.9 */
    }

    .subtext {
        font-size: 1.17rem; /* 1.3rem * 0.9 */
        margin-bottom: 3.15rem; /* 3.5rem * 0.9 */
    }

    /* Text Block - 10% reduction */
    .text-block h2 {
        font-size: clamp(2.25rem, 4.5vw, 3.15rem); /* clamp(2.5rem, 5vw, 3.5rem) * 0.9 */
        margin-bottom: 1.8rem; /* 2rem * 0.9 */
    }

    .text-block p {
        font-size: 0.99rem; /* 1.1rem * 0.9 */
        margin-bottom: 1.8rem; /* 2rem * 0.9 */
    }

    /* Process Grid - 10% reduction */
    .process-grid {
        grid-template-columns: repeat(3, minmax(315px, 1fr)); /* 350px * 0.9 */
        gap: 2.25rem; /* 2.5rem * 0.9 */
    }

    /* Vergrößere den text-block Container für breitere Cards */
    .text-block .process-grid {
        width: 100%;
        max-width: none;
    }

    /* Project Cards - 10% reduction */
    .project-card h3 {
        font-size: 1.35rem; /* 1.5rem * 0.9 */
    }

    .project-card p {
        font-size: 0.81rem; /* 0.9rem * 0.9 */
    }

    /* Form - 10% reduction */
    .form-group {
        margin-bottom: 1.8rem; /* 2rem * 0.9 */
    }

    .form-group label {
        font-size: 0.72rem; /* 0.8rem * 0.9 */
    }

    .form-group input,
    .form-group textarea {
        padding: 0.9rem; /* 1rem * 0.9 */
        font-size: 0.9rem; /* 1rem * 0.9 */
    }

    /* Check List - 10% reduction */
    .check-list li {
        font-size: 0.9rem; /* 1rem * 0.9 */
    }

    /* Card Link - 10% reduction */
    .card-link {
        font-size: 0.81rem; /* 0.9rem * 0.9 */
    }

    /* Contact Details - 10% reduction */
    .contact-details {
        gap: 2.7rem; /* 3rem * 0.9 */
    }

    .detail-item {
        gap: 1.8rem; /* 2rem * 0.9 */
    }
}

    /* Vergrößere den text-block Container für breitere Cards */
    .text-block .process-grid {
        width: 100%;
        max-width: none;
    }

.process-card {
    background: rgba(18, 23, 32, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius-sm);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-card:hover {
    background: rgba(18, 23, 32, 0.7);
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.process-number {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    /* Very subtle number in background */
    position: absolute;
    top: 0;
    right: 1rem;
    line-height: 1;
    pointer-events: none;
    transition: color 0.3s ease;
}

.process-card:hover .process-number {
    color: rgba(167, 149, 99, 0.1);
}

.process-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(167, 149, 99, 0.1);
    border-radius: 50%;
    color: var(--color-accent);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(167, 149, 99, 0.2);
}

.process-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    color: var(--color-text-main);
    margin: 0;
}

.process-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* --- Process Timeline (Unique Design) --- */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 4rem;
    margin-bottom: 2rem;
    gap: 2rem;
}

/* Connecting Line (Desktop) */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    /* Center of icon */
    left: 5%;
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--color-accent) 50%,
            transparent 100%);
    opacity: 0.5;
    z-index: 0;
}

.process-step {
    flex: 1;
    position: relative;
    z-index: 1;
    padding: 1rem;
    /* No background, transparent look */
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

/* Icon Container */
.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--color-bg-secondary);
    /* Needs solid bg to cover line */
    border: 1px solid rgba(167, 149, 99, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    /* Centered */
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.process-step:hover .step-icon-wrapper {
    border-color: var(--color-accent);
    box-shadow: 0 0 30px rgba(196, 156, 72, 0.2);
}

.step-icon-wrapper i {
    font-size: 2rem;
    color: var(--color-text-muted);
    transition: all 0.4s ease;
}

.process-step:hover .step-icon-wrapper i {
    color: var(--color-accent);
    transform: scale(1.1);
}

/* Large Number behind */
.step-number {
    position: absolute;
    top: -20px;
    right: 0px;
    font-family: var(--font-primary);
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: -1;
    transition: color 0.3s ease;
}

.process-step:hover .step-number {
    color: rgba(167, 149, 99, 0.08);
}

/* Text Styling */
.process-step h3 {
    text-align: center;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--color-text-main);
}

.process-step p {
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        gap: 3rem;
        margin-top: 3rem;
        padding-left: 20px;
    }

    /* Vertical Line */
    .process-timeline::before {
        width: 1px;
        height: 90%;
        top: 0;
        left: 60px;
        /* Align with icon center */
        background: linear-gradient(180deg,
                transparent 0%,
                var(--color-accent) 50%,
                transparent 100%);
    }

    .process-step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        padding: 0;
    }

    .step-icon-wrapper {
        margin: 0;
        flex-shrink: 0;
        margin-right: 1.5rem;
    }

    .process-step h3,
    .process-step p {
        text-align: left;
        margin: 0;
    }

    .process-step h3 {
        margin-bottom: 0.5rem;
        padding-top: 0.5rem;
    }

    .step-number {
        top: 0;
        right: 20px;
    }
}

/* --- FAQ Styles --- */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--color-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-gold-highlight);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--color-text-main);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

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

.faq-question[aria-expanded="true"] {
    color: var(--color-gold-highlight);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--color-gold-highlight);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-question[aria-expanded="true"]+.faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 767px) {
    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-question[aria-expanded="true"]+.faq-answer {
        padding: 0 1.5rem 1.2rem 1.5rem;
    }
}

/* --- Floating Contact Buttons --- */
.floating-contact {
    position: fixed !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10000 !important; /* Extremely high to ensure visibility */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.floating-contact.visible {
    opacity: 1 !important;
    visibility: visible !important;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn.whatsapp {
    background: linear-gradient(135deg, var(--color-accent, #f2eac0), #c49c48);
    color: #000;
}

.float-btn.phone {
    background: linear-gradient(135deg, var(--color-accent, #f2eac0), #c49c48);
    color: #000;
}

.float-btn svg {
    width: 24px;
    height: 24px;
}

/* Tooltip */
.float-btn .tooltip {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(18, 23, 32, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    color: #fff;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.float-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .floating-contact {
        right: 15px !important;
    }
    .float-btn .tooltip {
        display: none;
    }
}

/* Final Override to fix Headline size and casing */
.hero-section .headline {
    text-transform: none !important;
}

.hero-section .headline .headline-sub {
    display: block !important;
    font-size: 1.8rem !important; /* Fixed size to ensure it is smaller */
    font-weight: 300 !important;
    text-transform: none !important;
    color: var(--color-accent) !important;
    margin-top: 15px !important;
    letter-spacing: normal !important;
    line-height: 1.2 !important;
}

/* --- Related Services Section --- */
.related-services {
    padding: 4rem var(--spacing-container);
}

.related-services .section-header {
    margin-bottom: 2rem;
}

.related-services .section-header h2 {
    font-size: 2rem;
    text-align: center;
}

.related-grid {
    max-width: 900px;
    margin: 0 auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.service-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.service-link-card .icon-box {
    margin-bottom: 1rem;
}

.service-link-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
}

.service-link-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}

.service-link-card:hover h3 {
    color: var(--color-accent);
}
