/* Yelkens Hausmeisterservice - Premium Design */

:root {
    --primary: #2F4156;
    --primary-dark: #1c2836;
    --primary-light: #3d5570;
    --secondary: #C8D9E6;
    --accent: #4a90a4;
    --bg-main: #F5EFEB;
    --bg-alt: #ebe5e1;
    --bg-white: #ffffff;
    --text-heading: #2F4156;
    --text-main: #334155;
    --text-light: #64748b;
    --shadow-sm: 0 2px 8px rgba(47,65,86,0.06);
    --shadow-md: 0 4px 20px rgba(47,65,86,0.08);
    --shadow-lg: 0 8px 40px rgba(47,65,86,0.12);
    --shadow-hover: 0 20px 50px rgba(47,65,86,0.18);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --section-padding: 7rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
section[id] { scroll-margin-top: 105px; }

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 { color: var(--text-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); text-align: center; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.section-tag.light { background: rgba(255,255,255,0.2); }
.subtitle {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

/* Header */
header {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 0;
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 110px; transition: var(--transition); }
nav ul { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
nav a { color: var(--text-heading); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: var(--transition); position: relative; }
nav a:not(.nav-cta)::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white !important;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(47,65,86,0.25);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(47,65,86,0.35); }

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
    background: linear-gradient(165deg, var(--bg-alt) 0%, var(--bg-main) 50%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}
.blob { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.5; animation: blobFloat 20s ease-in-out infinite; }
.blob-1 { top: -20%; right: -15%; width: 700px; height: 700px; background: radial-gradient(circle, var(--secondary) 0%, transparent 70%); }
.blob-2 { bottom: -15%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(74,144,164,0.2) 0%, transparent 70%); animation-delay: -7s; }
.blob-3 { top: 50%; left: 50%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(200,217,230,0.3) 0%, transparent 70%); animation-delay: -14s; }

.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-text { max-width: 620px; }
.hero-text p { font-size: 1.2rem; color: var(--text-light); margin-bottom: 1.5rem; }

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: white;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(47,65,86,0.08);
}
.trust-badge i { color: var(--accent); }

.hero-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.tag {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid rgba(47,65,86,0.08);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}
.tag:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.tag i { color: var(--accent); font-size: 0.8rem; }

.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 1.1rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(47,65,86,0.25);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(47,65,86,0.35); }
.btn-outline {
    background: white;
    color: var(--text-heading);
    padding: 1.1rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(47,65,86,0.12);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }

/* Trust Row */
.hero-trust-row { display: flex; flex-wrap: wrap; gap: 2rem; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--text-light); }
.trust-item i { color: var(--accent); font-size: 1rem; }

/* Hero Visual */
.hero-visual { position: relative; height: 480px; }
.visual-main-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--secondary) 0%, white 100%);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 4s ease-in-out infinite;
}
.inner-icon { font-size: 5rem; color: var(--primary); opacity: 0.3; }

.visual-card {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: cardFloat 6s ease-in-out infinite;
    max-width: 220px;
    border: 1px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.visual-card:hover { transform: scale(1.05); box-shadow: var(--shadow-hover); }
.vc-1 { top: 5%; right: 10%; animation-delay: 0s; }
.vc-2 { top: 45%; left: 5%; animation-delay: 2s; }
.vc-3 { bottom: 5%; right: 5%; animation-delay: 4s; }
.card-subtitle { font-size: 0.8rem; color: var(--text-light); }
.card-pulse { position: absolute; top: 8px; right: 8px; width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: blink 2s infinite; }

.icon-box { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.ib-blue { background: var(--secondary); color: var(--primary); }
.ib-green { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: white; }
.ib-orange { background: var(--bg-alt); color: var(--primary); }

/* Floating Elements */
.float-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    color: var(--accent);
    animation: floatSmall 8s ease-in-out infinite;
}
.fe-1 { top: 15%; left: 15%; animation-delay: 0s; }
.fe-2 { bottom: 25%; left: 25%; animation-delay: 2s; }
.fe-3 { top: 30%; right: 0; animation-delay: 4s; }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.8rem;
    opacity: 0.7;
}
.mouse { width: 24px; height: 38px; border: 2px solid var(--text-light); border-radius: 12px; position: relative; }
.wheel { width: 4px; height: 8px; background: var(--text-light); border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); animation: scroll 2s infinite; }

/* Services Section */
.services { padding: var(--section-padding) 0; background: var(--bg-main); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(47,65,86,0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.service-card.featured { border: 1px solid var(--primary); }

.service-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--bg-alt);
    color: var(--primary);
    padding: 0.25rem 0.85rem;
    border-radius: 0 0 0 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.service-badge.premium { background: var(--primary); color: white; }

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(47,65,86,0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); color: white; }

