/* =========================================
   TP HORIZONTE
   GEMEINSAME WEBSITE-GESTALTUNG
========================================= */


/* =========================================
   1. FARBEN UND GRUNDWERTE
========================================= */

:root{
    --primary:#0F3D5E;
    --primary-dark:#082D46;
    --accent:#16A6A3;
    --accent-dark:#138B89;
    --sandgold:#C6A76A;

    --background:#F8FAFC;
    --surface:#FFFFFF;
    --surface-soft:#EEF6F5;

    --text:#333333;
    --text-soft:#52616A;
    --border:#E2E9EC;

    --radius:12px;
    --radius-large:18px;

    --shadow-small:0 8px 24px rgba(15,61,94,.07);
    --shadow:0 12px 32px rgba(15,61,94,.10);

    --content-width:1160px;
}


/* =========================================
   2. RESET UND GRUNDLAGEN
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--background);
    color:var(--text);
    font-family:"Segoe UI", Arial, sans-serif;
    font-size:16px;
    line-height:1.7;
    -webkit-font-smoothing:antialiased;
}

main{
    display:block;
}

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

a{
    color:inherit;
}

h1,
h2,
h3{
    color:var(--primary);
    font-weight:700;
}

p{
    margin:0;
}

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

.container{
    width:100%;
    max-width:var(--content-width);
    margin:0 auto;
}


/* =========================================
   3. HEADER UND LOGO
========================================= */

header{
    position:relative;
    z-index:20;
    background:var(--surface);
    box-shadow:0 2px 12px rgba(15,61,94,.06);
}

.logo{
    padding:14px 20px 8px;
    text-align:center;
}

.logo a{
    display:inline-block;
    text-decoration:none;
}

.logo img{
    width:220px;
    max-width:82%;
    margin:0 auto;
}

.slogan{
    margin-top:4px;
    margin-bottom:10px;
    color:var(--accent);
    font-size:1rem;
    font-weight:700;
    line-height:1.4;
}


/* =========================================
   4. NAVIGATION
========================================= */

nav{
    border-top:1px solid var(--border);
}

nav ul{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
    padding:12px 20px;
    list-style:none;
}

nav li{
    margin:0;
}

nav a{
    position:relative;
    display:inline-block;
    padding:4px 0 6px;
    color:var(--primary);
    font-size:.98rem;
    font-weight:600;
    line-height:1.4;
    text-decoration:none;
    transition:color .25s ease;
}

nav a:hover{
    color:var(--accent);
}

nav a.active{
    color:var(--accent);
}

nav a.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:2px;
    background:var(--accent);
    border-radius:2px;
}


/* =========================================
   5. BUTTONS UND TEXTLINKS
========================================= */

.button{
    display:inline-block;
    padding:13px 29px;
    background:var(--accent);
    color:white;
    font-size:.98rem;
    font-weight:700;
    line-height:1.4;
    text-align:center;
    text-decoration:none;
    border:0;
    border-radius:40px;
    box-shadow:0 6px 16px rgba(22,166,163,.20);
    cursor:pointer;
    transition:
        background .35s ease,
        transform .35s cubic-bezier(.22,.61,.36,1),
        box-shadow .35s ease;
}

.button:hover{
    background:var(--accent-dark);
    color:white;
    transform:translateY(-2px);
    box-shadow:0 12px 28px rgba(22,166,163,.26);
}

.button:active{
    transform:translateY(0);
    box-shadow:0 5px 12px rgba(22,166,163,.20);
}

.home-text-link,
.certificate-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding-bottom:4px;
    color:var(--accent-dark);
    font-weight:700;
    text-decoration:none;
    border-bottom:2px solid var(--accent);
    transition:
        color .25s ease,
        border-color .25s ease;
}

.home-text-link::after,
.certificate-link::after{
    content:"→";
    transition:transform .25s ease;
}

.home-text-link:hover,
.certificate-link:hover{
    color:var(--primary);
    border-color:var(--primary);
}

.home-text-link:hover::after,
.certificate-link:hover::after{
    transform:translateX(4px);
}

.button:focus-visible,
nav a:focus-visible,
.home-text-link:focus-visible,
.certificate-link:focus-visible{
    outline:3px solid rgba(22,166,163,.28);
    outline-offset:4px;
}


/* =========================================
   6. GEMEINSAME TEXTELEMENTE
========================================= */

.section-label{
    margin-bottom:9px;
    color:var(--accent);
    font-size:.82rem;
    font-weight:700;
    letter-spacing:.14em;
    line-height:1.4;
    text-transform:uppercase;
}

.text-content p{
    margin-bottom:17px;
}

.text-content p:last-child{
    margin-bottom:0;
}


/* =========================================
   7. STARTSEITE – HERO
========================================= */

.home-hero{
    position:relative;
    min-height:500px;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:70px 10%;
    overflow:hidden;
    color:white;
    text-align:center;
}

.home-hero-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.home-hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            180deg,
            rgba(8,37,56,.42),
            rgba(15,61,94,.68)
        );
}

.home-hero-content{
    position:relative;
    z-index:1;
    width:min(750px,100%);
}

.home-hero-label{
    margin-bottom:13px;
    color:#8BE2DF;
    font-size:.84rem;
    font-weight:700;
    letter-spacing:.17em;
    text-transform:uppercase;
}

.home-hero h1{
    margin-bottom:20px;
    color:white;
    font-size:3.05rem;
    line-height:1.15;
}

.home-hero-text{
    max-width:620px;
    margin:0 auto 27px;
    color:rgba(255,255,255,.92);
    font-size:1.17rem;
    line-height:1.65;
}
@media (max-width:768px){

    .home-hero-image{
        object-position:68% center;
    }

}


/* =========================================
   8. STARTSEITE – EINLEITUNG
========================================= */

.home-intro{
    padding:64px 10%;
    background:var(--surface);
}

.home-intro-grid{
    display:grid;
    grid-template-columns:minmax(280px,390px) minmax(0,1fr);
    gap:70px;
    align-items:start;
}

.home-intro-heading{
    position:relative;
    padding-left:22px;
}

