/* =====================================================
   IMMOWERTE Immobilien & Verwaltung
   Modern Design System
   ===================================================== */

/* === Local Fonts (DSGVO-konform, kein Google-Server-Zugriff) === */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 800;
    font-display: swap;
    src: url('../fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 800;
    font-display: swap;
    src: url('../fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* === CSS Variables === */
:root {
    /* Primary Colors */
    --primary-deep: #1A1A1A;
    --primary: #2D2D2D;
    --primary-light: #3D3D3D;
    --primary-lighter: #4D4D4D;

    /* Accent Colors */
    --accent-gold: #B6A47C;
    --accent-gold-light: #C4B48E;
    --accent-gold-dark: #9A8A68;

    /* Text Colors */
    --text-dark: #1A1A2E;
    --text-body: #4A4A5A;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;

    /* Background Colors */
    --bg-cream: #FDFBF7;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --bg-dark: #1A1A1A;
    --bg-dark-light: #2D2D2D;

    /* Fonts */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.3);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Container */
    --container-max: 1200px;
    --container-narrow: 800px;
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

address {
    font-style: normal;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--space-md);
}

.lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* === Container === */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-narrow {
    max-width: var(--container-narrow);
}

/* === Navigation === */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-white);
    transition: all var(--transition-base);
}

.main-nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-logo-img {
    height: 46px;
    width: auto;
    max-width: 185px;
    object-fit: contain;
}

.nav-logo .logo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-deep);
}

.nav-logo .logo-icon svg {
    width: 100%;
    height: 100%;
}

.nav-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-logo .logo-name {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary-deep);
}

.nav-logo .logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-body);
    padding: var(--space-sm) 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-deep);
}

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

.dropdown-arrow {
    transition: transform var(--transition-fast);
}

.nav-item.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    min-width: 220px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: var(--space-sm) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.9375rem;
    color: var(--text-body);
    transition: all var(--transition-fast);
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-deep);
    padding-left: calc(var(--space-lg) + 4px);
}

.nav-portal {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    color: var(--text-dark);
    font-size: 0.8125rem;
    font-weight: 600;
    border: 1.5px solid var(--accent-gold);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    margin-right: 0.75rem;
}

.nav-portal:hover {
    background: var(--accent-gold);
    color: var(--bg-white);
}

.nav-scrolled .nav-portal {
    color: var(--text-dark);
    border-color: var(--accent-gold);
}

.nav-scrolled .nav-portal:hover {
    background: var(--accent-gold);
    color: var(--bg-white);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--bg-white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 162, 39, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--primary-deep);
    transition: all var(--transition-base);
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .nav-container {
        height: 70px;
    }

    .nav-logo-img {
        height: 36px;
        max-width: 150px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px var(--space-xl) var(--space-xl);
        gap: 0;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-base);
    }

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

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--bg-light);
    }

    .nav-link {
        padding: var(--space-md) 0;
        font-size: 1.125rem;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0 0 var(--space-md) var(--space-lg);
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .nav-item.has-dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-portal {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .toggle-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active .toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .toggle-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.92) 0%,
        rgba(26, 26, 26, 0.75) 50%,
        rgba(26, 26, 26, 0.6) 100%
    );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 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");
}

.hero-logo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    pointer-events: none;
}

.hero-logo-overlay img {
    width: 500px;
    height: auto;
    opacity: 0.25;
    animation: floatUp 1.5s ease-out forwards;
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 0.25;
        transform: translateY(0);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--accent-gold-light);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(10px);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    color: var(--bg-white);
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero h1 span {
    color: var(--accent-gold-light);
}

.hero .lead {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--bg-white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

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

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--bg-white);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(182, 164, 124, 0.4);
}

.btn-gold-outline {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-gold-outline:hover {
    background: var(--accent-gold);
    color: var(--bg-white);
}

/* === Sections === */
section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-bottom: var(--space-md);
}

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

.section-title {
    margin-bottom: var(--space-md);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* === Features Grid === */
.features-bar {
    background: var(--bg-white);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature-item {
    padding: var(--space-2xl);
    text-align: center;
    border-right: 1px solid var(--bg-light);
    transition: all var(--transition-base);
}

.feature-item:last-child {
    border-right: none;
}

.feature-item:hover {
    background: var(--bg-cream);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-deep), var(--primary));
    border-radius: 50%;
    color: var(--bg-white);
    transition: all var(--transition-base);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.3);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-item h4 {
    margin-bottom: var(--space-sm);
    font-family: var(--font-body);
    font-weight: 600;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin: 0;
}

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

    .feature-item {
        border-bottom: 1px solid var(--bg-light);
    }

    .feature-item:nth-child(2) {
        border-right: none;
    }

    .feature-item:nth-child(3),
    .feature-item:nth-child(4) {
        border-bottom: none;
    }
}

