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

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#F7F5F2;

    color:#1C1C1C;

    overflow-x:hidden;

}

/* ========= FARBEN ========= */

:root{

    --gold:#C8A54B;
    --gold-light:#E5C870;

    --black:#171717;
    --white:#FFFFFF;

    --bg:#F7F5F2;
    --section:#FFFFFF;
    --section2:#F2EFE9;

    --text:#1F1F1F;
    --text-light:#6B6B6B;

}

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

.container{

    width:min(1200px,90%);
    margin:auto;

}

section{

    padding:140px 0;

}

a{

    text-decoration:none;

}

img{

    max-width:100%;
    display:block;

}

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

.hero{
    position:relative;
    min-height:100vh;
    padding:140px 0 80px;
}

.hero::before{

content:"";

position:absolute;

right:-250px;

top:-200px;

width:700px;

height:700px;

background:radial-gradient(circle,
rgba(212,175,55,.18) 0%,
transparent 70%);

filter:blur(80px);

pointer-events:none;

z-index:1;

}

.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    z-index:0;
    pointer-events:none;
    animation:heroZoom 20s ease-in-out infinite alternate;
}

.hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,.35) 0%,
        rgba(0,0,0,.20) 45%,
        rgba(0,0,0,.10) 100%
    );
}

.navbar{
    position:fixed !important;
    top:20px;
    left:50%;
    transform:translateX(-50%);

    z-index:99999 !important;

    width:min(1200px,94%);
    background:rgba(10,10,10,.90);
    backdrop-filter:blur(18px);

    padding:18px 25px;
    border-radius:70px;
    border:1px solid rgba(255,255,255,.08);

    display:flex !important;
    align-items:center !important;
    flex-wrap:nowrap !important;
}

.logo img{
    height:55px;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:40px;
    list-style:none;

    margin-left:auto;
    margin-right:30px;

    flex:0 0 auto;
}

.nav-links a{
    color:white;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--gold);
}

.btn-nav{
    display:flex !important;
    align-items:center;
    justify-content:center;

    flex:0 0 auto !important;

    background:var(--gold);
    color:#000;

    padding:14px 28px;
    border-radius:40px;

    font-weight:700;
    white-space:nowrap;

    margin:0 !important;
    position:static !important;

    z-index:100000 !important;
}

.hero-content{

    position:relative;
    z-index:5;

    display:flex;
    flex-direction:column;
    justify-content:center;

    max-width:760px;

    padding:60px;

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:35px;

    box-shadow:0 30px 80px rgba(0,0,0,.30);

    animation:heroFade 1.3s ease;
border-left:5px solid var(--gold);
}
.hero-badge{

display:inline-flex;

align-items:center;

gap:10px;

width:max-content;

padding:14px 26px;

border-radius:60px;

background:rgba(200,165,75,.18);

border:1px solid rgba(200,165,75,.30);

color:#fff;

font-weight:600;

margin-bottom:35px;

}

.hero h1{

color:#fff;

font-size:clamp(58px,7vw,92px);

font-weight:800;

line-height:1.05;

letter-spacing:-2px;

max-width:900px;

margin-bottom:35px;

}

.hero p{

font-size:22px;

line-height:1.9;

max-width:720px;

color:#ececec;

margin-bottom:50px;

}
.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

margin-top:15px;

}

.hero-buttons .btn-gold,
.hero-buttons .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 58px !important;
    min-height: 58px !important;
    max-height: 58px !important;

    padding: 0 36px !important;
    margin-top: 25px !important;

    box-sizing: border-box;
    line-height: 1;
}

.btn-gold{
    background:linear-gradient(
        135deg,
        #c89f3d,
        #e3c56d
    );
    color:black;
    padding:18px 36px;
    border-radius:50px;
    font-weight:700;

    box-shadow:0 0 25px rgba(212,175,55,.35);
    transition:.35s;
}

.btn-gold:hover{

transform:translateY(-6px) scale(1.03);

box-shadow:0 20px 45px rgba(212,175,55,.45);

}

.btn-outline{

padding:18px 38px;

border-radius:50px;

border:2px solid rgba(255,255,255,.35);

color:white;

transition:.35s;

transform: translateY(2px);

}

.btn-outline:hover{

background:white;

color:#111;

}


/* ===========================
   VORTEILE
=========================== */

.benefits{

background:var(--section);

}

.section-title{

    text-align:center;
    max-width:800px;
    margin:0 auto 70px;

}

