/* ============================================
   MODERN CSS - Minimalistisches Design
   Farbschema: Weiß, Schwarz, Dunkles Gelb, Grau
   ============================================ */

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000000;
    color: #ffffff;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    font-weight: 600;
    border-radius: 4px;
}

.skip-link:focus {
    top: 0;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Minimalistisches Farbschema */
    --white: #ffffff;
    --black: #000000;
    --yellow-dark: #b8860b;
    --gray-light: #f5f5f5;
    --gray: #808080;
    --gray-dark: #404040;
    --gray-darker: #2a2a2a;

    /* Farbzuweisungen */
    --primary: var(--black);
    --primary-dark: var(--gray-darker);
    --accent: var(--yellow-dark);

    --text-dark: var(--black);
    --text-gray: var(--gray-dark);
    --text-light: var(--gray);

    --bg-white: var(--white);
    --bg-light: var(--gray-light);
    --bg-gray: #e5e5e5;

    --border: #d0d0d0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}

/* Sicherstellen, dass alle Elemente innerhalb des Containers die 1400px Breite respektieren */
.container>* {
    max-width: 100%;
}

/* SVG Icons */
.icon-svg {
    width: 64px;
    height: 64px;
    margin: 0 auto 30px;
    display: block;
}

.icon-svg svg {
    width: 100%;
    height: 100%;
    fill: var(--black);
    transition: var(--transition);
}

/* Header */
header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid var(--border);
    min-height: 70px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 15px 0;
    min-height: 70px;
}

/* Logo links */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--black);
    transition: var(--transition);
    flex-shrink: 0;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    display: block;
    white-space: nowrap;
    line-height: 1;
}

/* Navigation Mitte */
nav {
    display: flex;
    gap: 30px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav a,
.nav-list a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    padding: 8px 0;
}

nav a:hover,
.nav-list a:hover {
    color: var(--black);
}

nav a[aria-current="page"] {
    color: var(--black);
    font-weight: 600;
}

/* Anrufen Button rechts */
.header-phone {
    background: var(--yellow-dark);
    color: var(--black);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    letter-spacing: 0.01em;
    text-transform: none;
    border: 2px solid var(--yellow-dark);
    flex-shrink: 0;
}

.header-phone:hover {
    background: #9a6f08;
    color: var(--black);
    border-color: #9a6f08;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-gray);
    cursor: pointer;
    padding: 8px;
}

/* Flexbox, where children fit perfectly and take gap into account */
.auto-flexbox {
    --gap: 2rem;
    --column-count: 3;

    /* Calculations */
    /* Dont touch this, unless you know what you're doing */
    --total-gap: calc(var(--gap) * (var(--column-count) - 1));
    --column-width: calc((100% - var(--total-gap)) / var(--column-count));

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gap);
}

.auto-flexbox>* {
    flex: 0 0 var(--column-width);
}

@media screen and (max-width:980px) {
    .auto-flexbox {
        --column-count: 1 !important;
    }
}

/* Hero Section */
.hero {
    background: var(--black);
    color: var(--white);
    padding: 160px 40px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Hero Background Images mit Fade-Wechsel */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/Serioese-Haushaltsaufloesung.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: heroFade 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/Entruempelung-Transportunternehmen-Muenchen.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0;
    animation: heroFade2 20s ease-in-out infinite;
}