.home-intro-heading::before{
    content:"";
    position:absolute;
    top:2px;
    left:0;
    width:4px;
    height:100%;
    max-height:145px;
    background:var(--sandgold);
    border-radius:4px;
}

.home-intro-heading h2{
    font-size:2.05rem;
    line-height:1.3;
}

.home-intro-text{
    max-width:700px;
    color:var(--text-soft);
    font-size:1.03rem;
}

.home-intro-text p{
    margin-bottom:17px;
}

.home-intro-text p:last-child{
    margin-bottom:0;
}

.home-lead{
    color:var(--primary);
    font-size:1.16rem;
    font-weight:600;
    line-height:1.6;
}


/* =========================================
   9. STARTSEITE – HERZENSTHEMA
========================================= */

.home-focus{
    padding:66px 10% 70px;
    background:var(--surface-soft);
}

.home-focus-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(320px,470px);
    gap:65px;
    align-items:center;
}

.home-focus-content{
    max-width:650px;
}

.home-focus h2{
    margin-bottom:16px;
    font-size:2.15rem;
    line-height:1.25;
}

.home-focus-lead{
    margin-bottom:20px;
    padding-bottom:19px;
    color:var(--primary);
    font-size:1.13rem;
    font-weight:600;
    line-height:1.6;
    border-bottom:1px solid rgba(15,61,94,.15);
}

.home-focus-text p{
    margin-bottom:15px;
    color:var(--text-soft);
}

.home-focus-text p:last-child{
    margin-bottom:0;
}

.home-text-link{
    margin-top:23px;
}

.home-focus-image{
    position:relative;
}

.home-focus-image img{
    width:100%;
    border-radius:var(--radius-large);
    box-shadow:var(--shadow);
}

.home-image-caption{
    position:absolute;
    right:18px;
    bottom:-19px;
    display:flex;
    gap:17px;
    padding:13px 17px;
    background:white;
    border-radius:9px;
    box-shadow:var(--shadow-small);
}

.home-image-caption span{
    position:relative;
    color:var(--primary);
    font-size:.76rem;
    font-weight:700;
    letter-spacing:.04em;
}

.home-image-caption span:not(:last-child)::after{
    content:"";
    position:absolute;
    top:50%;
    right:-9px;
    width:3px;
    height:3px;
    background:var(--sandgold);
    border-radius:50%;
}


/* =========================================
   10. STARTSEITE – THEMEN
========================================= */

.home-topics{
    padding:68px 10% 72px;
    background:var(--background);
}

.home-section-heading{
    max-width:680px;
    margin-bottom:36px;
}

.home-section-heading h2{
    margin-bottom:13px;
    font-size:2.1rem;
    line-height:1.25;
}

.home-section-heading > p:last-child{
    color:var(--text-soft);
    font-size:1.02rem;
}

.home-topic-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

.home-topic-card{
    position:relative;
    min-height:235px;
    padding:26px 21px 24px;
    overflow:hidden;
    background:white;
    border:1px solid rgba(15,61,94,.07);
    border-radius:var(--radius);
    box-shadow:var(--shadow-small);
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.home-topic-card::after{
    content:"";
    position:absolute;
    right:0;
    bottom:0;
    width:42px;
    height:4px;
    background:var(--accent);
}

.home-topic-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow);
}

.home-topic-number{
    display:block;
    margin-bottom:14px;
    color:var(--sandgold);
    font-size:.76rem;
    font-weight:700;
    letter-spacing:.14em;
}

.home-topic-card h3{
    margin-bottom:10px;
    font-size:1.04rem;
    line-height:1.4;
}

.home-topic-card p{
    color:var(--text-soft);
    font-size:.94rem;
    line-height:1.6;
}

/* =========================================
   11. STARTSEITE – ÜBER MICH
========================================= */

.home-about{
    padding:66px 10% 70px;
    background:var(--surface);
}

.home-about-grid{
    display:grid;
    grid-template-columns:minmax(280px,390px) minmax(0,1fr);
    gap:65px;
    align-items:center;
}

.home-about-visual{
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    min-height:340px;
    padding:32px;
    overflow:hidden;
    background:
        linear-gradient(
            145deg,
            rgba(15,61,94,.97),
            rgba(22,166,163,.76)
        );
    border-radius:var(--radius-large);
    box-shadow:var(--shadow);
}

.home-about-visual::before{
    content:"";
    position:absolute;
    top:40px;
    right:-65px;
    width:220px;
    height:220px;
    border:1px solid rgba(255,255,255,.22);
    border-radius:50%;
}

.home-about-visual::after{
    content:"";
    position:absolute;
    left:-40px;
    bottom:95px;
    width:270px;
    height:1px;
    background:rgba(255,255,255,.35);
    transform:rotate(-8deg);
}

.home-about-line{
    position:relative;
    z-index:1;
    width:44px;
    height:3px;
    margin-bottom:15px;
    background:var(--sandgold);
    border-radius:3px;
}

