/* =====================================================
   Kfz-Meisterbetrieb Jung — Onepager
   Premium / Agency-style
   ===================================================== */

:root {
    /* === Brand (aus Logo) === */
    --c-primary:        #246E92;
    --c-primary-dark:   #1B5673;
    --c-primary-light:  #3489B5;
    --c-secondary:      #465359;       /* Anthrazit aus Logo */
    --c-secondary-dark: #353F44;
    --c-secondary-deep: #232A2E;
    --c-secondary-soft: #5A676E;

    /* === Accent (Logo-Blau, leuchtendere Variante) === */
    --c-accent:         #2D8DBA;       /* helleres Logo-Blau für CTAs */
    --c-accent-dark:    #246E92;       /* exaktes Logo-Blau für Hover */
    --c-accent-soft:    #E6F2F8;       /* sehr helles Blau für Icon-Hintergründe */

    /* === Neutrals === */
    --c-text:           #4A5663;
    --c-text-dim:       #7A8693;
    --c-bg:             #FFFFFF;
    --c-bg-soft:        #F5F7F9;
    --c-bg-cream:       #F3EFE9;
    --c-border:         #E5EAEE;
    --c-line:           #D9DFE5;

    /* === Status === */
    --c-success: #2F8F4F;
    --c-error:   #C0392B;
    --c-star:    #F4B400;

    /* === Type === */
    --f-display: 'Space Grotesk', 'Inter', sans-serif;
    --f-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* === Radius === */
    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-xl: 28px;

    /* === Shadows === */
    --sh-xs: 0 1px 2px rgba(35, 42, 46, 0.06);
    --sh-sm: 0 4px 14px rgba(35, 42, 46, 0.07);
    --sh-md: 0 14px 36px rgba(35, 42, 46, 0.10);
    --sh-lg: 0 28px 70px rgba(35, 42, 46, 0.18);
    --sh-glow: 0 12px 32px rgba(45, 141, 186, 0.32);

    --easing: cubic-bezier(.4, 0, .2, 1);
    --t-fast: .2s var(--easing);
    --t: .35s var(--easing);
    --t-slow: .6s var(--easing);
}

/* ====================== RESET ====================== */
*, *::before, *::after { box-sizing: border-box; }
::selection { background: var(--c-accent); color: #fff; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--f-body);
    color: var(--c-text);
    line-height: 1.7;
    font-size: 16px;
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a {
    color: var(--c-primary);
    text-decoration: none;
    transition: var(--t);
}
a:hover { color: var(--c-primary-dark); }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; }

h1, h2, h3, h4 {
    font-family: var(--f-display);
    font-weight: 700;
    color: var(--c-secondary-dark);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0 0 .55em;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.2rem; font-weight: 600; }

.display { font-family: var(--f-display); }
.display em {
    font-style: italic;
    font-weight: 500;
    color: var(--c-text-dim);
}
.accent { color: var(--c-accent); }

p { margin: 0 0 1em; }

/* ====================== CONTAINER ====================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ====================== ICONS ====================== */
.svg-icon { width: 24px; height: 24px; flex-shrink: 0; display: inline-block; vertical-align: middle; }
.btn-icon { width: 18px; height: 18px; }
.check-icon { width: 22px; height: 22px; color: var(--c-accent); }
.star-icon { width: 18px; height: 18px; color: var(--c-star); fill: var(--c-star); stroke: none; }
.service-arrow { width: 14px; height: 14px; }

