/* =========================================
   BAS FELGENTECHNIK - Matte Black Stealth
   ========================================= */

:root {
    /* Matte Black Palette */
    --bg-color: #0f0f0f;
    /* Deep Matte Black */
    --bg-card: #1a1a1a;
    /* Slightly lighter for contrast */
    --text-color: #f5f5f5;
    --text-muted: #b0b0b0;

    --accent: #E71D36;
    /* Race Red */
    --accent-hover: #ff4d61;

    --border-light: #333;

    --font-heading: 'Russo One', sans-serif;
    --font-body: 'Manrope', sans-serif;
}

/* --- CUSTOM SCROLLBAR (Premium Detail) --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f0f0f;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* New Highlight: Platinum Title - FLUID TYPOGRAPHY */
/* Optimiert für 13-Zoll MacBook (1280px viewport) */
h1 {
    /* Bei 1280px: 2vw = 25.6px + 8px = ~2.1rem - perfekt für 13 Zoll */
    font-size: clamp(1.4rem, 2vw + 0.5rem, 3.2rem);
    line-height: 1.15;
    margin-bottom: clamp(0.8rem, 1.5vw, 1.5rem);
    text-transform: uppercase;

    /* Platinum Gradient: Expensive, Solid, Metallic */
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #cfcfcf 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    /* Soft Glow instead of hard shadow */
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: clamp(1px, 0.15vw, 2px);
}

h2 {
    /* Bei 1280px: 1.5vw = 19.2px + 8px = ~1.7rem */
    font-size: clamp(1.1rem, 1.5vw + 0.5rem, 2.2rem);
    margin-bottom: clamp(0.8rem, 1.5vw, 1.5rem);
    position: relative;
    display: inline-block;
    padding-bottom: 8px;

    /* Unified Platinum Gradient for Headings */
    background: linear-gradient(135deg, #ffffff 0%, #d1d1d1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    border-bottom: 2px solid var(--accent);
    /* Accent underline remains */
}

/* Remove default after if any */
h2::after {
    content: none;
}

p {
    color: var(--text-muted);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 2rem;
}

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

/* Header - Optimiert für 13 Zoll */
header {
    position: fixed;
    top: clamp(28px, 3vw, 40px);
    width: 100%;
    padding: clamp(10px, 1.2vw, 18px) clamp(15px, 3vw, 40px);
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

header nav {
    position: absolute;
    right: clamp(15px, 3vw, 40px);
    top: 50%;
    transform: translateY(-50%);
}

.logo {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1vw, 18px);
    text-decoration: none;
}

/* Premium Logo + Text Loop Animation */
@keyframes logoLoop {
    0% {
        opacity: 0;
        transform: scale(0.8);
        filter: drop-shadow(0 0 0px rgba(200, 30, 30, 0));
    }
    15% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(200, 30, 30, 0.8));
    }
    40% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(200, 30, 30, 0.5));
    }
    85% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(200, 30, 30, 0.5));
    }
    100% {
        opacity: 0;
        transform: scale(0.95);
        filter: drop-shadow(0 0 0px rgba(200, 30, 30, 0));
    }
}

@keyframes textLoop {
    0% {
        opacity: 0;
        transform: translateX(-30px);
        filter: blur(8px);
    }
    10% {
        opacity: 0;
        transform: translateX(-30px);
        filter: blur(8px);
    }
    25% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
    40% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
        letter-spacing: 3px;
    }
    50% {
        letter-spacing: 5px;
    }
    60% {
        letter-spacing: 3px;
    }
    85% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
    100% {
        opacity: 0;
        transform: translateX(10px);
        filter: blur(5px);
    }
}

.logo-img {
    height: clamp(50px, 5vw, 70px);
    width: auto;
}

.logo-text {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.9rem, 0.7vw + 0.5rem, 1.2rem);
    color: var(--accent);
    letter-spacing: 3px;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    font-weight: 300;
    animation: textLoop 6s ease-in-out infinite;
}