/* Fade Animation - Sehr langsamer, sanfter Übergang */
@keyframes heroFade {
    0% {
        opacity: 1;
    }

    35% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    85% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes heroFade2 {
    0% {
        opacity: 0;
    }

    35% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Overlay für bessere Lesbarkeit - Dunkler für bessere Sichtbarkeit */
.hero::before,
.hero::after {
    background-color: rgba(0, 0, 0, 0.75);
    background-blend-mode: multiply;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero .container>* {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--white);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero .subheadline {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--yellow-dark);
    font-weight: 400;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.hero-intro {
    font-size: 1.4rem;
    margin-bottom: 50px;
    color: var(--gray);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ============================================
   BUTTONS - Nur 2 Designs
   ============================================ */

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

/* Button Base */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 48px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.4;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: inherit;
    letter-spacing: 0.01em;
    text-transform: none;
    white-space: nowrap;
}

/* Design 1: Gelb/Gold mit schwarzer Typo */
.btn-black {
    background-color: var(--yellow-dark);
    color: var(--black);
    border-color: var(--yellow-dark);
}

.btn-black:hover {
    background-color: #9a6f08;
    color: var(--black);
    border-color: #9a6f08;
}

/* Design 2: Outline weiß mit Hover gelb/gold */
.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: transparent;
    color: var(--yellow-dark);
    border-color: var(--yellow-dark);
}

/* Section Styles */
section {
    padding: 120px 40px;
}

.section-title {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 30px;
    color: var(--black);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-title span {
    color: var(--yellow-dark);
    display: block;
    font-size: 0.85em;
    margin-top: 10px;
}

/* Image Placeholder */
.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gray-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.image-placeholder::before {
    content: '📷';
    font-size: 4rem;
    opacity: 0.2;
}

/* Leistungen */
.leistungen {
    --column-count: 3;
}

.leistung-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    display: block;
}

.leistung-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.leistung-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.leistung-card .icon-svg lord-icon {
    transition: all 0.3s ease;
}

.leistung-card:hover .icon-svg lord-icon {
    filter: brightness(0) saturate(100%) invert(55%) sepia(95%) saturate(1500%) hue-rotate(15deg) brightness(0.9) !important;
    transform: scale(1.1);
}

.leistung-card:hover .icon-svg lord-icon svg,
.leistung-card:hover .icon-svg lord-icon svg * {
    fill: #b8860b !important;
    stroke: #b8860b !important;
    color: #b8860b !important;
}

.leistung-card h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--black);
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.leistung-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1.2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Ablauf */
#ablauf {
    background: var(--gray-light);
}

.ablauf-steps {
    --column-count: 2;
    margin-top: 60px;
    position: relative;
    list-style: none;
    padding: 0;
    margin-left: 0;
}

@media screen and (max-width:980px) {
    .ablauf-steps {
        --column-count: 1;
    }
}

.step {
    background: var(--white);
    padding: 50px 35px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.step-number {
    background: var(--black);
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 30px;
    box-shadow: var(--shadow-md);
}

.step h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--black);
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.step p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1.2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Warum Section */
#warum {
    background: var(--white);
}

.warum {
    --column-count:2;
    margin-top: 60px;
}

@media screen and (max-width:980px) {
    .warum {
        --column-count: 1;
    }
}