@media (max-width: 575px) {
    .features-bar {
        margin-top: -40px;
    }

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

    .feature-item {
        border-right: none;
        border-bottom: 1px solid var(--bg-light);
        padding: var(--space-xl);
    }

    .feature-item:last-child {
        border-bottom: none;
    }
}

/* === Services Section === */
.services-section {
    background: var(--bg-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-image::after {
    display: none;
}

.service-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 0.375rem 0.75rem;
    background: var(--accent-gold);
    color: var(--bg-white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    z-index: 1;
}

.service-content {
    padding: var(--space-xl);
}

.service-content h3 {
    font-size: 1.375rem;
    margin-bottom: var(--space-sm);
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
}

.service-link svg {
    transition: transform var(--transition-fast);
}

.service-link:hover svg {
    transform: translateX(4px);
}

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

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

/* === About Section === */
.about-section {
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--accent-gold);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    box-shadow: var(--shadow-gold);
}

.about-image-accent .number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-image-accent .label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: var(--space-xs);
}

.about-content {
    padding-left: var(--space-xl);
}

.about-content .section-label {
    justify-content: flex-start;
}

.about-content .section-label::before {
    display: none;
}

.about-content h2 {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.about-content .lead {
    margin-bottom: var(--space-xl);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    color: var(--primary);
    flex-shrink: 0;
}

.about-feature h5 {
    margin-bottom: var(--space-xs);
    font-family: var(--font-body);
    font-weight: 600;
}

.about-feature p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .about-image-accent {
        bottom: -20px;
        right: 20px;
        width: 150px;
        height: 150px;
    }

    .about-image-accent .number {
        font-size: 2.5rem;
    }

    .about-content {
        padding-left: 0;
    }
}

@media (max-width: 575px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* === Region Section === */
.region-section {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.region-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.region-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.region-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.75) 0%,
        rgba(26, 26, 26, 0.7) 100%
    );
}

.region-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--bg-white);
    max-width: 800px;
    margin: 0 auto;
}

.region-content h2 {
    color: var(--bg-white);
    margin-bottom: var(--space-lg);
}

.region-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: var(--space-2xl);
}

.region-locations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.region-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    backdrop-filter: blur(10px);
}

.region-tag svg {
    width: 16px;
    height: 16px;
    color: var(--accent-gold-light);
}

/* === Digital Portal Section === */
.digital-portal-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-dark);
    color: var(--bg-white);
}

.digital-portal-section .section-label {
    color: var(--accent-gold);
}

.digital-portal-section .section-title {
    color: var(--bg-white);
}

.digital-portal-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.digital-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.digital-feature {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform var(--transition-base), background var(--transition-base);
}

.digital-feature:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.digital-feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--bg-white);
}

.digital-feature h4 {
    color: var(--bg-white);
    font-size: 1.0625rem;
    margin-bottom: var(--space-sm);
}

.digital-feature p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .digital-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .digital-features-grid {
        grid-template-columns: 1fr;
    }
}

/* === Service Detail Sections (Leistungen Übersicht) === */
.service-detail-section {
    padding: var(--space-4xl) 0;
}

.service-detail-section.service-detail-alt {
    background: var(--bg-cream);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.service-detail-grid.service-detail-reverse {
    direction: rtl;
}

.service-detail-grid.service-detail-reverse > * {
    direction: ltr;
}

.service-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.service-detail-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--accent-gold);
    color: var(--bg-white);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
}

.service-detail-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
    line-height: 1.3;
}

.service-detail-content p {
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.service-detail-list {
    list-style: none;
    padding: 0;
    margin: var(--space-xl) 0;
}

.service-detail-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.75rem;
    color: var(--text-body);
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.service-detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .service-detail-grid.service-detail-reverse {
        direction: ltr;
    }

    .service-detail-image img {
        height: 260px;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .service-detail-section {
        padding: var(--space-2xl) 0;
    }
}

/* === CTA Section === */
.cta-section {
    background: var(--bg-cream);
}

.cta-box {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-gold));
}

.cta-box h2 {
    margin-bottom: var(--space-md);
}