/* ====================== EYEBROW ====================== */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 18px;
}
.eyebrow span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--c-accent-soft);
    color: var(--c-accent);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 0;
}
.eyebrow--on-dark { color: #fff; }
.eyebrow--on-dark span {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* ====================== LEAD ====================== */
.lead {
    font-size: 1.15rem;
    color: var(--c-text);
    margin-bottom: 1.4em;
    max-width: 560px;
}
.lead--light { color: rgba(255,255,255,0.8); }

/* ====================== BUTTONS ====================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--t);
    text-align: center;
    line-height: 1;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--c-accent-dark) 0%, var(--c-accent) 100%);
    transform: translateX(-101%);
    transition: transform .4s var(--easing);
    z-index: -1;
}
.btn--accent {
    background: var(--c-accent);
    color: #fff;
    border-color: var(--c-accent);
    box-shadow: var(--sh-glow);
}
.btn--accent:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(45, 141, 186,0.45);
}
.btn--accent:hover::before { transform: translateX(0); }
.btn--ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.btn--ghost-light:hover {
    background: #fff;
    color: var(--c-secondary-dark);
    border-color: #fff;
    transform: translateY(-3px);
}
.btn--full { width: 100%; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--c-accent);
    font-weight: 600;
    font-family: var(--f-display);
    font-size: .95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.link-arrow .btn-icon { transition: var(--t); }
.link-arrow:hover { color: var(--c-accent-dark); }
.link-arrow:hover .btn-icon { transform: translateX(6px); }

/* ====================== TOPBAR ====================== */
.topbar {
    background: var(--c-secondary-dark);
    color: rgba(255,255,255,0.85);
    font-size: .85rem;
    padding: 10px 0;
    border-bottom: 2px solid var(--c-accent);
}
.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 32px;
}
.topbar__item, .topbar__phone { color: rgba(255,255,255,0.85); }
.topbar__phone {
    color: #fff;
    font-weight: 600;
    transition: var(--t);
}
.topbar__phone:hover { color: var(--c-accent); }

/* ====================== HEADER ====================== */
.header {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: transform .35s var(--easing), box-shadow .25s var(--easing), background-color .25s var(--easing);
    border-bottom: 1px solid var(--c-border);
    will-change: transform;
}
.header.is-scrolled {
    box-shadow: var(--sh-sm);
}
.header.is-hidden {
    transform: translateY(-100%);
}
.header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 14px 24px;
    gap: 24px;
}
.header__logo {
    display: block;
    line-height: 0;
    transition: var(--t);
    justify-self: start;
}
.nav { justify-self: center; }
.header__cta { justify-self: end; }
.nav__list-cta { display: none; }
.header__logo img {
    height: 70px;
    width: auto;
    transition: var(--t);
}
.header.is-scrolled .header__logo img { height: 56px; }

.nav__list {
    display: flex;
    gap: 4px;
    align-items: center;
}
.nav__list > li > a {
    display: inline-block;
    padding: 12px 18px;
    color: var(--c-secondary-dark);
    font-weight: 500;
    font-size: .95rem;
    border-radius: var(--r-sm);
    position: relative;
}
.nav__list > li > a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--c-accent);
    transition: transform var(--t);
    transform-origin: center;
}
.nav__list > li > a:hover {
    color: var(--c-accent);
}
.nav__list > li > a:hover::after { transform: translateX(-50%) scaleX(1); }
.nav__cta {
    background: var(--c-accent-dark);
    color: #fff !important;
    padding: 14px 22px !important;
    border-radius: 100px !important;
    box-shadow: var(--sh-glow);
    transition: var(--t);
}
.nav__cta::after { display: none; }
.nav__cta:hover {
    background: var(--c-accent-dark) !important;
    transform: translateY(-2px);
}

/* Hamburger */
.header__toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}
.header__toggle span {
    width: 26px;
    height: 3px;
    background: var(--c-secondary-dark);
    border-radius: 2px;
    transition: var(--t);
}
.header__toggle.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header__toggle.is-active span:nth-child(2) { opacity: 0; }
.header__toggle.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ====================== REVEAL ANIMATIONS ====================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .9s var(--easing), transform .9s var(--easing);
    transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ====================== HERO ====================== */
.hero {
    position: relative;
    min-height: calc(100vh - 175px); /* abzüglich Topbar (45px) + Header (130px) */
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: var(--c-secondary-dark);
    padding: 50px 0 70px;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__bg img,
.hero__bg .hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    opacity: .75;
}
.hero__bg img {
    animation: heroKenburns 24s var(--easing) infinite alternate;
    transition: opacity .6s var(--easing);
}
.hero__bg img.is-fading { opacity: 0; }
.hero__bg .hero__video {
    opacity: 0;
    transition: opacity .8s var(--easing);
}
.hero__bg .hero__video.is-ready { opacity: .85; }

/* Animationen auf Mobile abschalten — sparen CPU */
@media (max-width: 820px) {
    .hero__bg img { animation: none; transform: scale(1); }
    .hero__logo-card::before { animation: none; }
}
@keyframes heroKenburns {
    from { transform: scale(1.05) translateY(0); }
    to   { transform: scale(1.12) translateY(-3%); }
}
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 80% 60% at 75% 30%, rgba(36,110,146,0.18) 0%, transparent 70%),
        linear-gradient(100deg, rgba(53,63,68,0.72) 0%, rgba(53,63,68,0.40) 55%, rgba(36,110,146,0.20) 100%);
}
.hero__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(40px);
}
.hero__glow--1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(45, 141, 186,0.30) 0%, transparent 70%);
    top: -200px; right: -150px;
}
.hero__glow--2 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(36,110,146,0.35) 0%, transparent 70%);
    bottom: -300px; left: -200px;
}