.home-about-visual-label{
    position:relative;
    z-index:1;
    margin-bottom:6px;
    color:#8BE2DF;
    font-size:.8rem;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.home-about-visual-text{
    position:relative;
    z-index:1;
    color:white;
    font-size:1.27rem;
    font-weight:600;
    line-height:1.5;
}

.home-about-content{
    max-width:650px;
}

.home-about-content h2{
    margin-bottom:18px;
    font-size:2.1rem;
    line-height:1.25;
}

.home-about-text{
    margin-bottom:23px;
    color:var(--text-soft);
    font-size:1.03rem;
}

.home-about-text p{
    margin-bottom:16px;
}

.home-about-text p:last-child{
    margin-bottom:0;
}


/* =========================================
   12. STARTSEITE – ABSCHLUSS
========================================= */

.home-quote{
    padding:30px 10% 32px;
    background:var(--primary);
    color:white;
    text-align:center;
}

.home-quote-content{
    max-width:760px;
}

.home-quote-label{
    margin-bottom:8px;
    color:#7BE0DD;
    font-size:.78rem;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.home-quote h2{
    margin-bottom:6px;
    color:white;
    font-size:2rem;
    line-height:1.22;
}

.home-quote h3{
    margin-bottom:13px;
    color:#7BE0DD;
    font-size:1.2rem;
}

.home-quote p{
    max-width:620px;
    margin:0 auto 18px;
    color:rgba(255,255,255,.86);
    font-size:.98rem;
}


/* =========================================
   13. ÜBER MICH – EINSTIEG
========================================= */

.about-hero{
    position:relative;
    overflow:hidden;
    padding:62px 10% 66px;
    background:var(--surface-soft);
}

.about-hero::after{
    content:"";
    position:absolute;
    right:-170px;
    bottom:-260px;
    width:500px;
    height:500px;
    border:1px solid rgba(22,166,163,.15);
    border-radius:50%;
}

.about-grid{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:minmax(300px,430px) minmax(0,1fr);
    gap:68px;
    align-items:center;
}


.portrait-placeholder{
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    min-height:390px;
    padding:32px;
    overflow:hidden;
    background:
        linear-gradient(
            145deg,
            rgba(15,61,94,.95),
            rgba(22,166,163,.72)
        );
    border-radius:var(--radius-large);
    box-shadow:var(--shadow);
}

.portrait-placeholder::before{
    content:"";
    position:absolute;
    top:42px;
    right:-55px;
    width:210px;
    height:210px;
    border:1px solid rgba(255,255,255,.16);
    border-radius:50%;
}

.portrait-placeholder::after{
    display:none;
}

.portrait-line{
    position:relative;
    z-index:1;
    width:44px;
    height:3px;
    margin-bottom:15px;
    background:var(--sandgold);
    border-radius:3px;
}

.portrait-label{
    position:relative;
    z-index:1;
    margin-bottom:8px;
    color:#8BE2DF;
    font-size:.8rem;
    font-weight:700;
    letter-spacing:.14em;
    line-height:1.4;
    text-transform:uppercase;
}

.portrait-subline{
    position:relative;
    z-index:1;
    max-width:320px;
    margin:0;
    color:white;
    font-size:1.18rem;
    font-weight:600;
    line-height:1.5;
}
.about-intro{
    max-width:670px;
}

.about-intro h1{
    margin-bottom:10px;
    font-size:2.7rem;
    line-height:1.15;
}

.about-subtitle{
    max-width:610px;
    margin-bottom:23px;
    padding-bottom:19px;
    color:var(--primary);
    font-size:1.28rem;
    font-weight:600;
    line-height:1.5;
    border-bottom:1px solid rgba(15,61,94,.16);
}

.about-intro .text-content{
    max-width:640px;
    color:var(--text-soft);
    font-size:1.03rem;
}


/* =========================================
   14. ÜBER MICH – MEIN WEG
========================================= */

.personal-path{
    padding:64px 10%;
    background:var(--surface);
}

.path-grid{
    display:grid;
    grid-template-columns:minmax(250px,350px) minmax(0,1fr);
    gap:72px;
    align-items:start;
}

.path-heading{
    position:relative;
    padding-left:22px;
}

.path-heading::before{
    content:"";
    position:absolute;
    top:2px;
    left:0;
    width:4px;
    height:100%;
    max-height:108px;
    background:var(--sandgold);
    border-radius:4px;
}

.path-heading h2{
    font-size:1.98rem;
    line-height:1.3;
}

.path-text{
    max-width:710px;
    color:var(--text-soft);
    font-size:1.03rem;
}


/* =========================================
   15. ÜBER MICH – HALTUNG
========================================= */

.values{
    padding:65px 10% 70px;
    background:var(--surface-soft);
}

.section-heading{
    max-width:680px;
    margin-bottom:35px;
}

.section-heading h2{
    margin-bottom:12px;
    font-size:2.05rem;
    line-height:1.25;
}

.section-heading > p:last-child{
    color:var(--text-soft);
    font-size:1.02rem;
}

.value-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:19px;
}

.value-box{
    position:relative;
    min-height:245px;
    padding:29px 24px 26px;
    overflow:hidden;
    background:white;
    border:1px solid rgba(15,61,94,.07);
    border-radius:var(--radius);
    box-shadow:var(--shadow-small);
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.value-box::after{
    content:"";
    position:absolute;
    right:0;
    bottom:0;
    width:46px;
    height:4px;
    background:var(--accent);
}

.value-box:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow);
}

.value-number{
    display:block;
    margin-bottom:17px;
    color:var(--sandgold);
    font-size:.8rem;
    font-weight:700;
    letter-spacing:.12em;
}

.value-box h3{
    margin-bottom:12px;
    font-size:1.08rem;
    line-height:1.4;
}

.value-box p{
    color:var(--text-soft);
    font-size:.96rem;
}


/* =========================================
   16. ÜBER MICH – QUALIFIKATIONEN
========================================= */

.qualifications{
    padding:65px 10% 72px;
    background:var(--surface);
}

.qualifications-intro{
    display:grid;
    grid-template-columns:minmax(260px,350px) minmax(0,1fr);
    column-gap:72px;
    margin-bottom:38px;
}

.qualifications-intro .section-label{
    grid-column:1;
}

.qualifications-intro h2{
    grid-column:1;
    align-self:start;
    font-size:2.05rem;
    line-height:1.25;
}

.qualifications-intro .text-content{
    grid-column:2;
    grid-row:1 / span 2;
    max-width:710px;
    color:var(--text-soft);
    font-size:1.01rem;
}

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

.qualification-card{
    position:relative;
    display:flex;
    flex-direction:column;
    min-height:305px;
    padding:32px 27px 27px;
    overflow:hidden;
    background:var(--background);
    border:1px solid rgba(15,61,94,.08);
    border-radius:var(--radius);
}

.qualification-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:var(--accent);
}

.qualification-number{
    display:block;
    margin-bottom:16px;
    color:var(--sandgold);
    font-size:.8rem;
    font-weight:700;
    letter-spacing:.12em;
}

.qualification-card h3{
    margin-bottom:14px;
    font-size:1.1rem;
    line-height:1.4;
}

.qualification-card p{
    margin-bottom:21px;
    color:var(--text-soft);
    font-size:.96rem;
}

.qualification-card .certificate-link{
    align-self:flex-start;
    margin-top:auto;
}


/* =========================================
   17. ÜBER MICH – ABSCHLUSS
========================================= */