.warum-item {
    background: var(--gray-light);
    padding: 50px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.warum-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.warum-item h3 {
    font-size: 1.75rem;
    margin-bottom: 25px;
    color: var(--black);
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.warum-item p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1.2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Regionen */
.regionen {
    background: var(--black);
    color: var(--white);
}

.regionen .section-title {
    color: var(--white);
}

.regionen-content {
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.regionen-content strong {
    color: var(--yellow-dark);
    font-size: 1.8rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Kontakt Section */
.kontakt {
    background: var(--gray-light);
}

/* Kontakt Cards */
.kontakt-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.kontakt-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.kontakt-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.kontakt-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    box-shadow: none;
}

.kontakt-card-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--black);
}

.kontakt-card-icon lord-icon {
    transition: var(--transition);
}

/* Alle Farben im Adress-Icon auf Schwarz setzen - auch animierte Elemente */
.kontakt-card-icon lord-icon[src*="zzcjjxew"] svg,
.kontakt-card-icon lord-icon[src*="zzcjjxew"] svg *,
.kontakt-card-icon lord-icon[src*="zzcjjxew"] svg path,
.kontakt-card-icon lord-icon[src*="zzcjjxew"] svg circle,
.kontakt-card-icon lord-icon[src*="zzcjjxew"] svg ellipse,
.kontakt-card-icon lord-icon[src*="zzcjjxew"] svg rect,
.kontakt-card-icon lord-icon[src*="zzcjjxew"] svg g,
.kontakt-card-icon lord-icon[src*="zzcjjxew"] svg g * {
    fill: #000000 !important;
    stroke: #000000 !important;
    color: #000000 !important;
}

/* Filter für Adress-Icon: Alle Farben auf Schwarz konvertieren */
.kontakt-card-icon lord-icon[src*="zzcjjxew"]:not(:hover) {
    filter: brightness(0) saturate(100%);
}

.kontakt-card:hover .kontakt-card-icon lord-icon,
.kontakt-card-icon:hover lord-icon {
    filter: brightness(0) saturate(100%) invert(55%) sepia(95%) saturate(1500%) hue-rotate(15deg) brightness(0.9);
}

/* Sicherstellen, dass Hover-Filter auch für Adress-Icon gilt */
.kontakt-card:hover .kontakt-card-icon lord-icon[src*="zzcjjxew"],
.kontakt-card-icon:hover lord-icon[src*="zzcjjxew"] {
    filter: brightness(0) saturate(100%) invert(55%) sepia(95%) saturate(1500%) hue-rotate(15deg) brightness(0.9) !important;
}

.kontakt-card:hover .kontakt-card-icon lord-icon svg,
.kontakt-card-icon:hover lord-icon svg,
.kontakt-card:hover .kontakt-card-icon lord-icon svg *,
.kontakt-card-icon:hover lord-icon svg * {
    fill: #b8860b !important;
    stroke: #b8860b !important;
    color: #b8860b !important;
}

.kontakt-card h3 {
    font-size: 1.75rem;
    margin-bottom: 25px;
    color: var(--black);
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.kontakt-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1.2rem;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.kontakt-card address {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1.2rem;
    font-style: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.kontakt-card a:not(.btn) {
    color: var(--black);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: var(--transition);
}

.kontakt-card a:not(.btn):hover {
    color: var(--yellow-dark);
}

/* Buttons in Kontakt-Cards - müssen gleich wie Hero sein */
.kontakt-card .btn {
    margin-top: 20px;
    width: auto;
    display: inline-flex;
}

.kontakt-card .btn-black {
    background-color: var(--yellow-dark);
    color: var(--black);
    border-color: var(--yellow-dark);
}

.kontakt-card .btn-black:hover {
    background-color: #9a6f08;
    color: var(--black);
    border-color: #9a6f08;
}

.kontakt-card .btn-outline {
    background-color: transparent;
    color: var(--black);
    border-color: var(--black);
}

.kontakt-card .btn-outline:hover {
    background-color: transparent;
    color: var(--yellow-dark);
    border-color: var(--yellow-dark);
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 40px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--yellow-dark);
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section p,
.footer-section a {
    color: var(--gray);
    text-decoration: none;
    line-height: 1.8;
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--yellow-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--gray-dark);
    color: var(--gray);
    font-size: 0.95rem;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    body {
        font-size: 18px;
    }

    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .container {
        padding: 0 30px;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo {
        order: 1;
    }

    .mobile-menu-toggle {
        display: block;
        order: 2;
        margin-left: auto;
    }

    .header-phone {
        order: 3;
    }

    nav {
        display: none;
        width: 100%;
        order: 4;
        flex: 1 1 100%;
    }

    nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
        padding-top: 20px;
        border-top: 1px solid var(--border);
        margin-top: 20px;
        align-items: flex-start;
    }

    .nav-list a {
        font-size: 1.05rem;
    }

    .hero {
        padding: 140px 30px 100px;
    }

    .hero h1 {
        font-size: 3.5rem;
        line-height: 1.2;
    }

    .hero .subheadline {
        font-size: 1.7rem;
    }

    .hero-intro {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 3rem;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 1.35rem;
        margin-bottom: 60px;
    }

    section {
        padding: 100px 30px;
    }

    .leistung-card h3,
    .warum-item h3,
    .kontakt-card h3 {
        font-size: 1.65rem;
    }

    .leistung-card p,
    .warum-item p,
    .kontakt-card p {
        font-size: 1.15rem;
    }

    .step h3 {
        font-size: 1.65rem;
    }

    .step p {
        font-size: 1.15rem;
    }

    .btn {
        font-size: 1.2rem;
        padding: 20px 40px;
    }

    .regionen-content {
        font-size: 1.4rem;
    }

    .regionen-content strong {
        font-size: 1.6rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .icon-svg {
        width: 56px;
        height: 56px;
    }

    .kontakt-card-icon {
        width: 60px;
        height: 60px;
    }

    .kontakt-card-icon svg,
    .kontakt-card-icon lord-icon {
        width: 35px;
        height: 35px;
    }

    footer {
        padding: 60px 30px 30px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .container {
        padding: 0 20px;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 15px;
        padding: 12px 0;
        min-height: auto;
    }

    .logo {
        order: 1;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .mobile-menu-toggle {
        display: block;
        order: 2;
        margin-left: auto;
    }

    .header-phone {
        order: 3;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    nav {
        display: none;
        width: 100%;
        order: 4;
        flex: 1 1 100%;
    }

    nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
        padding-top: 20px;
        border-top: 1px solid var(--border);
        margin-top: 20px;
        align-items: flex-start;
    }

    .nav-list a {
        font-size: 1rem;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero .subheadline {
        font-size: 1.4rem;
    }

    .hero-intro {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        padding: 18px 32px;
        font-size: 1.1rem;
    }

    .kontakt-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }

    section {
        padding: 60px 20px;
    }

    .leistungen-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .leistung-card,
    .warum-item,
    .kontakt-card {
        padding: 35px 25px;
    }

    .leistung-card h3 {
        font-size: 1.6rem;
    }

    .leistung-card p {
        font-size: 1.1rem;
    }

    .ablauf-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .step {
        padding: 40px 30px;
    }

    .step h3 {
        font-size: 1.5rem;
    }

    .step p {
        font-size: 1.1rem;
    }

    .warum-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .warum-item h3 {
        font-size: 1.5rem;
    }

    .warum-item p {
        font-size: 1.1rem;
    }

    .kontakt-card h3 {
        font-size: 1.5rem;
    }

    .kontakt-card p,
    .kontakt-card address {
        font-size: 1.1rem;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 1rem;
    }

    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .icon-svg {
        width: 50px;
        height: 50px;
    }

    .kontakt-card-icon {
        width: 55px;
        height: 55px;
    }

    .kontakt-card-icon svg,
    .kontakt-card-icon lord-icon {
        width: 30px;
        height: 30px;
    }

    .regionen-content {
        font-size: 1.2rem;
    }

    .regionen-content strong {
        font-size: 1.4rem;
    }

    footer {
        padding: 50px 20px 25px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    header {
        min-height: 60px;
    }

    .header-content {
        padding: 10px 0;
        gap: 10px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .header-phone {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .header-phone svg,
    .header-phone lord-icon {
        width: 16px;
        height: 16px;
    }

    .hero {
        padding: 80px 15px 50px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero .subheadline {
        font-size: 1.2rem;
    }

    .hero-intro {
        font-size: 1rem;
    }

    .btn {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    section {
        padding: 50px 15px;
    }

    .container {
        padding: 0 15px;
    }

    .leistung-card,
    .warum-item,
    .kontakt-card {
        padding: 30px 20px;
    }

    .leistung-card h3 {
        font-size: 1.4rem;
    }

    .leistung-card p {
        font-size: 1rem;
    }

    .step {
        padding: 35px 25px;
    }

    .step h3 {
        font-size: 1.3rem;
    }

    .step p {
        font-size: 1rem;
    }

    .warum-item h3 {
        font-size: 1.3rem;
    }

    .warum-item p {
        font-size: 1rem;
    }

    .kontakt-card h3 {
        font-size: 1.3rem;
    }

    .kontakt-card p,
    .kontakt-card address {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.95rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
    }
}

/* ============================================
   APPLE-STYLE SERVICE SECTIONS
   Abwechselndes Links-Rechts Layout
   ============================================ */

.service-section {
    padding: 100px 40px;
    position: relative;
}

.service-section:nth-child(even) {
    background: var(--gray-light);
}

.service-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.service-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.service-icon-wrapper .icon-svg {
    width: 200px;
    height: 200px;
    margin: 0;
}

.service-icon-wrapper lord-icon {
    width: 200px !important;
    height: 200px !important;
}

.service-content {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.service-content h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.service-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.service-content ul {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 40px;
    padding-left: 0;
    list-style: none;
    display: inline-block;
    text-align: left;
}

.service-content ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
}

.service-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--yellow-dark);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-content h4 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--text-dark);
    font-weight: 600;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .service-content-wrapper {
        gap: 40px;
    }
    
    .service-icon-wrapper {
        padding: 20px;
    }
    
    .service-icon-wrapper .icon-svg {
        width: 150px;
        height: 150px;
    }
    
    .service-icon-wrapper lord-icon {
        width: 150px !important;
        height: 150px !important;
    }
    
    .service-content {
        max-width: 100%;
    }
    
    .service-content h3 {
        font-size: 2rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-section {
        padding: 60px 20px;
    }
    
    .service-content-wrapper {
        gap: 40px;
    }
    
    .service-icon-wrapper .icon-svg {
        width: 120px;
        height: 120px;
    }
    
    .service-icon-wrapper lord-icon {
        width: 120px !important;
        height: 120px !important;
    }
    
    .service-content h3 {
        font-size: 1.75rem;
    }
    
    .service-content p {
        font-size: 1.1rem;
    }
    
    .service-content ul {
        font-size: 1.05rem;
        text-align: left;
    }
    
    .service-content h4 {
        font-size: 1.5rem;
    }
}