.hero__container {
    position: relative;
    z-index: 3;
    width: 100%;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
.hero__text {
    max-width: 820px;
}

.hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    font-family: var(--f-display);
    font-weight: 500;
    font-size: .82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    margin-bottom: 28px;
}
.hero__chip-dot {
    width: 8px; height: 8px;
    background: var(--c-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(45, 141, 186,0.25);
    animation: pulse-dot 2s var(--easing) infinite;
}
@keyframes pulse-dot {
    50% { box-shadow: 0 0 0 8px rgba(45, 141, 186,0); }
}

.hero__title {
    color: #fff;
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: -0.035em;
    font-size: clamp(2.2rem, 5.4vw, 4.6rem);
    white-space: nowrap;
}
.hero__title-line {
    display: inline;
}
.hero__title-line + .hero__title-line { margin-left: .25em; }
.hero__title em {
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    font-family: var(--f-display);
}
.hero__title-accent {
    color: var(--c-accent);
    position: relative;
    display: inline-block;
}

.hero__lead {
    font-size: 1.15rem;
    max-width: 560px;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
}
.hero__buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.hero__logo-card {
    background: #fff;
    padding: 36px 32px 26px;
    border-radius: var(--r-xl);
    box-shadow: 0 40px 90px rgba(0,0,0,0.45);
    position: relative;
    width: 100%;
    max-width: 430px;
    text-align: center;
    transform: rotate(-2deg);
    transition: var(--t);
}
.hero__logo-card:hover { transform: rotate(0) translateY(-4px); }
.hero__logo-card::before {
    content: '';
    position: absolute;
    inset: -14px;
    border: 1.5px dashed rgba(255,255,255,0.25);
    border-radius: calc(var(--r-xl) + 14px);
    pointer-events: none;
    animation: spin 120s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero__logo-card::after {
    content: '';
    position: absolute;
    top: -28px;
    right: -28px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%);
    border-radius: 50%;
    box-shadow: 0 14px 32px rgba(45, 141, 186,0.45);
    z-index: -1;
}
.hero__logo-img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    margin: 0 auto;
}
.hero__logo-row {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.hero__logo-row > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.hero__logo-sep {
    width: 1px;
    align-self: stretch;
    background: var(--c-border);
    flex: none !important;
}
.hero__logo-num {
    font-family: var(--f-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--c-accent);
    letter-spacing: -0.03em;
    line-height: 1;
}
.hero__logo-iconlg {
    width: 36px;
    height: 36px;
    color: var(--c-primary);
}
.hero__logo-cap {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--c-secondary);
}

/* ====================== MARQUEE ====================== */
.marquee {
    background: var(--c-secondary-dark);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    padding: 22px 0;
    color: #fff;
}
.marquee__track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    padding: 0 28px;
    font-family: var(--f-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.marquee__sep {
    color: var(--c-accent);
    font-size: 1rem;
}

/* ====================== SECTION ====================== */
.section {
    padding: 120px 0;
    position: relative;
}
.section--alt { background: var(--c-bg-soft); }
.section--dark {
    background: linear-gradient(135deg, var(--c-secondary) 0%, var(--c-secondary-dark) 100%);
    color: rgba(255,255,255,0.85);
    position: relative;
    overflow: hidden;
}
.section--dark::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(36,110,146,0.22) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}
.section--dark::after {
    content: '';
    position: absolute;
    bottom: -300px; left: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(45, 141, 186,0.10) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .container { position: relative; z-index: 1; }
.section__title-light { color: #fff; }

.section__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 72px;
}
.section__head--split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: end;
    text-align: left;
    max-width: none;
    margin-bottom: 72px;
}
.section__head--split h2 { margin-bottom: 0; }
.section__head-lead {
    color: var(--c-text-dim);
    font-size: 1.05rem;
    margin: 0;
    padding-bottom: 8px;
}

/* Decorative oversized text behind section */
.section__deco-text {
    position: absolute;
    top: 40px;
    right: -40px;
    font-family: var(--f-display);
    font-size: clamp(8rem, 18vw, 18rem);
    font-weight: 700;
    color: rgba(36, 110, 146, 0.04);
    letter-spacing: -0.05em;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
}
.section__deco-text--light {
    color: rgba(255,255,255,0.04);
    right: -60px;
    top: 60px;
}

/* ====================== ABOUT ====================== */
.about-sec { overflow: hidden; }
.about {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.about__gallery {
    position: relative;
    aspect-ratio: 4/5;
    min-height: 560px;
}
.about__pic {
    position: absolute;
    margin: 0;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-lg);
}
.about__pic img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--t-slow);
}
.about__pic:hover img { transform: scale(1.05); }
.about__pic--main {
    inset: 60px 60px 0 0;
}
.about__pic--top {
    width: 55%;
    aspect-ratio: 1;
    top: 0;
    right: 0;
    z-index: 2;
    border: 8px solid #fff;
}
.about__pic--side {
    width: 45%;
    aspect-ratio: 3/4;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 8px solid #fff;
}
.about__badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--c-accent);
    color: #fff;
    padding: 28px 32px;
    border-radius: var(--r-md);
    box-shadow: var(--sh-lg);
    z-index: 3;
    text-align: center;
    transform: rotate(-3deg);
}
.about__badge-num {
    font-family: var(--f-display);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}