nav {
    display: flex;
    gap: clamp(12px, 1.5vw, 25px);
}

.nav-link {
    color: #ccc;
    /* Bei 1280px: 0.5vw = 6.4px + 6.4px = 0.8rem */
    font-size: clamp(0.65rem, 0.5vw + 0.4rem, 0.85rem);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    /* White on hover */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Hero Section - Split Layout für PC */
#hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-color);
    overflow: hidden;
}

/* Slideshow Container - Linke Seite */
#hero-slideshow {
    position: relative;
    width: 55%;
    height: 100%;
    z-index: 1;
}

/* Individual Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Image set inline in HTML */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;

    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);

    /* --- SOFT EDGE BLENDING - PC: oben/unten mehr abdunkeln (Boden ausblenden) --- */
    -webkit-mask-image: radial-gradient(ellipse 110% 60% at 40% 45%, black 50%, transparent 88%);
    mask-image: radial-gradient(ellipse 110% 60% at 40% 45%, black 50%, transparent 88%);

    /* High-End Finish */
    filter: contrast(1.15) saturate(1.1) brightness(1.2);
    will-change: transform, opacity;
}

/* Active Slide - Playing Animation */
.hero-slide.active {
    opacity: 1;
    z-index: 1;
    animation: cinematicZoom 7s infinite alternate ease-in-out;
}

@keyframes cinematicZoom {
    0% {
        transform: scale(1) translateY(0);
    }

    100% {
        transform: scale(1.08) translateY(-1%);
    }

    /* Subtle slow zoom & float */
}

/* --- THE SPOTLIGHT HIGHLIGHT --- */
/* This overlay darkens the surroundings to highlight the rim in the center */
#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Spotlight: Transparent Center -> Softer Dark Edges */
    background: radial-gradient(circle at center 48%, transparent 30%, rgba(0, 0, 0, 0.3) 55%, rgba(0, 0, 0, 0.6) 90%);
    pointer-events: none;
    z-index: 2;
}

/* PC Split Layout: Helleres Overlay für bessere Bildersichtbarkeit */
@media (min-width: 769px) {
    #hero::after {
        background: radial-gradient(ellipse 100% 100% at 25% 50%, transparent 50%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.5) 100%);
    }
}

/* Premium Ambient Color Glow */
#hero::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(231, 29, 54, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    animation: ambientPulse 8s infinite alternate;
}

@keyframes ambientPulse {
    0% {
        background: radial-gradient(circle, rgba(231, 29, 54, 0.1) 0%, transparent 70%);
    }

    100% {
        background: radial-gradient(circle, rgba(50, 100, 255, 0.1) 0%, transparent 70%);
    }
}

/* === HERO BACKGROUND (Fallback) === */
#hero-bg {
    pointer-events: none;
    z-index: 2;
}

/* Ensure content is above canvas and bg - FLUID */
/* Optimiert für 13-Zoll MacBook */
.hero-content {
    position: relative;
    z-index: 10;
    width: clamp(42%, 48%, 52%);
    padding: clamp(1rem, 2vw, 2.5rem) clamp(1.5rem, 3vw, 3.5rem);
    text-align: left;
    animation: fadeIn 1.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Subtitle - Clean Red Accent - FLUID für 13 Zoll */
.hero-subtitle {
    /* Bei 1280px: 0.6vw = 7.7px + 6.4px = ~0.88rem */
    font-size: clamp(0.65rem, 0.6vw + 0.4rem, 1rem);
    letter-spacing: clamp(1px, 0.25vw, 3px);
    color: #ff4d61;
    text-transform: uppercase;
    margin-bottom: clamp(0.4rem, 0.8vw, 0.8rem);
    display: block;
    font-weight: 800;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 1);
}

/* Description Text - FLUID für 13 Zoll */
.hero-content p {
    color: #ffffff;
    /* Bei 1280px: 0.5vw = 6.4px + 9.6px = 1rem */
    font-size: clamp(0.8rem, 0.5vw + 0.6rem, 1rem);
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.7;
}

