/* =========================================================
   Gartenparadies Heek – Hauptdesign
   Grundlage: neue optisch bessere Startseite
   ========================================================= */

/* Reset / Basis */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #17351f;
    background: #f7faf5;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

p {
    line-height: 1.65;
}

/* =========================================================
   WhatsApp Button
   ========================================================= */

.whatsapp-button {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    z-index: 9999;
    transition: all .2s ease;
}

.whatsapp-button:hover {
    transform: translateY(-3px) scale(1.05);
}

/* =========================================================
   Header / Navigation
   ========================================================= */

.site-header {
    background: #fff;
    min-height: 92px;
    padding: 0 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 18px rgba(0,0,0,.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-logo {
    max-width: 220px;
    height: auto;
    display: block;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 18px;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    color: #17351f;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 8px;
    display: block;
}

.main-nav a:hover {
    color: #2f5d34;
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 42px;
    left: 0;
    min-width: 285px;
    background: #fff;
    border-radius: 14px;
    padding: 10px 0;
    box-shadow: 0 14px 35px rgba(0,0,0,.16);
    z-index: 1000;
}

.nav-dropdown a {
    padding: 13px 18px;
    white-space: nowrap;
}

.has-dropdown:hover .nav-dropdown {
    display: block;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-outline-button {
    background: #ffffff;
    color: #2f5d34;
    border: 2px solid #2f5d34;
    padding: 12px 18px;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    transition: all .2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.top-outline-button:hover {
    background: #eef5e9;
    color: #2f5d34;
    transform: translateY(-2px);
}

.top-phone-button {
    background: #2f5d34;
    color: #fff;
    padding: 14px 22px;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.top-phone-button:hover {
    background: #244929;
    color: #fff;
}

/* =========================================================
   Hero Startseite
   ========================================================= */

.hero {
    min-height: 280px;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.65) 0%,
            rgba(0,0,0,0.45) 32%,
            rgba(0,0,0,0.10) 58%,
            rgba(0,0,0,0.00) 100%
        ),
        url('/assets/images/start-terrasse.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 60px 70px;
}

.hero-text {
    max-width: 520px;
    margin-left: 80px;
}

.hero h1 {
    font-family: Georgia, serif;
    font-size: 42px;
    line-height: 1.15;
    margin: 0 0 22px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,.75);
}

.hero h1 span {
    display: block;
    color: white;
}

.hero p {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    text-shadow: 1px 1px 6px rgba(0,0,0,.75);
    margin-bottom: 30px;
}

/* =========================================================
   Buttons
   ========================================================= */

.buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn,
button,
.secondary-button {
    font-family: Arial, sans-serif;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 22px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.green {
    background: #2f5d34;
    color: white;
}

.btn.green:hover {
    background: #244929;
}

.btn.light {
    background: white;
    border: 2px solid #2f5d34;
    color: #2f5d34;
}

.btn.light:hover {
    background: #eef5e9;
}

.btn.round {
    border-radius: 999px;
}

/* =========================================================
   Allgemeine Sektionen
   ========================================================= */

.section {
    padding: 70px 70px;
    background: #fff;
}

.section.soft {
    background: #f5f8f2;
}

.section-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.section-label,
.label {
    text-align: center;
    color: #6d8a5e;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

.section h2 {
    text-align: center;
    font-family: Georgia, serif;
    color: #17351f;
    font-size: 34px;
    margin: 12px 0 12px;
}

.divider {
    text-align: center;
    color: #9bb68d;
    margin-bottom: 38px;
}

/* =========================================================
   Karten / Leistungen Startseite
   ========================================================= */

.cards {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 26px;
}

.card {
    background: white;
    border: 1px solid #e4eadf;
    border-radius: 14px;
    padding: 34px 28px;
    min-height: 230px;
    box-shadow: 0 8px 24px rgba(0,0,0,.04);
    transition: .2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 34px rgba(0,0,0,.09);
}

.icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #eef5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.icon-circle i {
    font-size: 31px;
    color: #2f5d34;
}

.card h3 {
    margin: 0 0 14px;
    color: #17351f;
}

.card p {
    line-height: 1.6;
    color: #4a554d;
}

.card a {
    color: #2f5d34;
    text-decoration: none;
    font-weight: 700;
}

/* =========================================================
   Innerer Garten Startseite
   ========================================================= */

.innerer-garten-start {
    padding: 70px 20px 85px;
    background: linear-gradient(135deg, #f7f4ec 0%, #edf5ea 100%);
}

.innerer-garten-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.innerer-garten-impulsbox {
    width: 100%;
    background: #ffffff;
    border-radius: 22px;
    padding: 28px 34px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-left: 6px solid #7ea35a;
    text-align: center;
}

.impulsbox-klein {
    color: #5c7d3b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
    margin-bottom: 12px;
}

.innerer-garten-impulsbox p {
    color: #304133;
    font-size: 1.35rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0 auto;
    max-width: 760px;
}

.innerer-garten-impulsbox span {
    display: block;
    margin-top: 14px;
    color: #777;
    font-size: 0.95rem;
}

.innerer-garten-content {
    width: 100%;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 24px;
    padding: 46px 52px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.innerer-garten-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #5c7d3b;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.innerer-garten-content h2 {
    margin: 0 0 20px 0;
    color: #143f26;
    font-family: Georgia, serif;
    font-size: 2.25rem;
    line-height: 1.2;
    text-align: left;
}

.innerer-garten-text {
    color: #2f3f35;
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 900px;
}

.innerer-garten-buttons {
    margin-top: 30px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.ig-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    transition: all 0.25s ease;
}

.ig-btn-mehr {
    background: #ffffff;
    color: #5c7d3b;
    border: 2px solid #5c7d3b;
}

.ig-btn-mehr:hover {
    background: #edf5ea;
    color: #48652d;
    transform: translateY(-2px);
}

/* =========================================================
   Über uns Startseite
   ========================================================= */

.about {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: 320px 1fr 300px;
    gap: 40px;
    align-items: center;
}

.about img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

.about h2 {
    text-align: left;
    font-size: 31px;
}

.about ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about li {
    margin: 15px 0;
    font-weight: 700;
}

.about li i {
    color: #2f5d34;
    margin-right: 10px;
}

/* =========================================================
   CTA
   ========================================================= */

.cta {
    background: #2f5d34;
    color: white;
    padding: 35px 70px;
}

.cta-inner {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cta h3 {
    margin: 0 0 6px;
    font-size: 23px;
}

.cta p {
    margin: 0;
}

.cta a {
    background: white;
    color: #17351f;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
    background: #17351f;
    color: #ffffff;
    padding: 36px 70px;
}

.site-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.site-footer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* =========================================================
   Allgemeine Unterseiten / Leistungsdetail
   ========================================================= */

.page-main {
    background: #f7faf5;
}

.page-hero {
    min-height: 310px;
    display: flex;
    align-items: center;
    padding: 65px 70px;
    color: white;
    background-size: cover;
    background-position: center;
}

.page-hero-content {
    max-width: 720px;
}

.page-hero-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 1px 1px 5px rgba(0,0,0,.75);
}

.page-hero h1 {
    margin: 0 0 20px;
    color: white;
    font-size: 48px;
    line-height: 1.15;
    font-family: Georgia, serif;
    text-shadow: 2px 2px 8px rgba(0,0,0,.75);
}

.page-hero p {
    max-width: 680px;
    margin: 0;
    font-size: 20px;
    line-height: 1.7;
    color: white;
    text-shadow: 1px 1px 6px rgba(0,0,0,.75);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding: 12px 18px;
    background: white;
    color: #2f5d34;
    border: 2px solid #2f5d34;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all .2s ease;
}

.back-link:hover {
    background: #2f5d34;
    color: white;
    transform: translateY(-2px);
}

.content-card {
    background: white;
    padding: 46px 52px;
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    border: 1px solid #e4eadf;
}

.content-card h1,
.content-card h2,
.content-card h3 {
    color: #17351f;
    font-family: Georgia, serif;
}

.content-card h1 {
    margin-top: 0;
    font-size: 38px;
}

.content-card h2 {
    margin-top: 28px;
    font-size: 30px;
}

.content-card h3 {
    margin-top: 24px;
    font-size: 24px;
}

.content-card p {
    color: #304133;
    line-height: 1.8;
}

.content-card ul,
.content-card ol {
    color: #304133;
    line-height: 1.8;
    padding-left: 24px;
}

.content-card li {
    margin-bottom: 7px;
}

.content-card a:not(.btn):not(.rechner-button) {
    color: #2f5d34;
    font-weight: 700;
}

.content-text > *:first-child {
    margin-top: 0;
}

.content-buttons {
    margin-top: 38px;
}

/* =========================================================
   Rechner-Boxen auf Detailseiten
   ========================================================= */

.rechner-box {
    margin-top: 38px;
    margin-bottom: 35px;
    padding: 32px;
    background: linear-gradient(135deg, #eef8ec 0%, #f7faf5 100%);
    border-left: 8px solid #2f5d34;
    border-radius: 22px;
    box-shadow: 0 10px 26px rgba(0,0,0,.08);
}

.rechner-box h2 {
    margin-top: 0;
    color: #2f5d34;
    font-family: Georgia, serif;
    font-size: 28px;
}

.rechner-box p {
    color: #304133;
    line-height: 1.8;
    font-size: 17px;
    max-width: 850px;
}

.rechner-vorteile {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 22px;
    margin-bottom: 24px;
}

.rechner-vorteil {
    background: white;
    border-radius: 14px;
    padding: 15px;
    color: #2f5d34;
    font-weight: 700;
    box-shadow: 0 6px 15px rgba(0,0,0,.06);
}

.rechner-vorteil i {
    margin-right: 8px;
}

.rechner-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 6px;
    padding: 15px 26px;
    background: #2f5d34;
    color: white !important;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: all .2s ease;
}

.rechner-button:hover {
    background: #244927;
    transform: translateY(-2px);
}

.rechner-hinweis {
    margin-top: 18px;
    font-size: 14px;
    color: #5f6d61;
    line-height: 1.6;
}

/* =========================================================
   Kontaktseite
   ========================================================= */

.contact-page-hero {
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.65) 0%,
            rgba(0,0,0,.35) 45%,
            rgba(0,0,0,.10) 100%
        ),
        url('/assets/images/start-terrasse.jpg');
    background-size: cover;
    background-position: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.4fr;
    gap: 28px;
    align-items: start;
}

.contact-card,
.form-card {
    background: white;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    border: 1px solid #e4eadf;
}

.contact-card {
    padding: 32px;
}

.form-card {
    padding: 35px;
}

.contact-card h2,
.form-card h2 {
    color: #2f5d34;
    font-family: Georgia, serif;
    margin-top: 0;
}

.contact-card p {
    line-height: 1.75;
    color: #4a554d;
}

.contact-item {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #e4eadf;
}

.contact-item:last-child {
    border-bottom: 0;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eef5e9;
    color: #2f5d34;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
}

.contact-item a {
    color: #2f5d34;
    font-weight: 700;
    text-decoration: none;
}

.quick-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.quick-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all .2s ease;
}

.quick-btn:hover {
    transform: translateY(-2px);
}

.quick-btn.green {
    background: #2f5d34;
    color: white;
}

.quick-btn.green:hover {
    background: #244927;
}

.quick-btn.whatsapp {
    background: #25d366;
    color: white;
}

.quick-btn.light {
    background: white;
    color: #2f5d34;
    border: 2px solid #2f5d34;
}

.quick-btn.light:hover {
    background: #eef5ee;
}

.form-hinweis {
    background: #f4fff4;
    border-left: 6px solid #2f5d34;
    padding: 16px 18px;
    border-radius: 12px;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #304133;
}

.meldung {
    background: #dff2df;
    color: #245c24;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.fehler {
    background: #ffe6e6;
    color: #9b2222;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

label {
    font-weight: 700;
    display: block;
    margin-top: 18px;
}

input,
select,
textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #ccd8cc;
    border-radius: 10px;
    font-size: 16px;
    margin-top: 7px;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #17351f;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.datenschutz {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 20px;
    line-height: 1.5;
    color: #304133;
}

.datenschutz input {
    width: auto;
    margin-top: 3px;
}

.datenschutz-link {
    margin-top: 25px;
    margin-bottom: 15px;
}

.datenschutz-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef5ee;
    color: #2f5d34;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid #ccd8cc;
}

.datenschutz-link a:hover {
    background: #dff2df;
}

.form-buttons {
    margin-top: 25px;
}

button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #2f5d34;
    color: white;
    border: 0;
    padding: 15px 24px;
    min-height: 54px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all .2s ease;
}