.quote{
    padding:42px 10% 44px;
    background:var(--primary);
    color:white;
    text-align:center;
}

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

.quote-label{
    margin-bottom:8px;
    color:#7BE0DD;
    font-size:.78rem;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.quote h2{
    margin-bottom:6px;
    color:white;
    font-size:2rem;
    line-height:1.22;
}

.quote h3{
    margin-bottom:13px;
    color:#7BE0DD;
    font-size:1.18rem;
    line-height:1.45;
}

.quote p{
    max-width:620px;
    margin:0 auto 18px;
    color:rgba(255,255,255,.86);
    font-size:.98rem;
}.quote{
    padding:60px 10% 64px;
    background:var(--primary);
    color:white;
    text-align:center;
}

.quote-content{
    max-width:790px;
}

.quote-label{
    margin-bottom:11px;
    color:#7BE0DD;
    font-size:.82rem;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.quote h2{
    margin-bottom:9px;
    color:white;
    font-size:2.18rem;
    line-height:1.25;
}

.quote h3{
    margin-bottom:19px;
    color:#7BE0DD;
    font-size:1.28rem;
    line-height:1.5;
}

.quote p{
    max-width:650px;
    margin:0 auto 25px;
    color:rgba(255,255,255,.86);
    font-size:1.02rem;
}


/* =========================================
   18. FOOTER
========================================= */

footer{
    padding:24px 8%;
    background:var(--primary-dark);
    color:rgba(255,255,255,.86);
    text-align:center;
}

footer p{
    font-size:.92rem;
}


/* =========================================
   19. GROSSE TABLETS
========================================= */

@media(max-width:1100px){

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

    .home-topic-card{
        min-height:0;
    }

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

    .value-box{
        min-height:0;
    }

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

    .qualification-card{
        min-height:0;
    }
}


/* =========================================
   20. TABLETS
========================================= */

@media(max-width:900px){

    .home-intro-grid,
    .home-focus-grid,
    .home-about-grid,
    .about-grid,
    .path-grid{
        grid-template-columns:1fr;
        gap:36px;
    }

    .home-intro-heading,
    .home-focus-content,
    .home-about-content,
    .path-heading{
        max-width:700px;
    }

    .home-focus-image{
        max-width:580px;
    }

    .home-about-visual,
    .portrait-placeholder{
        min-height:320px;
        max-width:560px;
        width:100%;
    }

    .qualifications-intro{
        display:block;
        margin-bottom:34px;
    }

    .qualifications-intro h2{
        margin-bottom:20px;
    }
}


/* =========================================
   21. MOBILE NAVIGATION UND INHALTE
========================================= */

@media(max-width:700px){

    .logo{
        padding-top:12px;
    }

    .logo img{
        width:195px;
    }

    .slogan{
        font-size:.9rem;
    }

    nav ul{
        flex-wrap:wrap;
        gap:9px 24px;
        padding:11px 16px;
    }

    nav a{
        font-size:.92rem;
    }

    .home-hero{
        min-height:450px;
        padding:60px 8%;
    }

    .home-hero h1{
        font-size:2.35rem;
    }

    .home-hero-text{
        font-size:1.05rem;
    }

    .home-intro,
    .home-focus,
    .home-topics,
    .home-about,
    .about-hero,
    .personal-path,
    .values,
    .qualifications{
        padding:52px 8% 56px;
    }

    .home-intro-heading h2,
    .home-focus h2,
    .home-section-heading h2,
    .home-about-content h2,
    .path-heading h2,
    .section-heading h2,
    .qualifications-intro h2{
        font-size:1.8rem;
    }

    .home-image-caption{
        position:relative;
        right:auto;
        bottom:auto;
        justify-content:center;
        margin:-8px 14px 0;
    }

    .home-topic-grid,
    .value-grid{
        grid-template-columns:1fr;
        gap:17px;
    }

    .home-topic-card,
    .value-box{
        padding:27px 24px 25px;
    }

    .about-intro h1{
        font-size:2.2rem;
    }

    .about-subtitle{
        font-size:1.15rem;
    }

    .quote,
    .home-quote{
        padding:52px 8% 56px;
    }

    .quote h2,
    .home-quote h2{
        font-size:1.88rem;
    }

    .quote h3,
    .home-quote h3{
        font-size:1.17rem;
    }
}


/* =========================================
   22. KLEINE SMARTPHONES
========================================= */

@media(max-width:480px){

    .logo img{
        width:180px;
    }

    nav ul{
        gap:8px 18px;
    }

    .home-hero h1{
        font-size:2.05rem;
    }

    .button{
        padding:12px 23px;
        font-size:.93rem;
    }

    .home-image-caption{
        flex-direction:column;
        align-items:center;
        gap:5px;
    }

    .home-image-caption span:not(:last-child)::after{
        display:none;
    }

    .home-about-visual,
    .portrait-placeholder{
        min-height:280px;
        padding:27px;
    }

    .about-intro h1{
        font-size:2rem;
    }

    .qualification-card{
        padding:29px 24px 25px;
    }
}
/* =========================================
   BEGLEITUNG – EINSTIEG
========================================= */

.begleitung-hero{
    position:relative;
    overflow:hidden;
    padding:58px 10% 62px;
    background:var(--surface-soft);
}

.begleitung-hero::after{
    content:"";
    position:absolute;
    right:-180px;
    bottom:-290px;
    width:520px;
    height:520px;
    border:1px solid rgba(22,166,163,.14);
    border-radius:50%;
}

.begleitung-hero-grid{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(320px,430px);
    gap:62px;
    align-items:center;
}

.begleitung-hero-content{
    max-width:680px;
}

.begleitung-hero h1{
    margin-bottom:11px;
    color:var(--primary);
    font-size:2.55rem;
    line-height:1.16;
}

.begleitung-subtitle{
    max-width:620px;
    margin-bottom:20px;
    padding-bottom:18px;
    color:var(--primary);
    font-size:1.2rem;
    font-weight:600;
    line-height:1.55;
    border-bottom:1px solid rgba(15,61,94,.16);
}

.begleitung-hero-text{
    max-width:640px;
    margin-bottom:23px;
    color:var(--text-soft);
    font-size:1.01rem;
}

.begleitung-hero-text p{
    margin-bottom:15px;
}

.begleitung-hero-text p:last-child{
    margin-bottom:0;
}


/* HERO-BILD */

.begleitung-hero-visual{
    position:relative;
    height:380px;
    overflow:hidden;
    border-radius:var(--radius-large);
    box-shadow:var(--shadow);
}

.begleitung-hero-image{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 56%;
    transform:scale(1.04);
    transition:transform .4s ease;
}

.begleitung-image-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            180deg,
            rgba(8,37,56,.04) 25%,
            rgba(8,37,56,.76) 100%
        );
}