.about__badge-lbl {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 6px;
    line-height: 1.3;
}

.about__list {
    margin: 28px 0 36px;
    display: grid;
    gap: 14px;
}
.about__list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--c-secondary-dark);
    font-weight: 500;
    font-size: 1rem;
}

/* ====================== STATS ====================== */
.stats {
    background: var(--c-accent);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.stats::before, .stats::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    filter: blur(20px);
}
.stats::before { top: -200px; left: -100px; }
.stats::after  { bottom: -200px; right: -100px; }
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}
.stat {
    text-align: center;
    padding: 0 24px;
    border-right: 1px solid rgba(255,255,255,0.18);
}
.stat:last-child { border-right: 0; }
.stat__number {
    font-family: var(--f-display);
    font-size: clamp(3rem, 5vw, 4.4rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.04em;
}
.stat__label {
    font-size: .9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: .92;
}

/* ====================== SERVICES ====================== */
.services-sec {
    background: var(--c-bg-cream);
    position: relative;
    overflow: hidden;
}
.services-sec::before {
    content: '';
    position: absolute;
    top: 100px; left: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(36,110,146,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}
.service {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 40px 28px 32px;
    transition: var(--t);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service:hover {
    background: var(--c-secondary-dark);
    border-color: var(--c-secondary-dark);
    transform: translateY(-8px);
    box-shadow: var(--sh-lg);
}
.service:hover h3 { color: #fff; }
.service:hover p { color: rgba(255,255,255,0.7); }
.service:hover .service__hint { color: var(--c-accent); }
.service__head {
    display: contents; /* auf Desktop sind die Kinder direkt in .service */
}
.service__toggle {
    display: none; /* nur Mobile */
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
    color: var(--c-secondary-dark);
}
.service__toggle-icon {
    width: 24px;
    height: 24px;
    fill: none;
    transition: transform var(--t);
}
.service__body {
    display: contents;
}
.service__icon {
    width: 64px; height: 64px;
    background: var(--c-accent);
    color: #fff;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow: var(--sh-glow);
    transition: var(--t);
}
.service__icon .svg-icon { width: 30px; height: 30px; }
.service:hover .service__icon { transform: rotate(-6deg) scale(1.05); }
.service h3 {
    color: var(--c-secondary-dark);
    margin-bottom: 12px;
    font-size: 1.15rem;
    transition: var(--t);
}
.service p {
    color: var(--c-text-dim);
    font-size: .92rem;
    margin-bottom: 0;
    line-height: 1.65;
    min-height: 80px;
    transition: var(--t);
    flex: 1;
}
.service__hint {
    color: var(--c-secondary-dark);
    font-weight: 600;
    font-family: var(--f-display);
    font-size: .8rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--t);
    margin-top: 24px;
}

/* ====================== PROCESS ====================== */
.process-sec { background: #fff; }
.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}
.process::before {
    content: '';
    position: absolute;
    top: 110px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--c-line) 20%, var(--c-line) 80%, transparent 100%);
    z-index: 0;
}
.process__step {
    position: relative;
    z-index: 1;
}
.process__img {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 28px;
}
.process__img::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px dashed var(--c-line);
    border-radius: 50%;
    pointer-events: none;
}
.process__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #fff;
    box-shadow: var(--sh-md);
    transition: var(--t-slow);
    display: block;
}
.process__step:hover .process__img img { transform: scale(1.08); }
.process__num {
    position: absolute;
    bottom: -16px;
    right: 20px;
    width: 52px; height: 52px;
    background: var(--c-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--sh-glow);
}
.process__step h3 {
    text-align: center;
    margin-bottom: 12px;
    color: var(--c-secondary-dark);
}
.process__step p {
    text-align: center;
    color: var(--c-text-dim);
    font-size: .95rem;
    max-width: 280px;
    margin: 0 auto;
}