.cta-box p {
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* === Footer === */
.site-footer {
    position: relative;
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    overflow: hidden;
}

.footer-bg-image {
    display: none;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/footer-key.png') center bottom / 100% auto no-repeat;
    opacity: 0.08;
    transform: scaleX(-1);
    z-index: 0;
    pointer-events: none;
}

.footer-main,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-main {
    padding: var(--space-4xl) 0;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.footer-logo-img {
    height: 240px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-gold);
}

.footer-logo .logo-name {
    color: var(--bg-white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-logo .logo-sub {
    color: var(--accent-gold);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

.footer-title {
    color: var(--bg-white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--bg-white);
    padding-left: 4px;
}

.footer-contact p {
    margin-bottom: var(--space-md);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-contact a:hover {
    color: var(--accent-gold);
}

.footer-hours {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-regions li {
    margin-bottom: var(--space-xs);
    font-size: 0.9375rem;
    position: relative;
    padding-left: var(--space-md);
}

.footer-regions li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-lg) 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: var(--space-xl);
}

.footer-legal a {
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--bg-white);
}

.footer-portal-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: var(--space-md);
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.footer-portal-link:hover {
    background: var(--accent-gold);
    color: var(--bg-white);
}

.footer-download-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: var(--space-sm);
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.footer-download-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    border-color: rgba(255, 255, 255, 0.6);
}

.footer-credit {
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: var(--space-md);
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition-fast);
}

.footer-credit a:hover {
    color: var(--accent-gold);
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .footer-about {
        grid-column: span 2;
    }
}

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

    .footer-about {
        grid-column: span 1;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-deep);
    color: var(--bg-white);
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* === Page Header === */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    background: var(--bg-cream);
    overflow: hidden;
}

.page-header::before {
    display: none;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-dark);
}

.page-header h1 {
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.page-header .lead {
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--text-dark);
}

.breadcrumb span {
    color: var(--text-muted);
}

.breadcrumb-current {
    color: var(--accent-gold-dark);
}

/* === Service Detail Page === */
.service-detail {
    padding: var(--space-4xl) 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-3xl);
}

.service-main h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
    font-size: 1.75rem;
}

.service-main h2:first-child {
    margin-top: 0;
}

.service-list {
    margin: var(--space-lg) 0;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--bg-light);
}

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

.service-list-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-list-icon svg {
    width: 14px;
    height: 14px;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.sidebar-card h4 {
    margin-bottom: var(--space-lg);
    font-family: var(--font-body);
}

.sidebar-nav li {
    margin-bottom: var(--space-sm);
}

.sidebar-nav a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    color: var(--text-body);
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: var(--bg-white);
    color: var(--primary);
}

.contact-card {
    background: linear-gradient(135deg, var(--primary-deep), var(--primary));
    color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
}

.contact-card h4 {
    color: var(--bg-white);
    margin-bottom: var(--space-md);
}

.contact-card p {
    opacity: 0.9;
    margin-bottom: var(--space-lg);
    font-size: 0.9375rem;
}

.contact-card .btn {
    width: 100%;
}

@media (max-width: 991px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }
}

/* === Contact Form === */
.contact-form-section {
    background: var(--bg-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-info-card {
    background: var(--primary-deep);
    color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    height: 100%;
}

.contact-info-card h3 {
    color: var(--bg-white);
    margin-bottom: var(--space-xl);
}

.contact-info-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
}

.contact-info-item h5 {
    color: var(--bg-white);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
    opacity: 0.7;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 1.125rem;
    margin: 0;
}

.contact-info-item a:hover {
    color: var(--accent-gold);
}

.contact-form-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--bg-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    background: var(--bg-white);
}

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

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.form-checkbox label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

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

@media (max-width: 575px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* Scroll animations — content is visible by default.
   Only hidden when JS has confirmed IntersectionObserver is running
   (html.js-animate class). Fallback: if JS fails, content stays visible. */
[data-animate] {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

html.js-animate [data-animate]:not(.animated) {
    opacity: 0;
    transform: translateY(30px);
}

html.js-animate [data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* === Utilities === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.my-0 { margin-top: 0; margin-bottom: 0; }

.text-gold { color: var(--accent-gold); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }

.bg-cream { background-color: var(--bg-cream); }
.bg-light { background-color: var(--bg-light); }
.bg-white { background-color: var(--bg-white); }

/* =====================================================
   LANDING PAGE STYLES
   ===================================================== */

/* === LP Navigation === */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-white);
    transition: all var(--transition-base);
    border-bottom: 1px solid transparent;
}

.lp-nav.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--bg-light);
}