.begleitung-image-caption{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:2;
    padding:32px;
}

.begleitung-visual-line{
    display:block;
    width:46px;
    height:3px;
    margin-bottom:16px;
    background:var(--sandgold);
    border-radius:3px;
}

.begleitung-visual-label{
    margin-bottom:8px;
    color:#8BE2DF;
    font-size:.8rem;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.begleitung-visual-text{
    max-width:330px;
    margin:0;
    color:white;
    font-size:1.18rem;
    font-weight:600;
    line-height:1.5;
}.begleitung-hero-visual{
    position:relative;
    height:350px;
    overflow:hidden;
    border-radius:var(--radius-large);
    box-shadow:var(--shadow);
}

.begleitung-hero-image{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.begleitung-image-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            180deg,
            rgba(8,37,56,.02) 30%,
            rgba(8,37,56,.78) 100%
        );
}

.begleitung-image-caption{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:2;
    padding:28px 30px;
}

.begleitung-visual-line{
    display:block;
    width:44px;
    height:3px;
    margin-bottom:13px;
    background:var(--sandgold);
    border-radius:3px;
}

.begleitung-visual-label{
    margin-bottom:5px;
    color:#8BE2DF;
    font-size:.78rem;
    font-weight:700;
    letter-spacing:.12em;
    line-height:1.4;
    text-transform:uppercase;
}

.begleitung-visual-text{
    max-width:340px;
    margin:0;
    color:white;
    font-size:1.12rem;
    font-weight:600;
    line-height:1.5;
}


/* TABLET */

@media(max-width:900px){

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

    .begleitung-hero-visual{
        width:100%;
        max-width:580px;
        height:320px;
    }
}


/* MOBIL */

@media(max-width:700px){

    .begleitung-hero{
        padding:50px 8% 54px;
    }

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

    .begleitung-subtitle{
        font-size:1.1rem;
    }

    .begleitung-hero-visual{
        height:290px;
    }

    .begleitung-image-caption{
        padding:24px;
    }

    .begleitung-visual-text{
        font-size:1.04rem;
    }
}


@media(max-width:480px){

    .begleitung-hero h1{
        font-size:1.95rem;
    }

    .begleitung-hero-visual{
        height:265px;
    }
}



/* =========================================
   BEGLEITUNG – AUSGANGSSITUATION
========================================= */

.begleitung-situation{
    padding:64px 10%;
    background:var(--surface);
}

.begleitung-situation-grid{
    display:grid;
    grid-template-columns:minmax(270px,370px) minmax(0,1fr);
    gap:74px;
    align-items:start;
}

.begleitung-heading{
    position:relative;
    padding-left:22px;
}

.begleitung-heading::before{
    content:"";
    position:absolute;
    top:2px;
    left:0;
    width:4px;
    height:100%;
    max-height:110px;
    background:var(--sandgold);
    border-radius:4px;
}

.begleitung-heading h2{
    font-size:2rem;
    line-height:1.3;
}

.begleitung-situation-content{
    max-width:710px;
    color:var(--text-soft);
    font-size:1.03rem;
}

.begleitung-situation-content p{
    margin-bottom:17px;
}

.begleitung-situation-content p:last-child{
    margin-bottom:0;
}

.begleitung-lead{
    color:var(--primary);
    font-size:1.16rem;
    font-weight:600;
    line-height:1.6;
}

.begleitung-keywords{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin:26px 0;
}

.begleitung-keywords span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 18px;
    background:#ffffff;
    color:var(--primary);
    font-size:.88rem;
    font-weight:600;
    letter-spacing:.02em;
    border:1px solid rgba(22,166,163,.15);
    border-radius:999px;
    box-shadow:0 3px 10px rgba(15,61,94,.05);
    transition:all .25s ease;
}

.begleitung-keywords span:hover{
    transform:translateY(-2px);
    border-color:rgba(22,166,163,.35);
    box-shadow:0 6px 16px rgba(15,61,94,.10);
}

/* =========================================
   BEGLEITUNG – VERSTEHEN
========================================= */

.begleitung-understanding{
    padding:65px 10% 70px;
    background:var(--surface-soft);
}

.begleitung-understanding-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(300px,430px);
    gap:68px;
    align-items:center;
}

.begleitung-understanding-content{
    max-width:680px;
}

.begleitung-understanding-content h2{
    margin-bottom:18px;
    font-size:2.08rem;
    line-height:1.28;
}

.begleitung-understanding-content .text-content{
    color:var(--text-soft);
    font-size:1.03rem;
}

.begleitung-statement{
    position:relative;
    width:100%;
    max-width:460px;
    min-height:220px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    margin:0;
    padding:42px 38px;
    background:var(--surface);
    border:1px solid rgba(15,61,94,.07);
    border-radius:var(--radius);
    box-shadow:var(--shadow-small);
}

.begleitung-statement-line{
    display:block;
    width:52px;
    height:3px;
    margin-bottom:22px;
    background:var(--sandgold);
    border-radius:3px;
}

.begleitung-statement p{
    margin-bottom:9px;
    color:var(--primary);
    font-size:1.16rem;
    line-height:1.5;
}

.begleitung-statement strong{
    display:block;
    color:var(--accent-dark);
    font-size:1.3rem;
    line-height:1.45;
}


/* =========================================
   BEGLEITUNG – KLASSISCHE ANSÄTZE
========================================= */

.begleitung-approach{
    padding:64px 10%;
    background:var(--surface);
}

