:root{
    --ink:#102a29;
    --ink-soft:#405a58;
    --teal:#004c4d;
    --teal-deep:#003638;
    --teal-light:#dbeae5;
    --cream:#fff9f3;
    --cream-deep:#f6ecdf;
    --white:#ffffff;
    --accent:#dc7b35;
    --accent-dark:#b85d24;
    --accent-soft:#f4d4b6;
    --line:rgba(16,42,41,.14);
    --shadow:0 24px 70px rgba(29,55,51,.13);
    --shadow-soft:0 12px 40px rgba(29,55,51,.08);
    --radius-sm:16px;
    --radius-md:24px;
    --radius-lg:38px;
    --font:"Avenir Next","Segoe UI",Helvetica,Arial,sans-serif;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:110px}
body{
    margin:0;
    color:var(--ink);
    background:var(--cream);
    font-family:var(--font);
    font-size:16px;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button,input,textarea{font:inherit}
button{cursor:pointer}
p,h1,h2,h3{margin-top:0}
p{color:var(--ink-soft)}
h1,h2,h3{color:var(--ink);letter-spacing:-.035em}

.shell{width:min(1240px,calc(100% - 48px));margin:0 auto}
.section{padding:110px 0}
.skip-link{position:fixed;left:16px;top:12px;z-index:9999;padding:10px 16px;background:var(--white);border-radius:10px;transform:translateY(-160%)}
.skip-link:focus{transform:translateY(0)}

.topbar{position:relative;z-index:30;background:var(--teal-deep);color:var(--white)}
.topbar-inner{min-height:36px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.topbar p,.topbar a{margin:0;color:rgba(255,255,255,.82);font-size:.78rem;letter-spacing:.01em}
.topbar a:hover{color:var(--white)}

.site-header{
    position:sticky;
    top:0;
    z-index:25;
    background:rgba(255,249,243,.9);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid transparent;
    transition:border-color .25s ease,box-shadow .25s ease;
}
.site-header.scrolled{border-color:var(--line);box-shadow:0 8px 30px rgba(16,42,41,.08)}
.header-inner{height:86px;display:flex;align-items:center;gap:42px}
.brand{flex:0 0 auto}
.brand img{width:190px;height:auto}
.main-nav{display:flex;align-items:center;gap:30px;margin-left:auto}
.main-nav a{position:relative;color:var(--ink);font-weight:700;font-size:.96rem}
.main-nav a::after{content:"";position:absolute;left:0;right:100%;bottom:-7px;height:2px;background:var(--accent);transition:right .25s ease}
.main-nav a:hover::after{right:0}
.header-phone{display:flex;align-items:center;gap:10px;padding:9px 15px 9px 10px;background:var(--teal);color:var(--white);border-radius:999px;font-size:.9rem;font-weight:750;line-height:1.15;box-shadow:0 8px 24px rgba(0,76,77,.18);transition:transform .2s ease,background .2s ease}
.header-phone:hover{transform:translateY(-2px);background:var(--teal-deep)}
.header-phone small{display:block;margin-bottom:2px;color:rgba(255,255,255,.68);font-size:.62rem;font-weight:600;text-transform:uppercase;letter-spacing:.08em}
.phone-dot{display:grid;place-items:center;width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.13);font-size:1rem}

.button{display:inline-flex;align-items:center;justify-content:center;gap:12px;min-height:54px;padding:14px 22px;border:0;border-radius:999px;font-weight:800;line-height:1.1;transition:transform .2s ease,box-shadow .2s ease,background .2s ease}
.button:hover{transform:translateY(-3px)}
.button-primary{color:var(--white);background:linear-gradient(135deg,var(--accent),var(--accent-dark));box-shadow:0 16px 35px rgba(184,93,36,.25)}
.button-primary:hover{box-shadow:0 20px 42px rgba(184,93,36,.32)}
.button-secondary{color:var(--teal);background:rgba(255,255,255,.78);border:1px solid rgba(0,76,77,.2);box-shadow:0 10px 30px rgba(16,42,41,.05)}
.button-secondary:hover{background:var(--white);box-shadow:0 14px 34px rgba(16,42,41,.1)}
.button-on-dark{color:var(--teal-deep);background:var(--white);box-shadow:0 16px 35px rgba(0,0,0,.16)}

.hero{position:relative;padding:70px 0 0;background:radial-gradient(circle at 12% 20%,rgba(244,212,182,.62),transparent 30%),linear-gradient(180deg,#fffaf5 0%,#f9eee1 100%);overflow:hidden}
.hero-orb{position:absolute;border-radius:50%;filter:blur(2px);pointer-events:none}
.hero-orb-one{width:420px;height:420px;right:-160px;top:20px;background:rgba(0,76,77,.08)}
.hero-orb-two{width:240px;height:240px;left:-100px;bottom:80px;background:rgba(220,123,53,.09)}
.hero-grid{position:relative;z-index:2;display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);align-items:center;gap:56px}
.hero-copy{min-width:0}
.hero-copy{padding:26px 0 62px}
.eyebrow,.section-kicker{display:flex;align-items:center;gap:10px;margin:0 0 20px;color:var(--accent-dark);font-size:.78rem;font-weight:850;text-transform:uppercase;letter-spacing:.13em}
.eyebrow span{width:9px;height:9px;border-radius:50%;background:var(--accent);box-shadow:0 0 0 6px rgba(220,123,53,.13)}
.hero h1{max-width:680px;margin-bottom:28px;font-size:clamp(3.55rem,4.65vw,5.2rem);font-weight:850;line-height:.94}
.hero h1 em{position:relative;color:var(--teal);font-style:normal;white-space:normal}
.hero h1 em::after{content:"";position:absolute;z-index:-1;left:-3%;right:-2%;bottom:.03em;height:.22em;border-radius:999px;background:var(--accent-soft);transform:rotate(-1.2deg)}
.hero-lead{max-width:620px;margin-bottom:30px;font-size:1.18rem;line-height:1.68}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px}
.hero-note{margin:18px 0 0;color:#617573;font-size:.82rem;font-weight:650}
.hero-note span{color:var(--teal)}
.hero-visual{position:relative;align-self:stretch;min-width:0;min-height:570px;margin-bottom:54px}
.hero-visual::before{content:"";position:absolute;z-index:-1;inset:40px -34px -26px 65px;border-radius:44px;background:var(--teal);transform:rotate(3deg)}
.hero-visual>img{width:100%;height:100%;min-height:570px;object-fit:cover;object-position:72% center;border-radius:46px 18px 46px 18px;box-shadow:var(--shadow)}
.hero-glass-card{position:absolute;top:24px;left:24px;max-width:285px;padding:17px 20px 17px 47px;color:var(--white);background:rgba(0,54,56,.78);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);border:1px solid rgba(255,255,255,.22);border-radius:18px;box-shadow:0 18px 40px rgba(0,0,0,.18)}
.hero-glass-card .status-dot{position:absolute;left:20px;top:22px;width:10px;height:10px;border-radius:50%;background:#8ce0b3;box-shadow:0 0 0 5px rgba(140,224,179,.16)}
.hero-glass-card p{margin:0 0 2px;color:rgba(255,255,255,.7);font-size:.75rem}
.hero-glass-card strong{font-size:1rem;letter-spacing:-.01em}
.recognition-card{position:absolute;right:0;bottom:34px;display:flex;align-items:center;gap:14px;width:min(330px,78%);padding:19px;background:var(--white);border-radius:22px;box-shadow:0 24px 50px rgba(24,53,50,.2)}
.recognition-icon{display:grid;place-items:center;flex:0 0 48px;width:48px;height:48px;color:var(--white);background:var(--accent);border-radius:50%;font-size:1.2rem;font-weight:900}
.recognition-card span,.recognition-card small{display:block;color:#6e817f;font-size:.72rem}
.recognition-card strong{display:block;color:var(--teal);font-size:1.03rem;letter-spacing:-.02em}

.trust-rail{position:relative;z-index:3;display:grid;grid-template-columns:repeat(3,1fr);background:var(--white);border:1px solid rgba(16,42,41,.09);border-radius:26px 26px 0 0;box-shadow:0 -10px 40px rgba(41,62,59,.06);overflow:hidden}
.trust-item{display:flex;align-items:center;gap:17px;min-height:112px;padding:24px 28px;border-right:1px solid var(--line)}
.trust-item:last-child{border-right:0}
.trust-item p{margin:0;font-size:.85rem;line-height:1.45}
.trust-item strong{color:var(--ink);font-size:.96rem}
.trust-number,.trust-symbol{display:grid;place-items:center;flex:0 0 50px;width:50px;height:50px;border-radius:16px;background:var(--teal-light);color:var(--teal);font-size:1.05rem;font-weight:900}
.trust-symbol{font-size:1.35rem}

.intro-section{padding-bottom:70px;background:var(--white)}
.intro-grid{display:grid;grid-template-columns:1.2fr .8fr;align-items:end;gap:100px}
.section-heading h2,.emotional-copy h2,.recognition-copy h2,.faq-heading h2,.contact-copy h2{margin-bottom:0;font-size:clamp(2.65rem,3.85vw,4rem);font-weight:830;line-height:1.02}
.section-heading h2 span,.emotional-copy h2 span,.recognition-copy h2 span,.faq-heading h2 span,.contact-copy h2 span{color:var(--teal)}
.intro-copy p{margin-bottom:22px;font-size:1.06rem}
.text-link{display:inline-flex;align-items:center;gap:12px;color:var(--teal);font-weight:850;border-bottom:1px solid rgba(0,76,77,.28);padding-bottom:4px}
.text-link span{transition:transform .2s ease}
.text-link:hover span{transform:translateX(5px)}
.section-heading.centered{text-align:center;max-width:820px;margin:0 auto 58px}
.section-heading.centered .section-kicker{justify-content:center}
.section-subline{max-width:620px;margin:22px auto 0;font-size:1.05rem}

.services-section{position:relative;padding-top:80px;background:var(--white)}
.service-bento{display:grid;grid-template-columns:repeat(12,1fr);grid-auto-rows:minmax(210px,auto);gap:18px}
.service-card{position:relative;display:flex;flex-direction:column;justify-content:flex-end;grid-column:span 5;padding:32px;background:var(--cream);border:1px solid rgba(16,42,41,.1);border-radius:var(--radius-md);overflow:hidden;transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease}
.service-card:hover{transform:translateY(-6px);border-color:rgba(0,76,77,.25);box-shadow:var(--shadow-soft)}
.service-card-featured{grid-column:span 7;grid-row:span 2;min-height:535px;padding:44px;color:var(--white);background:linear-gradient(150deg,var(--teal) 0%,var(--teal-deep) 100%);border:0}
.service-card-featured::after{content:"";position:absolute;right:-90px;top:-80px;width:310px;height:310px;border-radius:50%;border:74px solid rgba(255,255,255,.06)}
.service-card-warm{background:linear-gradient(135deg,#f8e6d3,#fff8ef)}
.service-card-dark{color:var(--white);background:linear-gradient(145deg,#1c3634,#0b2928);border:0}
.service-card-wide{grid-column:span 12;min-height:240px;display:grid;grid-template-columns:110px minmax(0,1fr) 70px;align-items:center;gap:24px;padding:38px 42px;background:var(--teal-light);border-color:rgba(0,76,77,.12)}
.service-index{position:absolute;right:24px;top:20px;color:rgba(16,42,41,.22);font-size:3.1rem;font-weight:900;letter-spacing:-.08em}
.service-card-featured .service-index,.service-card-dark .service-index{color:rgba(255,255,255,.12)}
.service-icon{position:relative;display:grid;place-items:center;width:64px;height:64px;margin-bottom:38px;border-radius:20px;background:var(--white);color:var(--teal)!important;box-shadow:0 12px 30px rgba(0,0,0,.1)}
.service-icon::before,.service-icon::after{content:"";position:absolute;box-sizing:border-box}
.service-icon-home::before{left:50%;top:50%;width:21px;height:18px;border:2px solid currentColor;border-top:0;border-radius:0 0 3px 3px;transform:translate(-50%,-20%)}
.service-icon-home::after{left:50%;top:50%;width:17px;height:17px;border-top:2px solid currentColor;border-left:2px solid currentColor;border-radius:2px 0 0 0;transform:translate(-50%,-72%) rotate(45deg)}
.service-icon-shopping::before{left:50%;top:52%;width:23px;height:20px;border:2px solid currentColor;border-radius:4px 4px 6px 6px;transform:translate(-50%,-40%)}
.service-icon-shopping::after{left:50%;top:35%;width:12px;height:8px;border:2px solid currentColor;border-bottom:0;border-radius:8px 8px 0 0;transform:translate(-50%,-50%)}
.service-icon-meal::before{left:45%;top:50%;width:24px;height:24px;border:2px solid currentColor;border-radius:50%;transform:translate(-50%,-50%);box-shadow:inset 0 0 0 4px var(--teal-light)}
.service-icon-meal::after{right:16px;top:50%;width:2px;height:25px;border-radius:2px;background:currentColor;transform:translateY(-50%);box-shadow:5px 0 0 currentColor}
.service-icon-calendar::before{left:50%;top:52%;width:24px;height:22px;border:2px solid currentColor;border-radius:5px;transform:translate(-50%,-50%)}
.service-icon-calendar::after{left:50%;top:46%;width:14px;height:2px;border-radius:2px;background:currentColor;transform:translateX(-50%);box-shadow:0 6px 0 currentColor}
.service-card:not(.service-card-featured) .service-icon{width:54px;height:54px;margin-bottom:24px;background:var(--teal-light);box-shadow:none;font-size:1.45rem}
.service-card-dark .service-icon{color:var(--white);background:rgba(255,255,255,.1)}
.service-card h3{margin-bottom:13px;font-size:1.72rem;line-height:1.12}
.service-card p{margin-bottom:0}
.service-card-featured h3{max-width:580px;color:var(--white);font-size:2.4rem}
.service-card-dark h3{color:var(--white)}
.service-card-featured p,.service-card-dark p{color:rgba(255,255,255,.73)}
.service-card-featured>div:nth-last-child(2){position:relative;z-index:1}
.card-label{color:var(--accent-dark)!important;font-size:.73rem!important;font-weight:850;text-transform:uppercase;letter-spacing:.12em}
.service-card-featured .card-label,.service-card-dark .card-label{color:var(--accent-soft)!important}
.service-card-featured>a{position:relative;z-index:1;display:inline-flex;align-items:center;gap:10px;width:max-content;margin-top:30px;color:var(--white);font-weight:800;border-bottom:1px solid rgba(255,255,255,.35)}
.service-card-wide .service-index{position:static;color:var(--teal);font-size:3.8rem}
.service-card-wide h3{font-size:2rem}
.round-arrow{display:grid;place-items:center;justify-self:end;width:58px;height:58px;color:var(--white);background:var(--teal);border-radius:50%;font-size:1.5rem;transition:transform .2s ease}
.round-arrow:hover{transform:rotate(-25deg) scale(1.05)}

@media (min-width:901px){
    .service-card-featured{grid-column:1 / span 7;grid-row:1 / span 2}
    .service-card:nth-child(2){grid-column:8 / -1;grid-row:1}
    .service-card:nth-child(3){grid-column:8 / -1;grid-row:2}
    .service-card-dark{grid-column:1 / span 5;grid-row:3;min-height:250px}
    .service-card-wide{grid-column:6 / -1;grid-row:3;min-height:250px}
}

.emotional-section{background:linear-gradient(180deg,var(--white) 0%,var(--cream) 100%)}
.emotional-grid{display:grid;grid-template-columns:1.04fr .96fr;align-items:center;gap:90px}
.emotional-image{position:relative}
.emotional-image::before{content:"";position:absolute;left:-24px;bottom:-26px;width:64%;height:78%;border-radius:40px;background:var(--accent-soft);transform:rotate(-4deg)}
.emotional-image img{position:relative;z-index:1;width:100%;aspect-ratio:4/4.5;object-fit:cover;object-position:45% center;border-radius:26px 76px 26px 76px;box-shadow:var(--shadow)}
.image-quote{position:absolute;z-index:2;left:40px;right:40px;bottom:34px;padding:19px 22px;color:var(--white);background:rgba(0,54,56,.78);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border:1px solid rgba(255,255,255,.2);border-radius:18px;font-size:1rem;font-weight:750}
.emotional-copy>p:not(.section-kicker){margin:28px 0;font-size:1.07rem}
.benefit-list{display:grid;gap:4px;margin:0 0 32px;padding:0;list-style:none}
.benefit-list li{display:flex;align-items:center;gap:15px;padding:15px 0;border-bottom:1px solid var(--line)}
.benefit-list li>span{display:grid;place-items:center;flex:0 0 34px;width:34px;height:34px;color:var(--teal);background:var(--teal-light);border-radius:50%;font-weight:900}
.benefit-list strong,.benefit-list small{display:block}
.benefit-list small{color:#6e817f}

.conversion-band{padding:56px 0;background:var(--accent)}
.conversion-inner{display:flex;align-items:center;justify-content:space-between;gap:50px}
.conversion-inner .section-kicker{margin-bottom:8px;color:rgba(255,255,255,.72)}
.conversion-inner h2{max-width:700px;margin:0;color:var(--white);font-size:clamp(2rem,3.4vw,3.2rem);line-height:1.08}
.conversion-phone{display:flex;align-items:center;gap:16px;flex:0 0 auto;min-width:320px;padding:15px 22px;color:var(--teal-deep);background:var(--white);border-radius:22px;box-shadow:0 16px 35px rgba(89,46,19,.18);transition:transform .2s ease}
.conversion-phone:hover{transform:translateY(-4px)}
.conversion-phone>span{display:grid;place-items:center;width:46px;height:46px;border-radius:50%;color:var(--white);background:var(--teal)}
.conversion-phone small,.conversion-phone strong{display:block}
.conversion-phone small{color:#72807e;font-size:.71rem}
.conversion-phone strong{font-size:1.15rem}

.process-section{background:var(--cream)}
.process-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:56px}
.process-card{position:relative;min-height:245px;padding:36px 32px 32px;background:var(--white);border:1px solid rgba(16,42,41,.1);border-radius:24px;box-shadow:var(--shadow-soft)}
.process-number{display:grid;place-items:center;width:58px;height:58px;margin-bottom:54px;color:var(--white);background:var(--teal);border-radius:18px;font-size:1.35rem;font-weight:900;box-shadow:0 12px 28px rgba(0,76,77,.22)}
.process-line{position:absolute;top:63px;left:102px;width:calc(100% - 72px);height:1px;background:repeating-linear-gradient(90deg,var(--accent) 0,var(--accent) 8px,transparent 8px,transparent 15px);opacity:.65}
.process-card h3{margin-bottom:10px;font-size:1.45rem}
.process-card p{margin-bottom:0}

.recognition-section{padding-top:0;background:var(--cream)}
.recognition-grid{display:grid;grid-template-columns:1.14fr .86fr;gap:0;border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow)}
.recognition-copy{display:flex;flex-direction:column;justify-content:center;padding:76px;background:linear-gradient(145deg,var(--teal),var(--teal-deep));color:var(--white)}
.recognition-copy h2{color:var(--white)}
.recognition-copy h2 span{color:var(--accent-soft)}
.recognition-copy>p:not(.section-kicker){margin:28px 0 32px;color:rgba(255,255,255,.75);font-size:1.05rem}
.recognition-copy .button{align-self:flex-start}
.recognition-proof{position:relative;padding:64px 54px;background:linear-gradient(140deg,#f0c292,#e08a49);overflow:hidden}
.recognition-proof::after{content:"§45";position:absolute;right:-15px;bottom:-70px;color:rgba(255,255,255,.12);font-size:11rem;font-weight:900;letter-spacing:-.1em}
.proof-seal{position:relative;z-index:1;display:grid;place-items:center;width:110px;height:110px;margin-bottom:30px;color:var(--white);background:var(--teal);border:8px solid rgba(255,255,255,.42);border-radius:50%;box-shadow:0 14px 35px rgba(53,44,30,.18)}
.proof-seal span{font-size:1.8rem;font-weight:900;line-height:1}
.proof-seal small{font-size:.72rem;font-weight:800}
.recognition-proof h3,.recognition-proof p,.recognition-proof ul{position:relative;z-index:1}
.recognition-proof h3{margin-bottom:12px;font-size:1.8rem}
.recognition-proof p{color:rgba(16,42,41,.74)}
.recognition-proof ul{display:grid;gap:10px;margin:24px 0 0;padding:0;list-style:none;font-weight:750}
.recognition-proof li::before{content:"✓";margin-right:10px;color:var(--teal);font-weight:900}

.faq-section{background:var(--white)}
.faq-grid{display:grid;grid-template-columns:.78fr 1.22fr;gap:100px}
.faq-heading{position:sticky;top:130px;align-self:start}
.faq-heading>p:not(.section-kicker){margin:26px 0 20px}
.faq-list{border-top:1px solid var(--line)}
.faq-list details{border-bottom:1px solid var(--line)}
.faq-list summary{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:25px 0;color:var(--ink);font-size:1.08rem;font-weight:800;list-style:none;cursor:pointer}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary span{display:grid;place-items:center;flex:0 0 34px;width:34px;height:34px;border-radius:50%;background:var(--teal-light);color:var(--teal);font-size:1.2rem;transition:transform .25s ease,background .25s ease}
.faq-list details[open] summary span{transform:rotate(45deg);color:var(--white);background:var(--teal)}
.faq-list details p{max-width:760px;margin:-7px 58px 24px 0}

.contact-section{padding-top:20px;background:var(--white)}
.contact-panel{position:relative;display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;padding:72px;background:linear-gradient(145deg,var(--teal),var(--teal-deep));border-radius:var(--radius-lg);box-shadow:var(--shadow);overflow:hidden}
.contact-panel::before{content:"";position:absolute;width:420px;height:420px;left:-180px;bottom:-220px;border:80px solid rgba(255,255,255,.04);border-radius:50%}
.contact-copy{position:relative;z-index:1;padding-top:14px}
.contact-copy h2{color:var(--white)}
.contact-copy h2 span{color:var(--accent-soft)}
.contact-copy>p:not(.section-kicker){margin:28px 0;color:rgba(255,255,255,.73);font-size:1.05rem}
.contact-direct{margin-top:42px;padding-top:26px;border-top:1px solid rgba(255,255,255,.2)}
.contact-direct small{display:block;color:rgba(255,255,255,.6)}
.contact-direct a{color:var(--white);font-size:1.45rem;font-weight:850}
.form-card{position:relative;z-index:1;padding:32px;background:var(--white);border-radius:26px;box-shadow:0 25px 55px rgba(0,0,0,.2)}
.form-heading{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:22px;padding-bottom:18px;border-bottom:1px solid var(--line)}
.form-heading span{font-size:1.3rem;font-weight:850}
.form-heading small{color:#72807e}
form{display:grid;gap:15px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:13px}
form label{display:grid;gap:7px;color:var(--ink);font-size:.8rem;font-weight:750}
form input,form textarea{width:100%;border:1px solid rgba(16,42,41,.16);border-radius:11px;background:#fffdfa;color:var(--ink);outline:none;transition:border-color .2s ease,box-shadow .2s ease}
form input{min-height:46px;padding:9px 12px}
form textarea{min-height:110px;padding:11px 12px;resize:vertical}
form input:focus,form textarea:focus{border-color:var(--teal);box-shadow:0 0 0 4px rgba(0,76,77,.09)}
.consent{display:flex!important;grid-template-columns:none!important;align-items:flex-start;gap:9px!important;color:#60716f!important;font-size:.72rem!important;font-weight:500!important}
.consent input{flex:0 0 19px;width:19px;min-height:19px;height:19px;margin-top:2px;accent-color:var(--teal)}
.button-form{width:100%;margin-top:4px;color:var(--white);background:linear-gradient(135deg,var(--accent),var(--accent-dark));box-shadow:0 14px 30px rgba(184,93,36,.23)}
.honeypot{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.alert{padding:12px 14px;border-radius:10px;font-size:.84rem}
.alert-success{color:#194c38;background:#dff3e8}
.alert-danger{color:#8a2e22;background:#fae3df}

.site-footer{padding:74px 0 120px;color:var(--white);background:#062f30}
.footer-grid{display:grid;grid-template-columns:1.6fr 1fr .9fr .9fr;gap:60px;padding-bottom:54px;border-bottom:1px solid rgba(255,255,255,.14)}
.footer-brand img{width:180px;height:auto;margin-bottom:22px}
.site-footer p,.site-footer a{display:block;margin:0 0 6px;color:rgba(255,255,255,.66);font-size:.84rem}
.site-footer a:hover{color:var(--white)}
.footer-brand p{max-width:380px}
.site-footer .footer-label{margin-bottom:15px;color:var(--accent-soft);font-weight:800;text-transform:uppercase;letter-spacing:.1em}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;padding-top:25px}
.footer-bottom p{display:flex;flex-wrap:wrap;gap:18px;margin:0}

.mobile-cta{display:none}

.js [data-reveal]{opacity:0;transform:translateY(26px);transition:opacity .7s ease,transform .7s cubic-bezier(.22,1,.36,1)}
.js [data-reveal].revealed{opacity:1;transform:none}
.service-bento [data-reveal]:nth-child(2),.process-grid [data-reveal]:nth-child(2){transition-delay:.08s}
.service-bento [data-reveal]:nth-child(3),.process-grid [data-reveal]:nth-child(3){transition-delay:.16s}
.service-bento [data-reveal]:nth-child(4){transition-delay:.22s}

@media (max-width:1100px){
    .header-inner{gap:24px}
    .main-nav{gap:20px}
    .header-phone{font-size:.82rem}
    .hero-grid{grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:40px}
    .hero h1{font-size:clamp(3.35rem,5.4vw,4.55rem)}
    .hero-visual,.hero-visual>img{min-height:540px}
    .recognition-card{right:-10px}
    .intro-grid,.emotional-grid,.faq-grid{gap:64px}
    .recognition-copy{padding:60px}
    .contact-panel{gap:46px;padding:56px}
    .footer-grid{gap:34px}
}

@media (max-width:900px){
    html{scroll-padding-top:92px}
    .shell{width:min(100% - 36px,760px)}
    .section{padding:84px 0}
    .main-nav{display:none}
    .header-phone{margin-left:auto}
    .hero{padding-top:42px}
    .hero-grid{grid-template-columns:1fr;gap:10px}
    .hero-copy{padding-bottom:34px}
    .hero h1{max-width:760px;font-size:clamp(3.4rem,10vw,5.2rem)}
    .hero-lead{max-width:700px}
    .hero-visual{min-height:480px;margin:0 0 54px}
    .hero-visual>img{min-height:480px}
    .hero-visual::before{inset:24px -16px -18px 45px}
    .trust-rail{grid-template-columns:1fr}
    .trust-item{min-height:auto;border-right:0;border-bottom:1px solid var(--line)}
    .trust-item:last-child{border-bottom:0}
    .intro-grid,.emotional-grid,.faq-grid{grid-template-columns:1fr;gap:44px}
    .section-heading h2,.emotional-copy h2,.recognition-copy h2,.faq-heading h2,.contact-copy h2{font-size:clamp(2.55rem,7vw,3.7rem)}
    .intro-copy{max-width:680px}
    .service-bento{grid-template-columns:repeat(2,1fr);grid-auto-rows:auto}
    .service-bento .service-card,.service-bento .service-card-featured,.service-bento .service-card-wide{grid-column:span 1;grid-row:auto;min-height:330px}
    .service-card-featured{min-height:480px}
    .service-card-wide{display:flex;align-items:flex-start;gap:18px;padding:34px}
    .service-card-wide .round-arrow{margin-top:auto;align-self:flex-end}
    .emotional-image{max-width:680px}
    .emotional-image img{aspect-ratio:5/4}
    .conversion-inner{align-items:flex-start;flex-direction:column}
    .process-grid{grid-template-columns:1fr}
    .process-card{min-height:0}
    .process-number{margin-bottom:28px}
    .process-line{display:none}
    .recognition-grid{grid-template-columns:1fr}
    .recognition-proof{padding:54px}
    .faq-heading{position:static}
    .contact-panel{grid-template-columns:1fr;padding:48px}
    .contact-copy{max-width:680px}
    .footer-grid{grid-template-columns:1.5fr 1fr;row-gap:44px}
}

@media (max-width:640px){
    body{padding-bottom:76px}
    .shell{width:calc(100% - 28px)}
    .section{padding:62px 0}
    .topbar-inner{min-height:32px;justify-content:center}
    .topbar p{display:none}
    .topbar a{font-size:.72rem}
    .header-inner{height:68px;gap:10px}
    .brand img{width:132px}
    .header-phone{min-height:40px;padding:6px 11px 6px 7px;font-size:.75rem}
    .header-phone small{display:none}
    .phone-dot{width:30px;height:30px;font-size:.82rem}
    .hero{padding-top:32px}
    .hero-copy{padding:8px 0 26px}
    .eyebrow{font-size:.67rem;line-height:1.35}
    .hero h1{margin-bottom:21px;font-size:clamp(2.65rem,13vw,3.35rem);line-height:.95}
    .hero h1 em{white-space:normal}
    .hero-lead{font-size:1.03rem;line-height:1.58}
    .hero-actions{display:grid;grid-template-columns:1fr}
    .button{width:100%;min-height:52px;padding:13px 18px}
    .hero-note{font-size:.72rem;line-height:1.8}
    .hero-visual{min-height:360px;margin-top:12px;margin-bottom:36px}
    .hero-visual>img{min-height:360px;border-radius:28px 14px 28px 14px;object-position:69% center}
    .hero-visual::before{inset:20px -8px -13px 28px;border-radius:28px}
    .hero-glass-card{top:14px;left:14px;right:14px;max-width:none;padding:14px 14px 14px 42px}
    .hero-glass-card .status-dot{left:17px;top:19px}
    .recognition-card{right:10px;bottom:14px;width:calc(100% - 20px);padding:14px;border-radius:17px}
    .recognition-icon{flex-basis:42px;width:42px;height:42px}
    .recognition-card strong{font-size:.94rem}
    .trust-rail{border-radius:20px 20px 0 0}
    .trust-item{padding:17px 18px}
    .trust-item p{font-size:.8rem}
    .trust-number,.trust-symbol{flex-basis:44px;width:44px;height:44px;border-radius:14px}
    .intro-section{padding-bottom:44px}
    .intro-grid{gap:28px}
    .section-heading h2,.emotional-copy h2,.recognition-copy h2,.faq-heading h2,.contact-copy h2{font-size:clamp(2.05rem,10.5vw,2.8rem);line-height:1.04}
    .section-heading.centered{margin-bottom:38px;text-align:left}
    .section-heading.centered .section-kicker{justify-content:flex-start}
    .section-subline{margin-left:0}
    .services-section{padding-top:56px}
    .service-bento{grid-template-columns:1fr;gap:13px}
    .service-bento .service-card,.service-bento .service-card-featured,.service-bento .service-card-wide{grid-column:auto;grid-row:auto;min-height:245px;padding:26px;border-radius:20px}
    .service-bento .service-card-featured{min-height:390px}
    .service-card-featured h3{font-size:2rem}
    .service-bento .service-card-wide{min-height:280px}
    .service-card-wide .service-index{font-size:3.1rem}
    .service-card-wide h3{font-size:1.7rem}
    .service-card h3{font-size:1.55rem}
    .service-index{font-size:2.65rem}
    .emotional-grid{gap:48px}
    .emotional-image::before{left:-8px;bottom:-13px}
    .emotional-image img{aspect-ratio:4/4.6;border-radius:20px 46px 20px 46px}
    .image-quote{left:14px;right:14px;bottom:14px;padding:15px;font-size:.86rem}
    .emotional-copy>p:not(.section-kicker){margin:23px 0}
    .conversion-band{padding:42px 0}
    .conversion-inner{gap:28px}
    .conversion-phone{width:100%;min-width:0;padding:13px 16px}
    .conversion-phone strong{font-size:1.02rem}
    .process-grid{gap:14px;margin-top:38px}
    .process-card{min-height:0;padding:25px}
    .process-number{width:50px;height:50px;margin-bottom:24px}
    .recognition-copy{padding:38px 26px}
    .recognition-copy .button{width:100%}
    .recognition-proof{padding:36px 26px}
    .proof-seal{width:94px;height:94px}
    .recognition-proof::after{font-size:8rem}
    .faq-grid{gap:34px}
    .faq-list summary{padding:20px 0;font-size:.97rem;line-height:1.35}
    .faq-list details p{margin:-4px 0 20px}
    .contact-section{padding-top:0}
    .contact-panel{gap:36px;width:100%;padding:38px 20px;border-radius:0}
    .contact-copy>p:not(.section-kicker){margin:22px 0}
    .contact-direct{margin-top:28px}
    .form-card{padding:22px 17px;border-radius:20px}
    .form-heading{align-items:flex-start;flex-direction:column;gap:2px}
    .form-row{grid-template-columns:1fr}
    form input,form textarea{font-size:16px}
    .site-footer{padding:58px 0 40px}
    .footer-grid{grid-template-columns:1fr;gap:32px;padding-bottom:38px}
    .footer-bottom{align-items:flex-start;flex-direction:column;gap:12px}
    .mobile-cta{position:fixed;z-index:50;left:0;right:0;bottom:0;display:grid;grid-template-columns:1.25fr .75fr;gap:8px;padding:9px max(10px,env(safe-area-inset-right)) calc(9px + env(safe-area-inset-bottom)) max(10px,env(safe-area-inset-left));background:rgba(255,249,243,.94);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-top:1px solid var(--line);box-shadow:0 -10px 30px rgba(16,42,41,.1)}
    .mobile-cta a{min-height:50px;border-radius:999px;font-weight:850}
    .mobile-cta-call{display:flex;align-items:center;justify-content:center;gap:9px;color:var(--teal);background:var(--teal-light);font-size:.76rem;line-height:1.12}
    .mobile-cta-call>span:first-child{font-size:1rem}
    .mobile-cta-call small{display:block;color:#68817e;font-size:.58rem;text-transform:uppercase;letter-spacing:.06em}
    .mobile-cta-form{display:flex;align-items:center;justify-content:center;gap:7px;color:var(--white);background:var(--accent);font-size:.78rem}
}

@media (max-width:360px){
    .header-phone>span:last-child{font-size:0}
    .header-phone>span:last-child::after{content:"Anrufen";font-size:.72rem}
    .hero h1{font-size:2.55rem}
    .hero-lead{font-size:.97rem}
    .hero-note{font-size:.68rem}
    .hero-glass-card strong{font-size:.9rem}
    .recognition-card{gap:10px}
    .recognition-card small{font-size:.66rem}
    .service-card-featured h3{font-size:1.75rem}
    .conversion-phone{gap:11px}
}

@media (prefers-reduced-motion:reduce){
    html{scroll-behavior:auto}
    *,*::before,*::after{scroll-behavior:auto!important;transition:none!important;animation:none!important}
    .js [data-reveal]{opacity:1;transform:none}
}


/* Cookie-Consent: unverändert aus dem VELUNO-LP-System übernommen. */

#cb-overlay .cb-headline {
    font-size: 1.55em !important;
    font-weight: 700 !important;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0 0 6px;
    line-height: 1.25;
}

@media (max-width: 680px) {
    #cb-overlay .cb-actions {
        min-width: 0;
        width: 100%;
        margin-left: 0;
        padding: 0;
    }
}

/* ---- Global default for --cb-bg (used by #cb-snack outside overlay) ---- */

:root {
    --cb-bg: rgba(14, 13, 12, 0.97);
}

/* ---- Overlay ---- */

#cb-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999 !important;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    --cb-bg: rgba(14, 13, 12, 0.97);
    --cb-blur: 14px;
    --cb-darken: transparent;
    --cb-darken-opacity: 0;
}

#cb-overlay.cb-active {
    pointer-events: all;
}

#cb-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, var(--cb-darken, transparent) 100%);
    backdrop-filter: blur(var(--cb-blur, 14px));
    -webkit-backdrop-filter: blur(var(--cb-blur, 14px));
    opacity: 0;
    transition: opacity 0.6s ease;
}

#cb-overlay.cb-active::before {
    opacity: 1;
}

/* ---- Banner ---- */

#cb-banner {
    position: relative;
    z-index: 1;
    pointer-events: all;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 24px;
    padding: 0 16px;
    transform: translateY(24px);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease;
}

#cb-overlay.cb-active #cb-banner {
    transform: translateY(0);
    opacity: 1;
}

/* Banner inherits font and size settings */

#cb-overlay,
#cb-overlay * {
    font-family: inherit !important;
    color: #ffffff !important;
}

#cb-overlay .cb-prefs-panel * {
    font-size: inherit;
}

#cb-overlay {
    font-size: 14px;
}

#cb-overlay .cb-inner {
    background: var(--cb-bg, rgba(14, 13, 12, 0.97)) !important;
    padding: 12px 0 12px 32px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0;
    align-items: center;
}

#cb-overlay .cb-inner::before {
    display: none;
}

/* ---- Text ---- */

#cb-overlay .cb-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 4px;
}

#cb-overlay .cb-headline {
    font-size: 1.55em;
    font-weight: 300;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0 0 6px;
    line-height: 1.25;
}

#cb-overlay .cb-body {
    font-size: inherit;
    font-weight: 300;
    line-height: 1.45;
    color: #ffffff;
    margin: 0;
    max-width: 680px;
}

