/* ============================================================
   BOTOFOX — Homepage V2  ·  "Warm Premium Editorial"
   Mobile-first. Photo-strip signature. Bricolage + Poppins.
   Loads BEFORE booking-widget.css and remaps :root so the
   existing widget themes itself automatically.
   ============================================================ */

:root {
    /* --- Brand palette V2 (kein Lila mehr) --- */
    --ink:        #17141B;   /* near-black, warm */
    --ink-soft:   #2A2630;
    --paper:      #FBF8F3;   /* warm cream background */
    --paper-2:    #F3ECE2;   /* slightly deeper cream */
    --coral:      #6C44E4;   /* energetic primary accent */
    --coral-deep: #5A36C0;
    --gold:       #FFB23E;   /* flash / spark accent */
    --cream-line: #E7DDCF;

    /* --- Remap legacy vars so booking-widget.css inherits theme --- */
    --primary-color:    var(--ink);
    --secondary-color:  var(--coral);
    --accent-color:     var(--coral);
    --text-dark:        #1E1A22;
    --text-light:       #8A8089;
    --background-light:  var(--paper-2);
    --background-white:  var(--paper);
    --border-color:     var(--cream-line);

    --shadow-sm: 0 2px 12px rgba(23,20,27,.06);
    --shadow-md: 0 10px 30px rgba(23,20,27,.10);
    --shadow-lg: 0 24px 60px rgba(23,20,27,.18);
    --shadow-coral: 0 14px 34px rgba(108, 68, 228,.34);

    --radius:   18px;
    --radius-lg:26px;
    --transition: all .3s cubic-bezier(.4,0,.2,1);

    --font-display: 'Bricolage Grotesque', 'Poppins', sans-serif;
    --font-body:    'Poppins', system-ui, sans-serif;

    --maxw: 1180px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--paper);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 22px;
}

/* Subtle paper grain on the whole page */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: .04;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Reusable type ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--coral);
}
.eyebrow::before {
    content: '';
    width: 22px; height: 2px;
    background: var(--coral);
    border-radius: 2px;
}

.section-head { text-align: center; max-width: 620px; margin: 0 auto 2.6rem; }
.section-head .eyebrow { justify-content: center; }
.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.9rem, 7vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -.02em;
    color: var(--ink);
    margin: .6rem 0 .7rem;
}
.section-sub { color: var(--text-light); font-size: 1.02rem; }

section { scroll-margin-top: 80px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
}
.navbar.scrolled {
    background: rgba(251,248,243,.82);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    box-shadow: 0 1px 0 rgba(23,20,27,.06);
}
.nav-brand { display: flex; flex: 0 0 auto; flex-direction: column; gap: 3px; }
.nav-brand .logo { height: 26px; width: auto; }
.nav-brand .tagline {
    font-size: .58rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-light);
}
/* coral logo reads on both dark hero and cream nav; tagline stays light on hero */
.navbar:not(.scrolled) .nav-brand .tagline { color: rgba(255,255,255,.7); }

.nav-menu { display: flex; align-items: center; gap: clamp(.85rem, 1.55vw, 2rem); list-style: none; min-width: 0; }
.nav-menu li { flex: 0 0 auto; }
.nav-link {
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    font-size: .95rem;
    position: relative;
    transition: var(--transition);
}
.navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,.92); }
.nav-link:not(.nav-link-cta)::after {
    content: '';
    position: absolute; left: 0; bottom: -6px;
    width: 0; height: 2px; border-radius: 2px;
    background: var(--coral);
    transition: width .3s ease;
}
.nav-link:not(.nav-link-cta):hover::after { width: 100%; }

.nav-link-cta {
    background: var(--coral);
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    white-space: nowrap;
    padding: .55rem 1.25rem !important;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-coral);
}
.nav-link-cta:hover { background: var(--coral-deep); transform: translateY(-1px); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none; border: none;
    cursor: pointer; padding: 6px; z-index: 1001;
}
.hamburger span {
    width: 26px; height: 2px; border-radius: 2px;
    background: var(--ink);
    transition: var(--transition);
}
.navbar:not(.scrolled) .hamburger span { background: #fff; }
.hamburger.active span,
.navbar:not(.scrolled) .hamburger.active span { background: var(--ink); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO  — full-bleed photo + ink scrim, oversized headline
   ============================================================ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--ink);
    isolation: isolate;
}
.hero-bg {
    position: absolute; inset: 0; z-index: -2;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 30%;
    animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(to top, rgba(15,12,18,.94) 6%, rgba(15,12,18,.55) 42%, rgba(15,12,18,.25) 72%, rgba(15,12,18,.45) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 22px clamp(2.4rem, 7vh, 4.5rem);
    color: #fff;
}
.hero .eyebrow {
    color: var(--gold);
    opacity: 0;
    animation: heroUp .7s ease .15s forwards;
}
.hero .eyebrow::before { background: var(--gold); }

.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.5rem, 11vw, 5.2rem);
    line-height: .98;
    letter-spacing: -.025em;
    margin: .5rem 0 .9rem;
    max-width: 16ch;
    opacity: 0;
    animation: heroUp .7s ease .25s forwards;
}
.hero-title .accent {
    color: var(--coral);
    font-style: italic;
}
.hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.2rem);
    color: rgba(255,255,255,.86);
    max-width: 40ch;
    margin-bottom: 1.8rem;
    opacity: 0;
    animation: heroUp .7s ease .35s forwards;
}

.hero-actions {
    display: flex; flex-wrap: wrap; gap: .8rem;
    opacity: 0;
    animation: heroUp .7s ease .45s forwards;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: .55rem;
    font-family: var(--font-body);
    font-weight: 600; font-size: 1.02rem;
    padding: 1rem 1.7rem;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer; border: none;
    transition: var(--transition);
}
.btn i { font-size: 1.2rem; }
.btn-primary { background: var(--coral); color: #fff; box-shadow: var(--shadow-coral); }
.btn-primary:hover { background: var(--coral-deep); transform: translateY(-2px); box-shadow: 0 18px 40px rgba(108, 68, 228,.42); }
.btn-ghost {
    background: rgba(255,255,255,.1);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.35);
    backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); }