.section-title span{

    color:var(--gold);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;

}

.section-title h2{

    font-size:48px;
    margin:20px 0;

}

.section-title p{

    color:#bdbdbd;
    font-size:18px;
    line-height:1.8;

}

.benefit-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;

}

.benefit-card{

    background:#ffffff;

    border:1px solid #ebe6db;

    border-radius:24px;

    padding:45px;

    transition:all .4s ease;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.benefit-card:hover{

    transform:translateY(-12px);

    border-color:var(--gold);

    box-shadow:0 0 35px rgba(212,175,55,.18);
    rotate:1deg;
}

.benefit-icon{

    font-size:48px;
    margin-bottom:20px;

}
/* ===========================
LUCIDE ICONS
=========================== */

.benefit-icon svg{

width:52px;

height:52px;

stroke:var(--gold);

stroke-width:1.8;

}
.benefit-card h3{

    margin-bottom:15px;
    color:var(--gold);

}

.benefit-card p{

    color:#d0d0d0;
    line-height:1.8;

}
/* ===========================
   COFFEE SHOWCASE
=========================== */

.coffee-showcase{

background:#0b0b0b;

}

.showcase-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

}

.showcase-image{

    text-align:center;

}

.showcase-image img{

    width:100%;
    border-radius:26px;
    max-width:500px;

    transition:.5s;

    filter:drop-shadow(0 35px 40px rgba(0,0,0,.45));

}

.showcase-image img:hover{

    transform:scale(1.05);

}

.showcase-content p{
    color:#F2F2F2;
    line-height:1.9;
    margin-bottom:40px;
    font-size:18px;
}

.showcase-content h2{
    font-size:52px;
    margin:20px 0;
    color:#FFFFFF;
}

.showcase-content p{
    color:#F2F2F2;
    line-height:1.9;
    margin-bottom:40px;
    font-size:18px;
}

.coffee-list div{
    background:#171717;
    color:#FFFFFF;
    border-radius:12px;
    padding:18px;
    border:1px solid rgba(212,175,55,.30);
    font-weight:500;
}

.coffee-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:65px;
}


