:root {
    --primary: #00d17a;
    --primary-hover: #00b368;
    --secondary: #27ae60;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --dark-lighter: #334155;
    --text-white: #ffffff;
    --text-gray: #cbd5e0;
    --bg-light: #f8fafc;
    --accent-red: #ff4d4d;
    --container-width: 1200px;
    --radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
    background-color: var(--dark);
    line-height: 1.6;
    overflow-x: clip;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.container-small {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.mt-4 {
    margin-top: 2rem;
}

.green {
    color: var(--primary);
}

/* Header & Nav */
header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

nav.container {
    max-width: 1400px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

.logo-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon-box {
    width: 40px;
    height: 40px;
    background-color: #25d366;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-icon-box i {
    width: 24px;
    height: 24px;
}

.logo-text-v2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.logo-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.logo-subtitle {
    font-size: 0.85rem;
    color: #25d366;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #64748b;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: #0f172a;
}

/* Dropdown Menu */
.nav-links .nav-dropdown {
    position: relative;
}

.nav-links .nav-dropdown::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 20px;
    bottom: -20px;
    left: 0;
}

.nav-links .dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    min-width: 280px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 10px 0;
    z-index: 1000;
    border: 1px solid #e2e8f0;
}

.nav-links .nav-dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.2s ease-in-out;
}

.nav-links .dropdown-content li {
    width: 100%;
}

.nav-links .dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: #475569;
    text-align: left;
    transition: all 0.2s;
    font-weight: 500;
    font-size: 1rem;
}

.nav-links .dropdown-content a:hover {
    background-color: #f8fafc;
    color: #00d17a;
    padding-left: 25px;
}

.dropdown-city-link {
    font-weight: 500;
    white-space: normal;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
}

.nav-links .dropdown-city-link:hover {
    padding-left: 20px !important;
}

.dropdown-city-prefix {
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0.02em;
    text-transform: none;
    line-height: 1.2;
}

.dropdown-city-hyphen {
    display: none;
}

.dropdown-city-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
}

.nav-links .dropdown-city-link:hover .dropdown-city-name {
    color: #00d17a;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, 10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

@media (max-width: 1024px) {
    .nav-links .dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background-color: transparent;
        display: none;
        padding: 5px 0;
        margin-top: 5px;
        min-width: 100%;
    }
    
    .nav-links .nav-dropdown:hover .dropdown-content {
        display: block;
    }
    
    .nav-links .dropdown-content a {
        text-align: center;
        padding: 8px 0;
        font-size: 1.05rem;
    }

    .nav-links .dropdown-city-link {
        align-items: center;
        width: 100%;
    }
    .nav-links .dropdown-content a:hover {
        padding-left: 0;
        background-color: transparent;
    }
}

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

.btn-nav-call {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1.5px solid #0f172a;
    border-radius: 12px;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-nav-call:hover {
    background-color: #0f172a;
    color: white;
}

.btn-nav-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #25d366;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-nav-whatsapp:hover {
    background-color: #1eb959;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #0f172a;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 5px;
    z-index: 1001;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 28, 46, 0.8);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

@media (max-width: 1024px) {
    nav.container {
        grid-template-columns: 1fr auto auto;
        gap: 15px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: #f8f9fa;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding: 40px;
        z-index: 1000;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
        padding: 10px;
        color: #0f172a;
    }

    .mobile-menu-btn {
        display: block;
        order: 3;
    }

    .header-cta-v2 {
        order: 2;
        gap: 8px;
    }

    .btn-nav-call span {
        display: none;
    }
    
    .btn-nav-call {
        padding: 10px;
    }
}

@media (max-width: 640px) {
    .logo-title {
        font-size: 1.1rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }

    .btn-nav-whatsapp span {
        display: none;
    }

    .btn-nav-whatsapp {
        padding: 10px;
    }
}

    /* Hero Button Stacking */
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

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

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
}

.btn-whatsapp-large {
    background-color: #25d366;
    color: white;
    padding: 20px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
}

.btn-full {
    width: 100%;
}

/* Hero Section Redesign */
.hero-v2 {
    position: relative;
    padding: 120px 0 0 0;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url('assets/clean-room-hero.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 28, 46, 0.6), rgba(10, 28, 46, 0.7));
    z-index: 1;
}

.hero-content-v3 {
    position: relative;
    z-index: 5;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.hero-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 209, 122, 0.15);
    backdrop-filter: blur(8px);
    color: #4ade80;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 209, 122, 0.3);
}