/* Trust pills under hero CTA */
.hero-trust {
    display: flex; flex-wrap: wrap; gap: 1.2rem 1.6rem;
    margin-top: 1.8rem;
    opacity: 0;
    animation: heroUp .7s ease .55s forwards;
}
.hero-trust .t {
    display: flex; align-items: center; gap: .5rem;
    color: rgba(255,255,255,.9);
    font-size: .9rem; font-weight: 500;
}
.hero-trust .t i { color: var(--gold); font-size: 1.15rem; }
.hero-trust .t b { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: #fff; }

@keyframes heroUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

/* scroll cue */
.hero-scroll {
    position: absolute; left: 50%; bottom: 14px;
    transform: translateX(-50%);
    color: rgba(255,255,255,.5);
    font-size: 1.5rem;
    z-index: 1;
    animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0);} 50% { transform: translate(-50%,8px);} }

/* ============================================================
   PHOTO-STRIP signature element (decorative + cards share it)
   ============================================================ */
.photostrip {
    background: #fff;
    padding: 10px 10px 38px;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.photostrip::after {
    content: 'BOTOFOX';
    position: absolute; left: 0; right: 0; bottom: 12px;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 800; font-size: .62rem;
    letter-spacing: .28em;
    color: var(--ink);
    opacity: .55;
}
.photostrip .frame {
    overflow: hidden; border-radius: 3px;
    aspect-ratio: 4/3;
    margin-bottom: 6px; background: var(--paper-2);
}
.photostrip .frame:last-of-type { margin-bottom: 0; }
.photostrip .frame img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   MARQUEE / social proof strip under hero
   ============================================================ */
.proof-strip {
    background: var(--ink);
    color: #fff;
    padding: 1.1rem 0;
    overflow: hidden;
}
.proof-track {
    display: flex; align-items: center; gap: 3rem;
    width: max-content;
    animation: marquee 28s linear infinite;
}
.proof-track span {
    display: inline-flex; align-items: center; gap: .6rem;
    font-family: var(--font-display); font-weight: 700;
    font-size: 1.05rem; white-space: nowrap;
    color: rgba(255,255,255,.85);
}
.proof-track i { color: var(--gold); }
.proof-track .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SERVICES — fotobox models as premium cards
   ============================================================ */
.services { padding: 4.5rem 0; background: var(--paper); }
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
}
.service-card {
    background: #fff;
    border: 1px solid var(--cream-line);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.4rem 1.6rem;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card.featured {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}
.service-card.featured .service-name,
.service-card.featured .price { color: #fff; }
.service-card.featured .features-list li { color: rgba(255,255,255,.85); }

.badge {
    position: absolute; top: 16px; right: 16px;
    background: var(--gold); color: var(--ink);
    font-weight: 700; font-size: .68rem;
    letter-spacing: .06em; text-transform: uppercase;
    padding: .3rem .7rem; border-radius: 50px;
    z-index: 3;
}
.service-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
    margin-bottom: 1.2rem;
    background:
        radial-gradient(120% 80% at 50% 18%, rgba(108, 68, 228,.06), transparent 60%),
        var(--paper-2);
    display: grid; place-items: center;
}
.service-card.featured .service-image {
    background:
        radial-gradient(120% 80% at 50% 18%, rgba(255,178,62,.14), transparent 60%),
        rgba(255,255,255,.04);
}
.service-image img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform .5s ease; }
.service-card:hover .service-image img { transform: scale(1.05); }
/* Premium-Bild (Fotobox+Drucker): normale Größe, aber weiter nach unten -> unterer Rand wird früher abgeschnitten */
.service-card.featured .service-image img { transform: translate(7%, 16%) scale(1.3); transform-origin: bottom center; }
.service-card.featured:hover .service-image img { transform: translate(7%, 16%) scale(1.36); }
/* Classic-Bild (hochformatig) auf Desktop etwas kleiner */
.services-grid > .service-card:first-child .service-image img { padding: 30px; }
/* Premium-Bild: Fotobox exakt mittig wie bei Classic, Drucker nur dezenter Zusatz */
.service-image.si-combo {
    padding: 0;
}
.si-combo .si-box {
    grid-area: 1 / 1;          /* mittig im Frame, identisch zur Classic-Box */
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 14px;
}
.si-combo .si-printer {
    position: absolute;
    right: 14px;
    bottom: 16px;
    width: 78px;
    height: auto;
    max-height: 38%;
    object-fit: contain;
    padding: 0;
    z-index: 1;                /* leicht hinter der Fotobox */
    filter: drop-shadow(0 6px 14px rgba(23,20,27,.18));
}
.si-plus {
    position: absolute;
    right: 74px;
    bottom: 54px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: .9rem;
    line-height: 1;
    box-shadow: 0 5px 12px rgba(255,178,62,.3);
}
.service-image-badge {
    position: absolute; top: 12px; left: 12px;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(8px);
    color: var(--ink);
    font-size: .64rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 50px;
}
.service-name {
    font-family: var(--font-display);
    font-weight: 800; font-size: 1.5rem;
    color: var(--ink); margin-bottom: .2rem;
    display: flex; align-items: center; gap: .55rem; flex-wrap: wrap;
}
/* Drucker-Hinweis neben dem Titel (statt Badge auf dem Bild) */
.sn-tag {
    display: inline-flex; align-items: center; gap: .3rem;
    font-family: var(--font-body);
    font-size: .72rem; font-weight: 600;
    padding: .25rem .6rem;
    border-radius: 999px;
    background: var(--gold); color: var(--ink);
    white-space: nowrap;
}
.sn-tag i { font-size: .85rem; }
.sn-tag-off { background: var(--ink); color: #fff; }
/* Magic-Mirror-Variant-Chip (ehemals Badge auf dem Bild): Gold = Gold-Chip, LED = Ink-Chip */
.mm-card.mm-is-led .mm-badge { background: var(--ink); color: #fff; }
.price {
    font-family: var(--font-display);
    font-weight: 800; font-size: 2.2rem;
    color: var(--coral); margin-bottom: 1rem;
    display: flex; align-items: baseline; gap: .3rem;
}
.price small { font-family: var(--font-body); font-size: .85rem; font-weight: 500; color: var(--text-light); }
.service-card.featured .price small { color: rgba(255,255,255,.6); }
.features-list { list-style: none; display: grid; gap: .55rem; }
.features-list li {
    display: flex; align-items: center; gap: .6rem;
    color: var(--text-dark); font-size: .95rem;
}
.features-list li i { color: var(--coral); font-size: 1.1rem; flex-shrink: 0; }
.service-card.featured .features-list li i { color: var(--gold); }

/* Magic-Mirror: zwei Varianten als eigener Block (nicht als Häkchen-Liste) */
.mm-variants { margin-top: 1.1rem; display: grid; gap: .5rem; }
.mm-variant {
    display: flex; align-items: center; gap: .65rem;
    padding: .55rem .75rem;
    border: 1px solid var(--cream-line); border-radius: 12px;
    background: var(--paper);
}
.mm-variant > i { font-size: 1.25rem; color: var(--coral); flex-shrink: 0; }
.mm-variant > div { flex: 1; min-width: 0; line-height: 1.25; }
.mm-variant b { display: block; font-size: .88rem; color: var(--ink); }
.mm-variant span { font-size: .74rem; color: var(--text-light); }
.mm-variant .mm-price { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--ink); flex-shrink: 0; }

/* Auto-Wechsel LED ↔ Goldrahmen (Crossfade + aktive Variante hervorheben) */
.mm-card .mm-hero,
.mm-card .mm-badge,
.mm-card .mm-amount { transition: opacity .32s ease, transform .32s ease; }
.mm-card.mm-switching .mm-hero { opacity: 0; transform: scale(.94) rotate(-1.5deg); }
.mm-card.mm-switching .mm-badge,
.mm-card.mm-switching .mm-amount { opacity: 0; transform: translateY(5px); }
.mm-variant { transition: border-color .3s ease, background .3s ease, box-shadow .3s ease; }
.mm-variant.active {
    border-color: var(--coral);
    background: rgba(108, 68, 228, .06);
    box-shadow: 0 4px 14px rgba(108, 68, 228, .12);
}
.mm-variant.active > i { color: var(--coral); }
/* LED-Spiegel-Bild ist größer gecroppt als Goldrahmen -> per Padding verkleinern, damit beide gleich wirken */
.mm-card.mm-is-led .mm-hero { padding: 30px 30px 24px; }

/* ============================================================
   FEATURES — phosphor icon grid (kein Emoji mehr)
   ============================================================ */
.features { padding: 4.5rem 0; background: var(--paper-2); }
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.feature-item {
    background: var(--paper);
    border: 1px solid var(--cream-line);
    border-radius: var(--radius);
    padding: 1.6rem 1.4rem;
    display: flex; gap: 1rem; align-items: flex-start;
    transition: var(--transition);
}
.feature-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.feature-icon {
    flex-shrink: 0;
    width: 50px; height: 50px;
    display: grid; place-items: center;
    border-radius: 14px;
    background: rgba(108, 68, 228,.1);
    color: var(--coral);
    font-size: 1.5rem;
}
.feature-item h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--ink); margin-bottom: .25rem; }
.feature-item p { color: var(--text-light); font-size: .92rem; line-height: 1.5; }