/* --- MAIN CTA BUTTONS (Harmonized) --- */
.cta-container {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-mega {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    /* Reduced padding */
    font-size: 1rem;
    /* Reduced font size */
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    /* Sharper, more industrial */
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    min-width: 200px;
    /* Reduced width */
}

/* eBay Button - Primary Action -> THEME RED */
.ebay-btn {
    background: var(--accent);
    /* Race Red */
    color: #fff;
    border: 2px solid var(--accent);
    box-shadow: 0 10px 30px rgba(231, 29, 54, 0.3);
    /* Red Glow */
}

.ebay-btn:hover {
    background: #fff;
    color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(231, 29, 54, 0.5);
}

/* eBay Original Button Style */
.btn-ebay-original {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 35px;
    background: #fff;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.btn-ebay-original:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-ebay-original:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-ebay-original .ebay-logo {
    height: 28px;
    width: auto;
}

/* Phone Button - Secondary Action -> Ghost White */
.phone-btn {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.phone-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

@keyframes pulseMega {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 100, 210, 0.4);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(0, 100, 210, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 100, 210, 0);
    }
}

/* --- QUICK CONNECT PILLS (Color by Default) --- */
.quick-connect-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
}

.connect-row {
    display: contents;
    /* Merges children into the parent flex container visually */
}