#cb-overlay .cb-body a {
    color: #ffffff !important;
    font-size: inherit !important;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    transition: border-color 0.2s;
}

#cb-overlay .cb-body a:hover {
    border-color: #ffffff;
    color: rgba(255, 255, 255, 0.6) !important;
}

/* ---- Buttons ---- */

#cb-overlay .cb-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    min-width: 220px;
    padding: 12px 32px;
    margin-left: 16px;
}

#cb-overlay .cb-btn {
    display: block;
    width: 100%;
    padding: 16px 36px;
    font-size: 11px;
    font-family: inherit;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.08s ease;
    text-align: center;
    box-sizing: border-box;
    line-height: normal;
    -webkit-appearance: none;
    appearance: none;
}

#cb-overlay .cb-btn-accept {
    background: #ffffff !important;
    color: #0c0c0c !important;
    border-color: #ffffff !important;
}

#cb-overlay .cb-btn-accept:hover {
    background: #2d6a2d !important;
    border-color: #2d6a2d !important;
    color: #0c0c0c !important;
}

#cb-overlay .cb-btn-reject {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

#cb-overlay .cb-btn-reject:hover {
    background: #720510 !important;
    color: #ffffff !important;
    border-color: #720510 !important;
}

#cb-overlay .cb-btn-customize {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