.hero-badge-v2 .dot {
    width: 8px;
    height: 8px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 0 10px #25d366;
}

.hero-v2 h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.hero-v2 h1 .highlight {
    color: #25d366;
}

.hero-desc-v2 {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 40px;
    max-width: 700px;
    line-height: 1.5;
}

.hero-checklist-v2 {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.05rem;
}

.check-item i {
    width: 22px;
    height: 22px;
    color: #25d366;
}

.hero-btns-v2 {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-hero-whatsapp {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #25d366;
    color: white;
    padding: 18px 35px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.15rem;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-hero-whatsapp:hover {
    background-color: #1eb959;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.btn-hero-call {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 18px 35px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.15rem;
    transition: var(--transition);
}

.btn-hero-call:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-4px);
}

.btn-icon {
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon i {
    width: 18px;
    height: 18px;
}

/* Trust Bar */
.hero-trust-bar {
    position: relative;
    z-index: 5;
    background-color: #0f172a;
    padding: 25px 0;
    margin-top: auto;
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
}

.trust-icon-box {
    width: 35px;
    height: 35px;
    background-color: rgba(37, 211, 102, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25d366;
}

.trust-icon-box i {
    width: 20px;
    height: 20px;
}

@media (max-width: 1024px) {
    .hero-v2 {
        padding: 100px 0 0 0;
    }

    .hero-v2 h1 {
        font-size: 3rem;
    }

    .hero-checklist-v2 {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .trust-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .hero-v2 h1 {
        font-size: 2.2rem;
    }

    .hero-btns-v2 {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-whatsapp, .btn-hero-call {
        width: 100%;
        justify-content: center;
    }

    .trust-bar-grid {
        grid-template-columns: 1fr;
    }
}
    flex-shrink: 0;
}

/* Hero Form */
.hero-form-card {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    color: var(--dark);
}

.hero-form-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 25px;
}

.hero-form-card .form-group {
    margin-bottom: 15px;
}

.hero-form-card input, .hero-form-card textarea {
    width: 100%;
    padding: 18px 20px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    color: var(--dark);
    font-family: inherit;
    font-size: 1rem;
}

.hero-form-card input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
}

.btn-whatsapp-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    color: white;
    width: 100%;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 12px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    text-align: center;
    line-height: 1.3;
}

.btn-whatsapp-submit:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.form-benefits {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
}

.form-benefits li i {
    width: 16px;
    height: 16px;
    color: #6366f1;
}

.hero-form-card p {
    font-size: 1rem;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-gray);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--dark-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 209, 122, 0.1);
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 15px;
    text-align: center;
}

/* Base Hero Styles (Leistungen / Contact) */
.hero {
    position: relative;
    padding: 80px 0 100px;
    background-color: #ffffff;
    color: var(--dark);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

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

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.location-badge i {
    width: 18px;
    height: 18px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: #22c55e;
}

.hero-desc {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 90%;
}

.trust-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1rem;
    color: #1e293b;
}

.trust-pill i {
    width: 20px;
    height: 20px;
}

.trust-pill .star-fill {
    color: #facc15;
    fill: #facc15;
}

.trust-pill [data-lucide="check-circle"] {
    color: #22c55e;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
}

.btn-whatsapp-hero-large {
    background-color: #25d366;
    color: white;
    padding: 16px 28px;
    border-radius: 16px;
    font-size: 1.15rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-hero-large:hover {
    background-color: #1eb959;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-phone-hero-large {
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
}

.btn-phone-hero-large:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-3px);
}

.phone-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.phone-text span {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.phone-text strong {
    font-size: 1.15rem;
    font-weight: 800;
}

.hero-info-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #fef2f2;
    padding: 18px 20px;
    border-radius: 12px;
    border-left: 4px solid #ef4444; /* Standard warning red */
}