/* ====================== WHY US ====================== */
.why-sec { overflow: hidden; }
.why {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why__list {
    margin-top: 32px;
    display: grid;
    gap: 28px;
}
.why__item {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 20px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-md);
    transition: var(--t);
}
.why__item:hover {
    background: rgba(255,255,255,0.07);
    transform: translateX(8px);
}
.why__icon {
    width: 56px; height: 56px;
    flex-shrink: 0;
    background: var(--c-accent);
    color: #fff;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t);
}
.why__icon .svg-icon { width: 28px; height: 28px; }
.why__item:hover .why__icon { transform: rotate(-8deg); }
.why__item h3 {
    margin-bottom: 6px;
    color: #fff;
    font-size: 1.1rem;
}
.why__item p {
    margin: 0;
    color: rgba(255,255,255,0.75);
    font-size: .95rem;
    line-height: 1.65;
}
.why__visual {
    position: relative;
    height: 600px;
}
.why__pic { position: absolute; margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); }
.why__pic img { width: 100%; height: 100%; object-fit: cover; transition: var(--t-slow); }
.why__pic:hover img { transform: scale(1.06); }
.why__pic--main {
    width: 75%; height: 75%;
    top: 0; right: 0;
    border: 8px solid rgba(255,255,255,0.06);
}
.why__pic--small {
    width: 50%; height: 45%;
    bottom: 0; left: 0;
    z-index: 2;
    border: 8px solid var(--c-secondary-dark);
}

/* ====================== GALLERY ====================== */
.gallery-sec { background: var(--c-bg-soft); }
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}
.gallery__item {
    margin: 0;
    border-radius: var(--r-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--sh-sm);
}
.gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s var(--easing);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(35,42,46,0.7) 0%, transparent 50%);
    opacity: 0;
    transition: var(--t);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item figcaption {
    position: absolute;
    bottom: 16px;
    left: 20px;
    color: #fff;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--t);
    z-index: 1;
}
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }

/* ====================== CTA BAND ====================== */
.cta-band {
    position: relative;
    padding: 120px 0;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(135deg, var(--c-secondary-dark) 0%, var(--c-primary) 100%);
}
.cta-band__media {
    position: absolute;
    inset: 0;
    background: url('../img/cta.webp') center/cover no-repeat fixed;
    z-index: 0;
    opacity: .2;
}
.cta-band__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(53,63,68,0.95) 0%, rgba(36,110,146,0.85) 100%);
    z-index: 1;
}
.cta-band__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.cta-band__content .eyebrow { justify-content: center; }
.cta-band h2 { color: #fff; margin-bottom: 22px; }
.cta-band p { font-size: 1.15rem; opacity: .9; margin-bottom: 38px; }
.cta-band__buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ====================== TESTIMONIALS ====================== */
.testi-sec { background: var(--c-bg); }
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 38px 32px;
    transition: var(--t);
    position: relative;
    display: flex;
    flex-direction: column;
}
.testimonial::before {
    content: '"';
    position: absolute;
    top: 8px;
    right: 28px;
    font-size: 6rem;
    line-height: 1;
    color: var(--c-accent);
    opacity: .12;
    font-family: Georgia, serif;
}
.testimonial:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-md);
    border-color: var(--c-accent);
}
.testimonial__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}
.testimonial__text {
    color: var(--c-secondary-dark);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 28px;
}
.testimonial__author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 22px;
    margin-top: auto;
    border-top: 1px solid var(--c-border);
}
.testimonial__avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-secondary) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 1.2rem;
}
.testimonial__author strong {
    display: block;
    color: var(--c-secondary-dark);
    font-size: .95rem;
}
.testimonial__author span {
    color: var(--c-text-dim);
    font-size: .85rem;
}

/* ====================== CONTACT ====================== */
.contact {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.contact__list {
    margin-top: 36px;
    display: grid;
    gap: 24px;
}
.contact__list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.contact__icon {
    flex-shrink: 0;
    width: 56px; height: 56px;
    background: var(--c-accent);
    color: #fff;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sh-glow);
}
.contact__icon .svg-icon { width: 22px; height: 22px; }
.contact__list strong {
    display: block;
    color: var(--c-secondary-dark);
    margin-bottom: 4px;
    font-size: 1.02rem;
    font-family: var(--f-display);
}

/* Kontakt-Section auf dunklem Grund */
.contact-sec .contact__info p,
.contact-sec .contact__list li > div {
    color: rgba(255,255,255,0.78);
}
.contact-sec .contact__list strong {
    color: #fff;
}
.contact-sec .contact__list a {
    color: rgba(255,255,255,0.92);
}
.contact-sec .contact__list a:hover {
    color: var(--c-accent);
}

.contact__form {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 48px 44px;
    box-shadow: var(--sh-md);
    border: 1px solid var(--c-border);
}
.contact__form h3 {
    margin-bottom: 28px;
    font-size: 1.6rem;
    color: var(--c-secondary-dark);
}
.form-row { margin-bottom: 22px; position: relative; }
.form-row--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.form-row--check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: .9rem;
    color: var(--c-text-dim);
}
.form-row--check input { margin-top: 4px; flex-shrink: 0; }
.form-row label {
    display: block;
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: 8px;
    color: var(--c-secondary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-sm);
    font-family: inherit;
    font-size: .95rem;
    color: var(--c-secondary-dark);
    background: var(--c-bg-soft);
    transition: var(--t);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--c-accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(45, 141, 186,0.1);
}
.form-row textarea { resize: vertical; min-height: 130px; }
.form-honey { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-status {
    margin: 18px 0 0;
    padding: 14px;
    border-radius: var(--r-sm);
    text-align: center;
    font-weight: 500;
    font-size: .95rem;
    display: none;
}
.form-status.is-success {
    display: block;
    background: rgba(47,143,79,0.1);
    color: var(--c-success);
    border: 1px solid rgba(47,143,79,0.3);
}
.form-status.is-error {
    display: block;
    background: rgba(192,57,43,0.1);
    color: var(--c-error);
    border: 1px solid rgba(192,57,43,0.3);
}

/* ====================== LEGAL ====================== */
.legal-page { padding: 70px 0 100px; }
.legal-page h1 { font-size: 2.6rem; margin-bottom: 12px; }
.legal-page h2 { font-size: 1.5rem; margin-top: 48px; }
.legal-page h3 { font-size: 1.1rem; margin-top: 28px; }
.legal-page .container { max-width: 880px; }
.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    font-weight: 600;
    color: var(--c-accent);
}
.placeholder {
    background: #FFF6D6;
    border: 1px dashed #D7B948;
    padding: 4px 10px;
    border-radius: 4px;
    color: #6A5300;
    font-weight: 500;
    font-size: .9em;
}

