/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #ffffff;
    --text-color: #383E41;
    --primary-color: #d61523;
    --primary-dark: #cc0d1b;
    --primary-light: #fef8f8;
    --button-bg: #32373c;
    --button-text: #ffffff;
    --container-max-width: 1200px;
    --section-padding: 80px 20px;
    --section-padding-mobile: 60px 20px;
    --grid-gap: 0.5em;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: clamp(15px, 1.6vw, 16px);
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

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

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

/* Typography */
h1 {
    font-size: clamp(28px, 5vw, 38px);
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1em;
}

h1 span {
    color: var(--primary-color);
}

h2 {
    font-size: clamp(26px, 4vw, 34px);
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5em;
}

h2 span {
    color: var(--primary-color);
}

h3 {
    font-size: clamp(22px, 3.5vw, 30px);
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75em;
}

p {
    margin-bottom: 1em;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Header */
.header {
    background-color: var(--bg-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    position: relative;
}

.nav-list > li {
    position: relative;
}

.nav-list a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
}

.dropdown-menu a:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
    display: block;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Breadcrumb */
.breadcrumb {
    background-color: var(--primary-light);
    padding: 20px 0;
}

.breadcrumb-text {
    font-size: 14px;
    color: var(--text-color);
}

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-image .image-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image .slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-image .slider-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-image .slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-align: left;
    max-width: 600px;
}

.hero-title {
    color: #ffffff;
    margin-bottom: 1em;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-text {
    font-size: 18px;
    margin-bottom: 2em;
    color: #ffffff;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--button-bg);
    color: var(--button-text);
    border: none;
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    margin: 0.5em;
    text-align: center;
}

.btn:hover {
    opacity: 0.9;
}

.btn-primary {
    background-color: var(--button-bg);
    color: var(--button-text);
}

/* Sections */
.section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 3em;
}

.section-intro {
    text-align: center;
    max-width: 720px;
    margin: -1.5em auto 2em;
    color: var(--text-muted, #555);
    line-height: 1.6;
}

.page-title {
    text-align: center;
    margin-bottom: 2em;
}

/* Hero Image für Unterseiten - unter der Headline */
.page-hero-image-wrapper {
    margin: 2rem 0 3rem;
    text-align: center;
}

.image-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16 / 9;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slider-slide.active {
    opacity: 1;
    z-index: 2;
}

.page-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
}

.service-item {
    padding: 0;
}

.service-item h2,
.service-item h3 {
    color: var(--primary-color);
    margin-bottom: 1em;
}

/* Why Section */
.why-content {
    max-width: 1000px;
    margin: 0 auto;
}

.why-text {
    text-align: center;
    margin-bottom: 3em;
}

.why-text p {
    font-size: 16px;
    margin-bottom: 1.5em;
}

.why-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
}

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

.why-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5em;
}

.why-item p {
    font-size: 15px;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
}

.process-item {
    text-align: center;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 1em;
}

.process-item h3 {
    color: var(--primary-color);
    margin-bottom: 1em;
}