.hero-info-box i {
    color: #ef4444;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-info-box p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

/* Urgency & Trust Banners */
.banner-urgency {
    background-color: #e11d48; /* Red */
    color: white;
    padding: 12px 0;
    text-align: center;
    font-weight: 700;
    font-size: 1.05rem;
}

.banner-urgency a {
    color: white;
    text-decoration: none;
}

.banner-urgency u {
    text-decoration: underline;
}

.banner-trust {
    background-color: #22c55e; /* Green */
    color: white;
    padding: 20px 0;
    text-align: center;
    font-weight: 700;
}

.trust-row-main {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.trust-row-secondary {
    display: flex;
    justify-content: center;
}

.trust-item-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .trust-row-main {
        flex-direction: column;
        gap: 10px;
    }
    
    .banner-urgency {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}
/* Problem vs Solution Section */
.problem-solution {
    padding: 80px 0;
    background-color: #f8fafc; /* Separate from hero/banners */
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.card {
    padding: 50px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.emoji-header {
    font-size: 2.2rem;
}

.card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
}

.card-problem {
    background-color: #fff5f5;
    border: 1px solid #fed7d7;
    color: #1a202c;
}

.list-problem, .list-solution {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.list-problem li, .list-solution li {
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 600;
}

.card-solution {
    background-color: #ffffff;
    border: 2px solid #22c55e;
    color: #0f172a;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.08); /* slight green glow to emphasize solution */
}

.solution-text {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .problem-solution-grid {
        grid-template-columns: 1fr;
    }
}

/* Services */
.services {
    padding: 100px 0;
    background-color: #f8fafc;
}

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

.section-header h2 {
    font-size: 2.8rem;
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    color: #64748b;
    font-size: 1.15rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 32px;
    border: 1px solid #e2e8f0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: #22c55e;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.08);
}

.service-icon-emoji {
    font-size: 3rem;
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon-emoji {
    transform: scale(1.15) rotate(5deg);
}

.service-card h3 {
    margin-bottom: 18px;
    font-size: 1.6rem;
    color: var(--dark);
    font-weight: 800;
    letter-spacing: -0.01em;
}

.service-card p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: auto;
}

/* WhatsApp Photo CTA Card */
.photo-cta {
    background-color: #0f172a; /* Deep navy from reference */
    padding: 70px 40px;
    border-radius: 40px; /* More rounded as in reference */
    text-align: center;
    margin-top: 60px;
    color: white;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.photo-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(34, 197, 94, 0.05), transparent 40%);
    pointer-events: none;
}

.photo-cta-header h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.photo-cta-header p {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 35px;
}

.photo-cta-btn {
    margin-bottom: 50px;
}

.photo-cta-btn .btn-whatsapp-submit {
    max-width: 450px;
    margin: 0 auto;
    padding: 24px 40px;
    font-size: 1.25rem;
    border-radius: 16px;
    background: #00d17a;
    box-shadow: 0 15px 40px rgba(0, 209, 122, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-cta-btn .btn-whatsapp-submit:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 209, 122, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    background: #00e083;
}

.photo-cta-footer {
    display: flex;
    justify-content: center;
    gap: 45px;
    flex-wrap: wrap;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #cbd5e0;
}

/* Light Theme Override for Photo CTA */
.photo-cta.light-theme {
    background-color: #ffffff;
    color: var(--dark);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08); /* Soft shadow for white */
    border: 1px solid #e2e8f0;
}

.photo-cta.light-theme::before {
    display: none; /* No radial gradient on white */
}

.photo-cta.light-theme .photo-cta-header p {
    color: #475569;
}

.photo-cta.light-theme .footer-item {
    color: #64748b;
}

.icon-check {
    width: 22px;
    height: 22px;
    color: #9333ea; /* Refined purple */
    filter: drop-shadow(0 0 8px rgba(147, 51, 234, 0.3));
}

@media (max-width: 768px) {
    .photo-cta {
        padding: 40px 20px;
    }
    
    .photo-cta-header h3 {
        font-size: 1.5rem;
    }
    
    .photo-cta-footer {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

/* Pricing Section - White Version */
.pricing {
    padding: 100px 0;
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.pricing-header-v3 h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.pricing-header-v3 p {
    font-size: 1.15rem;
    color: #475569;
    max-width: 800px;
    margin: 0 auto 20px;
}

.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 25px;
}

.price-trust-indicator {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.price-trust-indicator i {
    color: #fbbf24;
    width: 20px;
    height: 20px;
}

.pricing-grid-v3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
}

.price-card-v3 {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.price-card-v3:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.price-card-v3.featured {
    border: 2px solid #22c55e;
    transform: scale(1.02);
}

.badge-popular {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #22c55e;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.card-icon-circle {
    width: 56px;
    height: 56px;
    background-color: #f0fdf4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #22c55e;
}

.price-card-v3 h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0f172a;
}

.card-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
}

.price-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #475569;
    font-weight: 500;
}

.price-features-list li i {
    color: #22c55e;
    width: 18px;
    height: 18px;
}

@media (max-width: 1024px) {
    .pricing-grid-v3 {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 40px;
    }
    .price-card-v3.featured {
        transform: scale(1);
    }
}


/* Price Factors Box */
.price-factors-card {
    max-width: 900px;
    margin: 60px auto 40px;
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.price-factors-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--dark);
    text-align: center;
}

.factors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    max-width: 600px;
    margin: 0 auto;
}

.factor-item {
    font-size: 1.1rem;
    font-weight: 600;
    color: #475569;
}

/* WhatsApp Guarantee Box */
.whatsapp-guarantee-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ecfdf5; /* Minty light green from reference */
    border: 1px solid #d1fae5;
    border-radius: 32px; /* More rounded */
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.guarantee-header {
    font-size: 1.25rem;
    color: #065f46;
}

.guarantee-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    font-size: 1rem;
    font-weight: 600;
    color: #065f46;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .price-item.featured {
        transform: none;
    }
    
    .factors-grid {
        grid-template-columns: 1fr;
    }
}


