/*
Theme Name: Güttinger Treuhand
Theme URI: https://guettinger-treuhand.ch
Author: Custom Theme
Description: Custom theme for Güttinger Treuhand – Versicherungen, Vorsorge, Treuhand
Version: 2.0
Text Domain: guettinger-treuhand
*/

/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --green-dark: #0b4937;
    --green-primary: #145f43;
    --green-medium: #1c6b4d;
    --green-light: #eaf3ee;

    --gold: #c6a35b;
    --gold-dark: #aa883e;
    --gold-light: #f5ecd9;

    --text-dark: #1c2420;
    --text-muted: #59635e;

    --white: #ffffff;
    --gray-light: #f7f8f6;
    --gray-border: #e2e6e3;

    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 35px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 20px 55px rgba(0, 0, 0, 0.14);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;

    --container: 1240px;

    --transition: all 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;

    font-family:
        "Inter",
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text-dark);
    background: var(--white);

    line-height: 1.65;

    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: 100%;
    max-width: var(--container);

    margin-left: auto;
    margin-right: auto;

    padding-left: 30px;
    padding-right: 30px;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;

    width: 100%;

    background: rgba(255, 255, 255, 0.98);

    border-bottom: 1px solid rgba(0, 0, 0, 0.05);

    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
}

.header-inner {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--green-dark);

    flex-shrink: 0;
}

.logo-gt {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 2rem;
    line-height: 1;

    font-weight: 700;

    color: var(--green-primary);
}

.logo span {
    display: block;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 0.9rem;
    line-height: 1.15;

    letter-spacing: 1.5px;

    color: var(--green-primary);
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {
    display: flex;
    align-items: center;

    gap: 30px;
}

.main-nav a {
    position: relative;

    padding: 8px 0;

    color: var(--text-dark);

    font-size: 0.88rem;
    font-weight: 600;

    letter-spacing: 0.2px;

    transition: var(--transition);
}

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

.main-nav a.active {
    color: var(--green-primary);
}

.main-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -4px;

    width: 100%;
    height: 2px;

    background: var(--gold);
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 48px;

    padding: 12px 22px;

    border-radius: var(--radius-sm);

    border: 1px solid transparent;

    font-size: 0.86rem;
    font-weight: 700;

    letter-spacing: 0.3px;

    line-height: 1.2;

    text-align: center;

    transition: var(--transition);
}

.btn-primary {
    background: var(--green-primary);
    color: var(--white);

    border-color: var(--green-primary);

    box-shadow: 0 5px 15px rgba(20, 95, 67, 0.18);
}

.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);

    color: var(--white);

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(20, 95, 67, 0.25);
}

.btn-outline {
    background: var(--white);

    color: var(--green-primary);

    border-color: var(--green-primary);
}

.btn-outline:hover {
    background: var(--green-primary);

    color: var(--white);

    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);

    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-dark);

    border-color: var(--gold-dark);

    color: var(--white);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 8px;

    background: transparent;

    border: 0;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;
}

.menu-toggle span {
    display: block;

    width: 25px;
    height: 2px;

    background: var(--green-dark);

    border-radius: 3px;

    transition: var(--transition);
}

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

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.mobile-only {
    display: none !important;
}

.desktop-only {
    display: inline-flex !important;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 570px;

    padding: 70px 0 0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f8faf8 0%,
            #edf4ef 55%,
            #e5eee8 100%
        );
}

.hero-grid {
    display: grid;

    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);

    gap: 45px;

    align-items: center;

    min-height: 500px;
}

.hero-content {
    position: relative;

    z-index: 3;

    padding-bottom: 60px;
}

.hero-label {
    margin-bottom: 18px;

    color: var(--gold-dark);

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 1.8px;

    line-height: 1.4;
}

.hero h1 {
    margin-bottom: 22px;

    color: var(--green-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(3rem, 5vw, 4.4rem);

    font-weight: 500;

    line-height: 1.04;

    letter-spacing: -1.5px;
}

.hero p {
    max-width: 570px;

    margin-bottom: 30px;

    color: #424c47;

    font-size: 1.08rem;

    line-height: 1.75;
}

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image-wrap {
    position: relative;

    height: 100%;

    min-height: 500px;

    align-self: stretch;

    display: flex;

    align-items: flex-end;

    justify-content: flex-end;
}

.hero-image {
    position: absolute;

    right: -30px;
    bottom: 0;

    width: 100%;
    max-width: 650px;

    height: 560px;

    object-fit: cover;
    object-position: center top;

    border-radius: 0;

    box-shadow: none;
}


/* =========================================================
   HERO QUOTE
========================================================= */

.quote-box {
    position: absolute;

    right: 15px;
    bottom: 55px;

    z-index: 5;

    width: 270px;

    padding: 25px 27px;

    background: rgba(255, 255, 255, 0.97);

    border-radius: 10px;

    border: 1px solid rgba(0, 0, 0, 0.05);

    box-shadow: var(--shadow-lg);

    color: #303834;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1rem;

    line-height: 1.6;
}

.quote-box::before {
    content: "“";

    display: block;

    margin-bottom: 5px;

    color: var(--gold);

    font-family: Georgia, serif;

    font-size: 3rem;

    line-height: 0.7;
}

.quote-author {
    margin-top: 15px;

    padding-top: 10px;

    border-top: 1px solid rgba(198, 163, 91, 0.5);

    color: var(--green-primary);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 0.9rem;

    font-style: italic;

    font-weight: 600;
}


/* =========================================================
   BENEFITS BAR
========================================================= */

.benefits-bar {
    position: relative;

    z-index: 10;

    background: var(--green-primary);

    color: var(--white);

    padding: 25px 0;

    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.06);
}

.benefits-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.benefit-item {
    display: grid;

    grid-template-columns: 48px 1fr;

    column-gap: 14px;

    align-items: center;

    padding: 8px 18px;

    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.benefit-item:last-child {
    border-right: 0;
}

.benefit-item .icon {
    grid-row: span 2;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    color: var(--gold);

    font-size: 1.8rem;
}

.benefit-item strong {
    display: block;

    margin-bottom: 3px;

    color: var(--white);

    font-size: 0.9rem;
}

.benefit-item span {
    display: block;

    color: rgba(255, 255, 255, 0.82);

    font-size: 0.76rem;

    line-height: 1.4;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    padding: 80px 0;

    background: var(--white);
}

.section-header {
    margin-bottom: 45px;

    text-align: center;
}

.section-label {
    margin-bottom: 8px;

    color: var(--gold-dark);

    font-size: 0.8rem;
    font-weight: 700;

    letter-spacing: 2px;
}

.section-title {
    margin: 0;

    color: var(--green-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(2rem, 4vw, 2.8rem);

    font-weight: 500;

    line-height: 1.15;

    letter-spacing: -0.5px;
}


/* =========================================================
   SERVICES
========================================================= */

.services-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 28px;
}

.service-card {
    position: relative;

    padding: 36px;

    background: var(--white);

    border: 1px solid var(--gray-border);

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: var(--gold);

    border-radius: var(--radius-md) var(--radius-md) 0 0;

    transform: scaleX(0);

    transform-origin: left;

    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-md);

    border-color: rgba(20, 95, 67, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card h3 {
    margin-bottom: 22px;

    color: var(--green-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.45rem;

    font-weight: 600;
}

.service-list {
    list-style: none;

    margin: 0 0 25px;

    padding: 0;
}

.service-list li {
    position: relative;

    padding: 7px 0 7px 28px;

    color: var(--text-muted);

    font-size: 0.94rem;

    line-height: 1.5;
}

.service-list li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 7px;

    width: 19px;
    height: 19px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--green-light);

    color: var(--green-primary);

    font-size: 0.72rem;

    font-weight: 800;
}


/* =========================================================
   STATS BAR
========================================================= */

.stats-bar {
    background:
        linear-gradient(
            120deg,
            var(--green-dark),
            var(--green-primary)
        );

    color: var(--white);

    padding: 38px 0;
}

.stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 0;
}

.stat-item {
    padding: 10px 25px;

    text-align: center;

    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item strong {
    display: block;

    margin-bottom: 4px;

    color: var(--white);

    font-size: clamp(1.8rem, 3vw, 2.5rem);

    font-weight: 500;

    line-height: 1.15;
}

.stat-item span {
    display: block;

    color: rgba(255, 255, 255, 0.85);

    font-size: 0.78rem;

    line-height: 1.5;
}


/* =========================================================
   CTA
========================================================= */

.cta-banner {
    padding: 60px 0;

    background: var(--green-primary);

    color: var(--white);

    text-align: center;
}

.cta-banner h3 {
    margin-bottom: 10px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 2rem;
}

.cta-banner p {
    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.85);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 65px 0 25px;

    background: var(--green-dark);

    color: var(--white);
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 40px;

    margin-bottom: 40px;
}

.footer-brand p {
    max-width: 380px;

    margin-top: 15px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 0.9rem;
}

.footer-col h4 {
    margin-bottom: 17px;

    color: var(--white);

    font-size: 0.95rem;
}

.footer-col a {
    display: block;

    margin-bottom: 8px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.86rem;

    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, 0.14);

    color: rgba(255, 255, 255, 0.6);

    font-size: 0.78rem;
}