.begleitung-approach-grid{
    display:grid;
    grid-template-columns:minmax(270px,370px) minmax(0,1fr);
    gap:74px;
    align-items:start;
}

.begleitung-approach-heading{
    position:relative;
    padding-left:22px;
}

.begleitung-approach-heading::before{
    content:"";
    position:absolute;
    top:2px;
    left:0;
    width:4px;
    height:100%;
    max-height:145px;
    background:var(--sandgold);
    border-radius:4px;
}

.begleitung-approach-heading h2{
    font-size:2rem;
    line-height:1.3;
}

.begleitung-approach-text{
    max-width:710px;
    color:var(--text-soft);
    font-size:1.03rem;
}


/* =========================================
   BEGLEITUNG – ARBEITSWEISE
========================================= */

.begleitung-process{
    padding:65px 10% 70px;
    background:var(--surface-soft);
}

.begleitung-section-heading{
    max-width:690px;
    margin-bottom:35px;
}

.begleitung-section-heading h2{
    margin-bottom:12px;
    font-size:2.08rem;
    line-height:1.25;
}

.begleitung-section-heading > p:last-child{
    color:var(--text-soft);
    font-size:1.02rem;
}

.begleitung-process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:19px;
}

.begleitung-process-card{
    position:relative;
    min-height:245px;
    padding:29px 24px 26px;
    overflow:hidden;
    background:var(--surface);
    border:1px solid rgba(15,61,94,.07);
    border-radius:var(--radius);
    box-shadow:var(--shadow-small);
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.begleitung-process-card::after{
    content:"";
    position:absolute;
    right:0;
    bottom:0;
    width:46px;
    height:4px;
    background:var(--accent);
}

.begleitung-process-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow);
}

.begleitung-process-number{
    display:block;
    margin-bottom:17px;
    color:var(--sandgold);
    font-size:.8rem;
    font-weight:700;
    letter-spacing:.12em;
}

.begleitung-process-card h3{
    margin-bottom:12px;
    font-size:1.08rem;
    line-height:1.4;
}

.begleitung-process-card p{
    color:var(--text-soft);
    font-size:.96rem;
}


/* =========================================
   BEGLEITUNG – ERGEBNISSE
========================================= */

.begleitung-results{
    padding:65px 10% 70px;
    background:var(--surface);
}

.begleitung-results-grid{
    display:grid;
    grid-template-columns:minmax(270px,370px) minmax(0,1fr);
    gap:74px;
    align-items:start;
}

.begleitung-results-heading h2{
    margin-bottom:13px;
    font-size:2.08rem;
    line-height:1.28;
}

.begleitung-results-heading > p:last-child{
    color:var(--text-soft);
    font-size:1.02rem;
}

.begleitung-results-content{
    max-width:710px;
    color:var(--text-soft);
    font-size:1.03rem;
}

.begleitung-check-list{
    display:grid;
    gap:14px;
    margin:0 0 26px;
    padding:0;
    list-style:none;
}

.begleitung-check-list li{
    position:relative;
    padding:12px 16px 12px 42px;
    color:var(--primary);
    font-weight:600;
    line-height:1.5;
    background:rgba(238,246,245,.72);
    border:1px solid rgba(22,166,163,.12);
    border-radius:10px;
}

.begleitung-check-list li::before{
    content:"";
    position:absolute;
    top:50%;
    left:16px;
    width:10px;
    height:10px;
    background:var(--accent);
    border:3px solid rgba(22,166,163,.18);
    border-radius:50%;
    transform:translateY(-50%);
}


/* =========================================
   BEGLEITUNG – ABSCHLUSS
========================================= */

.begleitung-quote{
    padding:30px 10% 32px;
    background:var(--primary);
    color:white;
    text-align:center;
}

.begleitung-quote-content{
    max-width:760px;
}

