/* ═══════════════════════════════════════════════════════════
   IK Digital — Main Stylesheet v2.0
   Design System: Stripe-inspired, custom IK Digital brand
   DSGVO: No Google Fonts — loaded via Bunny Fonts in functions.php
   ═══════════════════════════════════════════════════════════ */

:root {
    --bg: #ffffff;
    --bg-soft: #f6f9fc;
    --bg-cream: #fdf6ee;
    --ink: #0d253d;
    --ink-2: #425466;
    --ink-3: #6b7c93;
    --line: #e6ebf1;
    --line-2: #eef2f7;
    --indigo: #533afd;
    --indigo-deep: #1a1a4b;
    --indigo-ink: #0a0a2e;
    --lavender: #d6c8ff;
    --cream: #fdf6ee;
    --green: #3ec28f;
    --cyan: #00c6ff;
    --shadow-sm: 0 1px 2px rgba(13,37,61,.04), 0 1px 3px rgba(13,37,61,.04);
    --shadow-md: 0 2px 4px rgba(13,37,61,.04), 0 8px 24px rgba(13,37,61,.06);
    --shadow-lg: 0 6px 12px rgba(13,37,61,.04), 0 24px 48px rgba(13,37,61,.08);
    --r-card: 12px;
    --r-pill: 999px;
    --maxw: 1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { overflow-x: clip; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.55;
    font-size: 17px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Layout ── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { padding: 110px 0; }
.section-soft { background: var(--bg-soft); }
.section-cream { background: var(--bg-cream); }
.section-head { max-width: 680px; margin-bottom: 60px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { color: var(--ink-2); font-size: 18px; max-width: 580px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-weight: 300; letter-spacing: -0.025em; color: var(--ink); line-height: 1.08; }
h1 { font-size: clamp(38px, 6vw, 74px); letter-spacing: -0.035em; }
h2 { font-size: clamp(30px, 4vw, 50px); letter-spacing: -0.03em; }
h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.015em; line-height: 1.25; }
h4 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; }
p { color: var(--ink-2); }

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    font-weight: 600;
    color: var(--indigo);
    display: inline-block;
    margin-bottom: 14px;
}
.eyebrow--light { color: rgba(255,255,255,.6); }

/* Gradient text */
.grad-text {
    background: linear-gradient(135deg, var(--indigo) 0%, #a855f7 55%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: var(--r-pill);
    font-weight: 500;
    font-size: 15px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    white-space: nowrap;
    font-family: inherit;
}
.btn--primary {
    background: var(--indigo);
    color: #fff;
    box-shadow: 0 1px 2px rgba(83,58,253,.25), 0 4px 14px rgba(83,58,253,.28);
}
.btn--primary:hover {
    background: #4730e8;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(83,58,253,.3), 0 10px 24px rgba(83,58,253,.32);
}
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: #cdd5e0; background: #fafbfd; }
.btn--white {
    background: #fff;
    color: var(--indigo-ink);
    box-shadow: 0 2px 6px rgba(0,0,0,.08), 0 14px 30px rgba(0,0,0,.18);
}
.btn--white:hover { transform: translateY(-1px); }
.btn--ghost-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.2); }
.btn--ghost-light:hover { background: rgba(255,255,255,.08); }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }
.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--lg { padding: 16px 28px; font-size: 16px; }

/* ── Nav ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.78);
    backdrop-filter: saturate(140%) blur(16px);
    -webkit-backdrop-filter: saturate(140%) blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s, background .2s;
}
.site-header.scrolled {
    border-bottom-color: var(--line);
    background: rgba(255,255,255,.95);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--ink);
    font-size: 18px;
}
.nav-logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    overflow: hidden;
    display: block;
    box-shadow: 0 2px 8px rgba(83,58,253,.22), 0 4px 14px rgba(0,0,0,.18);
    flex-shrink: 0;
}
.nav-logo-mark img { width: 100%; height: 100%; display: block; object-fit: cover; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 14.5px; color: var(--ink-2); font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border: none;
    background: transparent;
}
.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 780px) {
    .nav-links, .nav-actions .btn--primary { display: none; }
    .nav-burger { display: flex; }
}

/* Mobile Drawer — nav-drawer IS the panel, nav-drawer-bg IS the backdrop (siblings) */
.nav-drawer-bg {
    position: fixed; inset: 0; z-index: 48;
    background: rgba(13,37,61,.45);
    opacity: 0; pointer-events: none;
    transition: opacity .3s;
    backdrop-filter: blur(2px);
}
.nav-drawer-bg.open { opacity: 1; pointer-events: auto; }

.nav-drawer {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 280px; z-index: 49;
    background: #fff;
    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    padding: 24px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 12px 0 40px rgba(13,37,61,.12);
    overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }

/* nav-drawer links */
.nav-drawer .nav-drawer-head {
    display: flex; align-items: center; gap: 10px;
    font-size: 16px; font-weight: 600; color: var(--ink);
    margin-bottom: 32px; padding-bottom: 20px;
    border-bottom: 1px solid var(--line-2);
}
.nav-drawer a:not(.btn--primary) {
    display: block;
    padding: 14px 0;
    font-size: 16px; font-weight: 500;
    color: var(--ink-2);
    border-bottom: 1px solid var(--line-2);
    transition: color .15s;
}
.nav-drawer a:not(.btn--primary):hover { color: var(--indigo); }
.nav-drawer .btn--primary {
    display: block; text-align: center;
    margin-top: 24px;
}
.drawer-links { display: flex; flex-direction: column; }
.drawer-links a {
    padding: 16px 0; font-size: 16px; font-weight: 500;
    color: var(--ink-2); border-bottom: 1px solid var(--line-2);
    transition: color .15s;
}
.drawer-links a:hover { color: var(--indigo); }
.drawer-cta { margin-top: 24px; }

/* Sticky mobile CTA */
.sticky-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 40;
    padding: 14px 20px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    display: flex;
    gap: 10px;
    align-items: center;
    transform: translateY(100%);
    transition: transform .3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn { flex: 1; justify-content: center; }
@media (min-width: 781px) { .sticky-cta { display: none; } }

/* ── Hero ── */
.hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 130px;
    isolation: isolate;
    background: #f5f2ff;
}
.hero::before {
    content: "";
    position: absolute;
    inset: -10% -10% 0 -10%;
    z-index: -2;
    background:
        radial-gradient(closest-side at 18% 28%, rgba(200,185,255,.80), rgba(200,185,255,0) 70%),
        radial-gradient(closest-side at 82% 18%, rgba(124,98,255,.60), rgba(124,98,255,0) 65%),
        radial-gradient(closest-side at 65% 75%, rgba(83,58,253,.45), rgba(83,58,253,0) 65%),
        radial-gradient(closest-side at 12% 85%, rgba(0,198,255,.30), rgba(0,198,255,0) 70%);
    filter: blur(48px) saturate(130%);
    animation: drift 22s ease-in-out infinite alternate;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(245,242,255,0) 0%, rgba(245,242,255,.4) 70%, #f5f2ff 100%);
    pointer-events: none;
}
.hero-grid-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(circle, rgba(83,58,253,.06) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,.6) 30%, rgba(0,0,0,.6) 70%, transparent);
}
@keyframes drift {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    50%  { transform: translate3d(2%, -1.5%, 0) scale(1.03); }
    100% { transform: translate3d(-1.5%, 1%, 0) scale(1.05); }
}
.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr .9fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 960px) { .hero-layout { grid-template-columns: 1fr; gap: 48px; } }
.hero h1 { margin-bottom: 22px; }
.hero-lede {
    font-size: clamp(17px, 1.4vw, 20px);
    max-width: 560px;
    color: var(--ink-2);
    line-height: 1.55;
    margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; color: var(--ink-3); font-size: 13.5px; }
.hero-meta .dot {
    width: 6px; height: 6px;
    border-radius: 99px;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(62,194,143,.18);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(62,194,143,.18); }
    50%       { box-shadow: 0 0 0 7px rgba(62,194,143,.08); }
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }

/* Browser mock */
.browser {
    position: relative;
    border-radius: 14px;
    background: #fff;
    box-shadow:
        0 0 0 1px rgba(13,37,61,.06),
        0 12px 24px rgba(13,37,61,.06),
        0 32px 80px rgba(13,37,61,.14),
        0 60px 140px rgba(83,58,253,.14);
    overflow: hidden;
    transform: perspective(1400px) rotateX(2deg) rotateY(-4deg);
}
.browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    border-bottom: 1px solid var(--line-2);
    background: #fcfdfe;
}
.b-dot { width: 11px; height: 11px; border-radius: 99px; background: #e6ebf1; }
.b-dot:nth-child(1) { background: #ff7268; }
.b-dot:nth-child(2) { background: #ffc34c; }
.b-dot:nth-child(3) { background: #46d764; }
.url {
    margin-left: 10px; flex: 1;
    background: #f0f3f8; border-radius: 6px;
    height: 22px; font-size: 11.5px; color: var(--ink-3);
    display: flex; align-items: center; gap: 6px; padding: 0 10px;
}
.browser-body { padding: 22px; background: linear-gradient(180deg, #fff 0%, #fafbfd 100%); }
.mock-h { height: 10px; border-radius: 4px; background: linear-gradient(90deg, #e8edf3, #f3f6fa); margin-bottom: 9px; }
.mock-h.accent { width: 30%; background: linear-gradient(90deg, #dad2ff, #ece7ff); }
.mock-h.lg { width: 70%; height: 14px; }
.mock-h.md { width: 50%; height: 14px; }
.mock-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 18px; }
.mock-card { background: #fff; border: 1px solid var(--line-2); border-radius: 8px; padding: 12px; box-shadow: 0 1px 2px rgba(13,37,61,.03); }
.mock-card .b { height: 38px; border-radius: 5px; background: linear-gradient(135deg, #eef0f7, #f7f9fc); margin-bottom: 9px; }
.mock-card .l { height: 6px; border-radius: 3px; background: #e8edf3; margin-bottom: 5px; }
.mock-card .l.s { width: 60%; }
.mock-cta { margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; background: var(--indigo); color: #fff; border-radius: 99px; padding: 8px 14px; font-size: 12px; font-weight: 500; }

/* Floating badges */
.badge-float {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(13,37,61,.06), 0 12px 28px rgba(13,37,61,.12);
    padding: 11px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
}
.badge-1 { top: -22px; left: -32px; animation: floaty 6s ease-in-out infinite; }
.badge-2 { bottom: -18px; right: -22px; animation: floaty 7s ease-in-out -2s infinite; }
@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}
@media (max-width: 960px) { .badge-1 { left: 0; } .badge-2 { right: 0; } .browser { transform: none; } }

/* ── Trust logos ── */
.trust {
    padding: 44px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-soft);
}
.trust-inner { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; justify-content: center; }
.trust-label { font-size: 13px; font-weight: 500; color: var(--ink-3); text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }
.trust-logos { display: flex; align-items: center; gap: 44px; flex-wrap: wrap; }
.trust-logo {
    display: flex; align-items: center; gap: 8px;
    font-size: 15px; font-weight: 600; color: var(--ink-3);
    opacity: .55; letter-spacing: -0.01em; transition: opacity .2s;
}
.trust-logo:hover { opacity: .8; }

/* ── Stats ── */
.stats {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
    padding: 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat { padding: 38px 28px; border-right: 1px solid var(--line-2); }
.stat:last-child { border-right: none; }
.stat .v { font-size: 32px; font-weight: 300; letter-spacing: -0.025em; color: var(--ink); }
.stat .v em { font-style: normal; color: var(--indigo); font-weight: 400; }
.stat .l { font-size: 13.5px; color: var(--ink-3); margin-top: 4px; }
@media (max-width: 780px) {
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .stat:nth-child(2) { border-right: none; }
    .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-2); }
}

/* ── Services ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 880px) { .services-grid { grid-template-columns: 1fr; } }
.svc-card {
    background: #fff;
    border-radius: var(--r-card);
    padding: 34px 30px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line-2);
    transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s cubic-bezier(.16,1,.3,1), border-color .3s ease;
    display: flex; flex-direction: column; gap: 14px;
    position: relative; overflow: hidden;
}
.svc-card::after {
    content: "";
    position: absolute; inset: 0;
    border-radius: var(--r-card);
    background: linear-gradient(135deg, rgba(83,58,253,.04), rgba(83,58,253,0) 60%);
    opacity: 0; transition: opacity .3s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #dde4ee; }
.svc-card:hover::after { opacity: 1; }
.svc-card .icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: linear-gradient(135deg, rgba(83,58,253,.08), rgba(83,58,253,.16));
    color: var(--indigo);
    display: grid; place-items: center; margin-bottom: 6px;
}
.svc-card p { font-size: 15px; line-height: 1.6; }
.svc-card .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.svc-card .tag { font-size: 12px; font-weight: 500; color: var(--ink-2); background: #f3f6fa; border-radius: 99px; padding: 4px 10px; }
.svc-card .more {
    margin-top: auto; padding-top: 18px;
    font-size: 14px; font-weight: 500;
    color: var(--indigo);
    display: inline-flex; align-items: center; gap: 6px;
}
.svc-card .arr { transition: transform .2s; }
.svc-card:hover .arr { transform: translateX(3px); }

/* ── Why ── */
.why-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1px; background: var(--line-2);
    border: 1px solid var(--line-2); border-radius: 14px; overflow: hidden;
}
@media (max-width: 880px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why-cell {
    background: #fff; padding: 34px 30px;
    display: flex; flex-direction: column; gap: 10px;
    transition: background .2s;
}
.why-cell:hover { background: #fbfcfe; }
.why-cell .icon {
    width: 38px; height: 38px; border-radius: 10px;
    color: var(--indigo); background: rgba(83,58,253,.08);
    display: grid; place-items: center; margin-bottom: 8px;
}
.why-cell p { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }

/* ── Portfolio ── */
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 880px) { .portfolio-grid { grid-template-columns: 1fr; } }
.pf-card {
    border-radius: 14px; overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line-2);
    transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s cubic-bezier(.16,1,.3,1);
    background: #fff;
}
.pf-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(13,37,61,.08), 0 40px 80px rgba(83,58,253,.14);
}
.pf-browser {
    background: #fcfdfe; border-bottom: 1px solid var(--line-2);
    padding: 10px 14px; display: flex; align-items: center; gap: 7px;
}
.pf-body { padding: 20px; }
.pf-tag { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--indigo); margin-bottom: 8px; }
.pf-label { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.pf-desc { font-size: 13.5px; color: var(--ink-3); line-height: 1.5; }
.pf-preview { height: 160px; display: flex; flex-direction: column; gap: 8px; padding: 16px; background: linear-gradient(180deg, #f8fafd, #fff); overflow: hidden; }

/* ── Stock photo helpers ── */
.stock-photo {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
}
.photo-wrap {
    border-radius: 18px; overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}
.photo-wrap img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Hero photo */
.hero-photo-wrap {
    border-radius: 18px; overflow: hidden;
    box-shadow: 0 0 0 1px rgba(13,37,61,.06), 0 12px 32px rgba(13,37,61,.1), 0 40px 80px rgba(83,58,253,.14);
    position: relative;
}
.hero-photo-wrap img { width: 100%; height: 420px; object-fit: cover; display: block; }
.hero-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(13,37,61,.55) 100%);
}

/* ── Über Indrit ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }
.about-img {
    border-radius: 18px; overflow: hidden;
    aspect-ratio: 4/5;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.about-img-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--indigo); opacity: .3; }
.about-img-placeholder svg { width: 80px; height: 80px; }
.about-img-placeholder span { font-size: 14px; font-weight: 500; }
.about-badges { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.about-badge {
    display: flex; align-items: center; gap: 12px;
    background: #fff; border: 1px solid var(--line-2); border-radius: 10px;
    padding: 12px 16px; box-shadow: var(--shadow-sm);
}
.about-badge .ab-icon {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(83,58,253,.08); color: var(--indigo);
    display: grid; place-items: center; flex-shrink: 0;
}
.about-badge .ab-text { font-size: 14px; font-weight: 500; color: var(--ink); }
.about-badge .ab-sub { font-size: 12.5px; color: var(--ink-3); }

/* About photo card with real photo */
.about-photo-card img.about-real-photo {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    border-radius: 18px;
    display: block;
}
.about-photo-placeholder {
    aspect-ratio: 4/5;
    border-radius: 18px; overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-photo-placeholder img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    display: block;
}

/* Service section images */
.service-img {
    border-radius: 12px; overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}
.service-img img { width: 100%; height: 220px; object-fit: cover; display: block; }

/* ── Testimonials ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 880px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
    background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-card);
    padding: 28px; box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; gap: 16px;
    transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s cubic-bezier(.16,1,.3,1);
}
.testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testi-stars { color: #f5a623; font-size: 14px; letter-spacing: 2px; }
.testi-text { font-size: 15px; line-height: 1.65; color: var(--ink-2); font-style: italic; }
.testi-text::before { content: '\201E'; }
.testi-text::after { content: '\201C'; }
.testi-author { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.testi-avatar {
    width: 38px; height: 38px; border-radius: 99px;
    background: linear-gradient(135deg, var(--lavender), var(--indigo));
    display: grid; place-items: center;
    color: #fff; font-weight: 600; font-size: 14px; flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.testi-role { font-size: 12.5px; color: var(--ink-3); }

/* ── Process ── */
.process-wrap { position: relative; }
.process-line {
    position: absolute; top: 24px; left: 5%; right: 5%;
    height: 2px;
    background: repeating-linear-gradient(90deg, #dde4ee 0 6px, transparent 6px 12px);
    z-index: 0;
}
.process-grid {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: repeat(5,1fr); gap: 24px;
}
@media (max-width: 880px) { .process-grid { grid-template-columns: 1fr 1fr; } .process-line { display: none; } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }
.step { display: flex; flex-direction: column; gap: 10px; }
.step .num {
    width: 48px; height: 48px; border-radius: 99px;
    background: #fff; border: 1px solid var(--line);
    display: grid; place-items: center;
    font-weight: 500; color: var(--indigo); font-size: 17px;
    box-shadow: 0 1px 2px rgba(13,37,61,.04), 0 6px 14px rgba(13,37,61,.05);
    transition: all .4s ease;
}
.step .num.active {
    background: var(--indigo); color: #fff; border-color: var(--indigo);
    box-shadow: 0 2px 6px rgba(83,58,253,.3), 0 12px 24px rgba(83,58,253,.22);
}
.step p { font-size: 14px; color: var(--ink-3); line-height: 1.5; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
    background: #fff; border: 1px solid var(--line-2);
    border-radius: 16px; padding: 36px 30px;
    box-shadow: var(--shadow-sm); position: relative;
    transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s cubic-bezier(.16,1,.3,1);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured {
    background: var(--indigo-deep); border-color: transparent;
    color: #fff;
    animation: glow 3s ease-in-out infinite;
}
@keyframes glow {
    0%, 100% { box-shadow: 0 8px 24px rgba(83,58,253,.35), 0 32px 64px rgba(83,58,253,.22); }
    50%       { box-shadow: 0 8px 40px rgba(83,58,253,.55), 0 32px 80px rgba(83,58,253,.38); }
}
.price-card.featured .price-name,
.price-card.featured .price-desc,
.price-card.featured .feature-item { color: rgba(255,255,255,.75); }
.price-card.featured .price-amount { color: #fff; }
.price-card.featured .feature-item::before { color: rgba(255,255,255,.5); }
.featured-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(90deg, var(--indigo), #a855f7);
    color: #fff; font-size: 12px; font-weight: 600;
    padding: 4px 14px; border-radius: 99px; white-space: nowrap;
    box-shadow: 0 4px 12px rgba(83,58,253,.3);
}
.price-name { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); margin-bottom: 8px; }
.price-amount { font-size: 48px; font-weight: 300; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 4px; line-height: 1; }
.price-amount sup { font-size: 20px; vertical-align: top; margin-top: 10px; display: inline-block; }
.price-amount span { font-size: 16px; color: var(--ink-3); font-weight: 400; }
.price-desc { font-size: 14.5px; color: var(--ink-2); margin-bottom: 28px; margin-top: 8px; line-height: 1.5; }
.price-divider { border: none; border-top: 1px solid var(--line-2); margin-bottom: 24px; }
.price-card.featured .price-divider { border-color: rgba(255,255,255,.12); }
.features-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.feature-item { font-size: 14.5px; color: var(--ink-2); display: flex; align-items: flex-start; gap: 8px; }
.feature-item::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.price-cta { width: 100%; justify-content: center; }
.price-note { font-size: 12.5px; color: var(--ink-3); text-align: center; margin-top: 10px; }
.price-card.featured .price-note { color: rgba(255,255,255,.4); }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 80px; align-items: start; }
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-col { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line-2); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; gap: 16px; }
.faq-q-text { font-size: 16px; font-weight: 500; color: var(--ink); line-height: 1.3; flex: 1; }
.faq-icon {
    width: 28px; height: 28px; border-radius: 99px;
    background: rgba(83,58,253,.08); color: var(--indigo);
    display: grid; place-items: center; flex-shrink: 0;
    transition: transform .3s cubic-bezier(.4,0,.2,1), background .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--indigo); color: #fff; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .38s cubic-bezier(.4,0,.2,1); }
.faq-a-inner { padding-bottom: 20px; font-size: 15px; color: var(--ink-2); line-height: 1.65; }
.faq-item.open .faq-a { max-height: 400px; }

/* ── Contact ── */
.contact-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: start; }
@media (max-width: 880px) { .contact-wrap { grid-template-columns: 1fr; gap: 48px; } }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item .ci-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: rgba(83,58,253,.08); color: var(--indigo);
    display: grid; place-items: center; flex-shrink: 0;
}
.contact-item h4 { margin-bottom: 4px; }
.contact-item p { font-size: 14.5px; }

.contact-form {
    background: #fff; border: 1px solid var(--line-2);
    border-radius: 16px; padding: 36px;
    box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13.5px; font-weight: 500; color: var(--ink); }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: 10px 14px;
    border: 1px solid var(--line); border-radius: 8px;
    font-family: inherit; font-size: 15px; color: var(--ink);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--indigo);
    box-shadow: 0 0 0 3px rgba(83,58,253,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; padding: 14px 24px; font-size: 16px; }
.form-note { font-size: 13px; color: var(--ink-3); text-align: center; margin-top: 12px; }
.form-success { display: none; text-align: center; padding: 32px; color: var(--green); }

/* Alert messages */
.alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-size: 14.5px; }
.alert-success { background: rgba(62,194,143,.1); border: 1px solid rgba(62,194,143,.3); color: #1a6b47; }
.alert-error { background: rgba(255,75,75,.08); border: 1px solid rgba(255,75,75,.25); color: #8b1a1a; }

/* ── CTA Section ── */
.cta-section {
    position: relative; overflow: hidden;
    isolation: isolate;
    background: var(--indigo-ink); color: #fff;
    padding: 120px 0; text-align: center;
}
.cta-section::before {
    content: "";
    position: absolute; inset: -20%; z-index: -1;
    background:
        radial-gradient(closest-side at 25% 30%, rgba(83,58,253,.55), rgba(83,58,253,0) 60%),
        radial-gradient(closest-side at 75% 70%, rgba(168,85,247,.45), rgba(168,85,247,0) 60%),
        radial-gradient(closest-side at 50% 80%, rgba(0,198,255,.2), rgba(0,198,255,0) 50%);
    filter: blur(30px);
    animation: drift 26s ease-in-out infinite alternate;
}
.cta-section::after {
    content: "";
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(180deg, rgba(10,10,46,.4), rgba(10,10,46,.85)),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><path d='M0 .5h40M.5 0v40' fill='none' stroke='rgba(255,255,255,0.04)'/></svg>");
}
.cta-section h2 { color: #fff; font-size: clamp(34px, 4.5vw, 58px); max-width: 820px; margin: 0 auto 20px; }
.cta-section p { color: rgba(255,255,255,.72); max-width: 560px; margin: 0 auto 36px; font-size: 18px; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 70px 0 36px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 50px; }
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand p { font-size: 14.5px; color: var(--ink-2); max-width: 300px; margin-top: 14px; line-height: 1.6; }
.foot-col h5 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; color: var(--ink); margin: 0 0 16px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 14.5px; color: var(--ink-2); transition: color .15s; }
.foot-col a:hover { color: var(--indigo); }
.foot-bottom {
    border-top: 1px solid var(--line-2); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--ink-3);
}
.foot-bottom a { color: var(--ink-3); margin-left: 18px; }
.foot-bottom a:hover { color: var(--ink); }

/* ── Animations ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 1.0s cubic-bezier(.16,1,.3,1), transform 1.0s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .95s cubic-bezier(.16,1,.3,1), transform .95s cubic-bezier(.16,1,.3,1); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 120ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 240ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 360ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 480ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 600ms; }

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
    .hero::before, .cta-section::before { animation: none; }
    .badge-1, .badge-2 { animation: none; }
    .step .num.active { transition: none; }
}

/* ═══════════════════════════════════════════════════════════════
   NEW COMPONENTS v2.1 — Extend the design system
   ═══════════════════════════════════════════════════════════════ */

/* ── Standalone button variants (no .btn base needed) ── */
.btn--primary, .btn--ghost, .btn--white, .btn--ghost-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: var(--r-pill);
    font-weight: 500;
    font-size: 15px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s, background .2s, color .2s, border-color .2s;
    white-space: nowrap;
    font-family: inherit;
    text-decoration: none;
}
.btn--primary {
    background: var(--indigo);
    color: #fff !important;
    box-shadow: 0 1px 2px rgba(83,58,253,.25), 0 4px 14px rgba(83,58,253,.28);
}
.btn--primary:hover { background: #4730e8; transform: translateY(-1px); box-shadow: 0 2px 4px rgba(83,58,253,.3), 0 10px 24px rgba(83,58,253,.32); }
.btn--ghost { background: transparent; color: var(--ink) !important; border-color: var(--line); }
.btn--ghost:hover { border-color: #cdd5e0; background: #fafbfd; }
.btn--white { background: #fff; color: var(--indigo-ink) !important; box-shadow: 0 2px 6px rgba(0,0,0,.08), 0 14px 30px rgba(0,0,0,.18); border-color: transparent; }
.btn--white:hover { transform: translateY(-1px); }
.btn--ghost-light { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.2); }
.btn--ghost-light:hover { background: rgba(255,255,255,.08); }
.btn--sm { padding: 9px 16px !important; font-size: 14px !important; }
.btn--lg { padding: 16px 28px !important; font-size: 16px !important; }

/* ── Nav container ── */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
    height: 72px;
}
.nav-logo-text { font-weight: 600; font-size: 17px; color: var(--ink); }
.nav-logo-text strong { font-weight: 700; }
.nav-links a.active { color: var(--indigo); }

/* Mobile drawer (v2 — panel based) */
.nav-drawer {
    position: fixed;
    top: 0; right: 0;
    width: 290px; height: 100%;
    background: #fff;
    z-index: 200;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    padding: 80px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: -12px 0 48px rgba(13,37,61,.14);
    overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-bg {
    position: fixed;
    inset: 0;
    z-index: 199;
    background: rgba(13,37,61,.45);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.nav-drawer-bg.open { opacity: 1; pointer-events: auto; }
.nav-drawer-head {
    display: flex; align-items: center; gap: 10px;
    font-weight: 600; font-size: 16px; color: var(--ink);
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line-2);
    margin-bottom: 12px;
}
.nav-drawer a {
    display: block;
    padding: 14px 0;
    font-size: 16px; font-weight: 500; color: var(--ink-2);
    border-bottom: 1px solid var(--line-2);
    transition: color .15s;
}
.nav-drawer a:hover { color: var(--indigo); }
.nav-drawer .btn--primary { margin-top: 12px; text-align: center; justify-content: center; }

/* ── Section utilities ── */
.section { padding: 100px 0; }
.section--soft { background: var(--bg-soft); }
.section--cream { background: var(--bg-cream); }
.section-sub { font-size: 18px; color: var(--ink-2); max-width: 580px; margin-top: 14px; }
.c-muted { color: var(--ink-3); }

/* ── Page hero (inner pages) ── */
.page-hero {
    position: relative;
    padding: 90px 0 80px;
    background: linear-gradient(180deg, #f8f7ff 0%, #fff 100%);
    border-bottom: 1px solid var(--line);
    text-align: center;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute; inset: -30% -20%;
    background:
        radial-gradient(closest-side at 30% 40%, rgba(214,200,255,.5), transparent 60%),
        radial-gradient(closest-side at 70% 60%, rgba(83,58,253,.18), transparent 55%);
    filter: blur(50px);
    z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero__sub { font-size: 18px; color: var(--ink-2); max-width: 600px; margin: 0 auto; line-height: 1.55; }

/* ── Hero v2 ── */
.hero-body { display: flex; flex-direction: column; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(83,58,253,.07);
    border: 1px solid rgba(83,58,253,.15);
    border-radius: var(--r-pill);
    padding: 7px 14px;
    font-size: 13px; font-weight: 500; color: var(--indigo);
    margin-bottom: 24px; width: fit-content;
}
.hero-badge .dot {
    width: 7px; height: 7px; border-radius: 99px;
    background: var(--green);
    animation: pulse 2s ease-in-out infinite;
}
.hero-headline { margin-bottom: 22px; }
.hero-trust { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--ink-3); }
.hero-trust-logos { display: flex; gap: 8px; flex-wrap: wrap; }
.trust-logo-pill {
    background: #f0f3f8; border-radius: 99px;
    padding: 4px 12px; font-size: 12.5px; font-weight: 500; color: var(--ink-2);
}
.hero-visual { position: relative; }
.hero-mockup {
    background: #fff; border-radius: 14px;
    box-shadow: 0 0 0 1px rgba(13,37,61,.05), 0 12px 24px rgba(13,37,61,.06), 0 32px 80px rgba(13,37,61,.12), 0 60px 120px rgba(83,58,253,.12);
    overflow: hidden;
    transform: perspective(1400px) rotateX(2deg) rotateY(-5deg);
}
@media (max-width: 960px) { .hero-mockup { transform: none; } .hero-visual { display: none; } }
.mockup-bar {
    display: flex; align-items: center; gap: 7px;
    padding: 10px 14px;
    background: #fcfdfe; border-bottom: 1px solid var(--line-2);
}
.mockup-dot { width: 11px; height: 11px; border-radius: 99px; }
.mockup-dot.red { background: #ff7268; }
.mockup-dot.yellow { background: #ffc34c; }
.mockup-dot.green { background: #46d764; }
.mockup-url {
    margin-left: 8px; flex: 1;
    background: #f0f3f8; border-radius: 6px;
    height: 22px; font-size: 11.5px; color: var(--ink-3);
    display: flex; align-items: center; padding: 0 10px;
}
.mockup-screen { padding: 16px; background: linear-gradient(180deg, #fff 0%, #fafbfd 100%); }
.ms-nav { height: 8px; background: #e8edf3; border-radius: 4px; margin-bottom: 14px; width: 80%; }
.ms-hero { margin-bottom: 14px; }
.ms-h1 { height: 14px; background: linear-gradient(90deg, #dad2ff, #ece7ff); border-radius: 4px; margin-bottom: 8px; width: 75%; }
.ms-h2 { height: 9px; background: #e8edf3; border-radius: 3px; margin-bottom: 10px; width: 55%; }
.ms-btn { height: 22px; background: var(--indigo); border-radius: 99px; width: 110px; opacity: .8; }
.ms-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.ms-card { height: 56px; background: #f3f6fa; border-radius: 6px; border: 1px solid var(--line-2); }
.hero-badge-float {
    position: absolute;
    background: #fff; border-radius: 10px;
    box-shadow: 0 1px 3px rgba(13,37,61,.06), 0 10px 24px rgba(13,37,61,.12);
    padding: 10px 14px; font-size: 13px; font-weight: 500; color: var(--ink);
    white-space: nowrap;
}
.hero-badge-float--speed { top: -16px; right: -18px; text-align: center; animation: floaty 6s ease-in-out infinite; }
.hero-badge-float--launch { bottom: -14px; left: -14px; animation: floaty 7s ease-in-out -2s infinite; }
.hero-badge-float strong { display: block; font-size: 20px; font-weight: 700; color: var(--indigo); line-height: 1; }
.hero-badge-float small { font-size: 11px; color: var(--ink-3); }

/* ── Trust bar ── */
.trust-bar {
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-soft);
    text-align: center;
}
.trust-bar__label { font-size: 12.5px; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); margin-bottom: 12px; }
.trust-logos { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.trust-item { font-size: 14.5px; font-weight: 600; color: var(--ink-3); opacity: .6; }
.trust-sep { color: var(--line); }

/* ── Stats v2 ── */
.stats-section { padding: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
@media (max-width: 780px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }
.stat-item {
    padding: 44px 28px;
    border-right: 1px solid var(--line-2);
    text-align: center;
}
.stat-item:last-child { border-right: none; }
@media (max-width: 780px) {
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--line-2); }
}
.stat-number { font-size: 36px; font-weight: 300; letter-spacing: -0.03em; color: var(--ink); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.stat-sub { font-size: 13px; color: var(--ink-3); }

/* ── Services v2 ── */
.services-section {}
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
    background: #fff; border: 1px solid var(--line-2);
    border-radius: 16px; padding: 34px 28px;
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; gap: 14px;
    position: relative; overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #dde4ee; }
.service-card--featured {
    background: var(--indigo-deep);
    border-color: transparent;
    animation: glow 3s ease-in-out infinite;
}
.service-card--featured h3,
.service-card--featured p,
.service-card--featured .service-list li { color: rgba(255,255,255,.8); }
.service-card--featured h3 { color: #fff; }
.service-card__badge {
    position: absolute; top: 16px; right: 16px;
    background: linear-gradient(90deg, #a855f7, var(--cyan));
    color: #fff; font-size: 11px; font-weight: 700;
    padding: 3px 10px; border-radius: 99px; text-transform: uppercase; letter-spacing: .08em;
}
.service-card__icon { font-size: 32px; margin-bottom: 4px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 0; }
.service-list li { font-size: 14px; color: var(--ink-2); display: flex; align-items: flex-start; gap: 8px; line-height: 1.45; }
.service-card--featured .service-list li { color: rgba(255,255,255,.72); }
.card-link { color: var(--indigo); font-size: 14px; font-weight: 500; margin-top: auto; display: inline-flex; align-items: center; gap: 4px; }
.service-card--featured .card-link { color: var(--lavender); }

/* ── Why v2 ── */
.why-section {}
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); border-radius: 16px; overflow: hidden; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why-item {
    background: #fff; padding: 32px 28px;
    display: flex; flex-direction: column; gap: 10px;
    transition: background .2s;
}
.why-item:hover { background: #fbfcfe; }
.why-item__icon { font-size: 28px; margin-bottom: 4px; }
.why-item h4 { font-size: 16px; }
.why-item p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }

/* ── Portfolio v2 ── */
.portfolio-section {}
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 900px) { .portfolio-grid { grid-template-columns: 1fr; } }
.portfolio-card {
    background: #fff; border-radius: 14px;
    border: 1px solid var(--line-2); overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s cubic-bezier(.16,1,.3,1);
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: 0 12px 24px rgba(13,37,61,.08), 0 40px 80px rgba(83,58,253,.14); }
.portfolio-card--featured { border-color: rgba(83,58,253,.25); }
.portfolio-mockup {}
.pm-bar {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 12px; background: #fcfdfe; border-bottom: 1px solid var(--line-2);
}
.pm-dot { width: 10px; height: 10px; border-radius: 99px; }
.pm-dot.red { background: #ff7268; }
.pm-dot.yellow { background: #ffc34c; }
.pm-dot.green { background: #46d764; }
.pm-url {
    margin-left: 8px; flex: 1;
    background: #f0f3f8; border-radius: 5px; height: 20px;
    font-size: 11px; color: var(--ink-3); display: flex; align-items: center; padding: 0 8px;
}
.pm-screen {
    padding: 14px; height: 150px; overflow: hidden;
    display: flex; flex-direction: column; gap: 10px;
}
.pm-screen--law { background: linear-gradient(135deg, #f8f6ff, #fff); }
.pm-screen--physio { background: linear-gradient(135deg, #f0fff8, #fff); }
.pm-screen--wood { background: linear-gradient(135deg, #fff8f0, #fff); }
.pm-hero-block { display: flex; flex-direction: column; gap: 6px; }
.pm-h { height: 9px; border-radius: 4px; background: #e8edf3; }
.pm-h--lg { width: 70%; height: 13px; background: linear-gradient(90deg, #dad2ff, #ece7ff); }
.pm-h--sm { width: 50%; }
.pm-cta { height: 20px; width: 80px; background: var(--indigo); border-radius: 99px; opacity: .7; margin-top: 4px; }
.pm-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.pm-feature-block { height: 30px; background: #f3f6fa; border-radius: 6px; border: 1px solid var(--line-2); }
.portfolio-card__body { padding: 20px; }
.portfolio-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--indigo); margin-bottom: 6px; display: block; }
.portfolio-card__body h3 { font-size: 18px; margin-bottom: 8px; }
.portfolio-card__body p { font-size: 14px; color: var(--ink-2); line-height: 1.5; margin-bottom: 12px; }
.portfolio-stats { display: flex; gap: 14px; font-size: 12.5px; color: var(--ink-3); font-weight: 500; }
.portfolio-cta { text-align: center; margin-top: 48px; }

/* ── About section (front page) ── */
.about-section {}
.about-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .about-layout { grid-template-columns: 1fr; gap: 48px; } }
.about-visual {}
.about-photo-wrap { position: relative; }
.about-photo-placeholder {
    aspect-ratio: 4/5;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(83,58,253,.06), rgba(168,85,247,.08));
    border: 1px solid rgba(83,58,253,.1);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
    overflow: hidden;
}
.about-logo-mark { width: 80px; height: 80px; border-radius: 14px; opacity: .6; }
.about-badge {
    position: absolute;
    background: #fff; border-radius: 10px;
    box-shadow: var(--shadow-md);
    padding: 10px 14px; font-size: 13px; font-weight: 600; color: var(--ink);
}
.about-badge.about-badge--1 { top: -14px; right: -14px; }
.about-badge.about-badge--2 { bottom: -14px; left: -14px; }
.about-body {}
.about-lead { font-size: 19px; color: var(--ink); line-height: 1.5; margin-bottom: 18px; font-weight: 400; }
.about-body p { margin-bottom: 14px; font-size: 16px; line-height: 1.65; }
.about-values { display: flex; flex-direction: column; gap: 16px; margin: 24px 0 32px; }
.about-value { display: flex; align-items: flex-start; gap: 14px; }
.about-value__icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.about-value strong { display: block; font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.about-value p { font-size: 14.5px; color: var(--ink-2); margin: 0; }

/* ── Testimonials v2 ── */
.testimonials-section {}
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card {
    background: #fff; border: 1px solid var(--line-2);
    border-radius: 14px; padding: 28px;
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; gap: 14px;
    transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s cubic-bezier(.16,1,.3,1);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial-card--featured {
    background: linear-gradient(135deg, #f6f3ff, #fff);
    border-color: rgba(83,58,253,.15);
}
.testimonial-stars { color: #f5a623; font-size: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; line-height: 1.65; color: var(--ink-2); font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-avatar {
    width: 40px; height: 40px; border-radius: 99px;
    background: linear-gradient(135deg, var(--lavender), var(--indigo));
    display: grid; place-items: center;
    color: #fff; font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; font-weight: 600; color: var(--ink); }
.testimonial-author span { font-size: 12.5px; color: var(--ink-3); }

/* ── Process v2 ── */
.process-section {}
.process-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 24px; position: relative; }
.process-steps::before {
    content: "";
    position: absolute; top: 24px; left: 5%; right: 5%;
    height: 2px;
    background: repeating-linear-gradient(90deg, #dde4ee 0 6px, transparent 6px 12px);
}
@media (max-width: 900px) { .process-steps { grid-template-columns: 1fr 1fr; } .process-steps::before { display: none; } }
@media (max-width: 540px) { .process-steps { grid-template-columns: 1fr; } }
.step { display: flex; flex-direction: column; gap: 12px; }
.step__num {
    width: 48px; height: 48px; border-radius: 99px;
    background: #fff; border: 1px solid var(--line);
    display: grid; place-items: center; position: relative; z-index: 1;
    box-shadow: var(--shadow-sm);
}
.step__num .num {
    font-size: 16px; font-weight: 500; color: var(--indigo);
    transition: all .4s ease;
}
.step__body h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.step__body p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }

/* ── Pricing v2 ── */
.pricing-section {}
.price-card--featured {
    background: var(--indigo-deep);
    border-color: transparent;
    animation: glow 3s ease-in-out infinite;
}
.price-card--featured .price-card__name,
.price-card--featured .price-card__tagline,
.price-card--featured .price-card__period,
.price-card--featured .price-list li,
.price-card--featured .price-delivery,
.price-card--featured .pricing-note { color: rgba(255,255,255,.72); }
.price-card--featured h3,
.price-card--featured .price-amount { color: #fff; }
.price-card--featured .price-btn.btn--primary { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.2); }
.price-card__name { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); margin-bottom: 4px; }
.price-card__tagline { font-size: 14px; color: var(--ink-2); margin-bottom: 18px; }
.price-card__price { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 4px; }
.price-card__period { font-size: 13px; color: var(--ink-3); margin-bottom: 20px; }
.price-card__badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(90deg, var(--indigo), #a855f7);
    color: #fff; font-size: 12px; font-weight: 700;
    padding: 4px 14px; border-radius: 99px; white-space: nowrap;
    box-shadow: 0 4px 12px rgba(83,58,253,.3);
}
.price-card__divider { border: none; border-top: 1px solid var(--line-2); margin-bottom: 20px; }
.price-card--featured .price-card__divider { border-color: rgba(255,255,255,.12); }
.price-amount { font-size: 46px; font-weight: 300; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.price-currency { font-size: 20px; color: var(--ink-3); font-weight: 400; align-self: flex-end; margin-bottom: 4px; }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-list li { font-size: 14.5px; color: var(--ink-2); display: flex; align-items: flex-start; gap: 8px; line-height: 1.45; }
.price-list li span { flex-shrink: 0; font-weight: 600; }
.price-list li span:first-child { color: var(--green); }
.price-x { color: var(--ink-3) !important; font-weight: 400 !important; }
.price-btn { width: 100%; justify-content: center; }
.price-delivery { font-size: 12.5px; color: var(--ink-3); text-align: center; margin-top: 10px; }
.pricing-note { text-align: center; font-size: 14px; color: var(--ink-3); margin-top: 32px; }

/* Care bar */
.care-bar {
    margin-top: 32px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
    background: #fff; border: 1px solid var(--line-2);
    border-radius: 14px; padding: 24px 28px;
    box-shadow: var(--shadow-sm);
}
@media (max-width: 680px) { .care-bar { flex-direction: column; align-items: flex-start; } }
.care-bar__body { display: flex; align-items: flex-start; gap: 16px; }
.care-bar__icon { font-size: 28px; flex-shrink: 0; }
.care-bar__text strong { display: block; font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.care-bar__text p { font-size: 14.5px; color: var(--ink-2); margin: 0; }

/* ── FAQ v2 ── */
.faq-section {}
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 80px; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item { border-bottom: 1px solid var(--line-2); }
.faq-q {
    display: flex; width: 100%;
    justify-content: space-between; align-items: center;
    padding: 20px 0; cursor: pointer; gap: 16px;
    background: none; border: none; text-align: left;
    font-family: inherit; font-size: 15.5px; font-weight: 500; color: var(--ink); line-height: 1.35;
}
.faq-q:hover { color: var(--indigo); }
.faq-icon {
    width: 28px; height: 28px; min-width: 28px; border-radius: 99px;
    background: rgba(83,58,253,.08); color: var(--indigo);
    display: grid; place-items: center; font-size: 18px; font-weight: 300;
    transition: transform .3s cubic-bezier(.4,0,.2,1), background .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--indigo); color: #fff; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .38s cubic-bezier(.4,0,.2,1); }
.faq-a p { padding-bottom: 20px; font-size: 15px; color: var(--ink-2); line-height: 1.65; }
.faq-item.open .faq-a { max-height: 400px; }

/* ── CTA dark ── */
.cta-dark {
    position: relative; overflow: hidden; isolation: isolate;
    background: var(--indigo-ink); color: #fff;
    padding: 120px 0; text-align: center;
}
.cta-dark::before {
    content: "";
    position: absolute; inset: -20%; z-index: -1;
    background:
        radial-gradient(closest-side at 25% 30%, rgba(83,58,253,.5), transparent 60%),
        radial-gradient(closest-side at 75% 70%, rgba(168,85,247,.4), transparent 60%),
        radial-gradient(closest-side at 50% 90%, rgba(0,198,255,.15), transparent 50%);
    filter: blur(30px);
    animation: drift 26s ease-in-out infinite alternate;
}
.cta-dark__mesh {}
.cta-dark__inner { position: relative; z-index: 1; }
.cta-dark__inner .eyebrow { margin-bottom: 16px; }
.cta-dark__inner h2 { color: #fff; font-size: clamp(32px, 4.5vw, 52px); margin-bottom: 18px; }
.cta-dark__inner p { color: rgba(255,255,255,.72); font-size: 18px; max-width: 520px; margin: 0 auto 36px; }
.cta-dark__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── Contact page ── */
.contact-section {}
.contact-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 72px; align-items: start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 48px; } }
.contact-form-wrap { background: #fff; border: 1px solid var(--line-2); border-radius: 16px; padding: 40px; box-shadow: var(--shadow-md); }
.contact-form-wrap h2 { margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13.5px; font-weight: 500; color: var(--ink); }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: 10px 14px;
    border: 1px solid var(--line); border-radius: 8px;
    font-family: inherit; font-size: 15px; color: var(--ink);
    background: #fff; outline: none;
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(83,58,253,.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-footer { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 8px; }
.form-note { font-size: 13px; color: var(--ink-3); }
.form-alert { padding: 14px 18px; border-radius: 8px; font-size: 14.5px; }
.form-submit { align-self: flex-end; }
@media (max-width: 520px) { .form-submit { width: 100%; justify-content: center; } }
.alert--success { background: rgba(62,194,143,.1); border: 1px solid rgba(62,194,143,.3); color: #1a6b47; border-radius: 10px; padding: 16px 20px; margin-bottom: 20px; }
.alert-error { background: rgba(255,75,75,.08); border: 1px solid rgba(255,75,75,.25); color: #8b1a1a; }
.contact-info {}
.contact-info h2 { margin-bottom: 28px; }
.contact-info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-item__icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: rgba(83,58,253,.08); font-size: 20px;
    display: grid; place-items: center; flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.contact-info-item a,
.contact-info-item span { font-size: 14.5px; color: var(--ink-2); }
.contact-info-item a:hover { color: var(--indigo); }
.contact-promise { background: var(--bg-soft); border: 1px solid var(--line-2); border-radius: 14px; padding: 24px; }
.contact-promise h3 { font-size: 16px; margin-bottom: 10px; }
.contact-promise p { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; margin-bottom: 18px; }
.contact-signature { display: flex; align-items: center; gap: 12px; }
.contact-signature strong { display: block; font-size: 14px; font-weight: 600; color: var(--ink); }
.contact-signature span { font-size: 13px; color: var(--ink-3); }

/* ── Leistungen page ── */
.service-detail { }
.service-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.service-detail-layout--reverse { direction: rtl; }
.service-detail-layout--reverse > * { direction: ltr; }
@media (max-width: 900px) { .service-detail-layout, .service-detail-layout--reverse { grid-template-columns: 1fr; direction: ltr; } }
.service-detail__lead { font-size: 19px; color: var(--ink); font-weight: 400; line-height: 1.5; margin-bottom: 16px; }
.service-detail__body p { font-size: 16px; color: var(--ink-2); line-height: 1.65; margin-bottom: 20px; }
.feature-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; }
.feature-item__check {
    width: 22px; height: 22px; border-radius: 99px;
    background: rgba(62,194,143,.12); color: var(--green);
    display: grid; place-items: center; font-size: 12px; font-weight: 700;
    flex-shrink: 0; margin-top: 1px;
}
.feature-item strong { display: block; font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.feature-item p { font-size: 14px; color: var(--ink-2); line-height: 1.5; margin: 0; }
.service-visual-card {
    background: #fff; border: 1px solid var(--line-2);
    border-radius: 16px; padding: 28px;
    box-shadow: var(--shadow-lg);
}
.service-visual-card--hosting, .service-visual-card--support {}
.hosting-specs { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); border-radius: 12px; overflow: hidden; margin-bottom: 28px; }
.hosting-spec { background: #fff; padding: 18px 14px; text-align: center; }
.hosting-spec__val { display: block; font-size: 20px; font-weight: 600; color: var(--indigo); margin-bottom: 4px; }
.hosting-spec__label { font-size: 12px; color: var(--ink-3); }
.hosting-visual { display: flex; flex-direction: column; gap: 10px; }
.hosting-viz-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; border-radius: 8px;
    background: #f8fbff; border: 1px solid var(--line-2);
    font-size: 14px; color: var(--ink-2);
}
.hosting-viz-item--active { border-color: rgba(62,194,143,.2); background: rgba(62,194,143,.04); }
.hvz-dot {
    width: 8px; height: 8px; border-radius: 99px;
    background: var(--green); flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(62,194,143,.2);
}
.hvz-status { margin-left: auto; font-size: 12.5px; font-weight: 600; color: var(--green); }
.support-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); border-radius: 12px; overflow: hidden; margin-bottom: 20px; }
.support-stat { background: #fff; padding: 18px 14px; text-align: center; }
.support-stat strong { display: block; font-size: 24px; font-weight: 700; color: var(--indigo); margin-bottom: 4px; }
.support-stat span { font-size: 12px; color: var(--ink-3); }
.support-tools { display: flex; flex-wrap: wrap; gap: 8px; }
.service-badge {
    display: inline-block;
    background: rgba(83,58,253,.07); border: 1px solid rgba(83,58,253,.12);
    color: var(--indigo); border-radius: 99px;
    padding: 5px 12px; font-size: 13px; font-weight: 500;
}
.service-visual-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.svc-mockup { background: #fff; border-radius: 10px; overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--shadow-md); margin-bottom: 16px; }
.svc-mockup-bar { display: flex; align-items: center; gap: 6px; padding: 8px 12px; background: #fcfdfe; border-bottom: 1px solid var(--line-2); }
.svc-mockup-screen { padding: 12px; }
.svc-nav { height: 7px; background: #e8edf3; border-radius: 3px; margin-bottom: 10px; width: 80%; }
.svc-hero-block { margin-bottom: 12px; }
.svc-h { height: 9px; border-radius: 4px; background: #e8edf3; margin-bottom: 6px; }
.svc-h--grad { background: linear-gradient(90deg, #dad2ff, #ece7ff); width: 70%; height: 12px; }
.svc-h--sm { width: 50%; }
.svc-cta { height: 18px; width: 80px; background: var(--indigo); border-radius: 99px; opacity: .75; }
.svc-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.svc-card { height: 38px; background: #f3f6fa; border-radius: 5px; border: 1px solid var(--line-2); }

/* ── Preise page ── */
.pricing-page-section {}
.care-section {}
.care-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 900px) { .care-grid { grid-template-columns: 1fr; } }
.care-card {
    background: #fff; border: 1px solid var(--line-2);
    border-radius: 16px; padding: 32px 28px;
    box-shadow: var(--shadow-sm); position: relative;
    transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s cubic-bezier(.16,1,.3,1);
}
.care-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.care-card--featured {
    background: var(--indigo-deep);
    border-color: transparent;
    animation: glow 3s ease-in-out infinite;
}
.care-card__badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(90deg, var(--indigo), #a855f7);
    color: #fff; font-size: 12px; font-weight: 700;
    padding: 4px 14px; border-radius: 99px; white-space: nowrap;
}
.care-card__name { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.care-card--featured .care-card__name { color: #fff; }
.care-card__price { font-size: 32px; font-weight: 300; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 20px; }
.care-card__price span { font-size: 15px; font-weight: 400; color: var(--ink-3); }
.care-card--featured .care-card__price { color: #fff; }
.care-card--featured .care-card__price span { color: rgba(255,255,255,.6); }
.care-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.care-list li { font-size: 14.5px; color: var(--ink-2); }
.care-card--featured .care-list li { color: rgba(255,255,255,.75); }

/* ── Über uns page ── */
.about-main-section {}
.about-main-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .about-main-layout { grid-template-columns: 1fr; gap: 48px; } }
.about-photo-card {
    position: relative;
    background: linear-gradient(135deg, rgba(83,58,253,.06), rgba(168,85,247,.08));
    border: 1px solid rgba(83,58,253,.1); border-radius: 18px;
    aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center;
    overflow: visible;
}
.about-photo-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.about-main-logo { border-radius: 14px; opacity: .7; }
.about-photo-placeholder-text { font-size: 14px; color: var(--ink-3); font-style: italic; }
.about-float-badge {
    position: absolute;
    background: #fff; border-radius: 10px;
    box-shadow: var(--shadow-md);
    padding: 10px 14px; font-size: 13px; font-weight: 600; color: var(--ink);
    display: flex; align-items: center; gap: 8px;
}
.about-float-badge--1 { top: -14px; right: -14px; }
.about-float-badge--2 { bottom: -14px; left: -14px; }
.about-float-badge span { font-size: 18px; }
.about-main-body h2 { margin-bottom: 20px; }
.about-lead { font-size: 18px; color: var(--ink); font-weight: 400; line-height: 1.55; margin-bottom: 16px; }
.about-main-body p { font-size: 16px; color: var(--ink-2); line-height: 1.65; margin-bottom: 14px; }
.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); border-radius: 12px; overflow: hidden; margin: 28px 0; }
.about-fact { background: #fff; padding: 16px; }
.about-fact strong { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--indigo); margin-bottom: 4px; }
.about-fact span { font-size: 14.5px; color: var(--ink-2); }
.values-section {}
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
@media (max-width: 680px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
    background: #fff; border: 1px solid var(--line-2);
    border-radius: 14px; padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s cubic-bezier(.16,1,.3,1);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-card__icon { font-size: 28px; margin-bottom: 12px; }
.value-card h3 { font-size: 18px; margin-bottom: 10px; }
.value-card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin: 0; }
.skills-section {}
.skills-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 780px) { .skills-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .skills-grid { grid-template-columns: 1fr; } }
.skill-item {
    background: #fff; border: 1px solid var(--line-2);
    border-radius: 12px; padding: 22px 20px;
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; gap: 4px;
    transition: transform .2s, box-shadow .2s;
}
.skill-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.skill-item__icon { font-size: 26px; margin-bottom: 6px; }
.skill-item strong { font-size: 15px; font-weight: 600; color: var(--ink); }
.skill-item span { font-size: 13px; color: var(--ink-3); }

/* ── Footer v2 ── */
.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 70px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 50px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand {}
.footer-logo-link { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-img { border-radius: 8px; }
.footer-logo-text { font-size: 16px; font-weight: 600; color: var(--ink); }
.footer-logo-text strong { font-weight: 700; }
.footer-brand p { font-size: 14.5px; color: var(--ink-2); max-width: 300px; line-height: 1.6; margin-bottom: 8px; }
.footer-location { font-size: 13.5px; color: var(--ink-3); }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; color: var(--ink); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14.5px; color: var(--ink-2); margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: var(--indigo); }
.footer-col p { font-size: 14.5px; color: var(--ink-2); margin-bottom: 10px; }
.footer-bottom {
    border-top: 1px solid var(--line-2); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 10px; font-size: 13px; color: var(--ink-3);
}

/* ── Sticky CTA v2 ── */
.sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
    padding: 12px 20px;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    transform: translateY(100%); transition: transform .3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta p { font-size: 14px; font-weight: 500; color: var(--ink); margin: 0; }
@media (min-width: 781px) { .sticky-cta { display: none; } }

/* ── Stock photo helpers ── */
.about-photo-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    display: block;
}
.about-photo-card { overflow: hidden; }
.about-photo-inner { width: 100%; height: 100%; overflow: hidden; border-radius: 16px; }
.about-photo-placeholder { width: 100%; height: 100%; border-radius: 18px; overflow: hidden; }

/* ── Active nav link ── */
.nav-links a.active { color: var(--indigo); font-weight: 600; }

/* ══════════════════════════════════════════════════════════════
   APPLE AESTHETIC OVERRIDES
   Bigger type · More whitespace · Cleaner cards · Real photos
   ══════════════════════════════════════════════════════════════ */

/* Typography scale up — Apple-level headlines */
h1 {
    font-size: clamp(48px, 8vw, 96px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.04em !important;
    line-height: 1.02 !important;
}
h2 {
    font-size: clamp(36px, 5vw, 64px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.035em !important;
    line-height: 1.05 !important;
}
h3 {
    font-size: 24px !important;
    font-weight: 600 !important;
}

/* More whitespace — Apple's signature breathing room */
section { padding: 100px 0 !important; }
.section { padding: 100px 0 !important; }
.section-head { max-width: 760px !important; margin-bottom: 72px !important; }

/* Body text slightly larger */
body { font-size: 18px !important; line-height: 1.6 !important; }

/* ── Apple Hero — centered, photo below text ── */
.hero {
    padding: 100px 0 0 !important;
    overflow: hidden;
    background: #f5f2ff !important;
}
.hero-layout {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0 !important;
}
.hero-body {
    max-width: 860px !important;
    margin: 0 auto !important;
    padding-bottom: 40px;
}
.hero-headline {
    font-size: clamp(52px, 9vw, 112px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.045em !important;
    line-height: 1.0 !important;
    margin-bottom: 28px;
}
.hero-lede {
    font-size: clamp(18px, 2vw, 22px) !important;
    color: var(--ink-2) !important;
    max-width: 620px;
    margin: 0 auto 40px !important;
    line-height: 1.5 !important;
}
.hero-actions {
    display: flex !important;
    gap: 14px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin-bottom: 56px !important;
}
.hero-trust { justify-content: center !important; }
.hero-badge { margin: 0 auto 28px !important; }

/* Hero photo — full-width image strip below text, Apple style */
.hero-visual { display: none !important; } /* hide CSS mockup */
/* Service detail mini photo strip — equal-height grid */
.photo-strip-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: stretch;
}
.photo-strip-mini img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

.hero-photo-strip {
    width: 100%;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    margin: 0;
    box-shadow: 0 0 0 1px rgba(0,0,0,.06), 0 40px 80px rgba(0,0,0,.12);
}
.hero-photo-strip img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* ── Apple Cards — ultra-clean ── */
.service-card {
    box-shadow: none !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    border-radius: 20px !important;
    transition: box-shadow .3s, transform .3s !important;
}
.service-card:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,.1) !important;
    transform: translateY(-4px) !important;
}
.service-card--featured {
    border: none !important;
    box-shadow: 0 8px 40px rgba(83,58,253,.2) !important;
}
.price-card {
    border-radius: 24px !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    box-shadow: none !important;
}
.price-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,.1) !important; }
.price-card--featured {
    box-shadow: 0 12px 50px rgba(83,58,253,.25) !important;
    border: none !important;
}
.value-card, .skill-item, .faq-item {
    border-radius: 20px !important;
    border: 1px solid rgba(0,0,0,.07) !important;
    box-shadow: none !important;
}

/* ── Portfolio: real photos instead of CSS mockups ── */
.portfolio-card {
    border-radius: 20px !important;
    overflow: hidden;
    border: none !important;
    box-shadow: 0 4px 24px rgba(0,0,0,.1) !important;
    padding: 0 !important;
    background: #000 !important;
}
.portfolio-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 60px rgba(0,0,0,.18) !important;
}
.portfolio-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 0;
    transition: transform .5s ease;
}
.portfolio-card:hover .portfolio-img { transform: scale(1.03); }
.portfolio-card__body {
    padding: 24px !important;
    background: #fff;
}

/* ── Portfolio placeholder cards ── */
.portfolio-card--placeholder .portfolio-img-wrap {
    height: 220px;
    background: var(--bg-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-bottom: 1px solid var(--line-2);
}
.portfolio-placeholder-icon { font-size: 40px; line-height: 1; }
.portfolio-placeholder-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(83,58,253,.08); border: 1px solid rgba(83,58,253,.18);
    border-radius: 20px; padding: 5px 14px;
    font-size: 12px; font-weight: 600; color: var(--indigo);
}
.portfolio-card--placeholder .portfolio-card__body p { font-size: 13.5px; color: var(--ink-3); }
.portfolio-card--placeholder .card-link {
    display: inline-block; margin-top: 4px;
    font-size: 13px; font-weight: 600; color: var(--indigo);
    text-decoration: none;
}
.portfolio-card--placeholder .card-link:hover { text-decoration: underline; }

/* ── About section — bigger photo ── */
.about-photo-placeholder {
    min-height: 480px;
    border-radius: 24px !important;
}
.about-photo-card {
    border-radius: 24px !important;
    min-height: 520px;
}

/* ── Page hero — larger ── */
.page-hero {
    padding: 120px 0 100px !important;
    text-align: center;
}
.page-hero .container { display: flex; flex-direction: column; align-items: center; }
.page-hero h1 { max-width: 800px; }
.page-hero__sub { font-size: 20px !important; max-width: 600px; margin: 0 auto; }

/* ── Service detail — more breathing room ── */
.service-detail-layout { gap: 100px !important; }
.service-detail__lead { font-size: 20px !important; }

/* ── CTA dark — less mesh clutter ── */
.cta-dark { padding: 140px 0 !important; }
.cta-dark__inner { text-align: center; }
.cta-dark__inner h2 { font-size: clamp(40px, 6vw, 72px) !important; }
.cta-dark__actions { justify-content: center; display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Trust bar — cleaner ── */
.trust-bar { padding: 40px 0 !important; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-item { font-size: 15px !important; font-weight: 500; color: var(--ink-3) !important; }

/* ── Stats — bigger numbers ── */
.stat-number { font-size: clamp(52px, 7vw, 80px) !important; font-weight: 300 !important; letter-spacing: -0.04em !important; color: var(--indigo) !important; white-space: nowrap !important; }

/* ── Responsive ── */
@media (max-width: 768px) {
    section, .section { padding: 80px 0 !important; }
    .hero { padding: 60px 0 0 !important; overflow-x: hidden; }
    .hero-photo-strip { border-radius: 16px 16px 0 0; }
    h1, .hero-headline { font-size: clamp(28px, 8vw, 48px) !important; word-break: break-word; overflow-wrap: break-word; }
    h2 { font-size: clamp(30px, 7vw, 48px) !important; }

    /* Fix: absolute badges gehen nicht off-screen */
    .about-badge--1, .about-float-badge--1,
    .about-badge.about-badge--1 { right: 8px !important; top: 8px !important; }
    .about-badge--2, .about-float-badge--2,
    .about-badge.about-badge--2 { left: 8px !important; bottom: 8px !important; }
    .about-photo-card, .about-photo-wrap { overflow: hidden !important; }

    /* Fix: stat-numbers dürfen umbrechen */
    .stat-number, .stat .v { white-space: normal !important; font-size: clamp(28px, 7vw, 48px) !important; }

    /* Fix: container padding kleiner für mehr Platz */
    .container { padding: 0 16px !important; }

    /* Fix: p-Text darf nicht overflow */
    p, .about-lead, .about-body p, .about-main-body p {
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 400px) {
    h1, .hero-headline { font-size: clamp(24px, 7.5vw, 36px) !important; }
}

/* ── Nav drawer HARD FIX — override inset:0 from old rule ── */
.nav-drawer {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    width: 280px !important;
    z-index: 49 !important;
    background: #fff !important;
    transform: translateX(-100%) !important;
    transition: transform .55s cubic-bezier(.16,1,.3,1) !important;
    pointer-events: auto !important;
    padding: 24px 28px 32px !important;
    display: flex !important;
    flex-direction: column !important;
    overflow-y: auto !important;
    box-shadow: 12px 0 40px rgba(13,37,61,.12) !important;
}
.nav-drawer.open { transform: translateX(0) !important; }

/* ══════════════════════════════════════════════════════════════
   3D PHOTO EFFECTS + ANIMATIONS (Josh Comeau layered shadow technique)
   ══════════════════════════════════════════════════════════════ */

/* Hero photo — flat, no perspective gap */
.hero-photo-strip {
    border-radius: 24px 24px 0 0 !important;
    overflow: hidden !important;
    transform: none !important;
    transition: transform 0.6s ease !important;
    box-shadow:
        0 0 0 1px rgba(0,0,0,0.06),
        0 4px 8px rgba(0,0,0,0.05),
        0 16px 32px rgba(0,0,0,0.10),
        0 40px 80px rgba(0,0,0,0.14) !important;
}
.hero-photo-strip:hover {
    transform: none !important;
}

/* Portfolio cards — interactive 3D tilt */
.portfolio-card {
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.08s ease, box-shadow 0.5s cubic-bezier(.16,1,.3,1) !important;
    box-shadow:
        0 2px 4px rgba(0,0,0,0.04),
        0 8px 24px rgba(0,0,0,0.08),
        0 24px 60px rgba(0,0,0,0.10),
        0 0 0 1px rgba(0,0,0,0.05) !important;
}

/* Float animation for badges and cards */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-16px) rotate(1deg); }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(83,58,253,0.3); }
    50% { box-shadow: 0 0 0 12px rgba(83,58,253,0); }
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes slide-up {
    from { opacity: 0; transform: translateY(32px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scale-in {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

/* Animated gradient headline */
.grad-text-animated {
    background: linear-gradient(135deg, #533afd, #a855f7, #00c6ff, #533afd);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

/* Floating hero badge */
.hero-badge { animation: float-slow 6s ease-in-out infinite !important; }

/* Pulsing dot */
.dot {
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Reveal animation — improved */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal-stagger.in > *:nth-child(1) { opacity:1; transform:translateY(0); transition-delay:.05s; }
.reveal-stagger.in > *:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:.15s; }
.reveal-stagger.in > *:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:.25s; }
.reveal-stagger.in > *:nth-child(4) { opacity:1; transform:translateY(0); transition-delay:.35s; }
.reveal-stagger.in > *:nth-child(5) { opacity:1; transform:translateY(0); transition-delay:.45s; }
.reveal-stagger.in > *:nth-child(6) { opacity:1; transform:translateY(0); transition-delay:.55s; }

/* Marquee trust logos */
.trust-marquee-wrap {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.trust-marquee {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: marquee 22s linear infinite;
}
.trust-marquee:hover { animation-play-state: paused; }
.trust-marquee-item {
    font-size: 15px; font-weight: 600;
    color: var(--ink-3);
    white-space: nowrap;
    display: flex; align-items: center; gap: 8px;
}

/* Showcase bento grid */
.showcase-section { background: var(--bg); }
.bento-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 20px;
}
.bento-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
    box-shadow:
        0 2px 4px rgba(0,0,0,0.04),
        0 8px 24px rgba(0,0,0,0.08),
        0 24px 48px rgba(0,0,0,0.08),
        0 0 0 1px rgba(0,0,0,0.05);
    transition: transform 0.12s ease, box-shadow 0.3s ease;
    will-change: transform;
}
.bento-card:hover {
    box-shadow:
        0 4px 8px rgba(0,0,0,0.06),
        0 16px 40px rgba(0,0,0,0.12),
        0 40px 80px rgba(0,0,0,0.12),
        0 0 0 1px rgba(0,0,0,0.06);
}
.bento-card--tall { grid-row: span 2; }
.bento-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.bento-card:hover img { transform: scale(1.04); }
.bento-card--tall img { height: 100%; }
.bento-card:not(.bento-card--tall) img { height: 100%; }
.bento-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
    color: #fff;
    font-size: 14px; font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.bento-card:hover .bento-label { transform: translateY(0); }

@media (max-width: 900px) {
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-card--tall { grid-row: span 1; }
}
@media (max-width: 600px) {
    .bento-grid { grid-template-columns: 1fr; }
}

/* Service cards with photo */
.service-card-photo {
    width: 100%; height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 14px 14px 0 0;
    margin: -28px -28px 24px;
    width: calc(100% + 56px);
}

/* Testimonial avatar */
.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* ══════════════════════════════════════════════════════════════
   SITE LOADER / PRELOADER
   ══════════════════════════════════════════════════════════════ */

#site-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #070711;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 1.0s cubic-bezier(.4,0,.2,1),
                visibility 1.0s cubic-bezier(.4,0,.2,1);
}

#site-loader.loader-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-mark {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(83,58,253,.25),
        0 0 30px rgba(83,58,253,.35),
        0 0 80px rgba(83,58,253,.15);
    animation: loader-glow 3s ease-in-out infinite;
    margin-bottom: 20px;
}
.loader-mark img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.loader-name {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: rgba(255,255,255,.9);
    letter-spacing: 0.04em;
    margin-bottom: 36px;
}
.loader-name strong {
    font-weight: 700;
    color: #fff;
}

.loader-track {
    width: 140px;
    height: 2px;
    background: rgba(255,255,255,.08);
    border-radius: 99px;
    overflow: hidden;
    position: relative;
}
.loader-fill {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: linear-gradient(90deg, #533AFD, #7C62FF);
    border-radius: 99px;
    animation: loader-progress 2.2s cubic-bezier(.4,0,.2,1) forwards;
    animation-delay: .3s;
}

.loader-dots {
    display: flex;
    gap: 6px;
    margin-top: 16px;
}
.loader-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    animation: loader-dot-pulse 1.8s ease-in-out infinite;
}
.loader-dot:nth-child(2) { animation-delay: .35s; }
.loader-dot:nth-child(3) { animation-delay: .7s; }

@keyframes loader-glow {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(83,58,253,.25),
            0 0 30px rgba(83,58,253,.35),
            0 0 80px rgba(83,58,253,.12);
        transform: scale(1);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(83,58,253,.4),
            0 0 50px rgba(83,58,253,.55),
            0 0 120px rgba(83,58,253,.22);
        transform: scale(1.04);
    }
}

@keyframes loader-progress {
    0%   { width: 0; }
    60%  { width: 80%; }
    85%  { width: 92%; }
    100% { width: 100%; }
}

@keyframes loader-dot-pulse {
    0%, 100% { opacity: .2; transform: scale(1); }
    50%       { opacity: 1; transform: scale(1.5); background: #533AFD; }
}

/* ══════════════════════════════════════════════════════════════
   BEAUTY LAYER — polish, micro-details, premium feel
   ══════════════════════════════════════════════════════════════ */

/* Page fade-in on load */
body {
    animation: page-fadein .5s ease both;
}
@keyframes page-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Eyebrow tags — rounder pill, richer color */
.eyebrow {
    display: inline-block;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.10em !important;
    text-transform: uppercase !important;
    color: var(--indigo) !important;
    background: rgba(83,58,253,.08) !important;
    border: 1px solid rgba(83,58,253,.14) !important;
    border-radius: 99px !important;
    padding: 5px 14px !important;
    margin-bottom: 18px !important;
}
.eyebrow--light {
    color: rgba(255,255,255,.85) !important;
    background: rgba(255,255,255,.10) !important;
    border-color: rgba(255,255,255,.20) !important;
}

/* Gradient text — richer, animated shimmer */
.grad-text {
    background: linear-gradient(135deg, #533AFD 0%, #8B6FFF 40%, #533AFD 80%) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: grad-shimmer 4s linear infinite !important;
}
@keyframes grad-shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Animated gradient text (hero) */
.grad-text-animated {
    background: linear-gradient(135deg, #533AFD, #A78BFF, #533AFD, #7C62FF) !important;
    background-size: 300% auto !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: grad-shimmer 3s linear infinite !important;
}

/* Feature check items — handled in v9 block below */

/* Service badges — sharper pill style */
.service-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    background: rgba(83,58,253,.07) !important;
    color: var(--indigo) !important;
    border: 1px solid rgba(83,58,253,.12) !important;
    border-radius: 99px !important;
    padding: 5px 12px !important;
}

/* Sticky CTA — better visual */
.sticky-cta {
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-top: 1px solid rgba(83,58,253,.12) !important;
    box-shadow: 0 -4px 32px rgba(0,0,0,.06) !important;
}

/* Buttons — subtle inner glow on primary */
.btn--primary {
    box-shadow: 0 0 0 0 rgba(83,58,253,.4) !important;
    transition: box-shadow .4s cubic-bezier(.16,1,.3,1),
                transform .4s cubic-bezier(.16,1,.3,1),
                background .2s ease !important;
}
.btn--primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(83,58,253,.35),
                0 2px 8px rgba(83,58,253,.2) !important;
}
.btn--primary:active {
    transform: translateY(0) !important;
}

/* Ghost button hover lift */
.btn--ghost:hover,
.btn--white:hover {
    transform: translateY(-2px) !important;
}

/* Page hero — more padding top on desktop */
.page-hero {
    padding-top: 100px !important;
    padding-bottom: 60px !important;
}

/* Section head text — enforce centering */
.section-head {
    text-align: center !important;
    max-width: 760px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.section-head h2,
.section-head h1 { text-align: center !important; }
.section-head p,
.section-head .section-sub {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}
.section-head .eyebrow {
    display: inline-block !important;
    text-align: center !important;
}
.section-sub {
    font-size: 17px;
    color: var(--ink-3);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 580px;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

/* Footer links hover underline */
.site-footer a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Form inputs — better focus ring */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none !important;
    border-color: var(--indigo) !important;
    box-shadow: 0 0 0 3px rgba(83,58,253,.12) !important;
    transition: border-color .2s, box-shadow .3s !important;
}

/* Care card featured badge */
.care-card__badge,
.price-card__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: linear-gradient(135deg,#533AFD,#7C62FF);
    color: #fff;
    border-radius: 99px;
    padding: 3px 12px;
    margin-bottom: 12px;
}

/* Smooth image loading */
img {
    transition: opacity .4s ease;
}
img[loading="lazy"] {
    opacity: 0;
}
img[loading="lazy"].loaded,
img:not([loading]) {
    opacity: 1;
}

/* ── Subtle page background — less stark white ── */
body { background: #faf9ff !important; }
.stats-section,
.services-section,
.why-section,
.process-section,
.testimonials-section { background: #fff !important; }
.section--soft { background: #f3f1fc !important; }

/* ── FAQ: reset beauty-layer card overrides ── */
.faq-item {
    border-radius: 0 !important;
    border: none !important;
    border-bottom: 1px solid var(--line-2) !important;
    box-shadow: none !important;
    padding: 0 !important;
    background: transparent !important;
}
.faq-section .faq-grid { gap: 0 80px; }

/* ── Feature list: suppress double checkmark from ::before ── */
.feature-list .feature-item::before { content: none !important; }

/* Feature check icon — indigo pill ── */
.feature-item__check {
    width: 24px; height: 24px;
    border-radius: 99px;
    background: rgba(83,58,253,.10) !important;
    color: var(--indigo) !important;
    display: grid; place-items: center;
    font-size: 13px !important; font-weight: 700;
    flex-shrink: 0; margin-top: 2px;
}

/* ── Contact: premium redesign ── */
.contact-section { background: var(--bg-soft) !important; }
.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-form-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 48px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.04), 0 16px 48px rgba(0,0,0,.08);
}
.contact-form-wrap h2 { font-size: clamp(24px, 3vw, 32px) !important; margin-bottom: 32px; }

.contact-info {
    background: linear-gradient(145deg, #533AFD 0%, #3d2bc5 100%);
    border-radius: 24px;
    padding: 44px !important;
    color: #fff;
    position: sticky;
    top: 100px;
}
.contact-info h2 { color: #fff !important; font-size: clamp(22px, 2.5vw, 30px) !important; margin-bottom: 32px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-info-item__icon {
    width: 44px; height: 44px; border-radius: 14px;
    background: rgba(255,255,255,.15);
    display: grid; place-items: center;
    font-size: 20px; flex-shrink: 0;
}
.contact-info-item strong { display: block; color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-info-item span,
.contact-info-item a { color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.5; text-decoration: none; }
.contact-info-item a:hover { color: #fff; }

.contact-promise {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.2);
}
.contact-promise h3 { color: #fff !important; font-size: 16px !important; margin-bottom: 10px; }
.contact-promise p { color: rgba(255,255,255,.8); font-size: 14.5px; line-height: 1.65; margin-bottom: 20px; }
.contact-signature { display: flex; align-items: center; gap: 12px; }
.contact-signature strong { color: #fff; display: block; font-size: 15px; }
.contact-signature span { color: rgba(255,255,255,.6); font-size: 13px; }

/* Form styling improvements */
.form-group label { font-size: 13px; font-weight: 600; color: var(--ink); letter-spacing: .02em; margin-bottom: 6px; display: block; }
.form-group input,
.form-group textarea,
.form-group select {
    border-radius: 12px !important;
    border: 1.5px solid var(--line-2) !important;
    padding: 13px 16px !important;
    font-size: 15px !important;
    background: var(--bg-soft) !important;
    transition: border-color .2s, box-shadow .2s, background .2s !important;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: #fff !important;
    border-color: var(--indigo) !important;
    box-shadow: 0 0 0 4px rgba(83,58,253,.10) !important;
}
.form-submit {
    width: 100% !important;
    justify-content: center !important;
    padding: 16px 32px !important;
    font-size: 16px !important;
    border-radius: 14px !important;
    margin-top: 8px !important;
    letter-spacing: .01em !important;
}
.form-note { font-size: 12.5px !important; color: var(--ink-3) !important; line-height: 1.6 !important; margin-bottom: 16px !important; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ── Cookie banner ── */
#cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: rgba(7,7,17,.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.16,1,.3,1);
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p {
    flex: 1; font-size: 14px; color: rgba(255,255,255,.75);
    line-height: 1.5; margin: 0; min-width: 240px;
}
#cookie-banner a { color: #7C62FF; text-decoration: underline; text-underline-offset: 3px; }
.cookie-btn-group { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-accept {
    background: var(--indigo); color: #fff;
    border: none; border-radius: 10px;
    padding: 10px 22px; font-size: 14px; font-weight: 600;
    cursor: pointer; font-family: inherit;
    transition: opacity .2s;
}
.cookie-btn-accept:hover { opacity: .85; }
.cookie-btn-decline {
    background: rgba(255,255,255,.08); color: rgba(255,255,255,.65);
    border: 1px solid rgba(255,255,255,.12); border-radius: 10px;
    padding: 10px 18px; font-size: 14px; font-weight: 500;
    cursor: pointer; font-family: inherit;
    transition: background .2s;
}
.cookie-btn-decline:hover { background: rgba(255,255,255,.14); }

/* ═══ Contact Form v2 (cf2) ═══════════════════════════════════════════════ */
.cf2-section {
    background: #07071a;
    padding: 80px 0 100px;
}

.cf2-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.cf2-trust-item { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.55); }
.cf2-trust-dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: rgba(255,255,255,.2);
    flex-shrink: 0;
}

.cf2-card {
    max-width: 780px;
    margin: 0 auto;
    background: #fff;
    border-radius: 28px;
    padding: 56px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.04),
        0 8px 32px rgba(0,0,0,.3),
        0 32px 80px rgba(0,0,0,.4);
}
@media (max-width: 680px) { .cf2-card { padding: 32px 24px; border-radius: 20px; } }

.cf2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
@media (max-width: 600px) { .cf2-grid { grid-template-columns: 1fr; } }

.cf2-field { display: flex; flex-direction: column; gap: 7px; }
.cf2-field--full { grid-column: 1 / -1; }

.cf2-field label {
    font-size: 13px;
    font-weight: 600;
    color: #0d253d;
    letter-spacing: .01em;
}
.cf2-req { color: var(--indigo); }
.cf2-opt { font-weight: 400; color: #9aa5b4; }

.cf2-field input,
.cf2-field select,
.cf2-field textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e4e7ec;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: #0d253d;
    background: #faf9ff;
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
    -webkit-appearance: none;
}
.cf2-field input:focus,
.cf2-field select:focus,
.cf2-field textarea:focus {
    border-color: var(--indigo);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(83,58,253,.10);
}
.cf2-field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

.cf2-footer {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.cf2-note {
    flex: 1;
    font-size: 12.5px;
    color: #9aa5b4;
    line-height: 1.55;
    min-width: 200px;
}
.cf2-note a { color: var(--indigo); text-decoration: underline; text-underline-offset: 2px; }

.cf2-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--indigo);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 15px 28px;
    font-size: 15.5px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: transform .2s cubic-bezier(.16,1,.3,1), box-shadow .2s;
    white-space: nowrap;
}
.cf2-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(83,58,253,.35);
}
.cf2-submit svg { transition: transform .2s; }
.cf2-submit:hover svg { transform: translateX(3px); }
@media (max-width: 600px) {
    .cf2-footer { flex-direction: column; align-items: stretch; }
    .cf2-submit { justify-content: center; }
}

/* DSGVO Consent checkbox */
.cf2-consent {
    margin-bottom: 20px;
}
.cf2-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.5;
}
.cf2-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--indigo);
    cursor: pointer;
    border-radius: 4px;
}
.cf2-checkbox-label a {
    color: var(--indigo);
    text-decoration: underline;
}

/* Success state */
.cf2-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0 10px;
}
.cf2-success-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(83,58,253,.1);
    color: var(--indigo);
    font-size: 28px; font-weight: 700;
    display: grid; place-items: center;
    margin-bottom: 20px;
}
.cf2-success h3 { font-size: 22px; color: #0d253d; margin-bottom: 10px; }
.cf2-success p { color: #6b7a99; font-size: 16px; line-height: 1.6; max-width: 420px; }

/* Bottom info strip */
.cf2-info-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 40px;
    background: rgba(255,255,255,.04);
    border-radius: 18px;
    overflow: hidden;
}
@media (max-width: 760px) { .cf2-info-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .cf2-info-strip { grid-template-columns: 1fr; } }

.cf2-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 24px 20px;
    background: rgba(255,255,255,.035);
    text-decoration: none;
    transition: background .2s;
}
a.cf2-info-item:hover { background: rgba(255,255,255,.07); }

.cf2-info-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.cf2-info-item strong { display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9); margin-bottom: 3px; }
.cf2-info-item span { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.4; }

/* ═══ Stats Bar (Leistungen page) ═══════════════════════════════════════════ */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: var(--line-2);
    border: 1px solid var(--line-2);
    border-radius: 16px;
    overflow: hidden;
    margin: 40px 0;
}
.stats-bar-item {
    background: #fff;
    padding: 24px 20px;
    text-align: center;
}
.stats-bar-item strong {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--indigo);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.stats-bar-item span { font-size: 13px; color: var(--ink-3); }
@media (max-width:540px) { .stats-bar { grid-template-columns: 1fr; } }

/* ═══ Service visual / photo (Leistungen page) ═══════════════════════════════ */
.svc-photo { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.svc-photo img { width: 100%; height: 380px; object-fit: cover; display: block; }
.svc-photo-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

/* ═══ Process steps (Leistungen page) ════════════════════════════════════════ */
.process-step {
    background: #fff;
    border: 1px solid var(--line-2);
    border-radius: 16px;
    padding: 32px 28px;
}
.process-step__num {
    font-size: 36px;
    font-weight: 800;
    color: var(--indigo);
    opacity: .2;
    margin-bottom: 12px;
    line-height: 1;
}
.process-step h3 { font-size: 18px; margin-bottom: 10px; }
.process-step p { font-size: 14.5px; color: var(--ink-2); line-height: 1.65; margin: 0; }
.process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
}
@media (max-width:900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:540px) { .process-grid { grid-template-columns: 1fr; } }

/* ═══ Legal pages (Datenschutz / Impressum) ══════════════════════════════════ */
.legal-body { max-width: 780px; }
.legal-chip {
    display: inline-block;
    background: rgba(83,58,253,.08);
    color: var(--indigo);
    border-radius: 99px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 32px;
}
.legal-body h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    margin-top: 44px;
    margin-bottom: 12px;
    letter-spacing: -0.015em;
}
.legal-body h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    margin-top: 24px;
    margin-bottom: 8px;
}
.legal-body p { color: var(--ink-2); line-height: 1.75; margin-bottom: 14px; font-size: 15.5px; }
.legal-body ul { color: var(--ink-2); line-height: 1.75; font-size: 15.5px; padding-left: 20px; margin-bottom: 14px; }
.legal-body li { margin-bottom: 4px; }
.legal-body a { color: var(--indigo); text-decoration: underline; text-underline-offset: 3px; }
.legal-body h2:first-of-type { margin-top: 0; }

/* ═══ MOBILE FIXES ═══════════════════════════════════════════════════════════ */

/* Fix 1: Nav — solid white, kein Glaseffekt */
@media (max-width: 780px) {
    .site-header {
        background: #fff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-bottom: 1px solid var(--line) !important;
    }
    .site-header.scrolled { background: #fff !important; }
}

/* Fix 2: Nav Drawer — z-index über dem Overlay */
.nav-drawer {
    position: fixed !important;
    top: 0 !important; left: 0 !important;
    right: auto !important; bottom: 0 !important;
    width: 280px !important;
    z-index: 300 !important;
    background: #fff !important;
    transform: translateX(-100%) !important;
    transition: transform .35s cubic-bezier(.16,1,.3,1) !important;
    padding: 24px 28px 32px !important;
    display: flex !important;
    flex-direction: column !important;
    overflow-y: auto !important;
    box-shadow: 12px 0 40px rgba(13,37,61,.12) !important;
    pointer-events: auto !important;
}
.nav-drawer.open { transform: translateX(0) !important; }
.nav-drawer-bg {
    z-index: 299 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
.nav-drawer * {
    pointer-events: auto !important;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
}
.nav-drawer a, .nav-drawer button {
    touch-action: manipulation !important;
    cursor: pointer !important;
}

/* Fix 3: About-Section — Badges ragen nicht aus Rand */
@media (max-width: 768px) {
    .about-photo-wrap { overflow: hidden !important; border-radius: 18px !important; }
    .about-badge, .about-float-badge,
    .about-badge--1, .about-badge--2,
    .about-badge.about-badge--1, .about-badge.about-badge--2,
    .about-float-badge--1, .about-float-badge--2 {
        position: static !important;
        display: inline-flex !important;
        transform: none !important;
        margin: 6px 4px 0 !important;
    }
    body, .site-main, section, .container { max-width: 100vw !important; overflow-x: hidden !important; }
    .hero-headline { width: 100% !important; word-break: break-word !important; overflow-wrap: break-word !important; }
    .section-head, .section-head h2, .section-head p, .section-head .eyebrow {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Fix 4: About-Text ragt nicht raus */
    .about-body, .about-body p, .about-lead,
    .about-main-body, .about-main-body p {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .about-layout, .about-main-layout {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        overflow: hidden !important;
    }
    .about-visual, .about-body {
        max-width: 100% !important;
        width: 100% !important;
    }
}