/* Process */
.process {
    padding: 100px 0;
    background-color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.step {
    text-align: center;
}

.step-num {
    width: 80px;
    height: 80px;
    background-color: var(--dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(10, 28, 46, 0.15);
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}

.step p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
}

.process-cta {
    margin-top: 20px;
}

.btn-whatsapp-large {
    background-color: #22c55e;
    color: white;
    padding: 18px 45px;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.3);
}

.btn-whatsapp-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(34, 197, 94, 0.4);
    color: white;
}

@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
    }
}

@media (max-width: 640px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.gallery-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
}

.ba-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.ba-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-vorher, .badge-nachher {
    position: absolute;
    bottom: 15px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 6px;
    color: white;
    text-transform: uppercase;
}

.badge-vorher {
    left: 15px;
    background-color: #ef4444; /* Red */
}

.badge-nachher {
    right: 15px;
    background-color: #22c55e; /* Green */
}

.gallery-card-title {
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    text-align: left;
}

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

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: white;
}

.rating-summary-new {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 5px;
}

.rating-score {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
}

.verification-text {
    color: #64748b;
    font-size: 1rem;
    margin-top: 10px;
}

.testimonials-grid-v2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card-v2 {
    background: white;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    width: calc(33.333% - 20px);
    text-align: left;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}

.testimonial-card-v2:hover {
    transform: translateY(-5px);
}

.card-stars {
    margin-bottom: 20px;
    color: #facc15;
}

.card-stars svg, .stars svg {
    fill: #facc15;
    color: #facc15;
    width: 20px;
    height: 20px;
}