.service-card h3 { margin-bottom: 0.75rem; font-size: 1.4rem; }
.service-card > p { color: var(--text-light); margin-bottom: 1.5rem; flex-grow: 1; }
.service-card ul { list-style: none; margin-bottom: 1.5rem; }
.service-card li { margin-bottom: 0.6rem; padding-left: 1.5rem; position: relative; font-size: 0.95rem; color: var(--text-main); }
.service-card li::before { content: '✓'; color: var(--accent); position: absolute; left: 0; font-weight: 700; }
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
}
.service-link:hover { gap: 1rem; }

/* USP Section */
.usp-section { padding: 5rem 0; background: var(--primary); }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.usp-item { text-align: center; color: white; padding: 1.5rem; }
.usp-icon { width: 60px; height: 60px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 1rem; transition: var(--transition); }
.usp-item:hover .usp-icon { background: white; color: var(--primary); transform: scale(1.1); }
.usp-item h4 { color: white; margin-bottom: 0.5rem; font-size: 1.1rem; }
.usp-item p { font-size: 0.9rem; opacity: 0.8; }

/* Process Section */
.process { padding: var(--section-padding) 0; background: var(--bg-alt); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.step-item { background: white; padding: 2.5rem 2rem; border-radius: var(--radius-lg); text-align: center; position: relative; box-shadow: var(--shadow-sm); transition: var(--transition); }
.step-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.step-connector { position: absolute; top: 50%; right: -1rem; width: 2rem; height: 2px; background: var(--secondary); }
.step-item:last-child .step-connector { display: none; }
.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(47,65,86,0.3);
}
.step-content h3 { margin-bottom: 0.75rem; }
.step-content p { color: var(--text-light); font-size: 0.95rem; }

/* About Section */
.about-section { padding: var(--section-padding) 0; background: white; }
.about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-content .section-tag { margin-bottom: 1rem; }
.about-content h2 { text-align: left; margin-bottom: 1.5rem; }
.about-quote { font-size: 1.3rem; font-style: italic; color: var(--primary); border-left: 4px solid var(--accent); padding-left: 1.5rem; margin-bottom: 1.5rem; }
.about-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.feature-item { display: flex; align-items: center; gap: 0.75rem; color: var(--text-main); }
.feature-item i { color: var(--accent); background: var(--bg-alt); padding: 0.4rem; border-radius: 50%; font-size: 0.7rem; }

.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.stat-item { background: var(--bg-alt); padding: 2rem; border-radius: var(--radius-md); text-align: center; transition: var(--transition); }
.stat-item:hover { background: var(--primary); color: white; transform: scale(1.05); }
.stat-item:hover .stat-number { color: white; }
.stat-item:hover span { color: rgba(255,255,255,0.8); }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary); display: block; margin-bottom: 0.25rem; }
.stat-item span { color: var(--text-light); font-size: 0.95rem; }

/* Contact Section */
.contact-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #1a2938 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 4rem 0;
    box-shadow: var(--shadow-hover);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}
.contact-cta::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }

.contact-content { padding: 4rem; color: white; z-index: 1; }
.contact-content h2 { color: white; text-align: left; font-size: 2.5rem; margin-bottom: 1rem; }
.contact-content > p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2rem; }
.contact-benefits { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.contact-benefits li { display: flex; align-items: center; gap: 0.75rem; font-weight: 500; }
.contact-benefits i { color: var(--secondary); background: rgba(255,255,255,0.1); padding: 0.4rem; border-radius: 50%; font-size: 0.75rem; }

.contact-cards-grid { background: rgba(0,0,0,0.2); padding: 4rem; display: flex; flex-direction: column; gap: 1.25rem; justify-content: center; backdrop-filter: blur(10px); }
.contact-card-premium {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}
.contact-card-premium:hover { transform: translateX(10px); box-shadow: var(--shadow-lg); }
.icon-wrapper { width: 50px; height: 50px; background: var(--bg-alt); color: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: var(--transition); }
.contact-card-premium:hover .icon-wrapper { background: var(--primary); color: white; }
.card-details { flex-grow: 1; }
.card-details small { display: block; color: var(--text-light); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.card-details strong { display: block; color: var(--text-heading); font-size: 1.05rem; }
.arrow-icon { color: var(--primary); opacity: 0; transform: translateX(-10px); transition: var(--transition); }
.contact-card-premium:hover .arrow-icon { opacity: 1; transform: translateX(0); }
.location-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); }
.location-card .card-details strong, .location-card .card-details small { color: white; }
.location-card .card-details small { color: rgba(255,255,255,0.7); }
.location-card .icon-wrapper { background: rgba(255,255,255,0.2); color: white; }