#cb-overlay .cb-btn-customize:hover {
    background: transparent !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.9);
}

/* ---- Hidden state ---- */

#cb-overlay.cb-hidden {
    pointer-events: none !important;
    touch-action: none !important;
}

#cb-overlay.cb-hidden * {
    pointer-events: none !important;
    touch-action: none !important;
}

#cb-overlay.cb-active::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    cursor: default;
}

#cb-overlay.cb-active #cb-banner {
    pointer-events: all;
}

#cb-overlay.cb-hidden::before {
    opacity: 0;
}

#cb-overlay.cb-hidden #cb-banner {
    transform: translateY(32px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.7, 0, 1, 1), opacity 0.4s ease;
}

/* ---- Snackbar ---- */

#cb-snack {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    z-index: 100000;
    background: var(--cb-bg, rgba(14, 13, 12, 0.97));
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    pointer-events: none;
    touch-action: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    white-space: nowrap;
    max-width: calc(100vw - 32px);
}

@media (max-width: 520px) {
    #cb-snack {
        white-space: normal;
        flex-wrap: wrap;
        left: 50%;
        transform: translateX(-50%) translateY(12px);
        bottom: 16px;
        width: calc(100% - 32px);
    }

    #cb-snack.cb-visible {
        transform: translateX(-50%) translateY(0);
    }

    #cb-snack-text {
        flex: 1;
        min-width: 0;
    }
}