.badge-service {
    background-color: #f0fdf4;
    color: #16a34a;
    display: inline-block;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.testimonial-card-v2 p {
    font-style: italic;
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.customer-info {
    font-weight: 800;
    color: var(--dark);
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .testimonial-card-v2 {
        width: calc(50% - 15px);
    }
}

@media (max-width: 640px) {
    .testimonial-card-v2 {
        width: 100%;
    }
}

/* Benefits Section - White Version */
.benefits-dark {
    padding: 80px 0;
    background-color: #ffffff;
    color: var(--dark);
    border-top: 1px solid #f1f5f9;
}

.benefits-dark h2 {
    color: var(--dark);
    margin-bottom: 50px;
}

.benefits-dark-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-dark-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #f8fafc;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: left;
    transition: all 0.3s ease;
    color: var(--dark);
}

.benefit-dark-card:hover {
    transform: translateY(-3px);
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: #22c55e;
}

.benefit-dark-card span {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.icon-check-green {
    flex-shrink: 0;
    color: #22c55e;
    width: 24px;
    height: 24px;
}

.benefits-cta {
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .benefits-dark-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .benefits-dark-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ */
/* FAQ Light Section (White Theme) */
.faq-light {
    padding: 100px 0;
    background-color: white;
}

.faq-title-light {
    color: var(--dark);
    margin-bottom: 40px;
    font-size: 2.2rem;
    font-weight: 800;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-light {
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question-light {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark);
    transition: background-color 0.3s ease;
}

.faq-question-light:hover {
    background-color: #f8fafc;
}

.chevron-icon {
    color: #64748b;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 24px 24px;
    color: #475569;
    display: none;
    line-height: 1.6;
}

.faq-item-light.active .faq-answer {
    display: block;
}

.faq-item-light.active .chevron-icon {
    transform: rotate(180deg);
}

.faq-footer {
    margin-top: 50px;
}

.faq-footer-text {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 15px;
}
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-navy-large:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
    color: white;
}

@media (max-width: 768px) {
    .prep-features-inline {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}


/* City Links Section */
.city-nav-links {
    padding: 80px 0 60px 0;
    background-color: #ffffff;
}

.city-nav-links h2 {
    color: var(--dark);
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.city-buttons-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.btn-outline-city {
    background-color: #ffffff;
    border: 1.5px solid var(--dark);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.btn-outline-city i {
    width: 18px;
    height: 18px;
}

.btn-outline-city:hover {
    background-color: var(--dark);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Contact Form Section */
.contact-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.contact-card-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(10, 28, 46, 0.05);
    width: 100%;
    max-width: 550px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 1rem;
    color: var(--dark);
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.btn-form-submit {
    width: 100%;
    background-color: #22c55e;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-bottom: 20px;
}

.btn-form-submit:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
}

.form-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    text-align: center;
}

.form-checks {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 10px;
}

.icon-check-small {
    color: #4f46e5; /* Distinct purple/dark blue check for visual separation */
    width: 14px;
    height: 14px;
    vertical-align: middle;
}

.dot-separator {
    color: #cbd5e1;
}

.form-call {
    font-size: 0.85rem;
    color: #64748b;
}

.form-call strong {
    color: var(--dark);
    font-weight: 800;
}

/* Regional SEO Text Section */
.seo-region-text {
    padding: 80px 0;
    background-color: #f8fafc;
}

.seo-text-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.seo-text-content h2 {
    color: var(--dark);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.seo-text-content p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* WhatsApp Banner Section - White Version */
.whatsapp-banner-dark {
    padding: 90px 0;
    background-color: #ffffff;
    text-align: center;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.banner-label {
    display: block;
    color: #22c55e;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.banner-heading {
    color: var(--dark);
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
}

.banner-checks-inline {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.banner-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 0.95rem;
}

.icon-check-purple {
    color: #4f46e5;
    width: 18px;
    height: 18px;
}

.btn-whatsapp-solid {
    background-color: #22c55e;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.15);
}

.btn-whatsapp-solid:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-content-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.emoji-thumb {
    font-size: 1.3rem;
}

.banner-call-subtext {
    color: #64748b;
    font-size: 0.95rem;
}

.banner-call-subtext strong {
    color: #22c55e;
    font-weight: 700;
}

/* Footer */
footer {
    padding: 80px 0 30px;
    background-color: #0b1a2a;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-sub {
    color: #22c55e !important;
}

.footer-brand p {
    color: #94a3b8;
    margin-bottom: 25px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.btn-footer-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #22c55e;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 22px;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-footer-wa:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background-color: var(--primary);
}

.footer-links h4, .footer-contact h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #22c55e;
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-gray);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-gray);
}

.legal-links {
    display: flex;
    gap: 30px;
}

/* Contact Page Specific Styles */
.contact-hero {
    background-color: #ffffff;
    color: var(--dark);
    padding: 100px 0 80px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.25rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-methods {
    background-color: #ffffff;
    padding: 60px 0;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1216px;
    margin: 0 auto;
    width: 90%;
}

.method-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.method-card.whatsapp-card {
    border: 2px solid #22c55e;
}

.method-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.whatsapp-card .method-icon-circle {
    background-color: #22c55e;
}

.method-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.method-card p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 15px;
}

.method-card .method-link {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.1rem;
    text-decoration: none;
}

.method-card.whatsapp-card .method-link {
    color: #22c55e;
}

.method-card .method-info {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .contact-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    .contact-hero h1 {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   Estate Sales Optimization Section
   ========================================================================== */
/* Estate Sales Optimization Section - White Version */
.estate-sales-section {
    padding: 100px 0;
    background: #ffffff;
    color: var(--dark);
    overflow: hidden;
    border-top: 1px solid #f1f5f9;
}

.estate-sales-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.estate-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.estate-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
}

.estate-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--dark);
}

.estate-content h2 .highlight {
    color: #22c55e;
}

.estate-description {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.6;
}

.estate-highlight-note {
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 16px;
    font-weight: 600;
}

.estate-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.estate-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark);
}

.estate-feature-item i {
    color: #22c55e;
    width: 20px;
}

.estate-footer-note {
    font-style: italic;
    color: #64748b;
}

.btn-estate-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--dark);
    color: white;
    padding: 20px 30px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    max-width: 400px;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
}