/* ============================================================
   BOOKING (reuses booking-widget.css — just frames it)
   ============================================================ */
.booking { padding: 4.5rem 0; background: var(--ink); position: relative; }
.booking .section-title, .booking .eyebrow { color: #fff; }
.booking .eyebrow { color: var(--gold); }
.booking .eyebrow::before { background: var(--gold); }
.booking .section-sub { color: rgba(255,255,255,.7); }
.booking-widget {
    background: var(--paper);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.3rem;
    box-shadow: var(--shadow-lg);
    max-width: 880px; margin: 0 auto;
}
.bw-success {
    background: var(--paper);
    border-radius: var(--radius-lg);
    padding: 3rem 1.5rem; text-align: center;
    max-width: 880px; margin: 0 auto;
}
.bw-success-icon { font-size: 3.5rem; color: #27ae60; }
.bw-success h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--ink); margin: .6rem 0 .4rem; }
.bw-success p { color: var(--text-light); }

/* ============================================================
   GALLERY — editorial masonry-ish
   ============================================================ */
.gallery { padding: 4.5rem 0; background: var(--paper); }
.gallery-grid {
    column-count: 2;
    column-gap: .8rem;
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: .8rem;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    display: block;
}
.gallery-item img { width: 100%; height: auto; display: block; transition: transform .5s ease; }
.gallery-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(transparent 60%, rgba(23,20,27,.35));
    opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { opacity: 1; }

/* ============================================================
   ABOUT + stats
   ============================================================ */
.about { padding: 4.5rem 0; background: var(--paper-2); }
.about-content { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.about-content > * { min-width: 0; }
.about-text h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem,6vw,2.2rem); color: var(--ink); margin-bottom: .9rem; line-height: 1.1; }
.about-text p { color: var(--text-dark); margin-bottom: 1rem; opacity: .85; }
.stats {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1rem; margin-top: 1.8rem;
}
.stat { text-align: center; padding: 1rem .5rem; background: var(--paper); border-radius: var(--radius); border: 1px solid var(--cream-line); }
.stat h4 { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--coral); line-height: 1; }
.stat p { color: var(--text-light); font-size: .78rem; margin-top: .3rem; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-md); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 4.5rem 0; background: var(--paper); }
.contact-content { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.contact-content > * { min-width: 0; }
.contact-info h3, .contact-form h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--ink); margin-bottom: 1.2rem; }
.contact-item { display: flex; gap: .8rem; margin-bottom: 1.1rem; }
.contact-item i { color: var(--coral); font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; color: var(--ink); font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; }
.contact-item p { color: var(--text-dark); }
.contact-form { background: var(--paper-2); border: 1px solid var(--cream-line); border-radius: var(--radius-lg); padding: 1.6rem; }
.contact-form form { display: flex; flex-direction: column; gap: .8rem; }
.contact-form input, .contact-form textarea {
    width: 100%; max-width: 100%;
    padding: .9rem 1rem;
    border: 1.5px solid var(--cream-line);
    border-radius: 12px;
    font-family: inherit; font-size: 1rem;
    background: var(--paper);
    transition: var(--transition);
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--coral);
    box-shadow: 0 0 0 4px rgba(108, 68, 228,.12);
}
.submit-button {
    margin-top: .3rem;
    padding: 1rem; border: none; border-radius: 50px;
    background: var(--coral); color: #fff;
    font-family: var(--font-body); font-weight: 600; font-size: 1.02rem;
    cursor: pointer; transition: var(--transition);
}
.submit-button:hover { background: var(--coral-deep); transform: translateY(-2px); box-shadow: var(--shadow-coral); }
.submit-button:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }

.form-status {
    margin-top: .9rem;
    padding: .85rem 1.1rem;
    border-radius: 14px;
    font-family: var(--font-body); font-size: .95rem; line-height: 1.4;
}
.form-status--loading { background: rgba(0,0,0,.04); color: #555; }
.form-status--success { background: #e6f6ec; color: #1c7a43; border: 1px solid #b7e3c7; }
.form-status--error   { background: #fdecec; color: #b3261e; border: 1px solid #f3c2c0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 3.2rem 0 6rem; }
.footer-content { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 1.4rem; margin-bottom: 2rem; }
.footer-brand { grid-column: 1 / -1; }
.footer-brand h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: #fff; }
.footer-brand p { font-size: .9rem; }
.footer h4 { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.footer ul { list-style: none; display: grid; gap: .6rem; }
.footer a { color: rgba(255,255,255,.7); text-decoration: none; font-size: .92rem; transition: var(--transition); }
.footer a:hover { color: var(--coral); }
.footer-social .social-links { display: flex; gap: .7rem; }
.footer-social .social-links a {
    width: 40px; height: 40px; border-radius: 12px;
    display: grid; place-items: center;
    background: rgba(255,255,255,.07);
    font-size: 1.2rem;
}
.footer-social .social-links a:hover { background: var(--coral); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.4rem; text-align: center; font-size: .82rem; }

/* ============================================================
   STICKY MOBILE BOOK BAR
   ============================================================ */
.mobile-cta {
    position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 900;
    /* deckend (nicht transparent) – sonst scheint Webseite/Safari-Leiste durch */
    background: var(--paper);
    border-top: 1px solid var(--cream-line);
    /* 1. weicher Schatten nach oben (Trennung vom Inhalt)
       2. deckender Solid-Block nach UNTEN als Teil DERSELBEN Leiste (offset 120 + spread 120
          → nahtlose Cream-Verlängerung bis weit unter den Bildschirmrand, keine sichtbare Naht) */
    box-shadow: 0 -6px 24px rgba(23,20,27,.10),
                0 120px 0 120px var(--paper);
    padding: .7rem 16px;
    padding-bottom: calc(.7rem + env(safe-area-inset-bottom, 0px));
    display: flex; align-items: center; gap: .8rem;
    /* Versteckt: weit nach unten raus (Leiste + Solid-Block komplett weg) */
    transform: translateY(calc(100% + env(safe-area-inset-bottom, 0px) + 260px));
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.mobile-cta.show { transform: translateY(0); }
.mobile-cta .mc-info { flex: 1; line-height: 1.1; }
.mobile-cta .mc-info b { font-family: var(--font-display); font-weight: 800; color: var(--ink); font-size: .98rem; }
.mobile-cta .mc-info span { display: block; font-size: .72rem; color: var(--text-light); }
/* engerer, weicher Shadow – endet nicht abrupt an der Leistenkante */
.mobile-cta .btn { flex-shrink: 0; padding: .8rem 1.4rem; box-shadow: 0 4px 14px rgba(108,68,228,.26); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
    .reveal { opacity: 1; transform: none; }
    .hero-bg img { animation: none; transform: none; }
}

/* ============================================================
   RESPONSIVE — tablet & desktop scale up
   ============================================================ */
@media (min-width: 600px) {
    .gallery-grid { column-count: 3; }
    .stats { gap: 1.4rem; }
}

@media (min-width: 860px) {
    .container { padding: 0 32px; }
    .services-grid { grid-template-columns: repeat(3,1fr); align-items: start; }
    .service-card.featured { transform: scale(1.04); }
    .service-card.featured:hover { transform: scale(1.04) translateY(-6px); }
    .features-grid { grid-template-columns: repeat(3,1fr); }
    .about-content { grid-template-columns: 1.05fr .95fr; gap: 3rem; }
    .contact-content { grid-template-columns: .9fr 1.1fr; gap: 2.4rem; }
    .footer-content { grid-template-columns: 2fr 1fr 1fr 1.2fr; }
    .footer-brand { grid-column: auto; }
    .gallery-grid { column-count: 4; column-gap: 1rem; }
    .gallery-item { margin-bottom: 1rem; }
    .mobile-cta { display: none; }   /* desktop doesn't need it */
}

@media (min-width: 1024px) {
    .hero-content { padding-bottom: 5rem; }
    .section-head { margin-bottom: 3.2rem; }
}

/* ---------- Compact nav (≤ 1099px) ---------- */
@media (max-width: 1099px) {
    .hamburger { display: flex; }
    /* Nur die untere CTA-Leiste bleibt sticky; die Navbar scrollt normal mit weg. */
    .navbar { position: absolute; }
    .navbar .container { padding-top: calc(16px + env(safe-area-inset-top)); }
    /* Logo links bündig zum Seiteninhalt (war in der nav-brand-Spalte zentriert) */
    .nav-brand { align-items: flex-start; }
    .nav-menu {
        position: fixed; inset: 0;
        width: 100%;
        height: 100vh;        /* Fallback */
        height: 100lvh;       /* volle Fensterhöhe – auch hinter der transparenten iOS-26-Tab-Leiste */
        background: var(--paper);
        flex-direction: column; justify-content: center;
        gap: .4rem;
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
        transform: translateY(-100%);
        transition: transform .45s cubic-bezier(.4,0,.2,1);
        z-index: 999;
    }
    .nav-menu.active { transform: translateY(0); }
    .nav-menu li { opacity: 0; transform: translateY(18px); transition: opacity .3s ease, transform .3s ease; }
    .nav-menu.active li { opacity: 1; transform: none; }
    .nav-menu.active li:nth-child(1) { transition-delay: .12s; }
    .nav-menu.active li:nth-child(2) { transition-delay: .17s; }
    .nav-menu.active li:nth-child(3) { transition-delay: .22s; }
    .nav-menu.active li:nth-child(4) { transition-delay: .27s; }
    .nav-menu.active li:nth-child(5) { transition-delay: .32s; }
    .nav-menu.active li:nth-child(6) { transition-delay: .37s; }
    .nav-menu.active li:nth-child(7) { transition-delay: .42s; }
    .nav-menu.active li:nth-child(8) { transition-delay: .47s; }
    .nav-menu .nav-link {
        color: var(--ink) !important;
        font-family: var(--font-display);
        font-weight: 700; font-size: 1.7rem;
        padding: .5rem 0; text-align: center; display: block;
    }
    .nav-menu .nav-link::after { display: none; }
    .nav-menu .nav-link-cta {
        margin-top: .8rem;
        background: var(--coral) !important;
        color: #fff !important;
        padding: .8rem 2rem !important;
        font-size: 1.1rem;
    }
}

/* ---------- Mobile layout details (≤ 859px) ---------- */
@media (max-width: 859px) {
    /* Alle drei Karten gleich behandeln + Bild-Bereich kompakter (volle Breite, weniger Höhe) */
    /* 2-Spalten-Layout: Text links, Bild rechts (alle drei Karten) */
    .service-card {
        display: grid;
        grid-template-columns: 1fr 35%;
        grid-template-areas:
            "name  image"
            "price image"
            "feat  image"
            "extra extra";
        column-gap: 1.1rem;
        align-items: start;
        padding: 1.2rem 1.3rem;
    }
    .service-name  { grid-area: name; flex-direction: column; align-items: flex-start; gap: .35rem; }
    .price         { grid-area: price; }
    .features-list { grid-area: feat; }
    .mm-variants   { grid-area: extra; }

    /* Mobile: keine Box/Hintergrund mehr -> nur das freigestellte Bild,
       darf leicht über den Text ragen. Kein scale() => kein Upscaling => scharf. */
    .service-image {
        grid-area: image;
        align-self: center;
        aspect-ratio: auto;
        height: auto;
        min-height: 0;
        margin-bottom: 0;
        background: none;
        border-radius: 0;
        overflow: visible;
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    /* Glow-Bubble gehörte zur Box -> auf Mobile aus */
    .service-card .si-blob { display: none; }
    /* Featured-Karte hat einen eigenen Gold-Radial-BG (höhere Spezifität) -> auch weg, sonst gelber Schimmer hinterm Premium-Bild */
    .service-card.featured .service-image { background: none; }
    .service-image img,
    .mm-card .mm-hero {
        width: auto;
        max-width: 130%;            /* darf etwas nach links über den Text ragen */
        height: auto;
        max-height: 175px;          /* groß genug -> aus der Quelle gerendert, scharf */
        padding: 0;
        margin: 0;
        object-fit: contain;
        transform-origin: center;
        transform: translateX(-6px);   /* nur leichter Text-Überlapp, translate = scharf, kein Halo */
    }
    /* Pro Karte feinjustiert (unterschiedlicher Leerraum/Format), nur Größe + Position, kein Upscaling */
    .services-grid > .service-card:first-child .service-image img,
    .services-grid > .service-card:first-child:hover .service-image img { max-height: 240px; max-width: 135%; transform: translateX(16px); }   /* Classic: groß + deutlich weiter rechts */
    .service-card.featured .service-image img,
    .service-card.featured:hover .service-image img { max-height: 150px; max-width: 100%; transform: translateX(8px); }                        /* Premium: passt */
    .mm-card.mm-is-led  .mm-hero,
    .mm-card.mm-is-led:hover  .mm-hero { max-height: 220px; max-width: 135%; transform: translateX(14px); }                                    /* LED-Spiegel: groß + weiter rechts */
    .mm-card.mm-is-gold .mm-hero,
    .mm-card.mm-is-gold:hover .mm-hero { max-height: 195px; max-width: 130%; transform: translateX(14px); }                                    /* Goldrahmen: weiter rechts */
    /* Classic + Spiegel: schmalere Bild-Spalte => mehr Platz für die Stichpunkte */
    .services-grid > .service-card:first-child,
    .mm-card { grid-template-columns: 1fr 30%; }
    /* Classic: kurze Stichpunkte erzwingen jeweils 1 Zeile (z.B. "Kinderleichte Bedienung") */
    .services-grid > .service-card:first-child .features-list li { white-space: nowrap; }
    /* Spiegel: lange Stichpunkte dürfen, sollen aber max. 2 Zeilen brauchen */
    .mm-card .features-list li { font-size: .86rem; line-height: 1.3; }
    .service-image.si-combo {
        padding: 0;
    }
    .si-combo .si-box {
        width: auto;
        height: 100%;
        max-width: 58%;
        padding: 8px 0;
    }
    .si-combo .si-printer {
        right: 12px;
        bottom: 10px;
        width: 52px;
        max-height: 52%;
    }
    .si-plus {
        right: 56px;
        bottom: 30px;
        width: 19px;
        height: 19px;
        font-size: .78rem;
    }
}

/* ============================================================
   V2.1 — NEW SECTIONS
   ============================================================ */

/* ---- Alles inklusive (light, roomy — merged with "Warum") ---- */
.incl { padding: 4.8rem 0; background: var(--paper-2); }
.incl-grid {
    display: grid; grid-template-columns: 1fr; gap: 1rem;
}
.incl-item {
    background: var(--paper); border: 1px solid var(--cream-line);
    border-radius: var(--radius); padding: 1.7rem 1.5rem;
    display: flex; gap: 1.1rem; align-items: flex-start;
    transition: var(--transition);
}
.incl-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.incl-item .ic {
    flex-shrink: 0; width: 52px; height: 52px; border-radius: 15px;
    background: rgba(108, 68, 228,.1); color: var(--coral);
    display: grid; place-items: center; font-size: 1.6rem;
}
.incl-item b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--ink); margin-bottom: .25rem; }
.incl-item span { font-size: .92rem; color: var(--text-light); line-height: 1.5; }

/* ---- So einfach geht's (steps) ---- */
.steps { padding: 4.5rem 0; background: var(--paper); }
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; counter-reset: step; }
.step-card {
    position: relative; background: #fff; border: 1px solid var(--cream-line);
    border-radius: var(--radius-lg); padding: 1.5rem 1.5rem 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "icon title"
        "desc desc";
    align-items: center;
    column-gap: .7rem;
}
.step-card .step-num {
    position: absolute; top: -18px; right: 20px; left: auto;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--coral); color: #fff;
    display: grid; place-items: center;
    font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
    box-shadow: var(--shadow-coral);
}
.step-card i { grid-area: icon; font-size: 1.9rem; color: var(--ink); display: block; margin: 0; }
.step-card h3 { grid-area: title; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--ink); margin: 0; padding-right: 2.2rem; }
.step-card p { grid-area: desc; color: var(--text-light); font-size: .92rem; margin: .7rem 0 0; }
/* Stagger: Karten 1->2->3 nacheinander einblenden, sobald die Sektion sichtbar wird */
.steps-grid .step-card { transition-delay: 0s; }
.steps-grid .step-card:nth-child(2) { transition-delay: .16s; }
.steps-grid .step-card:nth-child(3) { transition-delay: .32s; }

/* ---- Anlässe / use-cases ---- */
.usecases { padding: 4.5rem 0; background: var(--paper-2); }
.uc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: .9rem; }
.uc-card {
    background: var(--paper); border: 1px solid var(--cream-line);
    border-radius: var(--radius); padding: 1.4rem 1.2rem;
    display: flex; flex-direction: column; gap: .5rem;
    transition: var(--transition);
}
.uc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--coral); }
.uc-card i { font-size: 1.8rem; color: var(--coral); }
.uc-card b { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.uc-card span { font-size: .85rem; color: var(--text-light); line-height: 1.4; }

/* ---- Audio-Gästebuch teaser ---- */
.audio { padding: 4.5rem 0; background: var(--paper); }
.audio-card {
    background: linear-gradient(135deg, var(--ink), var(--ink-soft));
    border-radius: var(--radius-lg); overflow: hidden;
    display: grid; grid-template-columns: 1fr;
    color: #fff; box-shadow: var(--shadow-lg);
}
.audio-media { aspect-ratio: 16/10; overflow: hidden; }
.audio-media img { width: 100%; height: 100%; object-fit: cover; }
.audio-body { padding: 2rem 1.6rem 2.2rem; }
.audio-body .eyebrow { color: var(--gold); }
.audio-body .eyebrow::before { background: var(--gold); }
.audio-body h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem,6vw,2rem); margin: .6rem 0 .7rem; line-height: 1.1; }
.audio-body p { color: rgba(255,255,255,.78); margin-bottom: 1.3rem; }
.audio-feats { display: grid; gap: .6rem; margin-bottom: 1.6rem; }
.audio-feats li { list-style: none; display: flex; gap: .6rem; align-items: center; color: rgba(255,255,255,.9); font-size: .95rem; }
.audio-feats i { color: var(--gold); font-size: 1.1rem; }