#cb-snack.cb-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: none;
    touch-action: none;
}

#cb-snack.cb-visible #cb-snack-reset {
    pointer-events: all;
    touch-action: auto;
}

#cb-snack-indicator {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #7eb87e;
    flex-shrink: 0;
}

#cb-snack-indicator.rejected {
    background: #c47a7a;
}

#cb-snack-indicator.custom {
    background: #7ab4c4;
}

#cb-snack-text {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
}

#cb-snack-reset {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    padding: 0;
    margin-left: 6px;
    transition: color 0.2s;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 255, 255, 0.35);
}

#cb-snack-reset:hover {
    color: #ffffff;
    text-decoration-color: #ffffff;
}

/* ---- Blocked external content ---- */

.cb-blocked {
    background: var(--cb-bg, rgba(14, 13, 12, 0.97));
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
    gap: 16px;
    min-height: 200px;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
}

.cb-blocked-label {
    font-size: inherit;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
}

.cb-blocked-hint {
    font-size: inherit;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
    max-width: 320px;
    line-height: 1.6;
}

.cb-blocked-unlock {
    margin-top: 8px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-size: inherit;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.cb-blocked-unlock:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

.cb-blocked-small {
    display: inline-flex;
    align-items: center;
    background: var(--cb-bg, rgba(14, 13, 12, 0.97));
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 14px;
    gap: 8px;
}

.cb-blocked-hint-small {
    font-size: inherit;
    font-weight: 400;
    letter-spacing: 1px;
    color: #ffffff;
    white-space: nowrap;
}

.cb-blocked-unlock-inline {
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    color: #ffffff;
    font-size: inherit;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s;
}

.cb-blocked-unlock-inline:hover {
    border-color: #ffffff;
}

/* ---- Responsive ---- */

@media (max-width: 680px) {
    #cb-overlay .cb-inner {
        grid-template-columns: 1fr;
        padding: 24px 28px;
        gap: 24px;
    }

    #cb-overlay .cb-actions {
        flex-direction: row;
        min-width: 0;
        width: 100%;
        margin-left: 0;
        padding: 0;
    }

    #cb-overlay .cb-btn {
        flex: 1;
        padding: 12px 8px;
        font-size: 10px;
        letter-spacing: 2px;
    }

    #cb-banner {
        margin-bottom: 16px;
        padding: 0 16px;
    }
}