.lp-nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.lp-nav .nav-logo-img {
    height: 40px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
}

.lp-nav-right {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.lp-nav-phone {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
}

.lp-nav-phone:hover {
    color: var(--accent-gold);
}

.lp-nav-phone svg {
    color: var(--accent-gold);
}

.lp-nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1.25rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--bg-white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-gold);
}

.lp-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(182, 164, 124, 0.4);
    color: var(--bg-white);
}

@media (max-width: 575px) {
    .lp-nav-phone span {
        display: none;
    }
    .lp-nav-cta {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }
}

/* === LP Body === */
.lp-body {
    padding-top: 70px;
}

/* === LP Hero === */
.lp-hero {
    position: relative;
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--primary-deep) 0%, #2a2a2a 100%);
    color: var(--bg-white);
    overflow: hidden;
}

.lp-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 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;
}

.lp-hero .container {
    position: relative;
    z-index: 1;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.4rem 1rem;
    background: rgba(182, 164, 124, 0.15);
    border: 1px solid rgba(182, 164, 124, 0.3);
    border-radius: var(--radius-full);
    color: var(--accent-gold-light);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-lg);
}

.lp-hero h1 {
    color: var(--bg-white);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    margin-bottom: var(--space-lg);
    max-width: 750px;
}

.lp-hero h1 span {
    color: var(--accent-gold-light);
}

.lp-hero .lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: var(--space-2xl);
}

.lp-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
}

.lp-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-hero-trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.lp-hero-trust-item svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

/* === LP Pain Points === */
.lp-pain {
    padding: var(--space-4xl) 0;
    background: var(--bg-cream);
}

.lp-pain-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.lp-pain-header h2 {
    margin-bottom: var(--space-md);
}

.lp-pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.lp-pain-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border-left: 4px solid var(--accent-gold);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.lp-pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.lp-pain-card h4 {
    margin-bottom: var(--space-sm);
    font-size: 1.125rem;
}

.lp-pain-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9375rem;
}

@media (max-width: 991px) {
    .lp-pain-grid {
        grid-template-columns: 1fr;
    }
}

/* === LP Steps === */
.lp-steps {
    padding: var(--space-4xl) 0;
    background: var(--bg-white);
}

.lp-steps-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.lp-steps-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.lp-steps-list::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--bg-light);
}

.lp-step {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    position: relative;
}

.lp-step:last-child {
    margin-bottom: 0;
}

.lp-step-number {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-deep), var(--primary));
    color: var(--bg-white);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 1;
}

.lp-step-content h4 {
    margin-bottom: var(--space-xs);
}

.lp-step-content p {
    color: var(--text-muted);
    margin: 0;
}

/* === LP Trust / Why immowerte === */
.lp-trust {
    padding: var(--space-4xl) 0;
    background: var(--bg-cream);
}

.lp-trust-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.lp-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.lp-trust-card {
    text-align: center;
    padding: var(--space-xl);
}

.lp-trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-deep), var(--primary));
    color: var(--bg-white);
    border-radius: 50%;
}

.lp-trust-icon svg {
    width: 32px;
    height: 32px;
}

.lp-trust-card h4 {
    margin-bottom: var(--space-sm);
}

.lp-trust-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin: 0;
}

@media (max-width: 991px) {
    .lp-trust-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* === LP Lead Magnet Teaser === */
.lp-magnet {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--primary-deep) 0%, #2a2a2a 100%);
    color: var(--bg-white);
}

.lp-magnet-inner {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    max-width: 800px;
    margin: 0 auto;
}

.lp-magnet-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(182, 164, 124, 0.15);
    border: 2px solid var(--accent-gold);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.lp-magnet-icon svg {
    width: 48px;
    height: 48px;
    color: var(--accent-gold);
}

.lp-magnet-text h3 {
    color: var(--bg-white);
    margin-bottom: var(--space-sm);
}

.lp-magnet-text p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
}

.lp-magnet-text .btn {
    display: inline-flex;
}

@media (max-width: 575px) {
    .lp-magnet-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* === LP Services Overview (LP 2) === */
.lp-services {
    padding: var(--space-4xl) 0;
    background: var(--bg-white);
}

.lp-services-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.lp-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.lp-service-card {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.lp-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.lp-service-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.lp-service-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
}

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

.lp-service-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
    font-size: 0.9375rem;
    color: var(--text-body);
}