/* ====================== FOOTER ====================== */
.footer {
    background: var(--c-bg-soft);
    color: var(--c-text);
    padding-top: 90px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--c-border);
}
.footer::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(45, 141, 186, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    position: relative;
}
.footer__logo {
    height: 110px;
    width: auto;
    margin-bottom: 20px;
    margin-left: -10px; /* optisch ausrichten, da das Logo links Whitespace hat */
    display: block;
}
.footer h4 {
    color: var(--c-secondary-dark);
    margin-bottom: 22px;
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 14px;
    font-family: var(--f-display);
}
.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 36px; height: 2px;
    background: var(--c-accent);
}
.footer p, .footer a {
    color: var(--c-text);
    font-size: .95rem;
    line-height: 1.8;
}
.footer a { color: var(--c-secondary-dark); }
.footer a:hover { color: var(--c-accent); }
.footer__links li { padding: 4px 0; }
.footer__bottom {
    border-top: 1px solid var(--c-border);
    padding: 24px 0;
    font-size: .85rem;
    text-align: center;
    color: var(--c-text-dim);
}
.footer__bottom p { margin: 0; color: var(--c-text-dim); }

/* ====================== FLOATING BUTTONS ====================== */
.floating-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 90;
}
.floating-btn {
    width: 58px; height: 58px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sh-lg);
    text-decoration: none;
    transition: var(--t);
}
.floating-btn:hover { transform: scale(1.1); color: #fff; }
.floating-btn .svg-icon { width: 26px; height: 26px; }
.floating-btn--call {
    background: var(--c-accent);
    animation: pulse-call 2.5s var(--easing) infinite;
}
.floating-btn--top {
    background: var(--c-secondary-dark);
    border: 0;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    padding: 0;
}
.floating-btn--top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.floating-btn--top:hover {
    background: var(--c-secondary);
}
@keyframes pulse-call {
    0%, 100% { box-shadow: 0 0 0 0 rgba(45, 141, 186,0.55), var(--sh-lg); }
    50%      { box-shadow: 0 0 0 20px rgba(45, 141, 186,0), var(--sh-lg); }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
    .hero__grid { grid-template-columns: 1fr; gap: 60px; }
    .hero__visual { max-width: 400px; margin: 0 auto; }
    .hero__logo-card { transform: rotate(0); }
    .hero__vertical { display: none; }
    .section__head--split { grid-template-columns: 1fr; gap: 24px; align-items: start; }
    .services { grid-template-columns: repeat(2, 1fr); }
    .process { grid-template-columns: repeat(2, 1fr); gap: 56px 32px; }
    .process::before { display: none; }
    .testimonials { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
    .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.18); padding-bottom: 28px; }
    .stat:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 0; }
    .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .gallery__item--wide, .gallery__item--tall { grid-column: span 1; grid-row: span 1; }
    .why { grid-template-columns: 1fr; gap: 56px; }
    .why__visual { height: 500px; }
    .about { grid-template-columns: 1fr; gap: 80px; }
    .about__gallery { min-height: 480px; max-width: 600px; margin: 0 auto; width: 100%; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
    .topbar__inner { justify-content: center; font-size: .78rem; }
    .topbar__item:not(.topbar__phone) { display: none; }
    .header__inner { display: flex; justify-content: space-between; }
    .header__cta { display: none; }
    .nav__list-cta { display: list-item; }
    .header__toggle { display: flex; }
    .header__logo img { height: 70px; }
    .header.is-scrolled .header__logo img { height: 60px; }
    .nav {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: #fff;
        box-shadow: var(--sh-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s var(--easing);
    }
    .nav.is-open { max-height: 500px; }
    .nav__list { flex-direction: column; align-items: stretch; gap: 4px; padding: 16px; }
    .nav__list > li > a { display: block; padding: 14px 16px; }
    .nav__list > li > a::after { display: none; }

    /* Typo enger */
    h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
    h2 { font-size: clamp(1.65rem, 5vw, 2.1rem); }

    .hero { min-height: auto; padding: 80px 0 70px; }
    .hero__title { font-size: clamp(2rem, 8vw, 2.6rem); white-space: normal; }
    .hero__title-line + .hero__title-line { margin-left: 0; }
    .hero__lead { font-size: 1rem; margin-bottom: 28px; }
    .marquee__item { font-size: 1.1rem; padding: 0 20px; gap: 20px; }
    .marquee { padding: 16px 0; }
    .marquee__track { animation-duration: 20s; }

    /* Section-Padding deutlich reduziert */
    .section { padding: 60px 0; }
    .section__head { margin-bottom: 40px; }
    .section__deco-text { font-size: 5rem; top: 20px; right: -20px; }

    /* About kompakter */
    .about { gap: 50px; }
    .about__gallery { min-height: 380px; }
    .about__pic--top { width: 60%; }
    .about__pic--side { width: 50%; }
    .about__badge { padding: 18px 22px; }
    .about__badge-num { font-size: 2rem; }

    /* Stats kompakter, 2-spaltig */
    .stats { padding: 50px 0; }
    .stats__grid { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
    .stat { padding: 0 8px; border-right: 0; border-bottom: 0; padding-bottom: 0; }
    .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.18); }
    .stat__number { font-size: 2.4rem; margin-bottom: 6px; }
    .stat__label { font-size: .75rem; letter-spacing: 1.5px; }

    /* Services als Accordion auf Mobile */
    .services { gap: 10px; }
    .service {
        padding: 0;
        text-align: left;
        background: #fff;
        border: 1px solid var(--c-border);
        overflow: hidden;
        display: block;
    }
    .service__head {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 14px;
        padding: 16px 20px;
        cursor: pointer;
    }
    .service__icon {
        width: 44px;
        height: 44px;
        margin: 0;
        border-radius: var(--r-sm);
        box-shadow: 0 4px 10px rgba(45, 141, 186, 0.25);
    }
    .service__icon .svg-icon { width: 22px; height: 22px; }
    .service h3 {
        margin: 0;
        font-size: 1rem;
        color: var(--c-secondary-dark);
    }
    .service__toggle { display: inline-flex; align-items: center; justify-content: center; }
    .service__body {
        display: block;
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        transition: max-height .35s var(--easing), padding .35s var(--easing);
    }
    .service.is-open .service__body {
        max-height: 600px;
        padding: 0 20px 20px;
    }
    .service.is-open .service__toggle-icon {
        transform: rotate(45deg);
    }
    .service:hover { transform: none; box-shadow: none; }
    .service.is-open { background: var(--c-secondary-dark); border-color: var(--c-secondary-dark); }
    .service.is-open h3 { color: #fff; }
    .service.is-open p { color: rgba(255,255,255,0.75); }
    .service.is-open .service__hint { color: var(--c-accent); }
    .service.is-open .service__toggle { color: #fff; }
    .service p { font-size: .9rem; line-height: 1.6; margin: 0 0 14px; }
    .service__hint { font-size: .78rem; }

    /* Prozess kompakter */
    .process { gap: 40px 28px; }
    .process__img { width: 180px; height: 180px; }
    .process__num { width: 44px; height: 44px; font-size: 1rem; bottom: -12px; }

    /* Why kompakter */
    .why { gap: 40px; }
    .why__visual { height: 380px; }
    .why__item { padding: 16px 18px; }

    /* Gallery kompakter */
    .gallery { grid-auto-rows: 150px; gap: 12px; }

    /* CTA kompakter */
    .cta-band { padding: 70px 0; }
    .cta-band p { font-size: 1rem; margin-bottom: 28px; }

    /* Testimonials kompakter */
    .testimonial { padding: 28px 24px; }

    /* Kontakt */
    .contact { grid-template-columns: 1fr; gap: 40px; }
    .contact__form { padding: 32px 24px; }
    .contact__form h3 { font-size: 1.3rem; margin-bottom: 20px; }
    .contact__list { gap: 18px; }
    .contact__icon { width: 46px; height: 46px; }

    /* Footer */
    .footer { padding-top: 60px; }
    .footer__inner { grid-template-columns: 1fr; gap: 32px; text-align: center; padding-bottom: 40px; }
    .footer__logo { margin-left: auto; margin-right: auto; height: 90px; }
    .footer h4::after { left: 50%; transform: translateX(-50%); }
}

@media (max-width: 540px) {
    .section { padding: 50px 0; }
    .section__head { margin-bottom: 32px; }
    .services { grid-template-columns: 1fr; }
    .process { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .form-row--split { grid-template-columns: 1fr; }
    .cta-band__media { background-attachment: scroll; }
    .hero__buttons { flex-direction: column; align-items: stretch; }
    .hero__buttons .btn { width: 100%; }
    .why__visual { height: 320px; }
    .why__pic--main { width: 82%; }
    .about__gallery { min-height: 340px; }
    .about__badge { bottom: -10px; right: 0; padding: 18px 22px; }
    .about__badge-num { font-size: 1.9rem; }
    .testimonial__text { font-size: .95rem; }
    .floating-btn { width: 50px; height: 50px; }
    .floating-btn .svg-icon { width: 22px; height: 22px; }
    .floating-actions { bottom: 16px; right: 16px; }
}

/* =====================================================
   CONSENT BANNER
   ===================================================== */
.consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--c-secondary-dark);
    color: rgba(255,255,255,0.92);
    padding: 18px 24px;
    z-index: 1000;
    transform: translateY(120%);
    transition: transform .4s var(--easing);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.25);
    border-top: 2px solid var(--c-accent);
}
.consent--in  { transform: translateY(0); }
.consent--out { transform: translateY(120%); }
.consent__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}
.consent__text {
    flex: 1;
    font-size: .92rem;
    line-height: 1.55;
}
.consent__text strong { color: #fff; display: block; margin-bottom: 4px; }
.consent__text a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--c-accent);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}
.consent__text a:hover,
.consent__text a:focus {
    color: var(--c-accent);
}
.consent__buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.consent__btn { padding: 12px 22px; font-size: .9rem; }
@media (max-width: 820px) {
    .consent__inner { flex-direction: column; gap: 16px; align-items: stretch; }
    .consent__buttons { width: 100%; }
    .consent__btn { flex: 1; }
}