@media(max-width:900px){

.showcase-grid{

grid-template-columns:1fr;

}

.showcase-content{

text-align:center;

}
.coffee-list{
        grid-template-columns:1fr;
        gap:10px;
        margin-bottom:20px;
    }

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

.stats{

background:var(--section);
    padding:90px 0;

}

.stats-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.stat{

    text-align:center;
    background:white;
    padding:40px;
    border-radius:20px;
    border:1px solid rgba(212,175,55,.12);

}

.stat h2{

    color:var(--gold);
    font-size:54px;
    margin-bottom:10px;

}

.stat p{

    color:#cfcfcf;
    font-size:18px;

}

@media(max-width:900px){

.stats-grid{

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

}

}

@media(max-width:600px){

.stats-grid{

grid-template-columns:1fr;

}

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

.process{

background:var(--section2);

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}

.process-card{

    background:#ffffff;

    border:1px solid #ebe6db;

    border-radius:24px;

    padding:45px;

    transition:all .4s ease;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.process-card:hover{

    transform:translateY(-12px);

    border-color:var(--gold);

    box-shadow:0 0 35px rgba(212,175,55,.18);
    rotate:-1deg;
}

.number{

    width:70px;

    height:70px;

    border-radius:50%;

    background:var(--gold);

    color:#000;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    font-weight:700;

    margin:0 auto 25px;

}

.process-card h3{

    color:var(--gold);

    margin-bottom:15px;

    font-size:26px;

}

.process-card p{

  color:var(--text);

    line-height:1.8;

}

/* ===========================
   CONFIGURATOR
=========================== */

.configurator{

    background:var(--section);

    padding:100px 0;

}


/* ===========================
   LAYOUT
=========================== */

.configurator-layout{

    display:grid;

    grid-template-columns:
        minmax(0,1.35fr)
        minmax(320px,.65fr);

    gap:35px;

    margin-top:60px;

    align-items:start;

}


/* ===========================
   LINKES FORMULAR
=========================== */

.configurator-form{

    background:#ffffff;

    border:1px solid rgba(0,0,0,.08);

    border-radius:28px;

    padding:45px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.08);

}


/* ===========================
   FORTSCHRITT
=========================== */

.config-progress{

    margin-bottom:45px;

}


.progress-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:10px;

    font-size:13px;

    font-weight:600;

    color:#777;

}


.progress-bar{

    width:100%;

    height:6px;

    background:#eeeeee;

    border-radius:20px;

    overflow:hidden;

}


.progress-fill{

    width:16.66%;

    height:100%;

    background:var(--gold);

    border-radius:20px;

    transition:width .4s ease;

}


/* ===========================
   SCHRITTE
=========================== */

.config-step{

    display:none;

    animation:
        configFade .4s ease;

}


.config-step.active{

    display:block;

}


@keyframes configFade{

    from{

        opacity:0;

        transform:translateY(10px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/* ===========================
   SCHRITT TEXT
=========================== */

.step-number{

    display:inline-block;

    color:var(--gold);

    font-size:12px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:10px;

}


.config-step h3{

    font-size:32px;

    line-height:1.2;

    color:#222;

    margin-bottom:12px;

}


.step-description{

    color:#777;

    font-size:15px;

    line-height:1.6;

    margin-bottom:30px;

}


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

.option-grid{

    display:grid;

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

    gap:14px;

}


.config-option{

    width:100%;

    text-align:left;

    background:#fafafa;

    border:1px solid #e5e5e5;

    border-radius:16px;

    padding:20px;

    cursor:pointer;

    transition:
        all .25s ease;

    font-family:
        'Poppins',
        sans-serif;

}


.config-option strong{

    display:block;

    color:#222;

    font-size:18px;

    margin-bottom:5px;

}


.config-option span{

    color:#888;

    font-size:13px;

}


.config-option:hover{

    border-color:var(--gold);

    transform:translateY(-2px);

}


.config-option.selected{

    background:#171717;

    border-color:#171717;

}


.config-option.selected strong{

    color:var(--gold);

}


.config-option.selected span{

    color:#ddd;

}


/* ===========================
   CHECKBOXEN
=========================== */

.checkbox-grid{

    display:grid;

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

    gap:12px;

}


.config-checkbox{

    position:relative;

    display:flex;

    align-items:center;

    gap:12px;

    background:#fafafa;

    border:1px solid #e5e5e5;

    border-radius:14px;

    padding:15px;

    cursor:pointer;

    transition:
        .25s ease;

}


.config-checkbox input{

    position:absolute;

    opacity:0;

    pointer-events:none;

}


.checkmark{

    width:23px;

    height:23px;

    border:1px solid #ccc;

    border-radius:7px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:transparent;

    font-size:13px;

    font-weight:700;

    flex-shrink:0;

}


.config-checkbox input:checked
+ .checkmark{

    background:var(--gold);

    border-color:var(--gold);

    color:#111;

}


.config-checkbox:has(
    input:checked
){

    border-color:var(--gold);

    background:#fffaf0;

}


.checkbox-text{

    font-size:14px;

    color:#333;

}


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

.config-navigation{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:15px;

    margin-top:40px;

    padding-top:30px;

    border-top:1px solid #eeeeee;

}


.config-back,
.config-next{

    border:none;

    border-radius:10px;

    padding:14px 22px;

    font-family:
        'Poppins',
        sans-serif;

    font-weight:600;

    cursor:pointer;

    transition:
        .25s ease;

}


.config-back{

    background:#f1f1f1;

    color:#555;

}


.config-back:hover:not(:disabled){

    background:#e5e5e5;

}


.config-back:disabled{

    opacity:.4;

    cursor:not-allowed;

}


.config-next{

    background:#171717;

    color:white;

}


.config-next:hover{

    background:var(--gold);

    color:#111;

    transform:translateX(3px);

}


/* ===========================
   RECHTE BODA BOX
=========================== */

.configurator-summary{

    background:#171717;

    border-radius:28px;

    color:white;

    overflow:hidden;

    position:sticky;

    top:120px;

}


.summary-inner{

    padding:40px;

}


.summary-eyebrow{

    display:block;

    color:var(--gold);

    font-size:11px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:12px;

}


.summary-inner h3{

    font-size:34px;

    line-height:1.2;

    margin-bottom:15px;

}


.summary-intro{

    color:#aaa;

    line-height:1.7;

    font-size:15px;

    margin-bottom:30px;

}


/* ===========================
   LEISTUNGEN
=========================== */

.summary-points{

    display:flex;

    flex-direction:column;

    gap:16px;

}


.summary-point{

    display:flex;

    align-items:center;

    gap:14px;

}


.summary-icon{

    width:40px;

    height:40px;

    border-radius:11px;

    background:#242424;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}


.summary-icon svg{

    width:19px;

    height:19px;

    stroke:var(--gold);

}


.summary-point strong{

    display:block;

    font-size:14px;

    margin-bottom:3px;

}


.summary-point span{

    display:block;

    color:#777;

    font-size:12px;

}


/* ===========================
   BADGE
=========================== */

.summary-badge{

    margin-top:30px;

    padding:18px;

    border-radius:15px;

    border:
        1px solid
        rgba(200,165,75,.3);

    background:
        rgba(200,165,75,.07);

}


.summary-badge strong{

    color:var(--gold);

    font-size:18px;

}


.summary-badge span{

    display:block;

    color:white;

    font-size:18px;

}


/* ===========================
   KAFFEE VISUAL
=========================== */

.summary-visual{

    height:170px;

    position:relative;

    margin:
        25px -40px -40px;

    overflow:hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(200,165,75,.18),
            transparent 65%
        );

}


/* ===========================
   TASSE
=========================== */

.coffee-cup{

    position:absolute;

    left:50%;

    bottom:45px;

    transform:
        translateX(-50%);

    width:95px;

    height:70px;

    border:
        4px solid #ddd;

    border-top:none;

    border-radius:
        0 0 30px 30px;

}


.coffee-liquid{

    position:absolute;

    left:7px;

    right:7px;

    top:8px;

    height:18px;

    background:#3b2416;

    border-radius:50%;

}


.coffee-cup::after{

    content:"";

    position:absolute;

    right:-30px;

    top:8px;

    width:27px;

    height:35px;

    border:
        4px solid #ddd;

    border-left:none;

    border-radius:
        0 20px 20px 0;

}


/* ===========================
   DAMPF
=========================== */

.coffee-steam{

    position:absolute;

    bottom:73px;

    width:3px;

    height:40px;

    background:
        rgba(255,255,255,.25);

    border-radius:50%;

    animation:
        steam 2s infinite
        ease-in-out;

}


.steam-one{

    left:30px;

}


.steam-two{

    left:55px;

    animation-delay:.7s;

}


@keyframes steam{

    0%,
    100%{

        opacity:0;

        transform:
            translateY(8px);

    }

    50%{

        opacity:1;

        transform:
            translateY(-5px);

    }

}


/* ===========================
   KAFFEEBOHNEN
=========================== */

.coffee-beans span{

    position:absolute;

    width:15px;

    height:10px;

    background:#4a2b1b;

    border-radius:50%;

}


.coffee-beans span:nth-child(1){

    left:22%;

    bottom:35px;

    transform:rotate(25deg);

}


.coffee-beans span:nth-child(2){

    left:30%;

    bottom:55px;

    transform:rotate(-20deg);

}


.coffee-beans span:nth-child(3){

    right:25%;

    bottom:42px;

    transform:rotate(35deg);

}


.coffee-beans span:nth-child(4){

    right:18%;

    bottom:65px;

    transform:rotate(-15deg);

}


.coffee-beans span:nth-child(5){

    left:18%;

    bottom:75px;

    transform:rotate(40deg);

}


/* ===========================
   ABSCHLUSS
=========================== */

.config-complete{

    display:none;

    text-align:center;

    max-width:700px;

    margin:
        40px auto 0;

    padding:
        55px 30px;

    background:#171717;

    color:white;

    border-radius:28px;

    animation:
        configFade .5s ease;

}


.config-complete.visible{

    display:block;

}


.complete-icon{

    width:60px;

    height:60px;

    margin:
        0 auto 20px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--gold);

    color:#111;

    font-size:28px;

    font-weight:700;

}


.config-complete > span{

    color:var(--gold);

    font-size:11px;

    font-weight:700;

    letter-spacing:2px;

}


.config-complete h3{

    font-size:32px;

    margin:12px 0;

}


.config-complete p{

    color:#aaa;

    line-height:1.7;

    max-width:550px;

    margin:
        0 auto 25px;

}


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

@media(max-width:900px){

    .configurator-layout{

        grid-template-columns:1fr;

    }


    .configurator-summary{

        position:relative;

        top:auto;

        order:-1;

    }

}


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

@media(max-width:650px){

    .configurator{

        padding:70px 0;

    }


    .configurator-form{

        padding:25px;

        border-radius:22px;

    }


    .summary-inner{

        padding:30px;

    }


    .summary-visual{

        margin-left:-30px;

        margin-right:-30px;

        margin-bottom:-30px;

    }


    .config-step h3{

        font-size:26px;

    }


    .option-grid,
    .checkbox-grid{

        grid-template-columns:1fr;

    }


    .config-navigation{

        flex-direction:column-reverse;

        align-items:stretch;

    }


    .config-back,
    .config-next{

        width:100%;

        text-align:center;

    }

}
/* ===========================
   TRUST
=========================== */

.trust{

background:var(--section2);

}

.logo-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:30px;

    margin-top:60px;

}

.logo-box{

    height:120px;

    background:#ffffff;

    border-radius:24px;

    border:1px solid #ebe6db;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#777;

    font-size:20px;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.04);

}

.logo-box:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

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

.cta{

background:var(--section);

}

.cta-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.cta-text span{

color:var(--gold);

font-weight:700;

text-transform:uppercase;

}

.cta-text h2{

font-size:52px;

margin:20px 0;

}

.cta-text p{

color:#d2d2d2;

line-height:1.8;

margin-bottom:35px;

}

.cta-list{

list-style:none;

}

.cta-list li{

margin:18px 0;

font-size:18px;

}

.contact-form{

display:flex;

flex-direction:column;

gap:20px;

}

.contact-form input,
.contact-form textarea{

background:#1b1b1b;

border:1px solid rgba(212,175,55,.15);

padding:18px;

border-radius:14px;

color:white;

font-size:16px;

}

.contact-form input:focus,
.contact-form textarea:focus{

outline:none;

border-color:var(--gold);

}

.contact-form button{

cursor:pointer;

border:none;

}

@media(max-width:900px){

.cta-grid{

grid-template-columns:1fr;

}

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

.footer{

background:#080808;

padding:80px 0 20px;

border-top:1px solid rgba(212,175,55,.12);

}

.footer-grid{

display:grid;

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

gap:50px;

}

.footer-logo{

height:60px;

margin-bottom:25px;

}

.footer h4{

margin-bottom:20px;

color:var(--gold);

}

.footer p{

color:#bfbfbf;

line-height:1.8;

}

.footer a{

display:block;

margin:12px 0;

color:#bfbfbf;

transition:.3s;

}

.footer a:hover{

color:var(--gold);

}

.copyright{

text-align:center;

margin-top:60px;

padding-top:25px;

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

color:#777;

font-size:15px;

}

@media(max-width:900px){

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.footer-logo{

margin:auto auto 25px;

}

}
/* ===========================
SCROLL ANIMATION
=========================== */

.hidden{

opacity:0;

transform:translateY(80px);

transition:all .9s ease;

}

.show{

opacity:1;

transform:translateY(0);

}
@keyframes heroFade{

from{

opacity:0;

transform:translateY(50px);

}

to{

opacity:1;

transform:translateY(0);

}
}
/* ===========================
NAVBAR SCROLL
=========================== */

.navbar{

    transition:all .4s ease;

}

.navbar-scroll{

    padding:14px 30px;

    background:rgba(8,8,8,.92);

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}
.section-title h2{

    position:relative;

    display:inline-block;

}

.section-title h2::after{

    content:"";

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    bottom:-18px;

    width:90px;

    height:4px;

    border-radius:20px;

    background:var(--gold);

}
/* ===========================
HAMBURGER
=========================== */

.hamburger{

display:none;

flex-direction:column;

gap:6px;

cursor:pointer;

}

.hamburger span{

width:28px;

height:3px;

background:white;

border-radius:20px;

transition:.3s;

}

@media(max-width:950px){

.nav-links{

display:none;

}

.btn-nav{

display:none;

}

.hamburger{

display:flex;

}
}
.mobile-open{

display:flex !important;

position:absolute;

top:90px;

left:0;

right:0;

background:#111;

padding:35px;

flex-direction:column;

text-align:center;

border-radius:20px;

gap:25px;

}
::selection{

background:var(--gold);

color:black;

}
::selection{

background:var(--gold);

color:black;

}
::-webkit-scrollbar{

width:12px;

}

::-webkit-scrollbar-track{

background:#111;

}

::-webkit-scrollbar-thumb{

background:var(--gold);

border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

background:#e2bf54;

}
@keyframes heroZoom{

0%{

transform:scale(1);

}

100%{

transform:scale(1.08);

}

}
.scroll-indicator{

position:absolute;

left:50%;

bottom:35px;

transform:translateX(-50%);

width:32px;

height:56px;

border:2px solid white;

border-radius:30px;

display:flex;

justify-content:center;

padding-top:10px;

z-index:20;

}

.scroll-indicator span{

width:6px;

height:12px;

background:white;

border-radius:20px;

animation:scrollDown 2s infinite;

}
button,
a{

transition:all .35s ease;

}
@keyframes scrollDown{

0%{

transform:translateY(0);

opacity:1;

}

100%{

transform:translateY(20px);

opacity:0;

}

}
/* ===========================
   TRUST – BODA PLATZHALTER
=========================== */

.boda-placeholder{

    display:flex;

    align-items:center;

    justify-content:center;

}


.boda-placeholder img{

    width:70px;

    height:70px;

    object-fit:contain;

    opacity:.55;

}


.trust-placeholder-text{

    text-align:center;

    margin-top:35px;

}


.trust-placeholder-text strong{

    display:block;

    font-size:16px;

    margin-bottom:6px;

}


.trust-placeholder-text span{

    display:block;

    color:#999;

    font-size:13px;

}
/* ===========================
   TRUST LOGOS – KORREKTUR
=========================== */

.trust .logo-box.boda-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100px;
}

.trust .logo-box.boda-placeholder img {
    width: 65px !important;
    height: 65px !important;
    max-width: 65px !important;
    max-height: 65px !important;
    object-fit: contain;
    display: block;
    opacity: 0.55;
}
/* ===========================
   KONFIGURATOR – SERVICEPAUSCHALE
=========================== */

.config-price {
    margin: 35px auto 10px;
    padding: 24px 30px;
    max-width: 520px;
    text-align: center;
    border: 1px solid rgba(212, 167, 55, 0.35);
    border-radius: 18px;
    background: rgba(20, 20, 20, 0.04);
}

.config-price span {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
}

.config-price strong {
    display: block;
    font-size: 32px;
    margin-bottom: 10px;
}

.config-price small {
    display: block;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.7;
}

.config-service-price {
    display: block;
    width: 100%;
    margin: 30px 0;
    padding: 22px;
    text-align: center;
    border: 1px solid rgba(212, 167, 55, 0.35);
    border-radius: 18px;
    box-sizing: border-box;
}

.config-service-price span {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

.config-service-price strong {
    display: block;
    margin-bottom: 8px;
    font-size: 32px;
}

.config-service-price small {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.7;
}
.config-service-price {
    width: 100%;
    max-width: 520px;
    margin: 30px auto;
    padding: 24px 28px;
    text-align: center;
    border: 1px solid rgba(212, 167, 55, 0.35);
    border-radius: 18px;
    box-sizing: border-box;
}

.config-service-price span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.config-service-price strong {
    display: block;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.config-service-price small {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.7;
}

/* =========================
   TEAM / ÜBER UNS
   ========================= */

.team-section {
  background: #f5f5f3;
  padding: 100px 24px;
}

.team-container {
  max-width: 1180px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* FOTO – ORIGINALFARBEN BEIBEHALTEN */

.team-image {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.team-image img {
  width: 100%;
  display: block;
  filter: none;
  transition: transform 0.5s ease;
}

.team-image:hover img {
  transform: scale(1.02);
}

/* TEXT */

.team-label {
  display: inline-block;

  color: #b89445;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;

  margin-bottom: 14px;
}

.team-content h2 {
  margin: 0;

  color: #202020;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 700;
}

.team-content h3 {
  margin: 12px 0 0;

  color: #b89445;
  font-size: 21px;
  font-weight: 500;
}

.team-line {
  width: 60px;
  height: 3px;

  background: #b89445;

  margin: 28px 0;
}

/* ZITAT */

.team-quote {
  color: #b89445;

  font-size: 23px;
  line-height: 1.45;
  font-weight: 600;

  margin-bottom: 25px;
}

/* BESCHREIBUNG */

.team-content p:not(.team-quote):not(.team-signature) {
  color: #555;
  font-size: 16px;
  line-height: 1.8;

  margin-bottom: 16px;
}

/* WERTE */

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

  margin-top: 35px;
  padding-top: 28px;

  border-top: 1px solid #ddd;
}

.team-values div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.team-values strong {
  color: #b89445;
  font-size: 15px;
  font-weight: 700;
}

.team-values span {
  color: #777;
  font-size: 13px;
}

/* SIGNATUR */

.team-signature {
  margin-top: 35px;

  color: #777;
  font-size: 15px;
  line-height: 1.7;
}

.team-signature strong {
  color: #202020;
}


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

@media (max-width: 800px) {

  .team-section {
    padding: 70px 20px;
  }

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

  .team-content h2 {
    font-size: 38px;
  }

  .team-content h3 {
    font-size: 19px;
  }

  .team-quote {
    font-size: 20px;
  }

  .team-values {
    grid-template-columns: 1fr;
    gap: 18px;
  }

}

.team-image img {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

/* =========================================
   BODA KAFFEE – MOBILE FIX
   ========================================= */

@media (max-width: 600px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

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

    section {
        padding: 80px 0;
    }

    /* ---------- NAVBAR ---------- */

    .navbar {
        width: 94% !important;
        top: 14px;
        padding: 12px 16px !important;
        border-radius: 50px;
    }

    .logo img {
        height: 42px;
        width: auto;
    }

    .btn-nav {
        display: flex !important;
        flex: 1 1 auto !important;
        min-width: 0;
        padding: 12px 14px !important;
        font-size: 14px;
        white-space: nowrap;
        margin-left: 10px !important;
    }

    .hamburger {
        display: flex;
        flex: 0 0 auto;
        margin-left: 12px;
    }

    .hamburger span {
        width: 25px;
    }


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

    .hero {
        min-height: 100svh;
        padding: 120px 0 60px;
    }

    .hero-content {
        width: 90%;
        max-width: 90%;
        padding: 30px 22px;
        border-radius: 24px;
    }

    .hero-badge {
        max-width: 100%;
        padding: 10px 15px;
        margin-bottom: 24px;
        font-size: 12px;
        white-space: normal;
    }

    .hero h1 {
        font-size: clamp(38px, 11vw, 52px);
        line-height: 1.05;
        letter-spacing: -1px;
        max-width: 100%;
        overflow-wrap: break-word;
        margin-bottom: 25px;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.65;
        max-width: 100%;
        margin-bottom: 25px;
    }

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

    .hero-buttons .btn-gold,
    .hero-buttons .btn-outline {
        width: 100%;
        height: 54px !important;
        min-height: 54px !important;
        max-height: 54px !important;
        padding: 0 18px !important;
        margin-top: 0 !important;
    }


    /* ---------- ALLGEMEINE ÜBERSCHRIFTEN ---------- */

    .section-title {
        width: 100%;
        max-width: 100%;
        margin-bottom: 45px;
    }

    .section-title span {
        font-size: 13px;
    }

    .section-title h2 {
        display: block;
        width: 100%;
        max-width: 100%;
        font-size: 34px;
        line-height: 1.15;
        letter-spacing: -0.5px;
        overflow-wrap: break-word;
        margin: 16px 0 28px;
    }

    .section-title p {
        font-size: 16px;
        line-height: 1.6;
    }


    /* ---------- VORTEILE ---------- */

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

    .benefit-card {
        padding: 30px 24px;
    }


    /* ---------- KAFFEE ---------- */

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

    .showcase-content h2 {
        font-size: 34px;
        line-height: 1.15;
    }

    .showcase-content p {
        font-size: 16px;
    }


    /* ---------- PROCESS ---------- */

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

    .process-card {
        width: 100%;
        padding: 30px 24px;
    }

    .process-card h3 {
        font-size: 22px;
    }


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

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

    .cta-text h2 {
        font-size: 34px;
        line-height: 1.15;
    }

}
/* =====================================
   COOKIE BANNER
===================================== */

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    padding: 15px;
    z-index: 999999;
    border-top: 1px solid rgba(212,175,55,.2);
    color: white;
}

.cookie-inner {
    max-width: 1200px;
    margin: auto;

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

    gap: 20px;
    flex-wrap: wrap;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

#cookie-accept {
    background: #d4af37;
    color: #000;
    border: none;

    padding: 10px 18px;
    border-radius: 8px;

    cursor: pointer;
    font-weight: bold;
}

#cookie-decline {
    background: #333;
    color: white;
    border: none;

    padding: 10px 18px;
    border-radius: 8px;

    cursor: pointer;
}


/* COOKIE – MOBILE */

@media (max-width: 600px) {

    .cookie-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 12px;
    }

    .cookie-buttons {
        width: 100%;
    }

    #cookie-accept,
    #cookie-decline {
        flex: 1;
    }

}