.connect-pill {
    display: flex;
    align-items: center;
    gap: clamp(4px, 0.5vw, 8px);
    padding: clamp(6px, 0.7vw, 10px) clamp(12px, 1.5vw, 22px);
    border-radius: 50px;
    text-decoration: none;
    /* Bei 1280px: 0.4vw = 5.1px + 6.4px = ~0.72rem */
    font-size: clamp(0.6rem, 0.4vw + 0.4rem, 0.8rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.connect-pill ion-icon {
    font-size: clamp(0.9rem, 0.6vw + 0.4rem, 1.1rem);
    color: #fff;
    transition: transform 0.3s ease;
}

/* Base Hover for all */
.connect-pill:hover {
    transform: translateY(-5px);
    filter: brightness(1.15);
}

.connect-pill:hover ion-icon {
    transform: scale(1.15);
}

/* Phone - Clean White */
.connect-pill.phone {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.connect-pill.phone ion-icon {
    color: #000;
}

.connect-pill.phone:hover {
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    background: #f0f0f0;
}

/* WhatsApp Green */
.connect-pill.whatsapp {
    background: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.connect-pill.whatsapp:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Instagram Gradient */
.connect-pill.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.2);
}

.connect-pill.instagram:hover {
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

/* Kleinanzeigen Green */
.connect-pill.kleinanzeigen {
    background: #86b817;
    box-shadow: 0 4px 15px rgba(134, 184, 23, 0.2);
}

.connect-pill.kleinanzeigen:hover {
    box-shadow: 0 8px 25px rgba(134, 184, 23, 0.4);
}

/* eBay Pill - Original Style */
.connect-pill.ebay-pill {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.connect-pill.ebay-pill:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    background: #f5f5f5;
}

.connect-pill .pill-logo {
    height: 20px;
    width: auto;
}

/* Mail / Glass */
.connect-pill.mail {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.connect-pill.mail:hover {
    background: #fff;
    color: #000;
}

.connect-pill.mail:hover ion-icon {
    color: #000;
}

/* Hero Spacer */
.hero-spacer {
    display: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin: 10px;
}

.btn:hover {
    background: var(--gold);
    color: #000;
}

/* Pulsing Button Highlight */
.btn-primary {
    background: var(--accent);
    color: #fff;
    border: none;
    position: relative;
    overflow: hidden;
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 29, 54, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(231, 29, 54, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(231, 29, 54, 0);
    }
}

/* Icons Bar */
.social-bar {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.social-icon:hover {
    transform: translateY(-3px);
}

/* Phone Blue */
.social-icon.phone {
    border-color: #4A90D9;
    color: #4A90D9;
}

.social-icon.phone:hover {
    background: #4A90D9;
    color: #fff;
    border-color: #4A90D9;
}

/* WhatsApp Green */
.social-icon.whatsapp {
    border-color: #25D366;
    color: #25D366;
}

.social-icon.whatsapp:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

/* Instagram Gradient */
.social-icon.instagram {
    border-color: #E1306C;
    color: #E1306C;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    border-color: transparent;
}

/* ============================================
   HIGHLIGHT EFFECTS
   ============================================ */

/* Trust Banner - Optimiert für 13 Zoll */
.trust-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, #ff4d61 100%);
    padding: clamp(5px, 0.6vw, 8px) clamp(8px, 1.5vw, 15px);
    text-align: center;
    overflow: hidden;
    z-index: 1001;
}

.trust-banner p {
    color: #fff;
    font-size: clamp(0.5rem, 0.45vw + 0.3rem, 0.8rem);
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(8px, 1.5vw, 25px);
    flex-wrap: wrap;
}

.trust-banner span {
    display: inline-flex;
    align-items: center;
    gap: clamp(3px, 0.4vw, 6px);
}

.trust-banner ion-icon {
    font-size: clamp(0.7rem, 0.5vw + 0.3rem, 0.95rem);
}

/* Shimmer Effect on Buttons */
.btn-mega::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

.btn-mega {
    position: relative;
    overflow: hidden;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

/* Scroll Fade-In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Markenlogos Section - Optimiert für 13 Zoll */
.brands-section {
    padding: clamp(25px, 3vw, 45px) clamp(12px, 1.5vw, 18px);
    background: var(--bg-color);
    text-align: center;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.brands-section h3 {
    /* Bei 1280px: 0.4vw = 5.1px + 6.4px = ~0.72rem */
    font-size: clamp(0.6rem, 0.4vw + 0.4rem, 0.85rem);
    color: var(--text-muted);
    letter-spacing: clamp(1.5px, 0.2vw, 2.5px);
    margin-bottom: clamp(12px, 1.5vw, 25px);
    font-weight: 400;
}

/* Brands Grid - Optimiert für 13 Zoll */
.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(15px, 3vw, 50px);
    flex-wrap: wrap;
    max-width: 1000px;
    margin: clamp(12px, 1.5vw, 25px) auto 0;
}

.brand-logo {
    cursor: default;
    transition: all 0.4s ease;
    opacity: 0.5;
}

/* Hollow Text Effect - Optimiert für 13 Zoll */
.brand-logo span {
    font-family: var(--font-heading);
    /* Bei 1280px: 1.5vw = 19.2px + 12.8px = 2rem */
    font-size: clamp(1.3rem, 1.5vw + 0.8rem, 2.5rem);
    letter-spacing: clamp(1.5px, 0.25vw, 3px);
    font-weight: 800;

    /* The trick: stroke only */
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    color: transparent;
    transition: all 0.4s ease;
}

/* Hover: Fill and Glow */
.brand-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.brand-logo:hover span {
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-stroke: 0px transparent;
    color: transparent;
    /* Gradient fills it */
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}

/* About Section - Optimiert für 13 Zoll */
#about {
    padding: clamp(35px, 4.5vw, 70px) clamp(12px, 3vw, 40px);
    background: #0a0a0a;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(10px, 1.5vw, 25px);
    margin: clamp(20px, 3vw, 40px) auto;
    max-width: 850px;
}

/* Stat Card - Optimiert für 13 Zoll */
.stat-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: clamp(12px, 1.5vw, 25px) clamp(8px, 1vw, 16px);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, border-color 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: rgba(26, 26, 26, 0.8);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    /* Bei 1280px: 1.2vw = 15.4px + 12.8px = ~1.76rem */
    font-size: clamp(1.3rem, 1.2vw + 0.8rem, 2.2rem);
    color: var(--accent);
    margin-bottom: 0.3rem;
}

.stat-label {
    display: block;
    /* Bei 1280px: 0.35vw = 4.5px + 5.6px = ~0.63rem */
    font-size: clamp(0.55rem, 0.35vw + 0.35rem, 0.75rem);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-links {
    display: flex;
    justify-content: center;
    gap: clamp(6px, 1vw, 12px);
    flex-wrap: wrap;
    margin-top: clamp(15px, 2.5vw, 35px);
}

.review-btn {
    display: inline-flex;
    align-items: center;
    gap: clamp(4px, 0.4vw, 6px);
    padding: clamp(6px, 0.8vw, 10px) clamp(10px, 1.5vw, 20px);
    border-radius: 50px;
    /* Bei 1280px: 0.45vw = 5.8px + 6.4px = ~0.76rem */
    font-size: clamp(0.6rem, 0.45vw + 0.4rem, 0.85rem);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
}

.review-btn ion-icon {
    font-size: clamp(0.8rem, 0.5vw + 0.4rem, 1rem);
}

.review-btn.ebay {
    background: transparent;
    border-color: #e53238;
    color: #e53238;
}

.review-btn.ebay:hover {
    background: #e53238;
    color: #fff;
}

.review-btn.kleinanzeigen {
    background: transparent;
    border-color: #86b817;
    color: #86b817;
}

.review-btn.kleinanzeigen:hover {
    background: #86b817;
    color: #fff;
}

.review-btn.google {
    background: transparent;
    border-color: #4285f4;
    color: #4285f4;
}

.review-btn.google:hover {
    background: #4285f4;
    color: #fff;
}

/* Services - Optimiert für 13 Zoll */
#services {
    padding: clamp(40px, 6vw, 80px) clamp(12px, 3vw, 40px);
    background: #111;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(15px, 2.5vw, 35px);
    margin-top: clamp(20px, 3vw, 40px);
}

/* Service Card - Optimiert für 13 Zoll */
.service-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: clamp(16px, 2vw, 32px);
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
    border-top-color: var(--gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    background: rgba(17, 17, 17, 0.8);
}

.service-title {
    font-family: var(--font-heading);
    /* Bei 1280px: 0.8vw = 10.2px + 8px = ~1.14rem */
    font-size: clamp(1rem, 0.8vw + 0.5rem, 1.35rem);
    color: #fff;
    margin-bottom: 0.8rem;
}

/* === SERVICE SLIDESHOW === */
.service-slideshow-container {
    position: relative;
    max-width: 800px;
    margin: clamp(20px, 3vw, 40px) auto;
    border-radius: 12px;
    overflow: hidden;
    touch-action: manipulation;
    background: #0a0a0a;
}

.service-slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.service-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-slide.active {
    opacity: 1;
}

.service-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Slideshow Navigation Arrows */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    touch-action: manipulation;
}

.slide-nav:hover {
    background: var(--accent);
}

.slide-nav.prev {
    left: 15px;
}

.slide-nav.next {
    right: 15px;
}

.slide-nav ion-icon {
    font-size: 1.4rem;
}

/* Dot Navigation */
.slide-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.8);
    touch-action: manipulation;
}

.dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    touch-action: manipulation;
    font-weight: 600;
    color: #888;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.dot.active {
    background: var(--accent);
    color: #fff;
}

/* === SERVICE INFO GRID === */
.service-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: clamp(15px, 2vw, 25px);
    margin-top: clamp(25px, 4vw, 50px);
}

.service-info-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    padding: clamp(18px, 2.5vw, 30px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    transition: all 0.3s ease;
}

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

.service-info-card p {
    color: #999;
    font-size: clamp(0.8rem, 0.6vw + 0.4rem, 0.95rem);
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
}

.service-info-card small {
    color: #666;
    font-size: 0.75rem;
    display: block;
    margin-top: 0.5rem;
}

.price-tag {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 1.5vw + 0.8rem, 2rem);
    color: var(--accent);
    margin: 0.5rem 0;
}

.price-tag span {
    font-size: 0.7rem;
    color: #888;
    font-family: var(--font-body);
    font-weight: 400;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    color: #999;
    font-size: clamp(0.8rem, 0.6vw + 0.4rem, 0.9rem);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li strong {
    color: var(--accent);
}

/* Quality Section */
#quality {
    padding: clamp(40px, 6vw, 80px) clamp(12px, 3vw, 40px);
    background: #0a0a0a;
    text-align: center;
}