.begleitung-quote-label{
    margin-bottom:8px;
    color:#7BE0DD;
    font-size:.78rem;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.begleitung-quote h2{
    margin-bottom:6px;
    color:white;
    font-size:2rem;
    line-height:1.22;
}

.begleitung-quote h3{
    margin-bottom:13px;
    color:#7BE0DD;
    font-size:1.18rem;
    line-height:1.45;
}

.begleitung-quote p{
    max-width:620px;
    margin:0 auto 18px;
    color:rgba(255,255,255,.86);
    font-size:.98rem;
}

/* =========================================
   BEGLEITUNG – TABLET
========================================= */

@media(max-width:1100px){

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

    .begleitung-process-card{
        min-height:0;
    }
}


@media(max-width:900px){

    .begleitung-hero-grid,
    .begleitung-situation-grid,
    .begleitung-understanding-grid,
    .begleitung-approach-grid,
    .begleitung-results-grid{
        grid-template-columns:1fr;
        gap:36px;
    }

    .begleitung-hero-visual{
        width:100%;
        max-width:560px;
        height:320px;
    }

    .begleitung-heading,
    .begleitung-approach-heading{
        max-width:650px;
    }
   @media(max-width:480px){

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

    .begleitung-hero-visual{
        height:280px;
    }

    .begleitung-image-caption{
        padding:24px;
    }

    .begleitung-visual-text{
        font-size:1.05rem;
    }

    .begleitung-keywords{
        gap:8px;
    }

    .begleitung-keywords span{
        padding:6px 12px;
        font-size:.84rem;
    }
} 
}


/* =========================================
   BEGLEITUNG – MOBIL
========================================= */

@media(max-width:700px){

    .begleitung-hero,
    .begleitung-situation,
    .begleitung-understanding,
    .begleitung-approach,
    .begleitung-process,
    .begleitung-results{
        padding:52px 8% 56px;
    }

    .begleitung-hero h1{
        font-size:2.2rem;
    }

    .begleitung-subtitle{
        font-size:1.15rem;
    }

    .begleitung-heading h2,
    .begleitung-understanding-content h2,
    .begleitung-approach-heading h2,
    .begleitung-section-heading h2,
    .begleitung-results-heading h2{
        font-size:1.8rem;
    }

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

    .begleitung-process-card{
        padding:27px 24px 25px;
    }

    .begleitung-statement{
        padding:29px 26px;
    }

    .begleitung-quote{
        padding:52px 8% 56px;
    }

    .begleitung-quote h2{
        font-size:1.88rem;
    }

    .begleitung-quote h3{
        font-size:1.17rem;
    }
}


@media(max-width:480px){

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

    .begleitung-hero-visual{
    display:flex;
    justify-content:center;
    align-items:center;
}

.begleitung-image{
    width:100%;
    max-width:420px;
    border-radius:18px;
    box-shadow:var(--shadow);
}

    .begleitung-keywords{
        gap:8px;
    }

    .begleitung-keywords span{
        padding:6px 12px;
        font-size:.84rem;
    }
}
/* =========================================
   KONTAKT – EINSTIEG
========================================= */

.contact-hero{
    position:relative;
    overflow:hidden;
    padding:62px 10% 66px;
    background:var(--surface-soft);
}

.contact-hero::after{
    content:"";
    position:absolute;
    right:-170px;
    bottom:-270px;
    width:500px;
    height:500px;
    border:1px solid rgba(22,166,163,.15);
    border-radius:50%;
}

.contact-hero-grid{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(300px,410px);
    gap:68px;
    align-items:center;
}

.contact-hero-content{
    max-width:690px;
}

.contact-hero h1{
    margin-bottom:11px;
    color:var(--primary);
    font-size:2.65rem;
    line-height:1.16;
}

.contact-subtitle{
    max-width:630px;
    margin-bottom:21px;
    padding-bottom:19px;
    color:var(--primary);
    font-size:1.22rem;
    font-weight:600;
    line-height:1.55;
    border-bottom:1px solid rgba(15,61,94,.16);
}

.contact-hero-text{
    max-width:650px;
    color:var(--text-soft);
    font-size:1.03rem;
}

.contact-hero-text p{
    margin-bottom:16px;
}

.contact-hero-text p:last-child{
    margin-bottom:0;
}

.contact-hero-visual{
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    min-height:350px;
    padding:34px;
    overflow:hidden;
    background:
        linear-gradient(
            145deg,
            rgba(15,61,94,.97),
            rgba(22,166,163,.76)
        );
    border-radius:var(--radius-large);
    box-shadow:var(--shadow);
}

.contact-hero-visual::before{
    content:"";
    position:absolute;
    top:45px;
    right:-65px;
    width:225px;
    height:225px;
    border:1px solid rgba(255,255,255,.22);
    border-radius:50%;
}

.contact-hero-visual::after{
    content:"";
    position:absolute;
    left:-45px;
    bottom:100px;
    width:290px;
    height:1px;
    background:rgba(255,255,255,.34);
    transform:rotate(-8deg);
}

.contact-visual-line{
    position:relative;
    z-index:1;
    width:45px;
    height:3px;
    margin-bottom:16px;
    background:var(--sandgold);
    border-radius:3px;
}

.contact-visual-label{
    position:relative;
    z-index:1;
    margin-bottom:7px;
    color:#8BE2DF;
    font-size:.8rem;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.contact-visual-text{
    position:relative;
    z-index:1;
    color:white;
    font-size:1.22rem;
    font-weight:600;
    line-height:1.5;
}


/* =========================================
   KONTAKT – VORTEILE
========================================= */

.contact-benefits{
    padding:64px 10% 68px;
    background:var(--surface);
}

.contact-section-heading{
    max-width:680px;
    margin-bottom:35px;
}

.contact-section-heading h2{
    font-size:2.05rem;
    line-height:1.25;
}

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

.contact-benefit-card{
    position:relative;
    min-height:195px;
    padding:25px 24px 23px;
    overflow:hidden;
    background:var(--background);
    border:1px solid rgba(15,61,94,.07);
    border-radius:var(--radius);
    box-shadow:var(--shadow-small);
}

.contact-benefit-card::after{
    content:"";
    position:absolute;
    right:0;
    bottom:0;
    width:42px;
    height:4px;
    background:var(--accent);
}

.contact-benefit-number{
    display:block;
    margin-bottom:14px;
    color:var(--sandgold);
    font-size:.78rem;
    font-weight:700;
    letter-spacing:.12em;
}

.contact-benefit-card h3{
    margin-bottom:10px;
    color:var(--primary);
    font-size:1.06rem;
}

.contact-benefit-card p{
    color:var(--text-soft);
    font-size:.94rem;
    line-height:1.6;
}


/* =========================================
   KONTAKT – FORMULAR
========================================= */

.contact-form-section{
    padding:66px 10% 72px;
    background:var(--surface-soft);
}

.contact-form-grid{
    display:grid;
    grid-template-columns:minmax(300px,410px) minmax(0,660px);
    justify-content:space-between;
    gap:64px;
    align-items:start;
}

.contact-form-intro h2{
    margin-bottom:17px;
    color:var(--primary);
    font-size:2.05rem;
    line-height:1.28;
}

.contact-form-intro > p{
    color:var(--text-soft);
    font-size:1.02rem;
}

.contact-response-note{
    margin-top:28px;
    padding:25px;
    background:var(--surface);
    border-radius:var(--radius);
    box-shadow:var(--shadow-small);
}

.contact-response-line{
    display:block;
    width:43px;
    height:3px;
    margin-bottom:15px;
    background:var(--sandgold);
    border-radius:3px;
}

.contact-response-note p{
    margin:0;
    color:var(--primary);
    font-weight:600;
}

.contact-form{
    padding:36px;
    background:var(--surface);
    border:1px solid rgba(15,61,94,.07);
    border-radius:var(--radius-large);
    box-shadow:var(--shadow);
}

.form-field{
    margin-bottom:22px;
}

.form-field label{
    display:block;
    margin-bottom:8px;
    color:var(--primary);
    font-size:.97rem;
    font-weight:700;
}

.optional{
    margin-left:5px;
    color:var(--text-soft);
    font-size:.82rem;
    font-weight:400;
}

.form-field input,
.form-field textarea{
    width:100%;
    padding:12px 14px;
    background:#FBFCFD;
    color:var(--text);
    border:1px solid #CBD7DC;
    border-radius:8px;
    outline:none;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.form-field textarea{
    min-height:160px;
    resize:vertical;
}

.form-field input:focus,
.form-field textarea:focus{
    background:white;
    border-color:var(--accent);
    box-shadow:0 0 0 3px rgba(22,166,163,.13);
}

.form-consent{
    display:grid;
    grid-template-columns:auto 1fr;
    gap:11px;
    align-items:start;
    margin:4px 0 24px;
}

.form-consent input{
    width:18px;
    height:18px;
    margin-top:4px;
    accent-color:var(--accent);
}

.form-consent label{
    color:var(--text-soft);
    font-size:.9rem;
    line-height:1.6;
}

.form-consent a{
    color:var(--accent-dark);
    font-weight:700;
}

.contact-submit{
    width:100%;
}

.contact-form-note{
    margin-top:22px;
    color:rgba(15,61,94,.55);
    font-size:.78rem;
    line-height:1.5;
    text-align:center;
}


/* =========================================
   KONTAKT – ABSCHLUSS
========================================= */

.contact-closing{
    padding:58px 10% 62px;
    background:var(--primary);
    color:white;
    text-align:center;
}

.contact-closing-content{
    max-width:790px;
    margin:0 auto;
}

.contact-closing-label{
    margin-bottom:11px;
    color:#7BE0DD;
    font-size:.82rem;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.contact-closing h2{
    margin-bottom:16px;
    color:#ffffff;
    font-size:2.1rem;
    line-height:1.3;
}

.contact-closing p{
    max-width:620px;
    margin:0 auto;
    color:rgba(255,255,255,.86);
    font-size:1.02rem;
}


/* =========================================
   KONTAKT – TABLET
========================================= */

@media(max-width:900px){

    .contact-hero-grid,
    .contact-form-grid{
        grid-template-columns:1fr;
        gap:36px;
    }

    .contact-hero-visual{
        width:100%;
        max-width:560px;
        min-height:320px;
    }

    .contact-form-intro{
        max-width:650px;
    }
}


/* =========================================
   KONTAKT – MOBIL
========================================= */

@media(max-width:700px){

    .contact-hero,
    .contact-benefits,
    .contact-form-section{
        padding:52px 8% 56px;
    }

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

    .contact-subtitle{
        font-size:1.12rem;
    }

    .contact-benefit-grid{
        grid-template-columns:1fr;
        gap:17px;
    }

    .contact-benefit-card{
        min-height:0;
        padding:27px 24px 25px;
    }

    .contact-section-heading h2,
    .contact-form-intro h2{
        font-size:1.8rem;
    }

    .contact-form{
        padding:28px 24px;
    }

    .contact-closing{
        padding:52px 8% 56px;
    }

    .contact-closing h2{
        font-size:1.85rem;
    }
}


@media(max-width:480px){

    .contact-hero h1{
        font-size:1.95rem;
    }

    .contact-hero-visual{
        min-height:280px;
        padding:27px;
    }

    .contact-form{
        padding:25px 20px;
    }
}
/* HONEYPOT (unsichtbarer Spamschutz) */

.form-honeypot{
    position:absolute;
    left:-9999px;
    width:1px;
    height:1px;
    overflow:hidden;
}
/* =========================================
   RECHTLICHE SEITEN
========================================= */

.legal-hero{
    padding:58px 10% 60px;
    background:var(--surface-soft);
}

.legal-hero .container{
    max-width:900px;
}

.legal-hero h1{
    margin-bottom:13px;
    color:var(--primary);
    font-size:2.6rem;
    line-height:1.2;
}

.legal-subtitle{
    max-width:720px;
    margin-bottom:13px;
    padding-bottom:19px;
    color:var(--primary);
    font-size:1.17rem;
    font-weight:600;
    line-height:1.6;
    border-bottom:1px solid rgba(15,61,94,.15);
}

.legal-date{
    color:var(--text-soft);
    font-size:.9rem;
}

.legal-content{
    padding:64px 10% 70px;
    background:var(--surface);
}

.legal-container{
    max-width:900px;
}

.legal-section{
    margin-bottom:43px;
    padding-bottom:43px;
    border-bottom:1px solid var(--border);
}

.legal-section:last-child{
    margin-bottom:0;
    padding-bottom:0;
    border-bottom:0;
}

.legal-content h2{
    margin-bottom:17px;
    color:var(--primary);
    font-size:1.42rem;
    line-height:1.35;
}

.legal-content p{
    margin-bottom:17px;
    color:#4B5962;
    line-height:1.8;
}

.legal-content p:last-child{
    margin-bottom:0;
}

.legal-content a{
    color:var(--accent-dark);
    font-weight:600;
    overflow-wrap:anywhere;
    text-decoration:none;
}

.legal-content a:hover{
    text-decoration:underline;
}

.legal-list{
    margin:5px 0 20px;
    padding:0;
    list-style:none;
}

.legal-list li{
    position:relative;
    margin-bottom:9px;
    padding-left:24px;
    color:#4B5962;
    line-height:1.7;
}

.legal-list li:last-child{
    margin-bottom:0;
}

.legal-list li::before{
    content:"";
    position:absolute;
    top:.72em;
    left:0;
    width:7px;
    height:7px;
    background:var(--accent);
    border-radius:50%;
}

.footer-links a.active{
    color:#7BE0DD;
}


/* RECHTLICHE SEITEN – MOBIL */

@media(max-width:700px){

    .legal-hero{
        padding:48px 8% 50px;
    }

    .legal-hero h1{
        font-size:2.1rem;
    }

    .legal-subtitle{
        font-size:1.05rem;
    }

    .legal-content{
        padding:52px 8% 58px;
    }

    .legal-section{
        margin-bottom:35px;
        padding-bottom:35px;
    }

    .legal-content h2{
        font-size:1.27rem;
    }
}
/* =========================================
   FOOTER
========================================= */

footer{
    background:#082538;
    color:white;
    text-align:center;
    padding:14px 20px;
}

.footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:12px;
}

.footer-links a{
    color:rgba(255,255,255,.85);
    text-decoration:none;
    font-size:.82rem;
    transition:.25s;
}

.footer-links a:hover{
    color:#7BE0DD;
}

footer p{
    margin:0;
    color:rgba(255,255,255,.65);
    font-size:.74rem;
}