.lp-service-list li svg {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 575px) {
    .lp-services-grid {
        grid-template-columns: 1fr;
    }
}

/* === LP Region (LP 2) === */
.lp-region {
    padding: var(--space-3xl) 0;
    background: var(--bg-cream);
}

.lp-region-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.lp-region-inner h3 {
    margin-bottom: var(--space-md);
}

.lp-region-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.lp-region-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.4rem 1rem;
    background: var(--bg-white);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-body);
    box-shadow: var(--shadow-sm);
}

.lp-region-tag.active {
    background: var(--primary-deep);
    color: var(--bg-white);
}

/* === LP Form Section === */
.lp-form-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-white);
}

.lp-form-wrapper {
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
}

.lp-form-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.lp-form-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--space-sm);
}

.lp-form-header p {
    color: var(--text-muted);
    margin: 0;
}

.lp-form-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    color: #b91c1c;
    font-size: 0.9375rem;
}

.lp-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

@media (max-width: 575px) {
    .lp-form-grid {
        grid-template-columns: 1fr;
    }
}

.lp-submit-btn {
    width: 100%;
    padding: 1.1rem 2rem;
    font-size: 1.1rem;
}

.lp-form-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.lp-form-hint svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.lp-form-success {
    text-align: center;
    padding: var(--space-2xl);
}

.lp-form-success h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.lp-form-success p {
    color: var(--text-muted);
}

.lp-download-box {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-top: var(--space-xl);
    text-align: left;
}

.lp-download-box svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.lp-download-box p {
    margin-bottom: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.lp-download-box .btn {
    font-size: 0.875rem;
    padding: 0.65rem 1.25rem;
}

/* === LP Social Proof === */
.lp-proof {
    padding: var(--space-3xl) 0;
    background: var(--bg-light);
    text-align: center;
}

.lp-proof-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.lp-proof-stat {
    text-align: center;
}

.lp-proof-stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-deep);
    line-height: 1;
}

.lp-proof-stat .label {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

/* === LP Footer === */
.lp-footer {
    background: var(--primary-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-2xl) 0 0;
}

.lp-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.lp-footer-logo {
    height: 50px;
    width: auto;
    border-radius: var(--radius-sm);
}

.lp-footer-brand p {
    font-size: 0.8125rem;
    margin: 0;
    line-height: 1.5;
}

.lp-footer-contact {
    display: flex;
    gap: var(--space-xl);
}

.lp-footer-contact a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.lp-footer-contact a:hover {
    color: var(--accent-gold);
}

.lp-footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.lp-footer-legal a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.lp-footer-legal a:hover {
    color: var(--bg-white);
}

.lp-footer-bottom {
    padding: var(--space-lg) 0;
    text-align: center;
}

.lp-footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

@media (max-width: 991px) {
    .lp-footer-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .lp-footer-brand {
        flex-direction: column;
    }
}

/* === LP Problem/Solution Section (LP 3) === */
.lp-problem {
    padding: var(--space-4xl) 0;
    background: var(--bg-white);
}

.lp-problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.lp-problem-col h3 {
    margin-bottom: var(--space-lg);
}

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

.lp-problem-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--bg-light);
    font-size: 0.9375rem;
}

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

.lp-problem-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.lp-problem-list.problems li svg {
    color: #ef4444;
}

.lp-problem-list.solutions li svg {
    color: #22c55e;
}

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

/* === Form error state === */
.form-control.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-checkbox.error {
    color: #ef4444;
}

/* === Cookie Consent Banner === */
.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--bg-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    padding: var(--space-lg);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.consent-inner {
    max-width: var(--container-max);
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.consent-text {
    flex: 1;
}

.consent-text h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.consent-text p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
    line-height: 1.5;
}

.consent-link a {
    color: var(--accent-gold);
    font-size: 0.8125rem;
    text-decoration: underline;
}

.consent-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.consent-btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    font-family: var(--font-body);
}

.consent-btn-accept {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--bg-white);
    box-shadow: var(--shadow-gold);
}

.consent-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(182, 164, 124, 0.4);
}

.consent-btn-reject {
    background: var(--bg-light);
    color: var(--text-body);
    border: 1px solid #E5E7EB;
}

.consent-btn-reject:hover {
    background: #E5E7EB;
}

@media (max-width: 575px) {
    .consent-inner {
        flex-direction: column;
        text-align: center;
    }
    .consent-buttons {
        width: 100%;
        flex-direction: column;
    }
    .consent-btn {
        width: 100%;
    }
}