/* Mobile Slideshow */
@media (max-width: 768px) {
    .service-slideshow-container {
        margin: 20px -15px;
        border-radius: 0;
    }

    .slide-nav {
        width: 36px;
        height: 36px;
    }

    .slide-nav.prev {
        left: 10px;
    }

    .slide-nav.next {
        right: 10px;
    }

    .dot {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
    }

    .slide-number {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }
}

/* Gallery */
#gallery {
    padding: 100px 50px;
    background: #050505;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    filter: grayscale(80%);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, #000, transparent);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* --- FLOATING SHOP BUTTON --- */
.floating-shop-btn {
    position: fixed;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px 0 0 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    z-index: 998;
    transition: right 0.4s ease, background 0.3s;
    box-shadow: -5px 0 20px rgba(231, 29, 54, 0.3);
}

.floating-shop-btn ion-icon {
    font-size: 1.3rem;
}

.floating-shop-btn:hover {
    background: #ff4d61;
}

.floating-shop-btn.visible {
    right: 0;
}

/* --- NOISE OVERLAY --- */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    /* Below header/modal */
    opacity: 0.05;
    /* Subtle Film Grain */
    filter: url(#noiseFilter);
}

/* --- LIGHTBOX MODAL --- */
.lightbox {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    /* Above everything */
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
    max-height: 80vh;
    object-fit: contain;
    animation: zoomIn 0.4s;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--accent);
    text-decoration: none;
    cursor: pointer;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
    font-family: var(--font-body);
}

/* Gallery Hover Cursor for Lightbox */
.gallery-item {
    cursor: zoom-in;
}

/* --- FOOTER - Optimiert für 13 Zoll --- */
footer {
    padding: clamp(30px, 4.5vw, 65px) clamp(12px, 3vw, 40px) clamp(15px, 1.5vw, 25px);
    background: #080808;
    border-top: 1px solid #222;
    text-align: left;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: clamp(20px, 3vw, 40px);
    max-width: 1100px;
    margin: 0 auto;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: clamp(12px, 1vw, 18px);
    margin-bottom: 12px;
}

.footer-logo-img {
    height: clamp(50px, 5vw, 70px);
    width: auto;
}

.footer-logo-text {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.95rem, 0.8vw + 0.5rem, 1.3rem);
    color: var(--accent);
    letter-spacing: 3px;
    line-height: 1.3;
    text-transform: uppercase;
    white-space: nowrap;
    font-weight: 300;
}

.footer-logo-text span {
    font-weight: inherit;
    letter-spacing: inherit;
}