/* Contact Section */
.section.contact {
    background-image: url('../images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5em;
}

.contact-item {
    margin-bottom: 1.5em;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5em;
    color: var(--text-color);
}

/* CTA Section */
.cta {
    background-color: var(--primary-light);
    text-align: center;
    padding: var(--section-padding);
}

.cta-text {
    font-size: 18px;
    margin-bottom: 2em;
}

.cta-buttons {
    display: flex;
    gap: 1em;
    justify-content: center;
    flex-wrap: wrap;
}

/* Kompakter Hero für lokale Landingpages */
.hero--compact {
    min-height: 420px;
}

.hero--compact .hero-image img {
    object-fit: cover;
    width: 100%;
    min-height: 420px;
}

/* Regionale Städte-Übersicht */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.cities-grid a {
    display: block;
    padding: 1rem 1.25rem;
    background: var(--primary-light);
    border-radius: 6px;
    color: var(--text-color);
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.cities-grid a:hover {
    background: var(--primary-color);
    color: #fff;
}

.cities-grid--dual {
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.cities-grid--dual .city-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

@media (max-width: 600px) {
    .cities-grid--dual .city-row {
        grid-template-columns: 1fr;
    }
}

/* Content Pages */
.content-text {
    max-width: 800px;
    margin: 0 auto;
}

.content-text h2 {
    margin-top: 2em;
    margin-bottom: 1em;
}

.content-text h3 {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    font-size: 24px;
}

.content-text p {
    margin-bottom: 1em;
}

.content-text .content-lead {
    font-size: 1.1em;
    line-height: 1.6;
}

.content-text ul,
.content-text ol {
    margin-left: 2em;
    margin-bottom: 1em;
}

.content-text li {
    margin-bottom: 0.5em;
}


/* Highlight strip */
.highlight-strip {
    background: radial-gradient(circle at left, rgba(214, 21, 35, 0.25), transparent 55%), #050608;
    color: #ffffff;
    padding: 40px 20px;
}

.highlight-strip .highlight-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.highlight-strip h2 {
    color: #ffffff;
    margin-bottom: 0.5em;
}

.highlight-strip p {
    max-width: 520px;
}

.highlight-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.highlight-badge {
    padding: 0.6em 1.2em;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.9rem;
}

.highlight-badge strong {
    color: #ffffff;
}

/* Vorteile / Benefit Cards */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.benefit-card {
    padding: 0;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-top: 3px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.benefit-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.benefit-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.benefit-card > h3,
.benefit-card > p {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
}

.benefit-card > h3 {
    padding-top: 1.75rem;
    margin-bottom: 0.75em;
    color: var(--primary-color);
}

.benefit-card > p {
    padding-bottom: 1.75rem;
}

/* Stats */
.stats-section {
    background: #f1f2f4; /* deutlichere Graufläche für Kennzahlen */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.stat-card {
    padding: 1.5rem;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
    text-align: center;
    overflow: hidden;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.stat-card p {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25em;
}

/* FAQ */
.faq-section .faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    border-radius: 12px;
    border: 1px solid #e3e5e7;
    background: #ffffff;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1rem 1.25rem;
    background: #f9fafb;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-color);
}

.faq-toggle-icon {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    display: none;
}

.faq-item.is-open .faq-answer {
    display: block;
}

/* Breakpoint für 3-Spalten-Layouts - früher umbrechen */
@media (max-width: 1024px) {
    .services-grid,
    .why-advantages,
    .process-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .services-grid,
    .why-advantages,
    .process-grid,
    .benefits-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .benefits-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background-color: #242424;
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2em;
    margin-bottom: 2em;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1em;
}

.footer-title {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 1em;
}

.footer-text {
    color: #cccccc;
    margin-bottom: 0.5em;
}

.footer-text a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2em;
    border-top: 1px solid #444;
}

.footer-copyright {
    color: #cccccc;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-color);
        flex-direction: column;
        padding: 2em;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        align-items: flex-start;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-list[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        margin-top: 10px;
        display: none;
        background-color: var(--primary-light);
    }

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

    .hero {
        min-height: 600px;
    }

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

    .section {
        padding: var(--section-padding-mobile);
    }

    .services-grid,
    .process-grid,
    .why-advantages,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2em;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        margin: 0.25em 0;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-text {
        font-size: 16px;
    }

    .section {
        padding: 40px 15px;
    }

    .container {
        padding: 0 15px;
    }
}

/* Highlight strip – center content & use red accent */
.highlight-strip {
    text-align: center;
}

.highlight-strip .highlight-content {
    justify-content: center;
}

.highlight-strip h2 strong {
    color: var(--primary-color);
}

.highlight-strip p {
    margin-left: auto;
    margin-right: auto;
}

.highlight-badges {
    justify-content: center;
}

/* Warum-IDN Section hellgrau + einheitliche Cards */
.section.why,
.why {
    background-color: #f5f5f7;
}

/* Einheitlicher Card-Look für Service-, Vorteile-, Stats- und Warum-Karten */
.service-item,
.benefit-card,
.stat-card,
.why-item {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

/* Service-Karten weiterhin als Flex-Layout, aber mit reduziertem Effekt */
.service-item {
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-item-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
}

.service-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-item > h3,
.service-item > p {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
}

.service-item > h3 {
    padding-top: 1.75rem;
    margin-bottom: 1em;
}

.service-item > p {
    padding-bottom: 0;
}

.service-item > .btn {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
    margin-top: 1.5em;
    align-self: center;
    text-align: center;
    width: calc(100% - 3.5rem);
}

.service-item::before {
    content: none;
}

.service-item p {
    flex-grow: 1;
}

.service-item .btn {
    margin-top: 1.5em;
    align-self: center;
    text-align: center;
    width: calc(100% - 3.5rem);
}

/* Warum-IDN Cards typografisch anpassen */
.why-item {
    text-align: left;
}

.why-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.25em;
}

/* Basis-Typografie und Card-Layout */

h2.section-title {
    font-size: 2.1rem;
    font-weight: 700;
}

h3 {
    font-size: 1.6rem;
    font-weight: 600;
}

p {
    font-size: 0.98rem;
}

.card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
}

.card h3 {
    margin-bottom: 0.5em;
}

.card p {
    margin-bottom: 0.75em;
}

.card-actions {
    margin-top: auto;
}

.card-actions .btn {
    margin-top: 0.75em;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
}

.card--contact {
    align-items: flex-start;
    text-align: left;
}

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

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


/* Vereinheitlichte Card-Basis: gleiche Breiten & Innenabstände */
.card,
.service-item,
.benefit-card,
.stat-card,
.why-item {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
}

.card h3,
.service-item h3,
.benefit-card h3,
.stat-card h3,
.why-item h3 {
    margin-bottom: 0.5em;
}

.card p,
.service-item p,
.benefit-card p,
.stat-card p,
.why-item p {
    margin-bottom: 0.75em;
}

/* Buttons in Cards immer unten andocken, wenn vorhanden */
.card .card-actions,
.service-item .card-actions,
.benefit-card .card-actions,
.stat-card .card-actions,
.why-item .card-actions {
    margin-top: auto;
}

/* Kontakt-Karten linksbündig, andere bleiben wie definiert */
.card--contact {
    align-items: flex-start;
    text-align: left;
}


/* FAQ Section Hintergrund grau */
.section.faq-section,
.faq-section {
    background-color: #f5f5f7;
}


.footer-credits {
    margin-top: 0.35em;
    font-size: 0.85rem;
    color: #9ca3af;
}

.footer-credits a {
    color: #e5e7eb;
    text-decoration: none;
}

.footer-credits a:hover {
    color: var(--primary-color);
}


/* Process Steps für Komplettsanierung */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.process-step-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.process-step-number {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.process-step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.75em;
    font-size: 1.25rem;
}

.process-step-content p {
    margin-bottom: 0;
    line-height: 1.6;
}

.process-summary {
    background: linear-gradient(135deg, var(--primary-light, #fef8f8) 0%, #ffffff 100%);
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    padding: 2rem;
    margin-top: 2rem;
}

.process-summary h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.process-summary ul {
    margin-left: 1.5rem;
    margin-bottom: 0;
}

.process-summary li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.process-summary li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .process-step-card {
        padding: 1.5rem;
    }
    
    .process-summary {
        padding: 1.5rem;
    }
}

/* SEO / UX: Responsive Feinschliff */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .btn,
    .nav-toggle,
    .faq-question {
        min-height: 44px;
    }

    .hero-image img {
        object-fit: cover;
        width: 100%;
        min-height: 280px;
    }

    .logo-img {
        height: 48px;
        width: auto;
    }

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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