:root {
    /* Color Palette - Landing Page (Unternehmer Gruppe) */
    --landing-bg: #1a1a1a;
    /* Dark Slate */
    --landing-text: #f0f0f0;
    --landing-accent: #d4af37;
    /* Gold */

    /* Color Palette - Energiemanagement (Sabine) */
    --energy-bg: #f4f9f4;
    /* Very light green/white */
    --energy-primary: #2e7d32;
    /* Green */
    --energy-secondary: #81c784;
    /* Light Green */
    --energy-text: #1b3a1b;

    /* Color Palette - Consulting (Maximilian) */
    --consulting-bg: #f0f4f8;
    /* Very light blue/white */
    --consulting-primary: #1565c0;
    /* Blue */
    --consulting-secondary: #64b5f6;
    /* Light Blue */
    --consulting-text: #0d2b4d;

    /* Common */
    --white: #ffffff;
    --transition-speed: 0.3s;
    --font-main: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* --- Landing Page Styles --- */
body.landing-page {
    background-color: var(--landing-bg);
    color: var(--landing-text);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.landing-hero {
    text-align: center;
    padding: 4rem 2rem;
    animation: fadeIn 1s ease-out;
}

.landing-hero h1 {
    font-size: 3rem;
    color: var(--landing-accent);
    margin-bottom: 0.5rem;
}

.landing-hero p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.split-container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex: 1;
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    gap: 2rem;
}


.split-card {
    -webkit-flex: 1;
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    -webkit-transition: all var(--transition-speed);
    transition: all var(--transition-speed);
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.split-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

.split-card h2 {
    font-size: clamp(1.2rem, 4vw, 2rem);
    margin-bottom: 1rem;
    hyphens: auto;
    word-break: break-word;
}

.split-card.energy:hover {
    border-color: var(--energy-secondary);
    box-shadow: 0 0 20px rgba(46, 125, 50, 0.3);
}

.split-card.consulting:hover {
    border-color: var(--consulting-secondary);
    box-shadow: 0 0 20px rgba(21, 101, 192, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* --- Sub-page Styles --- */
.sub-page header {
    padding: 1.5rem 2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
}

.nav-links a {
    margin-left: 2rem;
    font-weight: 500;
}

.hero-section {
    padding: 6rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.content-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.grid-services {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.grid-services > * {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 280px;
    flex: 1 1 280px;
    min-width: 280px;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-speed);
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Energy Specifics */
body.energy-page {
    background-color: var(--energy-bg);
    color: var(--energy-text);
    background-image: linear-gradient(rgba(244, 249, 244, 0.85), rgba(244, 249, 244, 0.85)), url('energy_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.energy-page .btn-primary {
    background-color: var(--energy-primary);
    color: var(--white);
}

.energy-page .btn-primary:hover {
    background-color: #1b5e20;
}

.energy-page .logo,
.energy-page h1,
.energy-page h2 {
    color: var(--energy-primary);
}

/* Consulting Specifics */
body.consulting-page {
    background-color: var(--consulting-bg);
    color: var(--consulting-text);
}

.consulting-page .btn-primary {
    background-color: var(--consulting-primary);
    color: var(--white);
}

.consulting-page .btn-primary:hover {
    background-color: #0d47a1;
}

.consulting-page .logo,
.consulting-page h1,
.consulting-page h2 {
    color: var(--consulting-primary);
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.about-image {
    flex: 0 0 250px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.about-content {
    flex: 1;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Footer */
footer {
    margin-top: auto;
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.landing-page footer {
    color: var(--landing-text);
}

.sub-page footer {
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .split-container {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .landing-hero h1 {
        font-size: 2rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Legal Pages */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
}

.legal-container section {
    margin-bottom: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-container h2 {
    color: var(--landing-accent);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-container h3 {
    color: var(--white);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.legal-container p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Team Section for Energy Page */
.team-container {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}


.team-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    -webkit-flex: 1;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-card h3 {
    color: var(--energy-primary);
    margin-bottom: 0.5rem;
}

.team-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.team-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    text-align: left;
    width: 100%;
}

.team-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.team-card li::before {
    content: "✓";
    color: var(--energy-primary);
}

/* Language Switcher - Base Styles */
.lang-switcher {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: -webkit-flex;
    display: flex;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.25rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    pointer-events: auto;
}


.lang-btn {
    border: none;
    background: transparent;
    padding: 5px 10px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: #666;
    transition: all 0.2s;
    pointer-events: auto;
    position: relative;
}

.lang-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

.lang-btn.active {
    background: #333;
    color: white;
}

/* Dark mode adjustment for landing page */
body.landing-page .lang-switcher {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.landing-page .lang-btn {
    color: #aaa;
}

body.landing-page .lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

body.landing-page .lang-btn.active {
    background: var(--landing-accent);
    color: var(--landing-bg);
}

/* Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--energy-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--energy-primary);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit button {
    width: 100%;
    border: none;
    font-size: 1rem;
}

.form-submit button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Form Messages */
.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(46, 125, 50, 0.1);
    color: var(--energy-primary);
    border: 1px solid var(--energy-primary);
}

.form-message.error {
    display: block;
    background-color: rgba(211, 47, 47, 0.1);
    color: #d32f2f;
    border: 1px solid #d32f2f;
}

/* Form Layout */
.form-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-row > * {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 200px;
    flex: 1 1 200px;
}

@media (max-width: 600px) {
    .form-row {
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}

.form-section-title {
    font-size: 1.1rem;
    color: var(--energy-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--energy-secondary);
}

.form-section-title:first-of-type {
    margin-top: 1.5rem;
}

/* Radio Button Groups */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all var(--transition-speed);
    background: #fafafa;
}

.radio-label:hover {
    border-color: var(--energy-secondary);
    background: #f0f7f0;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--energy-primary);
    cursor: pointer;
}

.radio-label input[type="radio"]:checked + span {
    font-weight: 600;
    color: var(--energy-primary);
}

/* Radio label checked state */
.radio-label.checked {
    border-color: var(--energy-primary);
    background: rgba(46, 125, 50, 0.08);
}

/* Required field indicator */
.required {
    color: #d32f2f;
}

.required-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

/* ============================================
   Eigenheim Page - Styles for New Homeowners
   (Uses Energy color scheme for consistency)
   ============================================ */

/* Landing page eigenheim card hover */
.split-card.eigenheim:hover {
    border-color: var(--energy-secondary);
    box-shadow: 0 0 20px rgba(46, 125, 50, 0.3);
}

/* Eigenheim page body - matches energy-page */
body.eigenheim-page {
    background-color: var(--energy-bg);
    color: var(--energy-text);
    background-image: linear-gradient(rgba(244, 249, 244, 0.85), rgba(244, 249, 244, 0.85)), url('energy_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

body.eigenheim-page h1,
body.eigenheim-page h2 {
    color: var(--energy-primary);
}

body.eigenheim-page .logo {
    color: var(--energy-primary);
}

body.eigenheim-page .btn-primary {
    background: var(--energy-primary);
    color: white;
}

body.eigenheim-page .btn-primary:hover {
    background: #1b5e20;
}

body.eigenheim-page .btn-secondary {
    background: var(--energy-secondary);
    color: var(--energy-text);
}

body.eigenheim-page .btn-secondary:hover {
    background: #66bb6a;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* Eigenheim Hero Section */
.eigenheim-hero {
    padding: 5rem 2rem 4rem;
    max-width: 900px;
}

.hero-badge {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 0.5rem;
    background: rgba(46, 125, 50, 0.08);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--energy-primary);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(46, 125, 50, 0.15);
}

.hero-badge > * + * {
    margin-left: 0.5rem;
}

.badge-icon {
    font-size: 1.1rem;
}

.eigenheim-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-lead {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    opacity: 0.95;
}

.hero-sub {
    font-size: 1.1rem;
    opacity: 0.75;
    margin-bottom: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 2rem 2rem 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.benefits-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.benefits-grid > * {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 280px;
    flex: 1 1 280px;
    min-width: 280px;
}


.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(46, 125, 50, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--energy-primary);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0;
}

/* Expert Section */
.expert-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(46, 125, 50, 0.05) 100%);
}

.expert-container {
    max-width: 1000px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.expert-image-wrapper {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 250px;
    flex: 1 1 250px;
}

.expert-content {
    -webkit-box-flex: 1.5;
    -webkit-flex: 1.5 1 350px;
    flex: 1.5 1 350px;
}


.expert-image-wrapper {
    position: relative;
    text-align: center;
}

.expert-image-wrapper img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    border: 4px solid white;
}

.expert-badge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--energy-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.expert-content h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.expert-title {
    font-size: 1.05rem;
    color: var(--energy-secondary);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.expert-title2 {
    font-size: 0.85rem;
    color: var(--energy-secondary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.expert-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--energy-text);
    opacity: 0.85;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--energy-primary);
}

.expert-skills {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.expert-skills li {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.expert-skills li > * + * {
    margin-left: 0.75rem;
}

.skill-check {
    color: var(--energy-primary);
    font-weight: 700;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .expert-container {
        -webkit-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }
    
    .expert-image-wrapper img {
        width: 220px;
        height: 220px;
    }
    
    .expert-intro {
        border-left: none;
        padding-left: 0;
        border-top: 3px solid var(--energy-primary);
        padding-top: 1rem;
    }
    
    .expert-skills li {
        justify-content: center;
    }
    
    .expert-content .btn {
        display: block;
        width: 100%;
    }
}

/* Eigenheim Service Cards */
.eigenheim-page .service-card {
    background: white;
    border: 1px solid rgba(46, 125, 50, 0.08);
    position: relative;
    overflow: hidden;
}

.eigenheim-page .service-card.featured {
    border: 2px solid var(--energy-primary);
}

.service-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--energy-primary);
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0 10px 0 12px;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.eigenheim-page .service-card h3 {
    color: var(--energy-primary);
}

/* Checklist Section */
.checklist-section {
    padding: 4rem 2rem;
    background: rgba(46, 125, 50, 0.05);
}

.checklist-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.checklist-content {
    -webkit-box-flex: 1.5;
    -webkit-flex: 1.5 1 300px;
    flex: 1.5 1 300px;
}

.checklist-cta {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 200px;
    flex: 1 1 200px;
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05) 0%, #fff 100%);
    border-radius: 12px;
}


.checklist-content h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.checklist-content > p {
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.checklist-items {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.75rem;
}

.checklist-items > * + * {
    margin-top: 0.75rem;
}

.checklist-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #fafafa;
    border-radius: 8px;
    font-size: 0.95rem;
    border: 1px solid #eee;
}

.checklist-item > * + * {
    margin-left: 0.75rem;
}

.checklist-item.done {
    background: rgba(46, 125, 50, 0.08);
    border-color: var(--energy-primary);
}

.checklist-item.done .check-box {
    color: var(--energy-primary);
}

.check-box {
    font-size: 1.2rem;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    opacity: 0.5;
}

.checklist-item.done .check-box {
    opacity: 1;
}

.checklist-cta p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--energy-primary);
    font-weight: 500;
}

@media (max-width: 700px) {
    .checklist-container {
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}

/* Contact CTA Section */
.contact-cta {
    text-align: center;
    background: rgba(46, 125, 50, 0.05);
    border-radius: 16px;
    padding: 5rem 2rem;
}

.contact-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-features {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.contact-features > * + * {
    margin-left: 2rem;
}


.contact-features span {
    font-size: 0.95rem;
    color: var(--energy-primary);
    font-weight: 500;
}

.contact-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.7;
}

.contact-note a {
    color: var(--energy-primary);
    font-weight: 600;
    text-decoration: underline;
}

/* Eigenheim Animations */
@-webkit-keyframes eigenheimFadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes eigenheimFadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.eigenheim-hero,
.benefit-card,
.expert-container,
.checklist-container {
    -webkit-animation: eigenheimFadeInUp 0.6s ease-out;
    animation: eigenheimFadeInUp 0.6s ease-out;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.1s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* ============================================
   Energy Page - New Sections
   ============================================ */

.energy-hero {
    max-width: 900px;
}

.hero-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--energy-primary);
    opacity: 1;
    margin-bottom: 2.5rem;
}

.hero-mood-image,
.process-mood-image {
    margin-top: 2.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.hero-mood-image img,
.process-mood-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.75;
    max-width: 600px;
    margin: -0.5rem auto 3rem;
}

/* Process Section */
.process-section {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.process-section h2 {
    color: var(--energy-primary);
    margin-bottom: 1rem;
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
    justify-content: center;
}

.process-step {
    flex: 1 1 250px;
    max-width: 300px;
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(46, 125, 50, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--energy-primary);
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: var(--energy-primary);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0;
}

.process-mood-image {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .process-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        max-width: 100%;
    }
}

/* Team Section */
.team-section {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.team-section h2 {
    color: var(--energy-primary);
}

/* Energy Service Icons */
.energy-page .service-card .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.energy-page .service-card h3 {
    color: var(--energy-primary);
}

/* ============================================
   Blog Teaser Section (on Energy Page)
   ============================================ */

.blog-teaser-section {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.blog-teaser-section h2 {
    color: var(--energy-primary);
}

.blog-teaser-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.blog-teaser-card {
    flex: 1 1 300px;
    max-width: 350px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(46, 125, 50, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.blog-teaser-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.blog-teaser-img {
    height: 180px;
    overflow: hidden;
}

.blog-teaser-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-teaser-card:hover .blog-teaser-img img {
    transform: scale(1.05);
}

.blog-teaser-content {
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-teaser-date {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-teaser-content h3 {
    font-size: 1.05rem;
    color: var(--energy-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-teaser-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.7;
    margin: 0;
    flex: 1;
}

@media (max-width: 768px) {
    .blog-teaser-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-teaser-card {
        max-width: 100%;
    }
}

/* ============================================
   Blog Overview Page
   ============================================ */

.blog-hero {
    padding: 5rem 2rem 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--energy-primary);
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1.15rem;
    opacity: 0.8;
}

.blog-grid-section {
    padding: 2rem 2rem 5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.blog-card {
    flex: 1 1 320px;
    max-width: 360px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(46, 125, 50, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    opacity: 0.5;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-body h3 {
    font-size: 1.15rem;
    color: var(--energy-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.75;
    margin: 0;
    flex: 1;
}

.blog-card-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--energy-primary);
    font-size: 0.9rem;
    transition: opacity 0.2s;
}

.blog-card-link:hover {
    opacity: 0.7;
}

.blog-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .blog-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-card {
        max-width: 100%;
    }
}

/* ============================================
   Blog Post Page
   ============================================ */

.blog-post-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem;
}

.blog-post-header {
    padding: 4rem 0 2rem;
    text-align: center;
}

.blog-post-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--energy-primary);
    margin-bottom: 2rem;
    transition: opacity 0.2s;
}

.blog-post-back:hover {
    opacity: 0.7;
}

.blog-post-header h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--energy-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.6;
}

.blog-post-hero-img {
    margin: 2rem 0 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.blog-post-hero-img img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post-content {
    padding-bottom: 4rem;
}

.blog-post-content h2 {
    font-size: 1.6rem;
    color: var(--energy-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-post-content h3 {
    font-size: 1.25rem;
    color: var(--energy-text);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.blog-post-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.blog-post-content li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.blog-post-content blockquote {
    border-left: 4px solid var(--energy-primary);
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    background: rgba(46, 125, 50, 0.04);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.blog-post-cta {
    text-align: center;
    background: rgba(46, 125, 50, 0.05);
    border-radius: 16px;
    padding: 3rem 2rem;
    margin-top: 3rem;
}

.blog-post-cta h3 {
    color: var(--energy-primary);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.blog-post-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* ============================================
   Blog Post - Timeline
   ============================================ */

.timeline {
    position: relative;
    padding: 1rem 0;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--energy-secondary);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 52px;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 6px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--energy-primary);
    z-index: 1;
}

.timeline-item.highlight::before {
    background: var(--energy-primary);
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.2);
}

.timeline-date {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--energy-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.35rem;
}

.timeline-content {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(46, 125, 50, 0.08);
}

.timeline-item.highlight .timeline-content {
    border-color: var(--energy-primary);
    background: rgba(46, 125, 50, 0.03);
}

.timeline-content h3 {
    font-size: 1.05rem;
    color: var(--energy-primary);
    margin-bottom: 0.4rem;
}

.timeline-content p {
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

@media (max-width: 600px) {
    .timeline::before {
        left: 14px;
    }

    .timeline-item {
        padding-left: 42px;
    }

    .timeline-item::before {
        left: 8px;
        width: 15px;
        height: 15px;
    }
}

/* ============================================
   Blog Post - Price Comparison Table
   ============================================ */

.price-comparison-table {
    margin: 2rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.price-comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    font-size: 0.95rem;
}

.price-comparison-table thead {
    background: var(--energy-primary);
    color: white;
}

.price-comparison-table th {
    padding: 1rem;
    font-weight: 600;
    text-align: center;
}

.price-comparison-table th small {
    display: block;
    font-weight: 400;
    opacity: 0.8;
    font-size: 0.75rem;
    margin-top: 0.2rem;
}

.price-comparison-table td {
    padding: 0.85rem 1rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.price-comparison-table td:first-child {
    text-align: left;
    white-space: nowrap;
}

.price-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.price-comparison-table tbody tr:hover {
    background: rgba(46, 125, 50, 0.03);
}