/* ---- Preferences Panel ---- */

#cb-overlay .cb-prefs-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: max-height 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease 0.05s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#cb-overlay .cb-prefs-panel.cb-prefs-open {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
}

#cb-overlay .cb-prefs-inner {
    padding: 32px 32px 12px;
    background: var(--cb-bg, rgba(14, 13, 12, 0.97)) !important;
}

#cb-overlay .cb-prefs-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 10px;
}

#cb-overlay .cb-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#cb-overlay .cb-toggle-row:last-of-type {
    border-bottom: none;
}

#cb-overlay .cb-toggle-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

#cb-overlay .cb-toggle-label {
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

#cb-overlay .cb-toggle-desc {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}

/* Toggle Switch */

#cb-overlay .cb-toggle {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    flex-shrink: 0;
    cursor: pointer;
}

#cb-overlay .cb-toggle-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

#cb-overlay .cb-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

#cb-overlay .cb-toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 22px;
    transition: background 0.3s ease;
}

#cb-overlay .cb-toggle-slider::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    left: 3px;
    top: 3px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

#cb-overlay .cb-toggle input:checked+.cb-toggle-slider {
    background: #e8e3dc;
}

#cb-overlay .cb-toggle input:checked+.cb-toggle-slider::before {
    transform: translateX(18px);
    background: #0c0c0c;
}