/* =====================================================
   MAP PLACEHOLDER & EMBED
   ===================================================== */
.contact__map {
    margin-top: 36px;
}
.contact__map-placeholder {
    background: rgba(255,255,255,0.06);
    border: 1.5px dashed rgba(255,255,255,0.25);
    border-radius: var(--r-md);
    padding: 36px 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--t);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
}
.contact__map-placeholder:hover,
.contact__map-placeholder:focus {
    background: rgba(255,255,255,0.10);
    border-color: var(--c-accent);
    outline: none;
}
.contact__map-placeholder .svg-icon {
    width: 36px;
    height: 36px;
    color: var(--c-accent);
}
.contact__map-title {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff;
}
.contact__map-hint {
    font-size: .82rem;
    color: rgba(255,255,255,0.65);
}
.contact__map iframe {
    width: 100%;
    height: 320px;
    border: 0;
    border-radius: var(--r-md);
    display: block;
}

/* =====================================================
   404 PAGE
   ===================================================== */
.error-page {
    padding: 80px 0 120px;
    text-align: center;
}
.error-page .container { max-width: 720px; }
.error-page__code {
    font-family: var(--f-display);
    font-size: clamp(7rem, 18vw, 12rem);
    font-weight: 700;
    color: var(--c-accent);
    line-height: 1;
    letter-spacing: -0.05em;
    margin: 0 0 20px;
    opacity: .9;
}
.error-page h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}
.error-page__lead {
    font-size: 1.1rem;
    color: var(--c-text-dim);
    margin-bottom: 36px;
}
.error-page__buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.error-page .btn--ghost-light {
    color: var(--c-secondary-dark);
    border-color: var(--c-border);
}
.error-page .btn--ghost-light:hover {
    background: var(--c-secondary-dark);
    color: #fff;
    border-color: var(--c-secondary-dark);
}

/* =====================================================
   SKIP-LINK (Barrierefreiheit, nur bei Tastatur-Fokus sichtbar)
   ===================================================== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--c-accent);
    color: #fff;
    padding: 12px 22px;
    border-radius: var(--r-md);
    font-weight: 600;
    z-index: 9999;
    transition: top .2s var(--easing);
    text-decoration: none;
}
.skip-link:focus,
.skip-link:focus-visible {
    top: 16px;
    color: #fff;
    outline: 2px solid #fff;
    outline-offset: 2px;
}