/* ---- Testimonials ---- */
.testimonials { padding: 4.5rem 0; background: var(--paper-2); }
.tm-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.tm-card {
    background: var(--paper); border: 1px solid var(--cream-line);
    border-radius: var(--radius-lg); padding: 1.8rem 1.6rem;
}
.tm-stars { color: var(--gold); font-size: 1.05rem; margin-bottom: .8rem; letter-spacing: 2px; }
.tm-card p { font-size: 1.02rem; color: var(--text-dark); line-height: 1.6; margin-bottom: 1.2rem; }
.tm-author { display: flex; align-items: center; gap: .8rem; }
.tm-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--coral); color: #fff;
    display: grid; place-items: center;
    font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
}
.tm-author b { display: block; font-family: var(--font-display); color: var(--ink); font-size: .95rem; }
.tm-author span { font-size: .8rem; color: var(--text-light); }

/* ---- FAQ ---- */
.faq { padding: 4.5rem 0; background: var(--paper); }
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: .7rem; }
.faq-item { background: var(--paper-2); border: 1px solid var(--cream-line); border-radius: var(--radius); overflow: hidden; }
.faq-q {
    width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    padding: 1.1rem 1.3rem; font-family: var(--font-body); font-weight: 600;
    font-size: 1rem; color: var(--ink);
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q i { color: var(--coral); font-size: 1.3rem; transition: transform .3s ease; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 1.3rem 1.2rem; color: var(--text-light); font-size: .95rem; line-height: 1.6; }

/* ---- Final CTA band ---- */
.cta-band { padding: 4.5rem 0; background: var(--coral); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
    content: ''; position: absolute; inset: 0; opacity: .12;
    background-image: radial-gradient(circle at 20% 30%, #fff 2px, transparent 2px), radial-gradient(circle at 80% 70%, #fff 2px, transparent 2px);
    background-size: 60px 60px;
}
.cta-band .inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-band h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem,7vw,2.8rem); line-height: 1.05; margin-bottom: .8rem; }
.cta-band p { font-size: 1.05rem; opacity: .92; margin-bottom: 1.8rem; }
.cta-band .btn { background: #fff; color: var(--coral); box-shadow: var(--shadow-lg); }
.cta-band .btn:hover { background: var(--ink); color: #fff; }
.cta-band .reassure { margin-top: 1.2rem; font-size: .85rem; opacity: .85; display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 1.2rem; }
.cta-band .reassure span { display: inline-flex; align-items: center; gap: .4rem; }

/* ---- Hero trust: rating chip refinement ---- */
.hero-trust .t.rating b { color: var(--gold); }

/* responsive scale-ups for new sections */
@media (min-width: 600px) {
    .incl-grid { grid-template-columns: repeat(2,1fr); }
    .uc-grid { grid-template-columns: repeat(3,1fr); }
}
@media (min-width: 860px) {
    .incl-grid { grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
    .steps-grid { grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
    .uc-grid { grid-template-columns: repeat(4,1fr); }
    .tm-grid { grid-template-columns: repeat(3,1fr); }
    .audio-card { grid-template-columns: 1.1fr .9fr; align-items: center; }
    .audio-media { aspect-ratio: auto; height: 100%; min-height: 340px; }
    .audio-body { padding: 2.6rem 2.4rem; }
}

/* ============================================================
   V2.2 — LAYOUT DESIGNER (USP: 100% individuell) + CLIENTS
   ============================================================ */

/* ---- Kunden-Logo-Slider ---- */
.clients { padding: 2.6rem 0; background: var(--paper); border-top: 1px solid var(--cream-line); border-bottom: 1px solid var(--cream-line); overflow: hidden; }
.clients-label { text-align: center; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: var(--text-light); margin-bottom: 1.4rem; }
.clients-viewport { position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.clients-track { display: flex; align-items: center; gap: 3.4rem; width: max-content; animation: marquee 30s linear infinite; }
.clients-track .client-logo {
    font-family: var(--font-display); font-weight: 800; font-size: 1.5rem;
    color: var(--ink); opacity: .42; white-space: nowrap;
    filter: grayscale(1); transition: opacity .3s ease;
    letter-spacing: -.01em;
}
.clients:hover .clients-track { animation-play-state: paused; }
.client-logo:hover { opacity: .85; }

/* ---- Layout Designer section ---- */
.designer { padding: 4.8rem 0; background: var(--ink); color: #fff; overflow: hidden; }
.designer-wrap { display: grid; grid-template-columns: 1fr; gap: 2.6rem; align-items: center; }
.designer-text .eyebrow { color: var(--gold); }
.designer-text .eyebrow::before { background: var(--gold); }
.designer-text h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem,7vw,2.8rem); line-height: 1.05; margin: .6rem 0 .8rem; }
.designer-text h2 .accent { color: var(--coral); }
.designer-text > p { color: rgba(255,255,255,.78); margin-bottom: 1.6rem; font-size: 1.02rem; }
.designer-list { display: grid; gap: 1rem; margin-bottom: 1.8rem; }
.designer-list li { list-style: none; display: flex; gap: .9rem; align-items: flex-start; }
.designer-list .ic { flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px; background: rgba(108, 68, 228,.16); color: var(--coral); display: grid; place-items: center; font-size: 1.3rem; }
.designer-list b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: #fff; }
.designer-list span { font-size: .9rem; color: rgba(255,255,255,.66); line-height: 1.45; }

/* visual: start-screen device + floating layout strips */
.designer-visual { position: relative; min-height: 360px; display: grid; place-items: center; }
.startscreen {
    width: 100%; max-width: 360px; aspect-ratio: 4/3;
    border-radius: 22px; position: relative; overflow: hidden;
    background: radial-gradient(120% 100% at 50% 0%, #2A2630 0%, #17141B 70%);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--shadow-lg);
    display: grid; place-items: center; text-align: center;
}
.startscreen::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 42%, rgba(255,178,62,.18), transparent 60%); }
.startscreen .ss-inner { position: relative; z-index: 1; padding: 1.5rem; }
.startscreen .ss-logo { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; letter-spacing: .2em; color: rgba(255,255,255,.55); margin-bottom: 1.1rem; }
.startscreen .ss-tap {
    width: 84px; height: 84px; margin: 0 auto 1rem; border-radius: 50%;
    background: var(--coral); color: #fff; display: grid; place-items: center; font-size: 2.4rem;
    box-shadow: 0 0 0 0 rgba(108, 68, 228,.5); animation: tapPulse 2s ease-out infinite;
}
@keyframes tapPulse { 0% { box-shadow: 0 0 0 0 rgba(108, 68, 228,.5); } 70% { box-shadow: 0 0 0 26px rgba(108, 68, 228,0); } 100% { box-shadow: 0 0 0 0 rgba(108, 68, 228,0); } }
.startscreen .ss-text { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: #fff; }
.startscreen .ss-sub { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: .3rem; }
.startscreen .ss-badge { position: absolute; top: 12px; left: 12px; font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--gold); background: rgba(255,178,62,.14); padding: 3px 9px; border-radius: 50px; }

.designer-strip {
    position: absolute; width: 92px;
    background: #fff; padding: 6px 6px 20px; border-radius: 5px;
    box-shadow: var(--shadow-lg); transform: rotate(var(--rot,0deg));
    z-index: 2;
}
.designer-strip .f { aspect-ratio: 4/3; border-radius: 2px; overflow: hidden; margin-bottom: 4px; background: var(--paper-2); }
.designer-strip .f:last-child { margin-bottom: 0; }
.designer-strip .f img { width: 100%; height: 100%; object-fit: cover; }
.designer-strip::after { content: ''; position: absolute; left: 0; right: 0; bottom: 7px; height: 6px; background: var(--coral); border-radius: 2px; margin: 0 22px; opacity: .8; }
.designer-strip.s1 { left: -6px; bottom: 4px; --rot: -8deg; }
.designer-strip.s2 { right: -6px; top: 10px; --rot: 7deg; }
.designer-strip.s2::after { background: var(--gold); }

@media (min-width: 860px) {
    .designer-wrap { grid-template-columns: 1fr 1fr; gap: 3.2rem; }
    .designer-visual { min-height: 420px; }
    .startscreen { max-width: 400px; }
    .designer-strip { width: 110px; }
    .designer-strip.s1 { left: -20px; }
    .designer-strip.s2 { right: -20px; }
}

/* ---- Booking widget: 3D render thumbnail statt Icon ---- */
.bw-product-img {
    height: 92px; width: auto; max-width: 80%;
    object-fit: contain; display: block; margin: 0 auto .5rem;
    filter: drop-shadow(0 6px 14px rgba(23,20,27,.12));
}
.bw-product-card[data-product="classic"] .bw-product-img {
    height: 76px;
    max-width: 68%;
}
.bw-product-card.selected .bw-product-img { filter: drop-shadow(0 8px 18px rgba(108, 68, 228,.28)); }

/* ============================================================
   V2.3 — Service-Card Differenzierung (Bubble + Drucker-Badge)
   ============================================================ */
.service-image .img-wrap, .service-image img { position: relative; z-index: 2; }

/* animierte Bubble hinter der Box */
.si-blob {
    position: absolute; z-index: 0;
    width: 86%; aspect-ratio: 1 / 1; top: 14%; left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle at 50% 45%, rgba(108, 68, 228,.55) 0%, rgba(108, 68, 228,.18) 45%, rgba(108, 68, 228,0) 72%);
    filter: blur(2px);
    animation: blobFloat 6.5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes blobFloat {
    0%,100% { transform: translateX(-50%) translateY(-3%) scale(1); }
    50%     { transform: translateX(-50%) translateY(5%)  scale(1.07); }
}
.service-card:nth-child(3) .si-blob { animation-delay: -2.2s; background: radial-gradient(circle at 50% 45%, rgba(108, 68, 228,.5), rgba(255,107,90,.16) 45%, transparent 72%); }
.service-card.featured .si-blob { background: radial-gradient(circle at 50% 45%, rgba(255,178,62,.55) 0%, rgba(255,178,62,.2) 45%, rgba(255,178,62,0) 72%); animation-delay: -1.1s; }

/* auffälligeres Drucker-Badge */
.service-image-badge {
    z-index: 3;
    display: inline-flex; align-items: center; gap: 5px;
    top: 14px; left: 14px;
    background: var(--coral); color: #fff;
    border: none;
    font-size: .68rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
    padding: 5px 11px; border-radius: 50px;
    box-shadow: var(--shadow-coral);
    backdrop-filter: none;
}
.service-image-badge i { font-size: .95rem; }
.service-card.featured .service-image-badge { background: var(--gold); color: var(--ink); box-shadow: 0 8px 20px rgba(255,178,62,.4); }
.service-image-badge.is-off { background: var(--ink); color: #fff; box-shadow: 0 8px 20px rgba(23,20,27,.25); }

/* ============================================================
   V2.4 — Fix: Buchungs-Widget Extras/Produkte liefen rechts raus
   (1fr-Track wuchs auf min-content der Karte → Overflow).
   minmax(0,1fr) kappt Track auf Containerbreite, Text bricht um.
   ============================================================ */
.booking .bw-products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.booking .bw-extras   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.booking .bw-product-card,
.booking .bw-extra-card { min-width: 0; }
.booking .bw-extra-info { min-width: 0; }
.booking .bw-extra-info .bw-extra-desc { white-space: normal; overflow-wrap: anywhere; }

@media (max-width: 768px) {
    .booking .bw-products { grid-template-columns: minmax(0, 1fr); }
    .booking .bw-extras   { grid-template-columns: minmax(0, 1fr); }
    .booking .bw-product-card[data-product="classic"] .bw-product-img {
        width: 58px;
        max-width: 58px;
        height: 52px;
    }
}

/* ============================================================
   SUPPORT 24/7 — Homepage-Bereich (Bot-Teaser)
   ============================================================ */
.support24 {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 55%, var(--coral-deep) 135%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.support24::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(circle at 85% 15%, rgba(108,68,228,.4), transparent 55%);
}
.support24 .container { position: relative; z-index: 1; }
.support24-grid { display: grid; gap: 2.6rem; align-items: center; }
.support24-text .eyebrow { color: #fff; }
.support24-text .eyebrow::before { background: #fff; }
.support24-text h2 {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(1.9rem, 6vw, 2.8rem); line-height: 1.05; margin: .4rem 0 .9rem;
}
.support24-text p { color: rgba(255,255,255,.82); font-size: 1.05rem; line-height: 1.65; max-width: 540px; margin-bottom: 1.6rem; }
.support24-text p strong { color: #fff; }
.support24-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.5rem; }
.support24-badges { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; font-size: .88rem; color: rgba(255,255,255,.85); }
.support24-badges span { display: inline-flex; align-items: center; gap: .45rem; }
.support24-badges i { color: #57e08a; }

/* Chat-Vorschau */
.support24-visual { display: flex; justify-content: center; }
.support24-chat {
    width: 100%; max-width: 420px;
    background: #fff; color: var(--ink);
    border-radius: 20px; overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.s24-head { display: flex; align-items: center; gap: 12px; padding: 16px 18px; background: linear-gradient(120deg, var(--coral), var(--coral-deep)); }
.s24-avatar { width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%; background: rgba(255,255,255,.22); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.s24-title { color: #fff; font-weight: 700; font-size: .98rem; }
.s24-status { color: rgba(255,255,255,.85); font-size: .76rem; display: flex; align-items: center; gap: 5px; }
.s24-status i { color: #57e08a; font-size: .6rem; }
.s24-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; background: #faf8f5; }
.s24-msg { max-width: 82%; padding: 10px 14px; font-size: .9rem; line-height: 1.5; border-radius: 14px; }
.s24-bot { align-self: flex-start; background: #fff; border: 1px solid var(--cream-line); border-radius: 14px 14px 14px 4px; }
.s24-user { align-self: flex-end; background: var(--coral); color: #fff; border-radius: 14px 14px 4px 14px; }

@media (min-width: 860px) {
    .support24-grid { grid-template-columns: 1.05fr .95fr; gap: 3.4rem; }
}