/* Footer */
footer { background: #1a2938; color: #94a3b8; padding: 5rem 0 2rem; }
.footer-content { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { margin-top: 1rem; font-size: 0.95rem; line-height: 1.7; }
.footer-logo { height: 110px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #94a3b8; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); color: white; transform: translateY(-3px); }
.footer-col h4 { color: white; margin-bottom: 1.25rem; font-size: 1.1rem; }
.footer-links { list-style: none; }
.footer-links a { color: #94a3b8; text-decoration: none; display: block; margin-bottom: 0.75rem; transition: var(--transition); font-size: 0.95rem; }
.footer-links a:hover { color: white; padding-left: 5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; text-align: center; font-size: 0.9rem; }

/* Floating Elements */
.fab-call {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 4px 20px rgba(47,65,86,0.35);
    z-index: 9999;
    transition: var(--transition);
    text-decoration: none;
    font-weight: 600;
}
.fab-call:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(47,65,86,0.45); }
.fab-call i { font-size: 1.2rem; }
.fab-text { display: block; }

.scroll-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9999;
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary); color: white; transform: translateY(-3px); }

/* Animations */
@keyframes blobFloat { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(30px, -30px) scale(1.05); } }
@keyframes cardFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes floatSmall { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(10deg); } }
@keyframes pulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: var(--shadow-lg); } 50% { transform: translate(-50%, -50%) scale(1.03); box-shadow: 0 15px 60px rgba(47,65,86,0.2); } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes scroll { 0% { opacity: 1; transform: translateX(-50%) translateY(0); } 100% { opacity: 0; transform: translateX(-50%) translateY(12px); } }

/* Fade Up Animation */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner, .about-wrapper { grid-template-columns: 1fr; text-align: center; }
    .hero-text { margin: 0 auto; }
    .hero-tags, .hero-buttons, .hero-trust-row { justify-content: center; }
    .hero-visual { height: 380px; max-width: 500px; margin: 2rem auto 0; }
    .services-grid, .steps-grid { grid-template-columns: 1fr; }
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
    .about-content h2 { text-align: center; }
    .about-quote { text-align: center; border-left: none; padding-left: 0; border-top: 4px solid var(--accent); padding-top: 1.5rem; }
    .about-features { align-items: center; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .contact-cta { grid-template-columns: 1fr; }
    .contact-content { padding: 3rem 2rem; text-align: center; align-items: center; }
    .contact-content h2 { text-align: center; }
    .contact-cards-grid { padding: 2rem; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --section-padding: 5rem; }
    section[id] { scroll-margin-top: 125px; }
    .header-inner { flex-direction: column; gap: 0.75rem; }
    .logo img { height: 110px; }
    nav ul { gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
    nav a { font-size: 0.85rem; }
    .nav-cta { display: none; }
    .hero { padding: 200px 0 60px; }
    .blob { display: none; }
    .hero-visual { display: none; }
    .trust-badge { font-size: 0.75rem; padding: 0.5rem 1rem; }
    h1 { font-size: 2.2rem; }
    .usp-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .step-connector { display: none; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .stat-item { padding: 1.5rem; }
    .stat-number { font-size: 2rem; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { order: -1; }
    .footer-social { justify-content: center; }
    .fab-text { display: none; }
    .fab-call { padding: 1rem; border-radius: 50%; }
    .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.9rem; }
    .hero { padding: 180px 0 50px; }
    .hero-trust-row { flex-direction: column; gap: 0.75rem; align-items: center; }
    .tag { font-size: 0.8rem; padding: 0.4rem 0.8rem; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; }
    .usp-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
    .contact-card-premium:hover { transform: translateY(-5px); }
}

/* Legal Pages (Impressum, Datenschutz) */
.legal-page { padding: 140px 0 80px; min-height: 100vh; background: var(--bg-main); }
.legal-card { background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.legal-header { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); padding: 3rem; color: white; text-align: center; }
.legal-header h1 { color: white; margin-top: 1rem; font-size: 2.5rem; }
.legal-content { padding: 3rem; }
.legal-section { margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--bg-alt); }
.legal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-section h3 { display: flex; align-items: center; gap: 0.75rem; color: var(--primary); margin-bottom: 1rem; font-size: 1.3rem; }
.legal-section h3 i { color: var(--accent); font-size: 1.1rem; }
.legal-section h4 { margin: 1.5rem 0 0.75rem; color: var(--text-heading); font-size: 1.1rem; }
.legal-section p { color: var(--text-main); margin-bottom: 1rem; line-height: 1.8; }
.legal-section a { color: var(--primary); text-decoration: none; transition: var(--transition); }
.legal-section a:hover { color: var(--accent); text-decoration: underline; }
.legal-list { list-style: none; margin: 1rem 0; }
.legal-list li { padding: 0.6rem 0 0.6rem 2rem; position: relative; border-bottom: 1px solid var(--bg-alt); }
.legal-list li:last-child { border-bottom: none; }
.legal-list li::before { content: '•'; color: var(--accent); font-weight: bold; position: absolute; left: 0.5rem; }
.legal-footer { padding: 2rem 3rem; background: var(--bg-alt); text-align: center; }

@media (max-width: 768px) {
    .legal-page { padding: 120px 0 60px; }
    .legal-header { padding: 2rem; }
    .legal-header h1 { font-size: 2rem; }
    .legal-content { padding: 2rem 1.5rem; }
    .legal-footer { padding: 1.5rem; }
}