/* =========================================================
   FOCUS
========================================================= */

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(198, 163, 91, 0.55);

    outline-offset: 3px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .header-inner {
        min-height: 76px;
    }

    .main-nav {
        gap: 20px;
    }

    .hero {
        padding-top: 55px;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;

        gap: 25px;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-image {
        right: -10px;

        height: 500px;
    }

    .quote-box {
        right: 0;
        bottom: 35px;

        width: 245px;

        padding: 20px;
    }

    .benefit-item {
        grid-template-columns: 40px 1fr;

        padding: 8px 10px;
    }

    .benefit-item .icon {
        width: 38px;
        height: 38px;

        font-size: 1.5rem;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 900px) {

    .main-nav {
        gap: 16px;
    }

    .main-nav a {
        font-size: 0.82rem;
    }

    .desktop-only {
        display: none !important;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;

        top: 0;
        right: -100%;

        width: 320px;
        max-width: 88vw;

        height: 100vh;

        padding: 100px 30px 40px;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: flex-start;

        gap: 8px;

        background: var(--white);

        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);

        transition: right 0.35s ease;

        overflow-y: auto;
    }

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

    .main-nav a {
        width: 100%;

        padding: 12px 0;

        font-size: 1rem;
    }

    .main-nav a.active::after {
        display: none;
    }

    .mobile-only {
        display: inline-flex !important;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .hero-content {
        padding-bottom: 10px;

        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrap {
        min-height: 470px;

        margin-top: 10px;
    }

    .hero-image {
        position: relative;

        right: auto;
        bottom: auto;

        width: 100%;
        max-width: 680px;

        height: 470px;

        margin: 0 auto;

        border-radius: var(--radius-lg);
    }

    .quote-box {
        right: 20px;
        bottom: 25px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-item:nth-child(2) {
        border-right: 0;
    }

    .benefit-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);

        padding-bottom: 18px;
    }

    .benefit-item:nth-child(n+3) {
        padding-top: 18px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: 0;
    }

    .stat-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);

        padding-bottom: 22px;
    }

    .stat-item:nth-child(n+3) {
        padding-top: 22px;
    }

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


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .header-inner {
        min-height: 68px;
    }

    .logo {
        gap: 8px;
    }

    .logo-gt {
        font-size: 1.65rem;
    }

    .logo span {
        font-size: 0.67rem;

        letter-spacing: 1px;
    }

    .hero {
        padding: 45px 0 0;
    }

    .hero-content {
        padding-bottom: 5px;
    }

    .hero-label {
        font-size: 0.7rem;

        letter-spacing: 1.2px;

        margin-bottom: 12px;
    }

    .hero h1 {
        margin-bottom: 17px;

        font-size: clamp(2.35rem, 11vw, 3rem);

        line-height: 1.05;

        letter-spacing: -1px;
    }

    .hero p {
        font-size: 0.96rem;

        line-height: 1.65;

        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;

        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;

        min-height: 50px;
    }

    .hero-image-wrap {
        min-height: 400px;

        margin-top: 25px;
    }

    .hero-image {
        height: 400px;

        border-radius: 0;
    }

    .quote-box {
        right: 12px;
        left: 12px;

        bottom: 18px;

        width: auto;

        padding: 17px 20px;

        font-size: 0.86rem;

        line-height: 1.5;
    }

    .quote-box::before {
        font-size: 2.4rem;
    }

    .quote-author {
        margin-top: 9px;

        padding-top: 7px;

        font-size: 0.78rem;
    }


    /* Benefits */

    .benefits-bar {
        padding: 12px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .benefit-item {
        grid-template-columns: 45px 1fr;

        padding: 14px 5px !important;

        text-align: left;

        border-right: 0 !important;

        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .benefit-item:last-child {
        border-bottom: 0;
    }

    .benefit-item .icon {
        width: 40px;
        height: 40px;

        font-size: 1.5rem;
    }

    .benefit-item strong {
        font-size: 0.88rem;
    }

    .benefit-item span {
        font-size: 0.74rem;
    }


    /* Sections */

    .section {
        padding: 55px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-label {
        font-size: 0.7rem;

        letter-spacing: 1.5px;
    }

    .section-title {
        font-size: 2rem;

        line-height: 1.15;
    }


    /* Services */

    .services-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .service-card {
        padding: 25px 22px;
    }

    .service-card h3 {
        margin-bottom: 17px;

        font-size: 1.3rem;
    }

    .service-list {
        margin-bottom: 20px;
    }

    .service-list li {
        padding-top: 6px;
        padding-bottom: 6px;

        font-size: 0.9rem;
    }

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


    /* Stats */

    .stats-bar {
        padding: 25px 0;
    }

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

    .stat-item {
        padding: 20px 10px !important;

        border-right: 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .stat-item:last-child {
        border-bottom: 0;
    }

    .stat-item strong {
        font-size: 2rem;
    }

    .stat-item span {
        font-size: 0.76rem;
    }


    /* CTA */

    .cta-banner {
        padding: 45px 0;
    }

    .cta-banner h3 {
        font-size: 1.7rem;
    }


    /* Footer */

    .site-footer {
        padding: 45px 0 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero h1 {
        font-size: 2.15rem;
    }

    .hero-image-wrap {
        min-height: 350px;
    }

    .hero-image {
        height: 350px;
    }

    .quote-box {
        padding: 14px 16px;

        font-size: 0.78rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card {
        padding: 22px 18px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}
/* =========================================================
   GÜTTINGER TREUHAND
   PRIVATKUNDEN PAGE - PROFESSIONAL RESPONSIVE CSS
   ========================================================= */

/* ---------------------------------------------------------
   1. GLOBAL
--------------------------------------------------------- */

:root {
    --green-dark: #0d4a3a;
    --green-primary: #145c43;
    --green-soft: #eaf2ed;
    --gold: #c9a227;
    --gold-dark: #a9861d;
    --white: #ffffff;
    --gray-light: #f7f8f7;
    --gray-border: #e5e7e5;
    --text-dark: #1b1d1c;
    --text-muted: #606663;
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.07);
    --shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.11);
    --radius: 14px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

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


/* ---------------------------------------------------------
   2. CONTAINER
--------------------------------------------------------- */

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}


/* ---------------------------------------------------------
   3. HERO
--------------------------------------------------------- */

.hero {
    position: relative;
    overflow: hidden;
    padding: 75px 0 80px !important;
    background:
        linear-gradient(
            135deg,
            #f7faf8 0%,
            #edf4ef 50%,
            #f8faf9 100%
        );
}

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -250px;
    top: -250px;
    background: rgba(201, 162, 39, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 70px;
}


/* HERO CONTENT */

.hero-content {
    max-width: 600px;
}

.hero-label {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero h1 {
    margin: 0 0 24px;
    color: var(--green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.7rem, 4.5vw, 4.3rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.hero p {
    max-width: 590px;
    margin: 0 0 14px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px !important;
}

.hero-buttons .btn {
    min-height: 50px;
    padding: 14px 22px;
    border-radius: 8px;
}


/* ---------------------------------------------------------
   4. HERO IMAGE
--------------------------------------------------------- */

.hero-image-wrap {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
}

.hero-image {
    display: block;
    width: 100%;
    height: 570px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.13);
}


/* QUOTE BOX */

.quote-box {
    position: absolute;
    right: -25px;
    bottom: 28px;

    width: 270px;
    max-width: calc(100% - 30px);

    padding: 22px 24px;

    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(201, 162, 39, 0.18);
    border-radius: 12px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.13);

    color: var(--text-dark);
    font-size: 0.92rem;
    line-height: 1.6;

    backdrop-filter: blur(8px);
}

.quote-box strong {
    display: block;
    margin-bottom: 5px;
    color: var(--green-dark);
    font-size: 0.95rem;
}

.quote-box span {
    display: block;
    color: var(--text-muted) !important;
    font-size: 0.85rem !important;
}

.quote-box .icon-svg {
    color: var(--gold);
}


/* ---------------------------------------------------------
   5. BUTTONS
--------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 46px;
    padding: 12px 21px;

    border-radius: 8px;

    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.2px;

    transition: var(--transition);
}

.btn-primary {
    background: var(--green-primary);
    color: var(--white);
    border: 2px solid var(--green-primary);
}

.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 74, 58, 0.18);
}

.btn-outline {
    background: var(--white);
    color: var(--green-primary);
    border: 2px solid var(--green-primary);
}

.btn-outline:hover {
    background: var(--green-primary);
    color: var(--white);
    transform: translateY(-2px);
}


/* ---------------------------------------------------------
   6. SECTION
--------------------------------------------------------- */

.section {
    padding: 85px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    margin-bottom: 9px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    margin: 0;
    color: var(--green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
}


/* ---------------------------------------------------------
   7. SERVICE GRID
   Works with your CURRENT inline grid
--------------------------------------------------------- */

.section .container > div[style*="grid-template-columns"] {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
}


/* SERVICE CARD */

.service-card {
    position: relative;

    display: flex;
    flex-direction: column;

    height: 100%;

    padding: 30px 27px;

    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius);

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.045);

    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: var(--shadow-hover);
}


/* ICON */

.service-card .icon-svg {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 45px !important;
    height: 45px !important;

    margin-bottom: 18px !important;

    padding: 9px;

    background: #faf6e9;
    border-radius: 10px;
}

.service-card .icon-svg svg {
    width: 100%;
    height: 100%;
}


/* CARD HEADING */

.service-card h3 {
    margin: 0 0 12px !important;

    color: var(--green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem !important;
    font-weight: 600;
    line-height: 1.35;
}


/* CARD TEXT */

.service-card p {
    flex-grow: 1;

    margin-bottom: 18px !important;

    color: var(--text-muted);
    font-size: 0.91rem !important;
    line-height: 1.65;
}


/* CARD LINK */

.service-card a {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    margin-top: auto;

    color: var(--green-primary) !important;
    font-size: 0.86rem !important;
    font-weight: 700 !important;

    transition: var(--transition);
}

.service-card a:hover {
    color: var(--gold-dark) !important;
    transform: translateX(3px);
}


/* ---------------------------------------------------------
   8. BENEFITS BAR
--------------------------------------------------------- */

.benefits-bar {
    position: relative;
    overflow: hidden;

    padding: 38px 0;

    background: var(--green-primary);
    color: var(--white);
}

.benefits-bar::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.02),
            transparent,
            rgba(255,255,255,0.02)
        );

    pointer-events: none;
}

.benefits-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.benefit-item {
    min-height: 100px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    padding: 8px 30px;

    border-right: 1px solid rgba(255,255,255,0.14);
}

.benefit-item:first-child {
    padding-left: 0;
}

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

.benefit-item .icon-svg {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
}

.benefit-item strong {
    margin-bottom: 5px;

    color: var(--white);
    font-size: 0.96rem;
    font-weight: 700;
}

.benefit-item span {
    max-width: 240px;

    color: rgba(255,255,255,0.82);
    font-size: 0.79rem;
    line-height: 1.5;
}


/* ---------------------------------------------------------
   9. PROCESS SECTION
   Works with your CURRENT inline grid
--------------------------------------------------------- */

.section[style*="background: var(--gray-light)"] {
    background: var(--gray-light) !important;
}


/* Detect process grid */

.section .container > div[style*="text-align: center"] {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 35px !important;
}


/* Process number */

.section .container > div[style*="text-align: center"] > div > div:first-child {
    width: 58px !important;
    height: 58px !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    margin: 0 auto 18px !important;

    background: var(--gold) !important;
    border-radius: 50%;

    color: var(--white);

    font-size: 1.1rem !important;
    font-weight: 700;

    box-shadow: 0 6px 18px rgba(201, 162, 39, 0.22);
}


/* Process heading */

.section .container > div[style*="text-align: center"] h4 {
    margin-bottom: 9px !important;

    color: var(--green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
}


/* Process paragraph */

.section .container > div[style*="text-align: center"] p {
    max-width: 250px;
    margin: 0 auto;

    color: var(--text-muted) !important;
    font-size: 0.88rem !important;
    line-height: 1.6;
}


/* ---------------------------------------------------------
   10. TESTIMONIALS
--------------------------------------------------------- */

/*
   Your testimonial grid is also an inline grid.
*/

.service-card p[style*="italic"] {
    color: var(--text-muted);
    font-size: 0.94rem !important;
    line-height: 1.7;
}

.service-card > div[style*="letter-spacing"] {
    color: var(--gold) !important;
    font-size: 1rem;
    letter-spacing: 3px !important;
}

.service-card > strong {
    color: var(--green-dark);
    font-size: 0.88rem;
}


/* ---------------------------------------------------------
   11. CTA
--------------------------------------------------------- */

.cta-banner {
    padding: 65px 0;

    background:
        linear-gradient(
            135deg,
            var(--green-dark),
            var(--green-primary)
        );

    color: var(--white);
    text-align: center;
}

.cta-banner h3 {
    margin: 0 0 12px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
}

.cta-banner p {
    color: rgba(255,255,255,0.86);
    font-size: 1rem;
}

.cta-banner .container > div {
    color: rgba(255,255,255,0.9);
}

.cta-banner .btn-gold {
    min-width: 180px;

    background: var(--gold);
    border: 2px solid var(--gold);

    color: var(--white);
}

.cta-banner .btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
}


/* ---------------------------------------------------------
   12. SVG
--------------------------------------------------------- */

.icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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


/* ---------------------------------------------------------
   13. TABLET - 1100px
--------------------------------------------------------- */

@media (max-width: 1100px) {

    .container {
        max-width: 100%;
        padding-left: 28px;
        padding-right: 28px;
    }

    .hero-grid {
        grid-template-columns: 1fr 0.9fr;
        gap: 45px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    }

    .hero-image {
        height: 510px;
    }

    .quote-box {
        right: -10px;
    }

    .section .container > div[style*="grid-template-columns"] {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .benefit-item {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* ---------------------------------------------------------
   14. TABLET - 900px
--------------------------------------------------------- */

@media (max-width: 900px) {

    .hero {
        padding: 60px 0 65px !important;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

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

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrap {
        width: min(100%, 650px);
        margin: 0 auto;
    }

    .hero-image {
        height: 500px;
    }

    .quote-box {
        right: 20px;
        bottom: 20px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-item {
        min-height: 120px;
        border-bottom: 1px solid rgba(255,255,255,0.14);
    }

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

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

    .section .container > div[style*="grid-template-columns"] {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .section .container > div[style*="text-align: center"] {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .section {
        padding: 70px 0;
    }
}


/* ---------------------------------------------------------
   15. MOBILE - 767px
--------------------------------------------------------- */

@media (max-width: 767px) {

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    /* HERO */

    .hero {
        padding: 48px 0 50px !important;
    }

    .hero-label {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        margin-bottom: 13px;
    }

    .hero h1 {
        font-size: 2.35rem;
        line-height: 1.12;
        letter-spacing: -0.8px;
        margin-bottom: 18px;
    }

    .hero p {
        font-size: 0.96rem;
        line-height: 1.65;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        min-height: 50px;
    }

    /* IMAGE */

    .hero-image-wrap {
        width: 100%;
    }

    .hero-image {
        height: 390px;
        border-radius: 12px;
    }

    .quote-box {
        position: relative;

        right: auto;
        bottom: auto;

        width: calc(100% - 24px);
        max-width: none;

        margin: -40px auto 0;

        padding: 18px 20px;

        z-index: 5;
    }

    /* SECTIONS */

    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-title {
        font-size: 1.9rem;
        line-height: 1.25;
    }

    .section-label {
        font-size: 0.7rem;
    }

    /* SERVICE CARDS */

    .section .container > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .service-card {
        padding: 25px 22px;
    }

    .service-card:hover {
        transform: none;
    }

    /* BENEFITS */

    .benefits-bar {
        padding: 20px 0;
    }

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

    .benefit-item,
    .benefit-item:first-child {
        min-height: auto;

        padding: 22px 10px;

        align-items: center;
        text-align: center;

        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.14);
    }

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

    .benefit-item span {
        max-width: 300px;
    }

    /* PROCESS */

    .section .container > div[style*="text-align: center"] {
        grid-template-columns: 1fr !important;
        gap: 38px !important;
    }

    .section .container > div[style*="text-align: center"] p {
        max-width: 330px;
    }

    /* CTA */

    .cta-banner {
        padding: 50px 0;
    }

    .cta-banner h3 {
        font-size: 1.8rem;
    }

    .cta-banner p {
        font-size: 0.92rem;
    }

    .cta-banner .container > div {
        flex-direction: column !important;
        gap: 8px !important;
        margin-bottom: 22px !important;
    }

    .cta-banner .btn {
        width: 100%;
        max-width: 280px;
    }
}


/* ---------------------------------------------------------
   16. SMALL MOBILE - 480px
--------------------------------------------------------- */

@media (max-width: 480px) {

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero {
        padding: 40px 0 45px !important;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.91rem;
    }

    .hero-image {
        height: 330px;
    }

    .quote-box {
        width: calc(100% - 14px);
        margin-top: -30px;
        padding: 16px 17px;
        font-size: 0.84rem;
    }

    .quote-box strong {
        font-size: 0.88rem;
    }

    .quote-box span {
        font-size: 0.78rem !important;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .service-card {
        padding: 22px 18px;
    }

    .service-card h3 {
        font-size: 1.08rem !important;
    }

    .service-card p {
        font-size: 0.88rem !important;
    }

    .cta-banner h3 {
        font-size: 1.55rem;
    }
}


/* ---------------------------------------------------------
   17. VERY SMALL DEVICES
--------------------------------------------------------- */

@media (max-width: 360px) {

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-label {
        font-size: 0.63rem;
    }

    .hero-image {
        height: 290px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 20px 16px;
    }
}


/* ---------------------------------------------------------
   18. ACCESSIBILITY
--------------------------------------------------------- */

.btn:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(201, 162, 39, 0.45);
    outline-offset: 3px;
}


/* ---------------------------------------------------------
   19. REDUCE MOTION
--------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}
/* =========================================================
   FIRMENKUNDEN / PRIVATKUNDEN
   PROFESSIONAL RESPONSIVE STYLES
   ========================================================= */

/* ---------- GLOBAL RESPONSIVE FIXES ---------- */

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

section {
    width: 100%;
}

img {
    max-width: 100%;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    padding: 80px 0 75px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 60px;
}

.hero-content {
    min-width: 0;
}

.hero-label {
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    line-height: 1.12;
    margin-bottom: 22px;
    color: var(--green-dark);
}

.hero p {
    max-width: 560px;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-buttons .btn {
    min-height: 48px;
}

.hero-image-wrap {
    position: relative;
    min-width: 0;
}

.hero-image {
    width: 100%;
    height: auto;
    min-height: 430px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.quote-box {
    position: absolute;
    right: -18px;
    bottom: 25px;
    width: min(280px, 85%);
    background: var(--white);
    padding: 20px 22px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.13);
    line-height: 1.5;
    z-index: 2;
}

.quote-box strong {
    color: var(--green-dark);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    min-height: 46px;
    justify-content: center;
    padding: 12px 22px;
    white-space: normal;
}

.btn-primary,
.btn-outline,
.btn-gold {
    text-align: center;
}


/* =========================================================
   SECTION
   ========================================================= */

.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 48px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.2;
    color: var(--green-dark);
}


/* =========================================================
   SERVICE CARDS
   ========================================================= */

/*
 * This overrides the inline:
 * grid-template-columns: repeat(auto-fit,minmax(260px,1fr))
 */

.section .container > div[style*="grid-template-columns"] {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.11);
}

.service-card h3 {
    color: var(--green-dark);
    line-height: 1.35;
}

.service-card p {
    line-height: 1.65;
}

.service-card a {
    margin-top: auto;
    display: inline-block;
}

.service-card .icon-svg {
    flex-shrink: 0;
}


/* =========================================================
   BENEFITS BAR
   ========================================================= */

.benefits-bar {
    padding: 38px 0;
    background: var(--green-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
}

.benefit-item {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.benefit-item .icon-svg {
    width: 32px;
    height: 32px;
    margin-bottom: 5px;
}

.benefit-item strong {
    font-size: 0.95rem;
    line-height: 1.4;
}

.benefit-item span {
    font-size: 0.82rem;
    line-height: 1.5;
    opacity: 0.9;
}


/* =========================================================
   PROCESS / STEPS
   ========================================================= */

/*
 * Your Firmenkunden template contains:
 *
 * grid-template-columns:repeat(4,1fr)
 *
 * The following makes it responsive.
 */

.section .container > div[style*="repeat(4,1fr)"] {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 30px !important;
}

.section .container > div[style*="repeat(4,1fr)"] > div {
    min-width: 0;
}

.section h4 {
    color: var(--green-dark);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.section h4 + p {
    line-height: 1.6;
}


/* =========================================================
   TESTIMONIALS
   ========================================================= */

/*
 * Firmenkunden has:
 * grid-template-columns:repeat(3,1fr)
 */

.section .container > div[style*="repeat(3,1fr)"] {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

.section .container > div[style*="repeat(3,1fr)"] .service-card {
    min-width: 0;
}


/* =========================================================
   CTA
   ========================================================= */

.cta-banner {
    padding: 55px 0;
    text-align: center;
}

.cta-banner h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.3;
    margin-bottom: 10px;
}

.cta-banner p {
    line-height: 1.6;
}

.cta-banner .container > div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cta-banner .btn {
    min-width: 190px;
}


/* =========================================================
   TABLET
   992px
   ========================================================= */

@media (max-width: 992px) {

    .container {
        padding-left: 22px;
        padding-right: 22px;
    }

    /* HERO */

    .hero {
        padding: 65px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

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

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrap {
        max-width: 760px;
        width: 100%;
        margin: 0 auto;
    }

    .hero-image {
        min-height: 420px;
        max-height: 520px;
    }

    .quote-box {
        right: 20px;
        bottom: 20px;
    }


    /* SERVICE CARDS */

    .section .container > div[style*="grid-template-columns"] {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }


    /* BENEFITS */

    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 30px;
    }


    /* PROCESS */

    .section .container > div[style*="repeat(4,1fr)"] {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        row-gap: 40px;
    }


    /* TESTIMONIALS */

    .section .container > div[style*="repeat(3,1fr)"] {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .section .container > div[style*="repeat(3,1fr)"] .service-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}


/* =========================================================
   MOBILE
   768px
   ========================================================= */

@media (max-width: 768px) {

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    /* HERO */

    .hero {
        padding: 50px 0 55px !important;
    }

    .hero-grid {
        gap: 35px;
    }

    .hero-label {
        font-size: 0.76rem;
        letter-spacing: 1.2px;
    }

    .hero h1 {
        font-size: 2.15rem;
        line-height: 1.15;
    }

    .hero p {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-image {
        min-height: 330px;
        max-height: 430px;
    }

    .quote-box {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: none !important;
        margin-top: 15px;
    }


    /* SECTIONS */

    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 1.8rem;
    }


    /* SERVICE CARDS */

    .section .container > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .service-card {
        padding: 25px;
    }

    .service-card h3 {
        font-size: 1.15rem !important;
    }


    /* BENEFITS */

    .benefits-bar {
        padding: 40px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .benefit-item {
        max-width: 420px;
        margin: 0 auto;
    }


    /* PROCESS */

    .section .container > div[style*="repeat(4,1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }


    /* TESTIMONIALS */

    .section .container > div[style*="repeat(3,1fr)"] {
        grid-template-columns: 1fr !important;
    }

    .section .container > div[style*="repeat(3,1fr)"] .service-card:last-child {
        grid-column: auto;
        max-width: none;
    }


    /* CTA */

    .cta-banner {
        padding: 45px 0;
    }

    .cta-banner .container > div {
        flex-direction: column;
        gap: 12px;
    }

    .cta-banner .btn {
        width: 100%;
        max-width: 300px;
    }
}


/* =========================================================
   SMALL MOBILE
   480px
   ========================================================= */

@media (max-width: 480px) {

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* HERO */

    .hero {
        padding: 42px 0 45px !important;
    }

    .hero h1 {
        font-size: 1.85rem;
    }

    .hero p {
        font-size: 0.94rem;
    }

    .hero-image {
        min-height: 280px;
        max-height: 350px;
        border-radius: 10px;
    }

    .quote-box {
        padding: 17px;
        font-size: 0.9rem;
        border-radius: 10px;
    }


    /* SECTION */

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.55rem;
    }

    .section-header {
        margin-bottom: 28px;
    }


    /* SERVICE CARD */

    .service-card {
        padding: 22px;
        border-radius: 10px;
    }

    .service-card p {
        font-size: 0.92rem !important;
    }


    /* BENEFITS */

    .benefits-bar {
        padding: 35px 0;
    }

    .benefit-item strong {
        font-size: 0.92rem;
    }

    .benefit-item span {
        font-size: 0.8rem;
    }


    /* CTA */

    .cta-banner h3 {
        font-size: 1.4rem;
    }

    .cta-banner p {
        font-size: 0.92rem;
    }
}


/* =========================================================
   VERY SMALL DEVICES
   360px
   ========================================================= */

@media (max-width: 360px) {

    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero h1 {
        font-size: 1.65rem;
    }

    .hero-label {
        font-size: 0.7rem;
    }

    .service-card {
        padding: 19px;
    }

    .section-title {
        font-size: 1.4rem;
    }
}


/* =========================================================
   ACCESSIBILITY / TOUCH
   ========================================================= */

@media (hover: none) {

    .service-card:hover {
        transform: none;
    }

}

.btn,
.service-card a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   PREVENT LONG TEXT FROM BREAKING MOBILE LAYOUT
   ========================================================= */

h1,
h2,
h3,
h4,
p,
a,
span {
    overflow-wrap: break-word;
}


/* =========================================================
   REDUCE MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

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

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   ÜBER MICH + GLOBAL RESPONSIVE IMPROVEMENTS
   Add this at the END of style.css
   ========================================================= */


/* ---------- GLOBAL RESPONSIVE SAFETY ---------- */

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1200px) {

    .hero {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .hero-grid {
        gap: 60px;
    }

    .hero h1 {
        font-size: 3.1rem;
    }

    .section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

}


/* =========================================================
   TABLET / SMALL DESKTOP
   ========================================================= */

@media (max-width: 1100px) {

    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-grid {
        gap: 35px;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .services-grid {
        gap: 22px;
    }

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

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 992px) {

    .container {
        padding-left: 22px;
        padding-right: 22px;
    }

    /* HERO */

    .hero {
        padding-top: 55px !important;
        padding-bottom: 55px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        max-width: 760px;
    }

    .hero h1 {
        font-size: 2.45rem;
    }

    .hero p {
        max-width: 700px;
    }

    .hero-image-wrap {
        width: 100%;
        max-width: 650px;
        margin: 0 auto;
    }

    .hero-image {
        width: 100%;
        max-height: 650px;
        object-fit: cover;
    }

    .quote-box {
        right: 20px;
        bottom: 20px;
    }


    /* =====================================================
       ÜBER MICH - TEAM
       ===================================================== */

    .section .service-card img {
        max-width: 100%;
    }


    /* =====================================================
       BENEFITS
       ===================================================== */

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }


    /* =====================================================
       STATS
       ===================================================== */

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }


    /* =====================================================
       FOOTER
       ===================================================== */

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }


    /* =====================================================
       HEADER
       ===================================================== */

    .header-inner {
        height: 68px;
    }

    .logo {
        font-size: 1.15rem;
    }

    .logo-gt {
        font-size: 1.55rem;
    }

    .logo span {
        font-size: 0.58rem;
    }


    /* =====================================================
       HERO
       ===================================================== */

    .hero {
        padding-top: 42px !important;
        padding-bottom: 45px;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-label {
        font-size: 0.72rem;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.18;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 0.96rem;
        line-height: 1.65;
        margin-bottom: 14px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 11px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-image-wrap {
        width: 100%;
        max-width: 100%;
    }

    .hero-image {
        width: 100%;
        height: auto;
        min-height: 350px;
        max-height: 500px;
        object-fit: cover;
        border-radius: 10px;
    }

    .quote-box {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 20px);
        max-width: none !important;
        margin: -35px auto 0;
        z-index: 2;
        padding: 17px 18px;
    }


    /* =====================================================
       SECTION
       ===================================================== */

    .section {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-label {
        font-size: 0.72rem;
    }

    .section-title {
        font-size: 1.7rem;
        line-height: 1.25;
    }


    /* =====================================================
       SERVICE CARDS
       ===================================================== */

    .service-card {
        padding: 24px 20px;
        border-radius: 10px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.92rem;
        line-height: 1.6;
    }


    /* =====================================================
       BENEFITS
       ===================================================== */

    .benefits-bar {
        padding: 38px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .benefit-item {
        max-width: 430px;
        margin: 0 auto;
    }

    .benefit-item strong {
        font-size: 0.95rem;
    }

    .benefit-item span {
        font-size: 0.82rem;
    }


    /* =====================================================
       STATS
       ===================================================== */

    .stats-bar {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .stat-item strong {
        font-size: 1.8rem;
    }


    /* =====================================================
       FOOTER
       ===================================================== */

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }


    /* =====================================================
       CTA
       ===================================================== */

    .cta-banner {
        padding: 42px 0;
    }

    .cta-banner h3 {
        font-size: 1.35rem;
        line-height: 1.35;
    }

    .cta-banner p {
        font-size: 0.92rem;
    }

    .cta-banner .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero {
        padding-top: 35px !important;
        padding-bottom: 38px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 0.91rem;
    }

    .hero-image {
        min-height: 300px;
    }

    .quote-box {
        width: calc(100% - 10px);
        padding: 15px;
        font-size: 0.86rem;
    }

    .section {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 21px 17px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 11px 16px;
        font-size: 0.84rem;
    }

}


/* =========================================================
   ÜBER MICH PAGE - TEAM IMAGE
   ========================================================= */

@media (max-width: 767px) {

    .service-card img {
        width: 135px !important;
        height: 135px !important;
    }

}


/* =========================================================
   INLINE GRID RESPONSIVENESS
   This helps existing PHP templates that use inline grids.
   ========================================================= */

@media (max-width: 992px) {

    /* Team 3 columns -> 2 columns */
    .section .container > div[style*="repeat(3,1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Partner 4 columns -> 2 columns */
    .section .container > div[style*="repeat(4,1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

}


/* =========================================================
   MOBILE INLINE GRID FIX
   ========================================================= */

@media (max-width: 600px) {

    .section .container > div[style*="repeat(3,1fr)"],
    .section .container > div[style*="repeat(4,1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

}


/* =========================================================
   ÜBER MICH - BROKER SECTION
   ========================================================= */

@media (max-width: 767px) {

    .section[style*="green-light"] .container {
        display: block !important;
    }

    .section[style*="green-light"] .container > div {
        width: 100%;
        min-width: 0 !important;
    }

    .section[style*="green-light"] h3 {
        font-size: 1.25rem;
        line-height: 1.35;
    }

    .section[style*="green-light"] p {
        font-size: 0.92rem;
    }

    .section[style*="green-light"] .btn {
        width: auto;
        max-width: 100%;
    }

}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 992px) {

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 310px;
        max-width: 88vw;
        height: 100vh;

        background: #fff;

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        padding: 95px 25px 35px;

        gap: 8px;

        box-shadow: -10px 0 35px rgba(0,0,0,0.12);

        transition: right 0.3s ease;

        overflow-y: auto;

        z-index: 9999;
    }

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

    .main-nav a {
        width: 100%;
        padding: 12px 5px;
        font-size: 1rem;
        border-bottom: 1px solid #eeeeee;
    }

}


/* =========================================================
   PREVENT LONG TEXT FROM BREAKING MOBILE
   ========================================================= */

p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span {
    overflow-wrap: break-word;
}


/* =========================================================
   MOBILE BUTTON SAFETY
   ========================================================= */

@media (max-width: 600px) {

    .hero-buttons .btn,
    .cta-banner .btn {
        white-space: normal;
        min-height: 46px;
    }

}


/* =========================================================
   ACCESSIBILITY / TOUCH
   ========================================================= */

@media (max-width: 992px) {

    .main-nav a,
    .btn,
    .menu-toggle {
        -webkit-tap-highlight-color: transparent;
    }

    .btn {
        min-height: 44px;
    }

}
/* =========================================================
   KONTAKT PAGE - COMPLETE RESPONSIVE CSS
   ========================================================= */

/* ---------------------------------------------------------
   CONTACT HERO
   --------------------------------------------------------- */

.contact-hero {
    padding: 60px 0 40px;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-intro {
    padding-top: 10px;
}

.contact-intro h1 {
    margin: 12px 0 18px;
    line-height: 1.15;
}

.contact-intro-text {
    max-width: 620px;
    margin-bottom: 28px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   CONTACT HIGHLIGHTS
   --------------------------------------------------------- */

.contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-highlight-icon {
    flex: 0 0 auto;
    width: 32px;
    font-size: 1.4rem;
    color: var(--gold);
    line-height: 1.2;
}

.contact-highlight strong {
    display: block;
    margin-bottom: 4px;
}

.contact-highlight span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}


/* ---------------------------------------------------------
   CONTACT FORM CARD
   --------------------------------------------------------- */

.contact-form-card {
    width: 100%;
    box-sizing: border-box;
}

.contact-form-card h3 {
    margin: 0 0 20px;
    font-size: 1.35rem;
}


/* SUCCESS MESSAGE */

.contact-success {
    background: #d4edda;
    color: #155724;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
}


/* ---------------------------------------------------------
   FORM
   --------------------------------------------------------- */

.contact-form {
    width: 100%;
}

.form-group {
    width: 100%;
    margin-bottom: 16px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;

    padding: 12px 16px;

    border: 1px solid #ddd;
    border-radius: 8px;

    background: #fff;
    color: #222;

    font-family: inherit;
    font-size: 0.95rem;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


/* TEXTAREA */

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.5;
}


/* SELECT */

.contact-form select {
    cursor: pointer;
}


/* FOCUS */

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;

    border-color: var(--green-primary);

    box-shadow:
        0 0 0 3px rgba(0, 70, 50, 0.08);
}


/* PRIVACY CHECKBOX */

.privacy-checkbox {
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.privacy-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 8px;

    cursor: pointer;

    line-height: 1.5;
}

.privacy-checkbox input[type="checkbox"] {
    width: auto;
    margin: 3px 0 0;
    flex: 0 0 auto;
}


/* SUBMIT BUTTON */

.contact-submit {
    width: 100%;
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* ---------------------------------------------------------
   CONTACT INFORMATION
   --------------------------------------------------------- */

.contact-info-section {
    padding-top: 20px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;

    margin-bottom: 40px;
}

.contact-info-card {
    text-align: center;
}

.contact-info-icon {
    font-size: 1.8rem;
    color: var(--green-primary);

    margin-bottom: 12px;
}

.contact-info-card h4 {
    margin-bottom: 6px;
}

.contact-main-value {
    margin: 8px 0 !important;

    font-size: 1.1rem;
    font-weight: 600;

    overflow-wrap: anywhere;
}

.contact-muted {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}


/* ---------------------------------------------------------
   BUSINESS INFORMATION
   --------------------------------------------------------- */

.contact-business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card-title {
    margin-bottom: 16px;
}

.contact-address {
    margin-bottom: 8px;
    line-height: 1.7;
}

.contact-note {
    margin-top: 12px;
}


/* ---------------------------------------------------------
   OPENING HOURS
   --------------------------------------------------------- */

.opening-hours {
    width: 100%;
}

.opening-row {
    display: grid;
    grid-template-columns: 85px 1fr;

    gap: 10px;

    padding: 6px 0;

    font-size: 0.9rem;
    line-height: 1.4;
}

.opening-row span:first-child {
    font-weight: 500;
}

.opening-row span:last-child {
    text-align: right;
}


/* ---------------------------------------------------------
   GOOGLE MAP
   --------------------------------------------------------- */

.contact-map {
    width: 100%;
    padding: 0;
    margin: 0;
}

.contact-map-wrapper {
    width: 100%;
    height: 400px;
}

.contact-map iframe,
.contact-map-iframe {
    display: block;

    width: 100%;
    height: 400px;

    border: 0;
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.cta-banner {
    text-align: center;
}

.cta-banner h3 {
    margin-bottom: 12px;
}

.cta-banner .cta-text {
    margin-bottom: 20px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .contact-hero-grid {
        gap: 35px;
    }

    .contact-info-grid,
    .contact-business-grid {
        gap: 20px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 900px) {

    /* HERO */

    .contact-hero {
        padding: 45px 0 35px;
    }

    .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-intro {
        padding-top: 0;
    }

    .contact-intro h1 {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }


    /* INFORMATION CARDS */

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 24px;
    }

    .contact-business-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* MAP */

    .contact-map-wrapper,
    .contact-map iframe,
    .contact-map-iframe {
        height: 350px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    /* -----------------------------------------------------
       HERO
       ----------------------------------------------------- */

    .contact-hero {
        padding: 35px 0 30px;
    }

    .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-intro {
        width: 100%;
    }

    .contact-intro h1 {
        font-size: 2rem;
        line-height: 1.15;
        margin-bottom: 15px;
    }

    .contact-intro-text {
        font-size: 0.95rem;
        line-height: 1.65;
    }


    /* -----------------------------------------------------
       HIGHLIGHTS
       ----------------------------------------------------- */

    .contact-highlights {
        gap: 16px;
    }

    .contact-highlight {
        gap: 10px;
    }

    .contact-highlight-icon {
        width: 28px;
        font-size: 1.25rem;
    }

    .contact-highlight strong {
        font-size: 0.95rem;
    }

    .contact-highlight span {
        font-size: 0.85rem;
    }


    /* -----------------------------------------------------
       FORM CARD
       ----------------------------------------------------- */

    .contact-form-card {
        padding: 20px;
    }

    .contact-form-card h3 {
        font-size: 1.25rem;
    }


    /* -----------------------------------------------------
       FORM INPUTS
       ----------------------------------------------------- */

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form select,
    .contact-form textarea {

        width: 100%;
        max-width: 100%;

        box-sizing: border-box;

        font-size: 16px;

        padding: 12px 13px;
    }

    .contact-form textarea {
        min-height: 130px;
    }


    /* -----------------------------------------------------
       PRIVACY
       ----------------------------------------------------- */

    .privacy-checkbox {
        font-size: 0.82rem;
    }

    .privacy-checkbox label {
        gap: 7px;
    }


    /* -----------------------------------------------------
       BUTTON
       ----------------------------------------------------- */

    .contact-submit {
        width: 100%;
        min-height: 50px;
    }


    /* -----------------------------------------------------
       CONTACT CARDS
       ----------------------------------------------------- */

    .contact-info-grid,
    .contact-business-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-info-grid {
        margin-bottom: 18px;
    }

    .contact-info-card {
        padding: 22px 18px;
    }


    /* -----------------------------------------------------
       BUSINESS CARDS
       ----------------------------------------------------- */

    .contact-business-grid .service-card {
        padding: 20px;
    }

    .contact-card-title {
        font-size: 1.1rem;
    }

    .contact-address {
        font-size: 0.94rem;
    }


    /* -----------------------------------------------------
       OPENING HOURS
       ----------------------------------------------------- */

    .opening-row {
        grid-template-columns: 75px 1fr;
        gap: 8px;

        font-size: 0.78rem;
    }

    .opening-row span:last-child {
        text-align: right;
    }


    /* -----------------------------------------------------
       MAP
       ----------------------------------------------------- */

    .contact-map-wrapper,
    .contact-map iframe,
    .contact-map-iframe {
        height: 300px;
    }


    /* -----------------------------------------------------
       CTA
       ----------------------------------------------------- */

    .cta-banner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .cta-banner h3 {
        font-size: 1.45rem;
        line-height: 1.35;
    }

    .cta-banner .cta-text {
        font-size: 0.92rem;
        line-height: 1.55;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .contact-hero {
        padding-top: 28px;
    }

    .contact-intro h1 {
        font-size: 1.75rem;
    }

    .contact-intro-text {
        font-size: 0.9rem;
    }

    .contact-form-card {
        padding: 16px;
    }

    .contact-form-card h3 {
        font-size: 1.15rem;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form select,
    .contact-form textarea {
        padding: 11px 12px;
    }

    .opening-row {
        grid-template-columns: 68px 1fr;
        gap: 6px;
        font-size: 0.71rem;
    }

    .contact-map-wrapper,
    .contact-map iframe,
    .contact-map-iframe {
        height: 280px;
    }

    .cta-banner h3 {
        font-size: 1.3rem;
    }

}
/* =========================================
   PRIVATKUNDEN
========================================= */

.privatkunden-hero {
    padding-top: 60px;
}

.hero-description {
    margin-top: 12px;
}

.privatkunden-hero .hero-buttons {
    margin-top: 28px;
}

.gold-icon {
    color: var(--gold);
}

.gold-icon svg,
.privat-service-icon svg,
.benefit-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gold-icon-small {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
}

.quote-box {
    display: flex;
    flex-direction: column;
}

.quote-box span {
    font-size: 0.9rem;
    color: var(--text-muted);
}


/* =========================================
   PRIVAT SERVICES
========================================= */

.privatkunden-services {
    padding-top: 70px;
    padding-bottom: 70px;
}

.section-intro {
    max-width: 720px;
    margin: 15px auto 0;
    color: var(--text-muted);
}

.privat-services-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 40px;
    border-top: 1px solid #e7e7e7;
}

.privat-service-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    min-height: 170px;
    border-bottom: 1px solid #e7e7e7;
    background: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.privat-service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

.privat-service-icon {
    width: 52px;
    height: 52px;
    color: var(--gold);
    margin: 0 auto;
}

.privat-service-content {
    padding: 28px 35px 28px 10px;
}

.privat-service-content h3 {
    margin: 0 0 10px;
    font-size: 1.3rem;
    color: var(--green-primary);
}

.privat-service-content p {
    max-width: 700px;
    margin: 0 0 14px;
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.65;
}

.service-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--green-primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.service-more:hover {
    color: var(--gold);
}

.service-more span {
    transition: transform 0.2s ease;
}

.service-more:hover span {
    transform: translateX(4px);
}


/* =========================================
   BENEFITS
========================================= */

.privatkunden-benefits {
    padding: 45px 0;
}

.privatkunden-benefits .benefit-icon {
    width: 30px;
    height: 30px;
    color: var(--gold);
    margin-bottom: 10px;
}


/* =========================================
   PROCESS
========================================= */

.privatkunden-process {
    background: var(--gray-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.process-item {
    position: relative;
}

.process-number {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
}

.process-item h4 {
    margin-bottom: 8px;
}

.process-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}


/* =========================================
   CTA
========================================= */

.cta-contact {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 20px 0 24px;
    font-size: 0.95rem;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

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

    .hero-image-wrap {
        max-width: 650px;
        margin: 0 auto;
        width: 100%;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .privat-service-card {
        grid-template-columns: 80px 1fr;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .privatkunden-hero {
        padding-top: 35px;
    }

    .privatkunden-hero h1 {
        font-size: 2rem;
        line-height: 1.15;
    }

    .privatkunden-hero .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .privatkunden-hero .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .privatkunden-services {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .privat-services-list {
        margin-top: 25px;
    }

    .privat-service-card {
        grid-template-columns: 55px 1fr;
        min-height: 0;
    }

    .privat-service-icon {
        width: 38px;
        height: 38px;
    }

    .privat-service-content {
        padding: 22px 15px 22px 5px;
    }

    .privat-service-content h3 {
        font-size: 1.08rem;
    }

    .privat-service-content p {
        font-size: 0.88rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .cta-contact {
        flex-direction: column;
        gap: 8px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .privat-service-card {
        grid-template-columns: 45px 1fr;
    }

    .privat-service-icon {
        width: 32px;
        height: 32px;
    }

    .privat-service-content {
        padding-right: 8px;
    }

}
/* =========================================
   SERVICE DETAIL PAGE
========================================= */

.service-detail {
    padding: 55px 0 75px;
}

.service-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.service-detail-breadcrumb a {
    color: var(--green-primary);
    font-weight: 600;
    text-decoration: none;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-content h1 {
    margin: 10px 0 12px;
    color: var(--green-dark);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.service-detail-content h2 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-muted);
}

.service-detail-description {
    max-width: 650px;
    line-height: 1.8;
    color: var(--text-muted);
}

.service-detail-list {
    list-style: none;
    margin: 28px 0;
    padding: 0;
}

.service-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 13px;
    line-height: 1.55;
}

.check-icon {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}

.service-detail-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.service-detail-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    min-height: 450px;
}

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


/* Mobile */

@media (max-width: 800px) {

    .service-detail {
        padding: 35px 0 50px;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .service-detail-content h1 {
        font-size: 2.2rem;
    }

    .service-detail-image {
        min-height: 300px;
        order: -1;
    }

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

}

@media (max-width: 500px) {

    .service-detail-buttons {
        flex-direction: column;
    }

    .service-detail-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .service-detail-breadcrumb {
        margin-bottom: 25px;
    }

}
/* =========================================================
   PRIVATKUNDEN PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.privatkunden-hero {
    padding-top: 60px;
}

.privatkunden-hero .hero-description {
    margin-top: 12px;
}

.privatkunden-hero .hero-buttons {
    margin-top: 28px;
}


/* =========================================================
   SECTION INTRO
========================================================= */

.privatkunden-services .section-intro {
    max-width: 700px;
    margin: 16px auto 0;
    color: var(--text-muted);
    line-height: 1.7;
}


/* =========================================================
   PRIVATKUNDEN SERVICES
   4 COLUMNS DESKTOP
========================================================= */

.privat-services-list {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    margin-top: 40px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.privat-service-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    height: 100%;
    box-sizing: border-box;

    padding: 28px 24px;

    background: #ffffff;

    border: 1px solid rgba(13, 74, 58, 0.10);
    border-radius: 14px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.privat-service-card:hover {
    transform: translateY(-5px);

    border-color: rgba(201, 162, 39, 0.35);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   SERVICE ICON
========================================================= */

.privat-service-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: 42px;
    height: 42px;

    margin-bottom: 18px;

    color: var(--gold);
}


.privat-service-icon svg {
    display: block;

    width: 100%;
    height: 100%;

    stroke: currentColor;
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.privat-service-content {
    display: flex;
    flex-direction: column;

    flex: 1;
}


.privat-service-content h3 {
    margin: 0 0 12px;

    font-size: 1.08rem;
    line-height: 1.4;
}


.privat-service-content p {
    margin: 0 0 22px;

    color: var(--text-muted);

    font-size: 0.92rem;
    line-height: 1.65;
}


/* =========================================================
   MEHR ERFAHREN
========================================================= */

.service-more {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    margin-top: auto;

    color: var(--green-primary);

    font-size: 0.9rem;
    font-weight: 700;

    text-decoration: none;

    transition: color 0.2s ease;
}


.service-more:hover {
    color: var(--gold);
}


.service-more-arrow {
    display: inline-block;

    margin-left: 6px;

    transition: transform 0.2s ease;
}


.service-more:hover .service-more-arrow {
    transform: translateX(4px);
}


/* =========================================================
   BENEFITS
========================================================= */

.privatkunden-benefits .benefits-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 30px;
}


.privatkunden-benefits .benefit-item {
    text-align: center;
}


.privatkunden-benefits .benefit-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    margin: 0 auto 12px;

    color: var(--gold);
}


.privatkunden-benefits .benefit-icon svg {
    width: 100%;
    height: 100%;

    stroke: currentColor;
}


.privatkunden-benefits .benefit-item strong {
    display: block;

    margin-bottom: 8px;

    color: #ffffff;
}


.privatkunden-benefits .benefit-item span {
    display: block;

    color: rgba(255, 255, 255, 0.78);

    font-size: 0.9rem;
    line-height: 1.55;
}


/* =========================================================
   PROCESS
========================================================= */

.privatkunden-process {
    background: var(--gray-light);
}


.privatkunden-process .process-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 30px;

    text-align: center;
}


.privatkunden-process .process-item {
    position: relative;
}


.privatkunden-process .process-number {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    margin: 0 auto 16px;

    background: var(--gold);

    color: #ffffff;

    border-radius: 50%;

    font-size: 1.1rem;
    font-weight: 700;
}


.privatkunden-process .process-item h4 {
    margin: 0 0 8px;

    font-size: 1.05rem;
}


.privatkunden-process .process-item p {
    margin: 0;

    color: var(--text-muted);

    font-size: 0.9rem;

    line-height: 1.6;
}


/* =========================================================
   CTA CONTACT
========================================================= */

.cta-contact {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 30px;

    flex-wrap: wrap;

    margin: 20px 0 24px;
}


.cta-contact a {
    color: inherit;

    text-decoration: none;

    transition: opacity 0.2s ease;
}


.cta-contact a:hover {
    opacity: 0.75;
}


/* =========================================================
   DESKTOP / LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .privat-services-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .privatkunden-benefits .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 35px;
    }

    .privatkunden-process .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 40px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .privat-services-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .privat-service-card {
        padding: 24px 20px;
    }

    .privatkunden-benefits .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px;
    }

    .privatkunden-process .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 20px;
    }

    .cta-contact {
        gap: 18px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 520px) {

    .privatkunden-hero {
        padding-top: 35px;
    }

    .privat-services-list {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    .privat-service-card {
        padding: 24px 20px;
    }

    .privat-service-icon {
        width: 38px;
        height: 38px;

        margin-bottom: 15px;
    }

    .privat-service-content h3 {
        font-size: 1.05rem;
    }

    .privat-service-content p {
        font-size: 0.9rem;
    }

    .privatkunden-benefits .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .privatkunden-process .process-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .cta-contact {
        flex-direction: column;
        gap: 10px;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .privat-service-card {
        padding: 22px 18px;
    }

    .privat-service-content h3 {
        font-size: 1rem;
    }

    .privat-service-content p {
        font-size: 0.88rem;
    }

}
.firmen-services-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.firmen-service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.firmen-service-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
    color: var(--gold);
}

.firmen-service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
}

.firmen-service-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.firmen-service-content h3 {
    color: var(--green-dark);
    margin-bottom: 10px;
}

.firmen-service-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.firmen-service-content .service-more {
    margin-top: auto;
}

@media (max-width: 1100px) {
    .firmen-services-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {
    .firmen-services-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 550px) {
    .firmen-services-list {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================
   FIRMENKUNDEN SERVICE DETAIL
   Same layout as Privatkunden Service Detail
========================================================== */

.firmen-detail-hero {
    padding: 55px 0 80px;
    background: var(--white, #ffffff);
}


/* BREADCRUMB */

.privat-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 45px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.privat-detail-breadcrumb a {
    color: var(--green-primary);
    text-decoration: none;
    font-weight: 700;
}

.privat-detail-breadcrumb a:hover {
    color: var(--gold);
}

.privat-detail-breadcrumb span {
    color: var(--gold);
    font-size: 1.1rem;
}

.privat-detail-breadcrumb strong {
    color: var(--text);
    font-weight: 600;
}


/* MAIN GRID */

.privat-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    gap: 70px;
    align-items: center;
}


/* LEFT CONTENT */

.privat-detail-content {
    max-width: 650px;
}

.privat-detail-content .section-label {
    margin-bottom: 14px;
}

.privat-detail-content h1 {
    margin: 0 0 12px;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.08;
    color: var(--green-dark);
}

.privat-detail-content h2 {
    margin: 0 0 22px;
    font-size: 1.35rem;
    line-height: 1.4;
    color: var(--gold);
    font-weight: 600;
}

.privat-detail-description {
    margin: 0 0 28px;
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--text-muted);
}


/* FEATURES */

.privat-detail-features {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}

.privat-detail-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 13px;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--text);
}

.feature-check {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
}


/* BUTTONS */

.privat-detail-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}


/* IMAGE */

.privat-detail-image {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}

.privat-detail-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
}


/* INFORMATION SECTION */

.firmen-detail-information {
    background: var(--gray-light);
}

.firmen-detail-information-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.firmen-detail-information h2 {
    margin: 8px 0 0;
    font-size: 2rem;
    line-height: 1.2;
    color: var(--green-dark);
}

.firmen-detail-information p {
    margin: 0 0 18px;
    color: var(--text-muted);
    line-height: 1.75;
}


/* CTA */

.firmen-detail-hero + .firmen-detail-information {
    margin-top: 0;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 900px) {

    .privat-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .privat-detail-content {
        max-width: 100%;
    }

    .privat-detail-image {
        min-height: 400px;
    }

    .privat-detail-image img {
        min-height: 400px;
    }

    .firmen-detail-information-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

}


@media (max-width: 600px) {

    .firmen-detail-hero {
        padding: 35px 0 55px;
    }

    .privat-detail-breadcrumb {
        margin-bottom: 30px;
        font-size: 0.72rem;
    }

    .privat-detail-content h1 {
        font-size: 2.25rem;
    }

    .privat-detail-content h2 {
        font-size: 1.15rem;
    }

    .privat-detail-description {
        font-size: 1rem;
    }

    .privat-detail-image {
        min-height: 300px;
        border-radius: 14px;
    }

    .privat-detail-image img {
        min-height: 300px;
    }

    .privat-detail-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .privat-detail-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .firmen-detail-information h2 {
        font-size: 1.65rem;
    }

}
/* ==========================================================================
   Firmenkunden Services Grid (4 per row)
   ========================================================================== */

.firmen-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

/* Individual Service Card Alignment */
.firmen-service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.firmen-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Push "Mehr erfahren" link to the bottom of the card */
.firmen-service-card p {
    flex-grow: 1;
    margin-bottom: 20px;
}

.firmen-service-card .service-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive adjustments for screens where 4 columns are too wide */
@media (max-width: 1200px) {
    .firmen-services-grid {
        gap: 16px;
    }
}

@media (max-width: 992px) {
    .firmen-services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
    }
}

@media (max-width: 576px) {
    .firmen-services-grid {
        grid-template-columns: 1fr; /* 1 per row on mobile phones */
    }
}
/* Disable background scrolling when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Hamburger transition into 'X' close icon */
#menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color, #333);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

#menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

#menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
/* =========================================================
   HERO SECTION ENHANCEMENTS
   ========================================================= */

.hero-animated {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Soft Ambient Background Glow */
.hero-glow-backdrop {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

/* Hero Badge Indicator */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #d4af37; /* Gold accent */
    border-radius: 50%;
    box-shadow: 0 0 8px #d4af37;
    animation: pulse 2s infinite;
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, #1b365d 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Floating Image Animation */
.hero-image-wrap {
    position: relative;
    z-index: 1;
    perspective: 1000px;
}

.hero-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
    animation: floatImage 6s ease-in-out infinite;
}

.hero-image-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.18);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.hero-image-card:hover .hero-image {
    transform: scale(1.03);
}

/* Glassmorphism Floating Quote Box */
.quote-box.glass-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    max-width: 320px;
    z-index: 2;
    animation: floatQuote 5s ease-in-out infinite alternate;
}

.quote-icon {
    font-size: 2.5rem;
    line-height: 1;
    color: #d4af37;
    font-family: Georgia, serif;
    margin-bottom: -10px;
}

.quote-text {
    font-size: 0.92rem;
    line-height: 1.4;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 8px;
}

.quote-author {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1b365d;
}

/* Keyframe Animations */
@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes floatQuote {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .quote-box.glass-card {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: -30px;
        max-width: 100%;
    }
}
/* Container and Grid Alignment */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Fix Hero Image Display & Sizing */
.hero-image-card {
    position: relative;
    width: 100%;
    min-height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    animation: floatImage 6s ease-in-out infinite;
}

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

/* Floating Quote Box Position Fix */
.quote-box.glass-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    z-index: 2;
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   KONTAKT PAGE
   ========================================================= */

/* ---------- Contact Hero ---------- */

.contact-hero {
    padding: 70px 0 60px;
    background: var(--white, #ffffff);
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    gap: 70px;
    align-items: start;
}

.contact-intro {
    padding-top: 15px;
}

.contact-intro h1 {
    margin-bottom: 22px;
}

.contact-intro-text {
    max-width: 650px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 35px;
}

.contact-highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-highlight-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--gold);
    font-size: 1.25rem;
}

.contact-highlight strong {
    display: block;
    margin-bottom: 4px;
    color: var(--green-dark);
}

.contact-highlight span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}


/* ---------- Contact Form ---------- */

.contact-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form-card h2 {
    margin-bottom: 24px;
    color: var(--green-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--green-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 15px;
    border: 1px solid #d9dedb;
    border-radius: 8px;
    background: #ffffff;
    color: var(--text, #222222);
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.5;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(26, 92, 69, 0.08);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-privacy {
    margin: 2px 0 20px;
}

.contact-privacy label {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    cursor: pointer;
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.contact-privacy input {
    margin-top: 3px;
    flex: 0 0 auto;
}

.contact-submit {
    width: 100%;
    justify-content: center;
    border: 0;
    cursor: pointer;
}

.contact-success {
    padding: 13px 16px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: #dff3e5;
    color: #176534;
    font-size: 0.9rem;
    line-height: 1.5;
}


/* ---------- Contact Methods ---------- */

.contact-methods-section {
    padding-top: 55px;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-method-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.contact-method-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.contact-method-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--gold);
    font-size: 1.65rem;
}

.contact-method-card h3 {
    margin-bottom: 8px;
    color: var(--green-dark);
}

.contact-method-card strong {
    margin-bottom: 7px;
    color: var(--green-primary);
    font-size: 1.05rem;
}

.contact-method-card span {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}


/* ---------- Contact Details ---------- */

.contact-details-section {
    background: var(--gray-light);
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-detail-card {
    height: 100%;
    box-sizing: border-box;
}

.contact-detail-icon {
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 1.8rem;
}

.contact-detail-card h3 {
    margin-bottom: 18px;
    color: var(--green-dark);
}

.contact-detail-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.contact-detail-card address {
    margin: 0;
    font-style: normal;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
}

.contact-detail-card address strong {
    display: block;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.opening-hours {
    margin-bottom: 14px;
}

.opening-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.opening-row strong {
    color: var(--green-dark);
}

.opening-row span {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.contact-map-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--green-primary);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.contact-map-link:hover {
    color: var(--gold);
}

.parking-note {
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 7px;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 0.84rem;
}


/* ---------- Map ---------- */

.contact-map-section {
    padding: 0;
    line-height: 0;
}

.contact-map {
    width: 100%;
    height: 400px;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}


/* ---------- References ---------- */

.contact-references-section {
    background: #ffffff;
}

.references-placeholder {
    max-width: 700px;
    margin: 0 auto;
    padding: 45px 30px;
    text-align: center;
    border: 1px dashed #cfd6d2;
    border-radius: 14px;
    background: var(--gray-light);
}

.references-icon {
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 2rem;
}

.references-placeholder h3 {
    margin-bottom: 8px;
    color: var(--green-dark);
}

.references-placeholder p {
    margin-bottom: 5px;
    color: var(--text-muted);
}

.references-placeholder span {
    color: var(--gold);
    font-size: 0.88rem;
    font-weight: 700;
}


/* ---------- Legal ---------- */

.legal-section {
    background: var(--gray-light);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.legal-card {
    display: block;
    padding: 26px 20px;
    background: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.legal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.legal-icon {
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 1.7rem;
}

.legal-card h3 {
    margin-bottom: 8px;
    color: var(--green-dark);
    font-size: 1rem;
}

.legal-card span {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.5;
}


/* ---------- Contact CTA ---------- */

.contact-cta {
    text-align: center;
}

.contact-cta-icon {
    margin-bottom: 12px;
    font-size: 2rem;
}

.contact-cta p {
    margin-bottom: 24px;
}

.contact-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-intro {
        padding-top: 0;
    }

    .contact-form-card {
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .contact-methods-grid,
    .contact-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-method-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 12px);
        width: 100%;
        margin: 0 auto;
    }

    .legal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 700px) {

    .contact-hero {
        padding: 45px 0 40px;
    }

    .contact-hero-grid {
        gap: 30px;
    }

    .contact-intro h1 {
        font-size: clamp(2rem, 8vw, 2.7rem);
        line-height: 1.15;
    }

    .contact-intro-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .contact-highlights {
        gap: 18px;
        margin-top: 28px;
    }

    .contact-form-card {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .contact-form-card h2 {
        font-size: 1.35rem;
    }

    .contact-methods-grid,
    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-method-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .contact-method-card {
        padding: 26px 20px;
    }

    .contact-detail-card {
        padding: 24px 20px;
    }

    .contact-map {
        height: 300px;
    }

    .legal-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .legal-card {
        padding: 22px 14px;
    }

    .contact-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .contact-cta-actions .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}


@media (max-width: 480px) {

    .contact-hero {
        padding-top: 35px;
    }

    .contact-form-card {
        padding: 20px 16px;
    }

    .contact-highlight {
        gap: 12px;
    }

    .contact-highlight-icon {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .contact-method-icon {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }

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

    .contact-map {
        height: 260px;
    }

    .contact-privacy label {
        font-size: 0.78rem;
    }
}
/* =========================================================
   LEGAL PAGES
   Güttinger Treuhand
   ========================================================= */

.legal-hero {
    padding: 85px 0 70px;
    background: var(--green-light);
    border-bottom: 1px solid rgba(13, 74, 58, 0.08);
}

.legal-hero .container {
    max-width: 1100px;
}

.legal-hero-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.legal-hero h1 {
    margin: 0 0 16px;
    color: var(--green-dark);
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.08;
}

.legal-hero p {
    max-width: 720px;
    margin: 0;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-section {
    padding: 70px 0;
    background: #fff;
}

.legal-container {
    max-width: 1050px;
}

.legal-card {
    position: relative;
    margin-bottom: 28px;
    padding: 38px 42px;
    background: #fff;
    border: 1px solid rgba(13, 74, 58, 0.09);
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(13, 74, 58, 0.055);
}

.legal-card:last-child {
    margin-bottom: 0;
}

.legal-card h2 {
    margin: 0 0 20px;
    color: var(--green-dark);
    font-size: 1.55rem;
    line-height: 1.3;
}

.legal-card h2 span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--gold);
    font-size: 0.8rem;
    vertical-align: middle;
}

.legal-card h3 {
    margin: 28px 0 10px;
    color: var(--green-primary);
    font-size: 1.05rem;
}

.legal-card p {
    margin: 0 0 16px;
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.8;
}

.legal-card p:last-child {
    margin-bottom: 0;
}

.legal-card a {
    color: gold;
    font-weight: 600;
    text-decoration: none;
}

.legal-card a:hover {
    color: var(--gold);
}

.legal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    border-radius: 12px;
    background: var(--green-light);
    color: var(--gold);
    font-size: 1rem;
    font-weight: 800;
}

.legal-contact-box {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 0;
    margin-top: 25px;
    border: 1px solid #e7ece9;
    border-radius: 10px;
    overflow: hidden;
}

.legal-contact-box strong,
.legal-contact-box span {
    padding: 15px 18px;
    border-bottom: 1px solid #e7ece9;
}

.legal-contact-box strong {
    background: var(--green-light);
    color: var(--green-dark);
}

.legal-contact-box span {
    color: var(--text-muted);
}

.legal-contact-box > *:nth-last-child(-n+2) {
    border-bottom: 0;
}

.legal-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-info-list div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    padding: 17px 20px;
    border-radius: 10px;
    background: #f8faf9;
}

.legal-info-list span {
    color: var(--text-muted);
}

.legal-info-list strong {
    max-width: 60%;
    color: var(--green-dark);
    text-align: right;
}

.legal-address {
    padding: 22px;
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    background: var(--green-light);
    color: var(--text-muted);
    line-height: 1.8;
}

.legal-address strong {
    display: block;
    margin-bottom: 5px;
    color: var(--green-dark);
}

.legal-list {
    margin: 15px 0 0;
    padding: 0;
    list-style: none;
}

.legal-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 27px;
    color: var(--text-muted);
    line-height: 1.65;
}

.legal-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-weight: 800;
}

.legal-highlight {
    margin-top: 22px;
    padding: 18px 20px;
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    background: var(--green-light);
    color: var(--green-dark);
    font-weight: 600;
}

.legal-data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.legal-data-grid > div {
    padding: 22px;
    border: 1px solid #e7ece9;
    border-radius: 10px;
    background: #fafcfb;
}

.legal-data-grid h3 {
    margin: 0 0 8px;
    color: var(--green-dark);
}

.legal-data-grid p {
    margin: 0;
}

.legal-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.legal-tag-list span {
    padding: 8px 13px;
    border-radius: 30px;
    background: var(--green-light);
    color: var(--green-primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.partner-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 25px;
    margin-top: 20px;
}

.partner-list span {
    position: relative;
    padding: 8px 0 8px 20px;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.partner-list span::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.2rem;
}

.legal-fee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 25px 0;
}

.legal-fee-grid div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    padding: 22px;
    border-radius: 10px;
    background: var(--green-light);
}

.legal-fee-grid strong {
    color: var(--green-dark);
    font-size: 0.9rem;
    line-height: 1.5;
}

.legal-fee-grid span {
    color: var(--gold);
    font-size: 1.35rem;
    font-weight: 800;
}

.legal-price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0;
    padding: 22px 25px;
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 10px;
    background: linear-gradient(
        135deg,
        var(--green-light),
        #fff
    );
}

.legal-price-box span {
    color: var(--text-muted);
}

.legal-price-box strong {
    color: var(--green-dark);
    font-size: 1.35rem;
}

.legal-note {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    background: var(--green-light);
}

.legal-note .legal-icon {
    flex: 0 0 54px;
}

.legal-note h3 {
    margin-top: 0;
}

.legal-note .btn {
    margin-top: 12px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .legal-hero {
        padding: 65px 0 55px;
    }

    .legal-section {
        padding: 50px 0;
    }

    .legal-card {
        padding: 30px;
    }

    .legal-data-grid {
        grid-template-columns: 1fr;
    }

    .partner-list {
        grid-template-columns: 1fr;
    }

    .legal-fee-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 700px) {

    .legal-hero {
        padding: 50px 0 42px;
    }

    .legal-hero h1 {
        font-size: 2.25rem;
    }

    .legal-hero p {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .legal-section {
        padding: 35px 0;
    }

    .legal-card {
        margin-bottom: 18px;
        padding: 24px 20px;
        border-radius: 11px;
    }

    .legal-card h2 {
        font-size: 1.3rem;
    }

    .legal-card h2 span {
        width: 32px;
        height: 32px;
        margin-right: 6px;
    }

    .legal-card p,
    .legal-list li {
        font-size: 0.92rem;
    }

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

    .legal-contact-box strong {
        padding-bottom: 5px;
        border-bottom: 0;
    }

    .legal-contact-box span {
        padding-top: 5px;
    }

    .legal-info-list div {
        flex-direction: column;
        gap: 6px;
    }

    .legal-info-list strong {
        max-width: 100%;
        text-align: left;
    }

    .legal-price-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-note {
        flex-direction: column;
    }

    .legal-fee-grid {
        gap: 12px;
    }

    .partner-list span {
        font-size: 0.84rem;
    }
}


@media (max-width: 480px) {

    .legal-hero h1 {
        font-size: 2rem;
    }

    .legal-card {
        padding: 20px 16px;
    }

    .legal-icon {
        width: 48px;
        height: 48px;
    }

    .legal-address {
        padding: 16px;
    }

    .legal-tag-list span {
        font-size: 0.8rem;
    }

    .legal-fee-grid span {
        font-size: 1.15rem;
    }
}
/* =========================================================
   LEGAL PAGES – FORCE LEFT ALIGNMENT
   ========================================================= */

/* Main legal page content */
.legal-hero,
.legal-section,
.legal-container,
.legal-card,
.legal-card > *,
.legal-card h2,
.legal-card h3,
.legal-card p,
.legal-card ul,
.legal-card ol,
.legal-card li {
    text-align: left;
}

/* Hero text */
.legal-hero-label,
.legal-hero h1,
.legal-hero p {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

/* Legal lists */
.legal-list {
    text-align: left;
    padding-left: 0;
}

.legal-list li {
    text-align: left;
}

/* Information lists */
.legal-info-list,
.legal-info-list div,
.legal-info-list span,
.legal-info-list strong {
    text-align: left;
}

.legal-info-list div {
    justify-content: flex-start;
}

/* Contact information */
.legal-contact-box,
.legal-contact-box strong,
.legal-contact-box span {
    text-align: left;
}

/* Address */
.legal-address,
.legal-address strong {
    text-align: left;
}

/* Data grids */
.legal-data-grid,
.legal-data-grid > div,
.legal-data-grid h3,
.legal-data-grid p {
    text-align: left;
}

/* Partner list */
.partner-list,
.partner-list span {
    text-align: left;
}

/* Tags */
.legal-tag-list,
.legal-tag-list span {
    text-align: left;
}

/* Fee / pricing sections */
.legal-fee-grid,
.legal-fee-grid div,
.legal-fee-grid strong,
.legal-fee-grid span {
    text-align: left;
}

/* Price boxes */
.legal-price-box,
.legal-price-box span,
.legal-price-box strong {
    text-align: left;
}

/* Notes */
.legal-note,
.legal-note h3,
.legal-note p {
    text-align: left;
}

/* Links */
.legal-card a {
    text-align: left;
}

/* Make sure no inherited flex centering affects text */
.legal-card {
    align-items: flex-start;
}

.legal-card .legal-icon {
    margin-left: 0;
    margin-right: 0;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .legal-hero,
    .legal-section,
    .legal-container,
    .legal-card {
        text-align: left;
    }

    .legal-hero h1,
    .legal-hero p,
    .legal-card h2,
    .legal-card h3,
    .legal-card p,
    .legal-card li {
        text-align: left;
    }

    .legal-info-list strong {
        text-align: left;
        max-width: 100%;
    }

    .legal-price-box {
        align-items: flex-start;
    }
}
/* =========================================================
   FOOTER
   Güttinger Treuhand
   ========================================================= */

.site-footer {
    background: var(--green-dark);
    color: #fff;
    padding: 65px 0 0;
}

.site-footer .container {
    max-width: 1200px;
}

/* Footer columns */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 45px;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    margin-bottom: 18px;
}

.footer-logo .custom-logo-link {
    display: inline-block;
}

.footer-logo .custom-logo {
    display: block;
    width: auto;
    max-width: 170px;
    max-height: 70px;
    object-fit: contain;
}

.footer-text-logo {
    display: inline-flex;
    flex-direction: column;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;
}

.footer-text-logo span {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-top: 3px;
}

.footer-brand p {
    max-width: 360px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.75;
}

/* Footer headings */
.footer-col {
    text-align: left;
}

.footer-col h4 {
    margin: 0 0 20px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.footer-col a {
    display: block;
    width: fit-content;
    margin-bottom: 11px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover {
    color: var(--gold);
    transform: translateX(3px);
}

/* =========================================================
   FOOTER CONTACT
   Phone / WhatsApp / Email - CENTERED
   ========================================================= */

.footer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
    padding: 25px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    text-align: center;
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #fff;
}

/* GOLD CONTACT ICONS */
.footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.15rem;
    line-height: 1;
}

/* =========================================================
   ADDRESS - CENTERED
   ========================================================= */

.footer-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 22px 20px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    text-align: center;
}

.footer-address-icon {
    color: var(--gold);
    font-size: 1.15rem;
}

/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.78rem;
}

.footer-bottom span {
    text-align: center;
}


/* =========================================================
   RESPONSIVE FOOTER
   ========================================================= */

@media (max-width: 900px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        max-width: 550px;
    }

    .footer-contact {
        gap: 20px 30px;
    }
}


@media (max-width: 600px) {

    .site-footer {
        padding-top: 45px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-col {
        text-align: left;
    }

    .footer-col h4 {
        margin-bottom: 14px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 16px;
        padding: 24px 10px;
    }

    .footer-contact a {
        width: 100%;
    }

    .footer-address {
        padding: 20px 10px;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding: 20px 0;
        text-align: center;
    }
}


@media (max-width: 400px) {

    .footer-contact a {
        font-size: 0.86rem;
    }

    .footer-brand p {
        font-size: 0.86rem;
    }
}
/* =========================================================
   MOBILE MENU
   ========================================================= */

.menu-toggle {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 10001;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.hamburger-bar {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--green-dark);
    border-radius: 3px;
    transition:
        transform 0.25s ease,
        opacity 0.2s ease,
        background 0.25s ease;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .site-header {
        position: relative;
        z-index: 10000;
    }

    .header-inner {
        position: relative;
        min-height: 78px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }

    /* Logo stays on the left */
    .site-header .logo {
        display: flex;
        align-items: center;
        margin-right: auto;
    }

    .site-header .logo img {
        display: block;
        width: 125px;
        height: auto;
    }

    /* Hide desktop CTA */
    .header-cta {
        display: none !important;
    }

    /* SHOW HAMBURGER */
    .menu-toggle {
        display: flex !important;
        flex: 0 0 44px;
        margin-left: auto;
    }

    /* Mobile navigation */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        padding: 100px 30px 40px;

        background: #fff;

        box-shadow: -10px 0 35px rgba(0, 0, 0, 0.12);

        z-index: 10000;

        transition: right 0.3s ease;

        overflow-y: auto;
    }

    /* OPEN MENU */
    .main-nav.active {
        right: 0;
    }

    .main-nav a {
        display: block;
        width: 100%;
        padding: 15px 0;

        color: var(--green-dark);
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 0.5px;

        border-bottom: 1px solid rgba(13, 74, 58, 0.08);

        text-decoration: none;
    }

    .main-nav a:hover,
    .main-nav a.active {
        color: var(--gold);
    }

    /* =====================================================
       HAMBURGER -> X
       ===================================================== */

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

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

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

    /* Make X visible above the menu */
    .menu-toggle.active {
        position: fixed;
        top: 17px;
        right: 20px;
        z-index: 10002;
    }

    .menu-toggle.active .hamburger-bar {
        background: var(--green-dark);
    }

    /* =====================================================
       DARK OVERLAY
       ===================================================== */

    .mobile-overlay {
        display: block;
        position: fixed;
        inset: 0;

        background: rgba(0, 0, 0, 0.35);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        z-index: 9998;

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Prevent page scrolling while menu is open */
    body.menu-open {
        overflow: hidden;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .header-inner {
        min-height: 70px;
    }

    .site-header .logo img {
        width: 115px;
    }

    .menu-toggle.active {
        top: 13px;
        right: 14px;
    }

    .main-nav {
        width: min(300px, 88vw);
        padding: 90px 24px 30px;
    }
}
/* =========================================================
   INFORMATIONSPFLICHTEN & AGB PAGE
   Additional styling
   ========================================================= */

.legal-page {
    text-align: left;
}

.legal-page .legal-hero,
.legal-page .legal-section {
    text-align: left;
}

.legal-page .legal-container {
    text-align: left;
}

.legal-page .legal-card {
    text-align: left;
}

.legal-page .legal-card p,
.legal-page .legal-card h2,
.legal-page .legal-card h3,
.legal-page .legal-card ul,
.legal-page .legal-card li {
    text-align: left;
}

/* Strong text */
.legal-card strong {
    color: var(--green-dark);
}

/* Legal page links */
.legal-card a {
    color: gold;
    transition: color 0.2s ease;
}

.legal-card a:hover {
    color: var(--gold);
}

/* Better long partner list */
.partner-list {
    text-align: left;
}

.partner-list span {
    text-align: left;
}

/* Number circles */
.legal-card h2 span {
    flex-shrink: 0;
}

/* Last updated */
.legal-last-updated {
    margin-top: 30px;
    padding: 20px 0;
    color: var(--text-muted);
    font-size: 0.82rem;
    text-align: left;
}

/* Better legal note */
.legal-note {
    align-items: flex-start;
}

.legal-note > div:last-child {
    flex: 1;
}

.legal-note .btn {
    display: inline-flex;
}

/* Mobile */
@media (max-width: 700px) {

    .legal-page {
        text-align: left;
    }

    .legal-card {
        text-align: left;
    }

    .legal-card h2 {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .legal-card h2 span {
        margin-right: 0;
    }

    .legal-note {
        align-items: flex-start;
    }

    .legal-last-updated {
        padding: 15px 0;
    }
}
/* =========================================================
   TEAM & PARTNER PAGE
   Güttinger Treuhand
   ========================================================= */

.team-partner-page {
    background: #fff;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.tp-section-heading {
    text-align: center;
    margin-bottom: 32px;
}

.tp-section-heading h1,
.tp-section-heading h2 {
    margin: 0;
    color: var(--green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.15;
}

.tp-section-heading h1 {
    font-size: clamp(2.4rem, 5vw, 3.7rem);
}

.tp-section-heading h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.tp-section-heading h1 span,
.tp-section-heading h2 span {
    color: var(--gold);
}

.tp-heading-line {
    width: 58px;
    height: 2px;
    margin: 13px auto 0;
    background: var(--gold);
}


/* =========================================================
   HERO
   ========================================================= */

.tp-hero {
    padding: 75px 0 45px;
    background: #fff;
}


/* =========================================================
   TEAM CARD
   ========================================================= */

.tp-team-card {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    align-items: center;
    gap: 65px;

    padding: 20px 80px 25px;

    background: linear-gradient(
        135deg,
        #fafafa,
        #f6f7f6
    );

    border-radius: 12px;

    box-shadow:
        0 7px 25px rgba(13, 74, 58, 0.055);
}


/* PERSON */

.tp-person {
    text-align: center;
}

.tp-person-image {
    position: relative;
    max-width: 280px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
}

.tp-person-image img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.tp-person-name {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    padding: 8px 12px;

    background: var(--green-primary);

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
}

.tp-person-role {
    margin-top: 7px;

    color: #333;

    font-size: 0.98rem;
}


/* TEAM INFO */

.tp-team-info {
    max-width: 480px;
    text-align: center;
}

.tp-large-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 92px;
    height: 92px;

    margin: 0 auto 15px;

    color: var(--gold);

    font-size: 3.7rem;
}

.tp-large-icon svg {
    width: 80px;
    height: 80px;
}

.tp-gold-line {
    width: 60px;
    height: 2px;
    margin: 0 auto 20px;

    background: var(--gold);
}

.tp-team-info p {
    margin: 0;

    color: #222;

    font-size: 1.08rem;
    line-height: 1.8;
}


/* =========================================================
   BROKER CARD
   ========================================================= */

.tp-broker-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    gap: 70px;

    margin-top: 20px;
    padding: 35px 75px;

    background: linear-gradient(
        135deg,
        #fafafa,
        #f6f7f6
    );

    border-radius: 12px;

    box-shadow:
        0 7px 25px rgba(13, 74, 58, 0.055);
}

.tp-broker-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp-broker-logo img {
    display: block;
    width: min(100%, 330px);
    height: auto;
    object-fit: contain;
}

.tp-broker-content {
    max-width: 480px;
}

.tp-broker-content p {
    margin: 0 0 20px;

    color: #222;

    font-size: 1rem;
    line-height: 1.75;
}


/* =========================================================
   BUTTON
   ========================================================= */

.tp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 11px 18px;

    border-radius: 7px;

    background: var(--green-primary);

    color: #fff;

    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.3px;

    text-decoration: none;

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.tp-button:hover {
    background: var(--green-dark);

    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 7px 18px rgba(13, 74, 58, 0.18);
}

.tp-button span {
    font-size: 1.2rem;
}


/* =========================================================
   PARTNERS
   ========================================================= */

.tp-partners {
    padding: 15px 0 65px;
}

.tp-partner-heading {
    margin-bottom: 18px;
}


/* =========================================================
   PARTNER GRID
   ========================================================= */

.tp-partner-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;

    gap: 15px;
}

.tp-partner-box {
    padding: 18px 20px;

    border: 1px solid #dfe4e1;

    border-radius: 8px;

    background: #fff;
}

.tp-partner-box h3 {
    margin: 0 0 15px;

    color: var(--green-dark);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 1.05rem;
    font-weight: 500;

    text-align: center;
}


/* =========================================================
   INSURANCE LOGOS
   ========================================================= */

.tp-logo-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 4px 8px;

    align-items: center;
}

.tp-logo-grid span {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 43px;

    padding: 4px;

    color: #214f43;

    font-size: 0.72rem;
    font-weight: 700;

    text-align: center;

    line-height: 1.1;
}


/* =========================================================
   BANKS
   ========================================================= */

.tp-bank-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    align-items: center;

    min-height: 420px;

    gap: 10px 25px;
}

.tp-bank-grid span {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 75px;

    color: var(--green-dark);

    font-size: 1.25rem;
    font-weight: 700;

    text-align: center;
}

.tp-bank-grid span:nth-child(1),
.tp-bank-grid span:nth-child(7) {
    color: #b21e17;
}

.tp-bank-grid span:nth-child(4) {
    color: #9d1515;
}

.tp-bank-grid small {
    display: block;

    margin-top: 4px;

    color: #666;

    font-size: 0.55rem;
    font-weight: 400;
}

.tp-more {
    margin-top: 5px;

    color: #222;

    text-align: center;

    font-size: 0.9rem;
}


/* =========================================================
   CTA
   ========================================================= */

.tp-cta {
    padding: 25px 0;

    background: var(--green-dark);
}

.tp-cta-grid {
    display: grid;

    grid-template-columns: 1.3fr 1fr auto;

    align-items: center;

    gap: 35px;
}

.tp-cta-intro {
    display: flex;
    align-items: center;
    gap: 18px;
}

.tp-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 62px;

    width: 62px;
    height: 62px;

    border: 2px solid var(--gold);

    border-radius: 50%;

    color: var(--gold);
}

.tp-cta-icon svg {
    width: 28px;
    height: 28px;
}

.tp-cta-intro h2 {
    margin: 0 0 5px;

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 1.45rem;
    line-height: 1.3;
}

.tp-cta-intro p {
    margin: 0;

    color: rgba(255,255,255,.82);

    font-size: 0.88rem;
    line-height: 1.5;
}

.tp-cta-contact {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.tp-cta-contact a,
.tp-cta-contact > span {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #fff;

    font-size: 0.85rem;

    text-decoration: none;
}

.tp-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 20px;

    color: var(--gold);
}

.tp-contact-icon svg {
    width: 17px;
    height: 17px;
}

.tp-cta-button {
    display: flex;
    justify-content: flex-end;
}

.tp-button-gold {
    padding: 14px 20px;

    background: var(--gold);

    color: #fff;

    white-space: nowrap;
}

.tp-button-gold:hover {
    background: #b68f1f;

    color: #fff;
}

.tp-button-gold svg {
    width: 18px;
    height: 18px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .tp-team-card {
        gap: 35px;
        padding: 20px 40px 25px;
    }

    .tp-broker-card {
        gap: 40px;
        padding: 30px 40px;
    }

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

    .tp-cta-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tp-cta-button {
        justify-content: flex-start;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .tp-hero {
        padding: 50px 0 30px;
    }

    .tp-section-heading h1 {
        font-size: 2.35rem;
    }

    .tp-section-heading h2 {
        font-size: 2.25rem;
    }


    .tp-team-card {
        grid-template-columns: 1fr;

        gap: 25px;

        padding: 20px;
    }

    .tp-person-image {
        max-width: 280px;
    }

    .tp-person-image img {
        height: 315px;
    }

    .tp-team-info {
        max-width: none;

        padding: 5px 10px 15px;
    }


    .tp-broker-card {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-top: 15px;

        padding: 28px 22px;
    }

    .tp-broker-content {
        max-width: none;
    }


    .tp-partners {
        padding-bottom: 45px;
    }

    .tp-partner-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .tp-logo-grid {
        grid-template-columns: repeat(3, 1fr);

        gap: 3px;
    }

    .tp-logo-grid span {
        min-height: 45px;

        font-size: 0.68rem;
    }


    .tp-bank-grid {
        min-height: auto;

        grid-template-columns: repeat(2, 1fr);

        gap: 8px;
    }

    .tp-bank-grid span {
        min-height: 75px;

        font-size: 1rem;
    }


    .tp-cta {
        padding: 30px 0;
    }

    .tp-cta-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .tp-cta-intro {
        align-items: flex-start;
    }

    .tp-cta-contact {
        gap: 11px;
    }

    .tp-cta-button {
        justify-content: flex-start;
    }

    .tp-button-gold {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 450px) {

    .tp-section-heading h1 {
        font-size: 2rem;
    }

    .tp-section-heading h2 {
        font-size: 1.95rem;
    }

    .tp-team-card {
        padding: 15px;
    }

    .tp-person-image img {
        height: 285px;
    }

    .tp-person-name {
        font-size: 1.15rem;
    }

    .tp-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tp-partner-box {
        padding: 16px 12px;
    }

    .tp-cta-intro h2 {
        font-size: 1.25rem;
    }

}
/* =========================================================
   ÜBER MICH & PARTNER
   GÜTTINGER TREUHAND
   ========================================================= */

.partner-page {
    background: #fff;
}


/* =========================================================
   HERO
   ========================================================= */

.partner-hero {
    padding: 90px 0 75px;
    background: var(--green-light);
    border-bottom: 1px solid rgba(13, 74, 58, 0.08);
}

.partner-hero-content {
    max-width: 850px;
}

.partner-hero h1 {
    margin: 12px 0 20px;
    color: var(--green-dark);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.08;
}

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

.partner-hero p {
    max-width: 720px;
    margin: 0;
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}


/* =========================================================
   TEAM CARD
   ========================================================= */

.partner-team-section {
    padding: 70px 0 35px;
}

.partner-main-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 70px;
    padding: 20px 70px 35px;
    background: #fafcfb;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(13, 74, 58, 0.045);
}


/* PROFILE */

.partner-profile {
    text-align: center;
}

.partner-profile-image {
    position: relative;
    max-width: 280px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
}

.partner-profile-image img {
    display: block;
    width: 100%;
    height: auto;
}

.partner-profile-name {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 10px 15px;
    background: var(--green-primary);
    color: #fff;
    font-family: Georgia, serif;
    font-size: 1.35rem;
}

.partner-profile-role {
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
}


/* SPECIALISTS */

.partner-specialists {
    text-align: left;
}

.partner-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 2.8rem;
}

.partner-feature-line {
    width: 55px;
    height: 2px;
    margin-bottom: 20px;
    background: var(--gold);
}

.partner-specialists h2 {
    margin: 0 0 20px;
    color: var(--green-dark);
    font-family: Georgia, serif;
    font-size: 2rem;
}

.partner-specialists p {
    max-width: 600px;
    margin: 0 0 15px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}


/* =========================================================
   NETWORK FEATURE
   ========================================================= */

.partner-network-section {
    padding: 35px 0 70px;
}

.partner-network-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    padding: 50px 70px;
    background: #fafcfb;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(13, 74, 58, 0.045);
}

.partner-network-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.partner-logo-placeholder {
    color: var(--green-dark);
    font-family: Georgia, serif;
    font-size: 1.25rem;
    line-height: 1.4;
    letter-spacing: 1px;
    text-align: center;
}

.partner-logo-placeholder strong {
    font-size: 1.5rem;
}

.partner-logo-placeholder span {
    color: var(--gold);
    font-size: 0.95rem;
}

.partner-network-content {
    text-align: left;
}

.partner-network-content h2 {
    margin: 10px 0 15px;
    color: var(--green-dark);
    font-family: Georgia, serif;
    font-size: 2rem;
}

.partner-network-content p {
    margin: 0 0 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.partner-network-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.partner-network-content .btn span {
    font-size: 1.2rem;
}


/* =========================================================
   PARTNERS
   ========================================================= */

.partners-section {
    padding: 70px 0;
    background: #fff;
}

.partners-columns {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 20px;
}

.partners-box {
    padding: 30px 25px;
    border: 1px solid #e3e9e5;
    border-radius: 12px;
    background: #fff;
}

.partners-box h3 {
    margin: 0 0 25px;
    color: var(--green-dark);
    font-family: Georgia, serif;
    font-size: 1.15rem;
    text-align: center;
}


/* INSURANCE LOGOS */

.partner-logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 6px;
    border-radius: 6px;
    background: #fff;
}

.partner-logo-item img {
    display: block;
    max-width: 100%;
    max-height: 38px;
    width: auto;
    height: auto;
}

.partner-logo-item span {
    color: #34443d;
    font-size: 0.72rem;
    font-weight: 700;
    text-align: center;
}


/* BANKS */

.partner-bank-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.partner-bank-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 75px;
    padding: 12px;
}

.partner-bank-item img {
    max-width: 150px;
    max-height: 55px;
    width: auto;
    height: auto;
}

.partner-bank-item span {
    color: var(--green-dark);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
}

.partners-more {
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.partner-benefits-section {
    padding: 70px 0;
    background: var(--green-light);
}

.partner-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.partner-benefit-card {
    padding: 28px 22px;
    border: 1px solid rgba(13, 74, 58, 0.08);
    border-radius: 12px;
    background: #fff;
}

.partner-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 10px;
    background: var(--green-light);
    color: var(--gold);
    font-size: 1.3rem;
}

.partner-benefit-card h3 {
    margin: 0 0 10px;
    color: var(--green-dark);
    font-size: 1.05rem;
}

.partner-benefit-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}


/* =========================================================
   CONTACT CTA
   ========================================================= */

.partner-contact-cta {
    padding: 45px 0;
    background: var(--green-dark);
}

.partner-contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr auto;
    align-items: center;
    gap: 40px;
}

.partner-contact-intro {
    position: relative;
    padding-left: 75px;
}

.partner-contact-icon {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.5rem;
}

.partner-contact-intro h2 {
    margin: 0 0 8px;
    color: #fff;
    font-family: Georgia, serif;
    font-size: 1.6rem;
}

.partner-contact-intro p {
    margin: 0;
    color: rgba(255,255,255,0.78);
    line-height: 1.6;
}

.partner-contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.partner-contact-details a,
.partner-contact-details div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
}

.contact-gold-icon {
    width: 22px;
    color: var(--gold);
    font-size: 1rem;
    text-align: center;
}

.partner-contact-action {
    white-space: nowrap;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .partner-main-card {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 35px;
    }

    .partner-network-card {
        gap: 40px;
        padding: 40px;
    }

    .partner-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .partner-contact-action {
        grid-column: 1 / -1;
    }
}


@media (max-width: 750px) {

    .partner-hero {
        padding: 60px 0 50px;
    }

    .partner-hero h1 {
        font-size: 2.4rem;
    }

    .partner-team-section,
    .partner-network-section,
    .partners-section,
    .partner-benefits-section {
        padding: 45px 0;
    }

    .partner-main-card,
    .partner-network-card {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 25px 20px;
    }

    .partner-specialists {
        text-align: left;
    }

    .partner-feature-icon {
        margin-left: 0;
    }

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

    .partner-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .partner-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .partner-contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .partner-contact-action {
        grid-column: auto;
    }

    .partner-contact-action .btn {
        width: 100%;
        justify-content: center;
    }
}


@media (max-width: 480px) {

    .partner-hero h1 {
        font-size: 2rem;
    }

    .partner-hero p {
        font-size: 0.95rem;
    }

    .partner-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-bank-grid {
        grid-template-columns: 1fr 1fr;
    }

    .partner-benefits-grid {
        grid-template-columns: 1fr;
    }

    .partner-main-card {
        padding: 20px 16px;
    }

    .partner-network-card {
        padding: 25px 18px;
    }

    .partner-contact-intro {
        padding-left: 65px;
    }

    .partner-contact-intro h2 {
        font-size: 1.35rem;
    }
}
/* =========================================================
   UNSERE PARTNER
   GÜTTINGER TREUHAND
   ========================================================= */

.gt-partners-section {
    padding: 80px 0;
    background: #fff;
}

.gt-partners-section .section-header {
    margin-bottom: 40px;
}

.gt-partners-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr;
    gap: 22px;
    align-items: stretch;
}


/* =========================================================
   PARTNER COLUMN
   ========================================================= */

.gt-partner-column {
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(13, 74, 58, 0.12);
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(13, 74, 58, 0.045);
}


/* =========================================================
   COLUMN HEADER
   ========================================================= */

.gt-partner-column-header {
    margin-bottom: 25px;
    text-align: center;
}

.gt-partner-column-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 15px;
    border-radius: 12px;
    background: var(--green-light);
    color: var(--gold);
}

.gt-partner-column-icon svg {
    width: 26px;
    height: 26px;
}

.gt-partner-column-header h3 {
    margin: 0;
    color: var(--green-dark);
    font-size: 1.05rem;
    line-height: 1.45;
}


/* =========================================================
   LOGO GRID
   ========================================================= */

.gt-partner-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    align-items: center;
}


/* BANK COLUMN */

.gt-partner-column:last-child .gt-partner-logos {
    grid-template-columns: repeat(2, 1fr);
}


/* =========================================================
   INDIVIDUAL LOGO
   ========================================================= */

.gt-partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 8px;
    border-radius: 8px;
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.gt-partner-logo:hover {
    transform: translateY(-2px);
    background: #f8faf9;
}

.gt-partner-logo img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 42px;
    object-fit: contain;
}