.btn-estate-cta:hover {
    background: #22c55e;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.estate-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.estate-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.estate-image-container:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .estate-sales-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .estate-content h2 {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   Legal Pages (Impressum, etc.)
   ========================================================================== */
.legal-hero {
    background: #0f172a;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.legal-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.legal-hero p {
    color: #94a3b8;
    font-size: 1.1rem;
}

.legal-content-section {
    padding: 100px 0;
    background: #f8fafc;
}

.legal-card {
    background: white;
    padding: 50px;
    border-radius: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid #e2e8f0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-card h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #0f172a;
    border-bottom: 2px solid #22c55e;
    display: inline-block;
    padding-bottom: 8px;
}

.legal-card h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: #1e293b;
}

.legal-card p, .legal-card li {
    line-height: 1.8;
    color: #475569;
    margin-bottom: 15px;
}

.legal-card strong {
    color: #0f172a;
}

/* City Pages Pricing Grid */
.pricing-grid-city {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin: 50px auto;
}

/* ==========================================================================
   MASTER MOBILE RESPONSIVENESS — 768px and below
   ========================================================================== */
@media (max-width: 768px) {

    /* --- Base Layout --- */
    .container, .container-small {
        padding: 0 16px;
    }

    /* --- Section Padding Reduction --- */
    .services,
    .process,
    .gallery,
    .testimonials,
    .benefits-dark,
    .faq-light,
    .contact-section,
    .seo-region-text,
    .city-nav-links,
    .estate-sales-section {
        padding: 60px 0;
    }

    .problem-solution,
    .whatsapp-banner-dark {
        padding: 60px 0;
    }

    /* --- Section Headers --- */
    .section-header {
        margin-bottom: 40px;
    }

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

    /* --- Hero --- */
    .hero {
        padding: 50px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-desc {
        font-size: 1rem;
        max-width: 100%;
    }

    .trust-inline {
        justify-content: center;
        gap: 12px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        align-items: stretch;
    }

    .btn-whatsapp-hero-large,
    .btn-phone-hero-large {
        width: 100%;
        max-width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-info-box {
        margin: 0 auto;
        font-size: 0.9rem;
        max-width: 100%;
    }

    .hero-form-card {
        padding: 24px 20px;
    }

    /* --- Services Grid: 3-col → 1-col --- */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 28px 24px;
    }

    /* --- Photo CTA --- */
    .photo-cta {
        padding: 40px 20px;
    }

    .photo-cta-header h3 {
        font-size: 1.5rem;
    }

    .photo-cta-btn .btn-whatsapp-submit {
        max-width: 100%;
        padding: 18px 24px;
    }

    .photo-cta-footer {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    /* --- Pricing: 4-col → 1-col --- */
    .pricing-grid-v3, .pricing-grid-city {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 30px;
        margin: 30px auto;
    }

    .price-card-v3.featured {
        transform: scale(1);
    }

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

    .price-factors-card {
        padding: 28px 20px;
    }

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

    .whatsapp-guarantee-box {
        padding: 24px 20px;
    }

    .guarantee-benefits {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    /* --- Process: 4-col → 1-col --- */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .btn-whatsapp-large {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1.1rem;
    }

    /* --- Gallery: 3-col → 1-col --- */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* --- Problem-Solution: 2-col → 1-col --- */
    .problem-solution-grid {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 30px 24px;
    }

    /* --- Testimonials: flex-wrap → 1-col --- */
    .testimonial-card-v2 {
        width: 100%;
    }

    /* --- Benefits Dark: 3-col → 1-col --- */
    .benefits-dark-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* --- City Links --- */
    .city-nav-links h2 {
        font-size: 1.8rem;
    }

    .city-buttons-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .btn-outline-city {
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }

    /* --- WhatsApp Dark Banner --- */
    .banner-heading {
        font-size: 1.8rem;
    }

    .banner-checks-inline {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .btn-whatsapp-solid {
        width: 100%;
        max-width: 340px;
        padding: 16px 24px;
    }

    /* --- Estate Sales: 2-col → 1-col --- */
    .estate-sales-section {
        padding: 60px 0;
    }

    .estate-sales-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .estate-content {
        align-items: flex-start;
    }

    .estate-content h2 {
        font-size: 2rem;
    }

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

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

    /* --- Contact Methods: 4-col → 1-col --- */
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* --- Contact Page Hero --- */
    .contact-hero {
        padding: 80px 0 60px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    /* --- Footer: 4-col → 1-col --- */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }

    /* --- Legal Pages --- */
    .legal-hero {
        padding: 80px 0 50px;
    }

    .legal-hero h1 {
        font-size: 2rem;
    }

    .legal-content-section {
        padding: 60px 0;
    }

    .legal-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    /* --- FAQ --- */
    .faq-title-light {
        font-size: 1.8rem;
    }

    .faq-question-light {
        font-size: 0.95rem;
        padding: 16px 18px;
    }

    /* --- Trust Banner --- */
    .trust-row-main {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    /* --- SEO Text --- */
    .seo-text-content h2 {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   SMALL MOBILE — 480px and below
   ========================================================================== */
@media (max-width: 480px) {

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-form-card h3 {
        font-size: 1.3rem;
    }

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

    .estate-content h2 {
        font-size: 1.7rem;
    }

    .banner-heading {
        font-size: 1.5rem;
    }

    .city-nav-links h2 {
        font-size: 1.5rem;
    }

    .pricing-header-v3 h2 {
        font-size: 1.7rem;
    }

    .card h2 {
        font-size: 1.4rem;
    }

    .service-card {
        padding: 24px 18px;
    }

    .hero-form-card {
        padding: 20px 16px;
    }

    .step-num {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .mobile-menu-btn {
        padding: 5px;
    }

    .header-cta .btn-whatsapp-header span {
        display: none;
    }

    .btn-whatsapp-header {
        padding: 8px 10px;
    }

    .footer-bottom {
        gap: 12px;
    }

    .legal-card {
        padding: 24px 16px;
    }
}

/* ==========================================================================
   Legal Page — Link & List Styles
   ========================================================================== */
.legal-link {
    color: #22c55e;
    font-weight: 600;
    word-break: break-all;
}

/* Footer Logo utility sizes */
.footer-logo-main {
    font-size: 1.1rem;
}

.footer-logo-sub {
    font-size: 0.65rem;
}

.legal-link:hover {
    text-decoration: underline;
}

.legal-card ul,
.legal-card ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.legal-card ul li,
.legal-card ol li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 8px;
}

﻿.price-value-new { font-size: 1.1rem; font-weight: 700; color: #22c55e; margin-top: 12px; }

/* Global Floating Contact Widget */
.floating-contact-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    z-index: 9999;
}

.floating-phone-pill {
    background-color: #0f172a;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 55px 16px 25px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    margin-right: -45px;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.floating-phone-pill i {
    width: 24px;
    height: 24px;
}

.floating-phone-pill:hover {
    transform: translateX(-5px);
    color: white;
}

.floating-whatsapp-circle {
    width: 70px;
    height: 70px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    color: white;
    text-decoration: none;
}

.floating-whatsapp-circle i {
    width: 35px;
    height: 35px;
}

.floating-whatsapp-circle:hover {
    transform: scale(1.05);
    color: white;
}

.notification-dot {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 14px;
    height: 14px;
    background-color: #eab308;
    border: 2px solid white;
    border-radius: 50%;
}

@media (max-width: 640px) {
    .floating-contact-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-phone-pill {
        padding: 12px 45px 12px 15px;
        font-size: 1.1rem;
        margin-right: -35px;
    }
    
    .floating-whatsapp-circle {
        width: 60px;
        height: 60px;
    }
    
    .floating-whatsapp-circle i {
        width: 30px;
        height: 30px;
    }
    
    .floating-phone-pill i {
        width: 20px;
        height: 20px;
    }
}