.footer-column h4 {
    color: #fff;
    /* Bei 1280px: 0.6vw = 7.7px + 6.4px = ~0.88rem */
    font-size: clamp(0.8rem, 0.6vw + 0.4rem, 1rem);
    margin-bottom: clamp(10px, 1.2vw, 16px);
    border-left: 2px solid var(--accent);
    padding-left: clamp(8px, 1vw, 12px);
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links-col a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact p {
    color: #aaa;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
}

.footer-contact ion-icon {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #fff;
}

/* Payment Badges */
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-badge {
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.payment-badge.paypal {
    background: #003087;
    color: #fff;
}

.payment-badge.klarna {
    background: #FFB3C7;
    color: #0A0A0A;
}

.payment-badge.visa {
    background: #1A1F71;
    color: #fff;
}

.payment-badge.mastercard {
    background: linear-gradient(90deg, #EB001B 0%, #F79E1B 100%);
    color: #fff;
}

.payment-badge.amex {
    background: #006FCF;
    color: #fff;
}

/* Payment Logos (Original) */
.payment-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
}

/* Payment Methods Pills */
.payment-label {
    color: #888;
    font-size: 0.75rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 8px 14px;
    color: #aaa;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.payment-pill ion-icon {
    font-size: 1.1rem;
    color: #fff;
}

.payment-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* Trust Pills in Footer */
.trust-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 0.9rem;
}

.trust-pill ion-icon {
    font-size: 1.2rem;
    color: #fff;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #111;
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #fff;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

/* Hamburger Animation when open */
.mobile-menu-btn.active {
    z-index: 1100;
}

.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
    background: #fff;
}

.mobile-menu-btn.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
    background: #fff;
}