/* Save Button */

#cb-overlay .cb-btn-save {
    margin-top: 20px;
    display: block;
    width: 100%;
    padding: 16px 36px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff !important;
    font-size: 11px !important;
    font-family: inherit !important;
    font-weight: 500 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    line-height: normal !important;
    -webkit-appearance: none;
    appearance: none;
}

#cb-overlay .cb-btn-save:hover {
    border-color: rgba(255, 255, 255, 0.9) !important;
    color: #ffffff !important;
    background: transparent !important;
}

@media (max-width: 680px) {
    #cb-overlay .cb-prefs-panel {
        position: fixed;
        bottom: 16px;
        left: 16px;
        right: 16px;
        max-height: 100vh;
        max-height: 100svh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: var(--cb-bg, rgba(14, 13, 12, 0.97));
        opacity: 0;
        transform: translateY(16px);
        pointer-events: none;
        z-index: 100000;
        transition: opacity 0.5s ease 0.05s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    #cb-overlay .cb-prefs-panel.cb-prefs-open {
        max-height: 100vh;
        max-height: 100svh;
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }

    #cb-overlay .cb-prefs-inner {
        padding: 32px 28px 24px;
        background: var(--cb-bg, rgba(14, 13, 12, 0.97)) !important;
    }

    #cb-overlay .cb-btn-save {
        padding: 12px 8px;
        font-size: 10px !important;
        letter-spacing: 2px !important;
    }

    #cb-overlay .cb-toggle-label {
        font-size: 10px !important;
        letter-spacing: 2px !important;
    }

    #cb-overlay .cb-toggle-row {
        gap: 16px;
    }
}

/* AlltagsEngel: lange deutsche Consent-Buttons auf kleinen Displays stapeln. */
@media (max-width: 520px) {
    #cb-overlay .cb-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    #cb-overlay .cb-btn {
        min-width: 0;
    }
}