button:hover {
    background: #244927;
    transform: translateY(-2px);
}

button:disabled {
    background: #a8afa6;
    color: #ffffff;
    cursor: not-allowed;
    opacity: .75;
}

button:disabled:hover {
    background: #a8afa6;
    transform: none;
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    color: #2f5d34;
    padding: 15px 24px;
    min-height: 54px;
    border: 2px solid #2f5d34;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
}

.secondary-button:hover {
    background: #f4f7f2;
    transform: translateY(-2px);
}

.pflicht-hinweis {
    color: #667066;
    font-size: 14px;
    margin-top: 8px;
}

/* =========================================================
   Responsive Desktop / Tablet
   ========================================================= */

@media (max-width: 1100px) {
    .site-header {
        padding: 0 34px;
    }

    .main-nav > ul {
        gap: 12px;
    }

    .site-logo {
        max-width: 190px;
    }

    .top-outline-button,
    .top-phone-button {
        padding: 11px 14px;
        font-size: 13px;
    }

    .hero {
        padding: 55px 34px;
    }

    .hero-text {
        margin-left: 40px;
    }
}

@media (max-width: 1000px) {
    .site-header {
        height: auto;
        padding: 18px 24px;
        flex-direction: column;
        gap: 14px;
    }

    .main-nav > ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    .header-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-dropdown {
        position: static;
        box-shadow: none;
        background: #eef5ee;
    }

    .hero {
        padding: 45px 24px;
        min-height: 430px;
        background-position: center;
    }

    .hero-text {
        margin-left: 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .section {
        padding: 50px 24px;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .cta {
        padding: 35px 24px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .site-footer {
        padding: 32px 24px;
    }

    .site-footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Mobile Header Optimierung
   ========================================================= */

@media (max-width: 768px) {
    .site-header {
        position: static;
        min-height: auto;
        padding: 10px 16px 12px;
        gap: 10px;
    }

    .site-logo {
        max-width: 175px;
    }

    .main-nav {
        width: 100%;
    }

    .main-nav > ul {
        gap: 6px 14px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .main-nav a {
        font-size: 14px;
        padding: 6px 4px;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }

    .top-outline-button,
    .top-phone-button {
        width: auto;
        padding: 9px 12px;
        font-size: 13px;
        border-radius: 9px;
    }

    .hero {
        min-height: 360px;
        padding-top: 40px;
    }

    .page-hero {
        min-height: 250px;
        padding: 42px 24px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .page-hero p {
        font-size: 18px;
    }

    .content-card {
        padding: 32px 26px;
        border-radius: 18px;
    }

    .content-card h1 {
        font-size: 31px;
    }

    .content-card h2 {
        font-size: 26px;
    }

    .rechner-box {
        padding: 24px;
    }

    .rechner-vorteile {
        grid-template-columns: 1fr;
    }

    .rechner-button {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    .whatsapp-button {
        width: 58px;
        height: 58px;
        font-size: 32px;
        right: 18px;
        bottom: 18px;
    }
}

@media (max-width: 850px) {
    .innerer-garten-start {
        padding: 50px 16px 60px;
    }

    .innerer-garten-content {
        padding: 30px 24px;
    }

    .innerer-garten-content h2 {
        font-size: 1.9rem;
    }

    .innerer-garten-impulsbox {
        padding: 24px 22px;
        text-align: left;
    }

    .innerer-garten-impulsbox p {
        font-size: 1.15rem;
    }
}

@media (max-width: 700px) {
    .form-card,
    .contact-card {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-buttons {
        flex-direction: column-reverse;
    }

    button,
    .secondary-button,
    .quick-btn {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .site-header {
        padding: 9px 12px 11px;
    }

    .site-logo {
        max-width: 150px;
    }

    .main-nav > ul {
        gap: 4px 12px;
    }

    .main-nav a {
        font-size: 13px;
        padding: 5px 3px;
    }

    .top-outline-button,
    .top-phone-button {
        font-size: 12px;
        padding: 8px 10px;
    }

    .hero {
        min-height: 330px;
        padding: 36px 18px;
    }

    .hero h1 {
        font-size: 31px;
    }

    .hero p {
        font-size: 16px;
    }

    .buttons {
        gap: 12px;
    }

    .btn {
        width: 100%;
    }

    .section h2 {
        font-size: 28px;
    }

    .card {
        padding: 28px 22px;
    }

    .innerer-garten-content {
        padding: 28px 20px;
    }

    .innerer-garten-content h2 {
        font-size: 1.7rem;
    }

    .cta h3 {
        font-size: 20px;
    }

    .page-hero {
        min-height: 230px;
        padding: 36px 18px;
    }

    .page-hero h1 {
        font-size: 31px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .content-card {
        padding: 28px 20px;
    }

    .back-link {
        width: 100%;
        justify-content: center;
    }
}