/* =========================================================
   EMPTY STATE
   ========================================================= */

.gt-partner-empty {
    grid-column: 1 / -1;
    padding: 30px 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .gt-partners-section {
        padding: 60px 0;
    }

    .gt-partners-grid {
        grid-template-columns: 1fr;
    }

    .gt-partner-logos {
        grid-template-columns: repeat(4, 1fr);
    }

}


@media (max-width: 600px) {

    .gt-partners-section {
        padding: 45px 0;
    }

    .gt-partner-column {
        padding: 22px 16px;
        border-radius: 11px;
    }

    .gt-partner-column-header h3 {
        font-size: 0.98rem;
    }

    .gt-partner-logos,
    .gt-partner-column:last-child .gt-partner-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gt-partner-logo {
        min-height: 58px;
    }

    .gt-partner-logo img {
        height: 38px;
    }

}
.partner-feature-icon-gold,
.partner-benefit-icon-gold {
    color: #c9a227;
}

.partner-feature-icon-gold svg,
.partner-benefit-icon-gold svg {
    fill: currentColor;
    stroke: currentColor;
}
.contact-gold-icon {
    color: #c9a227;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-gold-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
}
/* =========================================================
   PARTNER CONTACT ICONS
   ========================================================= */

.partner-contact-icon svg {
    width: 28px;
    height: 28px;
    max-width: 28px;
    max-height: 28px;
}

.contact-gold-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-gold-icon svg {
    width: 20px;
    height: 20px;
    max-width: 20px;
    max-height: 20px;
}