/* Tablet Breakpoint - nur Layout-Änderungen, Schriftgrößen via clamp() */
@media (max-width: 1024px) {
    header {
        top: 36px;
    }

    .hero-content {
        width: 55%;
    }

    #hero-slideshow {
        width: 45%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Body scroll lock when menu open */
body.menu-open {
    overflow: hidden;
}

/* Mobile */
@media (max-width: 768px) {

    /* Hero Overlay Mobile */
    #hero::after {
        background: radial-gradient(ellipse at center,
                transparent 10%,
                rgba(0, 0, 0, 0.4) 40%,
                rgba(0, 0, 0, 0.8) 100%);
    }


    /* Header */
    header {
        padding: 10px 15px;
        top: 30px;
    }

    .logo-img {
        height: 45px;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1100;
    }

    header nav {
        position: fixed;
        top: 0;
        left: 0;
        right: auto;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 60px 20px;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    header nav.active {
        transform: translateX(0);
        z-index: 1050;
    }

    .nav-link {
        display: block;
        padding: 25px 0;
        font-size: 1.5rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: #fff;
        font-weight: 300;
        letter-spacing: 3px;
    }

    /* Hero Section - Mobile: Slideshow als Hintergrund */
    #hero {
        min-height: 100svh;
        height: auto;
        padding: 90px 15px 20px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

    #hero-slideshow {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    /* Mobile: Zentrierte Maske - unten mehr transparent (Boden ausblenden) */
    .hero-slide {
        -webkit-mask-image: radial-gradient(ellipse 85% 60% at 50% 40%, black 50%, transparent 85%);
        mask-image: radial-gradient(ellipse 85% 60% at 50% 40%, black 50%, transparent 85%);
    }

    .hero-content {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        min-height: calc(100svh - 90px);
        width: 100%;
        text-align: center;
        align-items: center;
        justify-content: space-between;
    }

    /* Text-Bereich oben */
    .hero-content .hero-subtitle,
    .hero-content h1 {
        flex-shrink: 0;
    }

    /* Beschreibung auf Mobile ausblenden */
    .hero-content>p {
        display: none;
    }

    .quick-connect {
        justify-content: center;
    }

    .cta-container {
        justify-content: center;
    }

    .cta-container {
        justify-content: center;
    }

    h1 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
        /* Bessere Sichtbarkeit auf Mobile */
        background: linear-gradient(180deg, #ffffff 0%, #e8e8e8 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow:
            0 2px 10px rgba(0, 0, 0, 0.8),
            0 4px 20px rgba(0, 0, 0, 0.6),
            0 0 40px rgba(231, 29, 54, 0.3);
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    }

    .hero-subtitle {
        font-size: 0.65rem;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    }

    .hero-content p {
        font-size: 0.85rem;
        margin-bottom: 0;
        line-height: 1.5;
    }

    /* Spacer pushes buttons down - reveals rim in the middle */
    .hero-spacer {
        display: block;
        flex-grow: 1;
        min-height: 20vh;
    }

    /* Quick Connect Pills - Mobile: Nur Icons */
    .quick-connect-wrapper {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 0 15px;
        margin-bottom: 1rem;
    }

    .connect-row {
        display: flex;
        justify-content: center;
        gap: 12px;
    }

    /* Top Row: 3 Items nebeneinander */
    .connect-row.top {
        gap: 15px;
    }

    /* Bottom Row: 2 Items nebeneinander */
    .connect-row.bottom {
        gap: 15px;
    }

    /* Text auf Mobile ausblenden - nur Icons */
    .pill-text {
        display: none;
    }

    .connect-pill {
        padding: 14px;
        border-radius: 50%;
        width: 52px;
        height: 52px;
        justify-content: center;
        align-items: center;
    }

    .connect-pill ion-icon {
        font-size: 1.4rem;
    }

    /* eBay & Kleinanzeigen - länglich, nicht rund */
    .connect-pill.ebay-pill,
    .connect-pill.kleinanzeigen {
        border-radius: 25px;
        width: auto;
        height: auto;
        padding: 12px 20px;
    }

    .connect-pill.ebay-pill {
        background: #fff;
    }

    .connect-pill .pill-logo {
        height: 20px !important;
        width: auto;
        filter: none !important;
    }

    .connect-pill.kleinanzeigen span {
        font-size: 0.75rem;
    }

    /* CTA Container - Below pills */
    .cta-container {
        margin-top: 0;
        margin-bottom: 0;
        gap: 10px;
    }

    .btn-mega {
        padding: 12px 20px;
        font-size: 0.8rem;
        min-width: auto;
        width: 100%;
        max-width: 220px;
    }

    /* Trust Banner Mobile */
    .trust-banner {
        padding: 8px 10px;
    }

    .trust-banner p {
        font-size: 0.6rem;
        gap: 10px;
    }

    .trust-banner ion-icon {
        font-size: 0.8rem;
    }

    /* Header Mobile - adjust for banner */
    header {
        top: 32px;
        padding: 12px 15px;
    }

    /* Brands Section Mobile */
    .brands-section {
        padding: 35px 15px;
    }

    .brands-section h3 {
        font-size: 0.75rem;
        margin-bottom: 20px;
    }

    .brands-grid {
        gap: 25px;
    }

    .brand-logo span {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    /* About Section Mobile */
    #about {
        padding: 50px 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 30px auto;
    }

    .stat-card {
        padding: 20px 15px;
    }

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

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

    .review-links {
        gap: 10px;
        margin-top: 25px;
    }

    .review-btn {
        padding: 10px 16px;
        font-size: 0.75rem;
    }

    /* Services & Gallery */
    h2 {
        font-size: 1.4rem;
    }

    #services,
    #gallery {
        padding: 50px 15px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-item .overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    }

    .gallery-item img {
        filter: grayscale(0%);
    }

    /* Footer */
    footer {
        padding: 30px 15px;
    }

    .footer-logo-img {
        height: 40px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .footer-links a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Disable hover effects */
    .service-card:hover,
    .gallery-item:hover img {
        transform: none;
    }
}

/* Small phones */
@media (max-width: 380px) {
    h1 {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .hero-content {
        padding: 0.5rem;
    }

    .hero-content p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    #hero {
        padding: 60px 10px 20px;
    }

    .hero-spacer {
        height: 1vh;
    }

    .cta-container {
        margin-top: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .btn-mega {
        padding: 10px 16px;
        font-size: 0.75rem;
        max-width: 200px;
    }

    .connect-pill {
        padding: 6px 10px;
        font-size: 0.7rem;
    }

    .connect-pill ion-icon {
        font-size: 0.9rem;
    }

    .service-card {
        padding: 20px 15px;
    }

    .gallery-item {
        height: 180px;
    }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    h1 {
        animation: none;
        background: none;
        color: #fff;
    }

    .btn-primary {
        animation: none;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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