        :root {
            --primary: #0F2460;
            --accent:  #2563EB;
            --accent-light: #EFF6FF;
            --bg:      #F8FAFF;
            --white:   #ffffff;
            --text:    #111827;
            --muted:   #6B7280;
            --border:  #E2E8F0;
            --tr: all 0.35s cubic-bezier(0.165,0.84,0.44,1);
        }

        *, *::before, *::after {
            margin: 0; padding: 0; box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
        }

        html, body { width: 100%; background: var(--white); overflow-x: hidden; scroll-behavior: smooth; }
        section, footer, header { display: block !important; width: 100% !important; clear: both !important; position: relative; }

        .inner { max-width: 1280px; margin: 0 auto; padding: 0 28px; width: 100%; }

        .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
                   overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

        /* ── NAV – Glass Pill ── */
        nav {
            position: fixed; top: 0; left: 0; width: 100%;
            padding: 14px 24px;
            z-index: 9999;
            background: transparent;
            border: none;
            transition: padding 0.3s ease;
        }
        nav.scrolled { padding: 10px 24px; }

        /* The floating pill */
        .nav-pill {
            max-width: 1280px; margin: 0 auto;
            display: flex; justify-content: space-between; align-items: center;
            background: rgba(255,255,255,0.60);
            backdrop-filter: blur(24px) saturate(170%);
            -webkit-backdrop-filter: blur(24px) saturate(170%);
            border: 1px solid rgba(255,255,255,0.52);
            border-radius: 16px;
            padding: 14px 20px 14px 22px;
            box-shadow: 0 4px 24px rgba(15,36,96,0.06), 0 1px 3px rgba(0,0,0,0.04);
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }
        nav.scrolled .nav-pill {
            background: rgba(255,255,255,0.88);
            box-shadow: 0 6px 32px rgba(15,36,96,0.09), 0 1px 4px rgba(0,0,0,0.05);
        }

        /* Logo + rechter Container gleiche Breite → Links exakt zentriert */
        .logo { flex: 1; display: flex; align-items: center; }
        .nav-pill > div:last-child { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 10px; }

        .nav-links { display: flex; gap: 36px; }
        .nav-links a {
            text-decoration: none; color: var(--primary); font-weight: 600;
            font-size: 0.875rem; letter-spacing: 0.1px;
            transition: var(--tr); cursor: pointer;
        }
        .nav-links a:hover { color: var(--accent); }
        .logo img { height: auto; max-width: 160px; display: block; transition: var(--tr); cursor: pointer; }
        .logo img:hover { opacity: 0.75; }
        .nav-cta {
            background: var(--accent); color: white !important;
            padding: 11px 22px; border-radius: 12px; text-decoration: none;
            font-weight: 700; font-size: 0.85rem; transition: var(--tr);
            border: none; cursor: pointer; display: inline-block; letter-spacing: 0.15px;
            box-shadow: 0 4px 16px rgba(37,99,235,0.28);
        }
        .nav-cta:hover { background: var(--primary); transform: translateY(-1px); box-shadow: 0 7px 22px rgba(37,99,235,0.34); }

        .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; background: none; border: none; }
        .hamburger span { display: block; width: 22px; height: 2px; background: var(--primary); transition: var(--tr); border-radius: 2px; }
        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

        .mobile-menu {
            display: none; pointer-events: none;
            position: fixed; top: 0; left: 0; right: 0;
            z-index: 9998;
            padding: 102px 18px 0;
        }
        .mobile-menu.open { display: block; pointer-events: auto; }
        .mobile-menu-inner {
            background: rgba(248,250,255,0.96);
            backdrop-filter: blur(28px) saturate(180%);
            -webkit-backdrop-filter: blur(28px) saturate(180%);
            border: 1px solid rgba(255,255,255,0.6);
            border-radius: 18px;
            padding: 12px 8px;
            box-shadow: 0 8px 40px rgba(15,36,96,0.12), 0 2px 8px rgba(0,0,0,0.06);
        }
        .mobile-menu a {
            display: block; text-decoration: none;
            color: var(--primary); font-weight: 600; font-size: 0.93rem;
            padding: 11px 16px; border-radius: 10px; cursor: pointer;
            transition: background 0.18s ease, color 0.18s ease;
        }
        .mobile-menu a:hover { background: rgba(37,99,235,0.07); color: var(--accent); }
        .mobile-menu .mobile-cta {
            display: block; margin: 8px 8px 4px;
            background: var(--accent); color: white !important;
            text-align: center; padding: 12px 20px; border-radius: 12px;
            font-weight: 700; font-size: 0.88rem;
            box-shadow: 0 4px 16px rgba(37,99,235,0.3);
        }
        .mobile-menu .mobile-cta:hover { background: var(--primary) !important; }


        /* ── NAV ACTIVE STATE ── */
        .nav-links a.nav-active {
            color: var(--primary);
            font-weight: 700;
        }
        .nav-links a.nav-active::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
        }
        .nav-links a { position: relative; }
        /* ── HERO ── */
        .hero-section {
            padding: clamp(104px, 11.5vh, 132px) 0 0;
            background:
                radial-gradient(ellipse 80% 100% at 74% 54%, rgba(205,220,255,0.42) 0%, transparent 62%),
                radial-gradient(ellipse 48% 60% at 14% 32%, rgba(205,218,255,0.16) 0%, transparent 58%),
                linear-gradient(165deg, #eaeefd 0%, #edf1fc 45%, #ebeffb 100%);
            overflow: hidden;
            position: relative;
        }
        /* Ambient glow – centred behind where the laptop sits */
        .hero-section::before {
            content: '';
            position: absolute;
            width: 900px; height: 900px;
            background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 68%);
            top: -180px; right: -80px;
            pointer-events: none;
        }
        /* Subtle bottom-left accent */
        .hero-section::after {
            content: '';
            position: absolute;
            width: 420px; height: 420px;
            background: radial-gradient(circle, rgba(37,99,235,0.04) 0%, transparent 70%);
            bottom: 60px; left: -60px;
            pointer-events: none;
        }
        /* Desktop-Höhenlogik: ausschließlich in @media (min-width: 1101px) */
        .hero-grid {
            display: grid;
            grid-template-columns: 46% 54%;
            gap: 0;
            align-items: center;
        }
        .hero-copy { position: relative; z-index: 2; padding-right: 48px; }

        /* Eyebrow */
        .hero-eyebrow {
            display: inline-flex; align-items: center; gap: 8px;
            color: var(--accent); font-weight: 700; font-size: 0.75rem;
            text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px;
            opacity: 0; transform: translateY(14px);
            animation: fadeUp 0.6s ease forwards 0.1s;
        }
        .hero-eyebrow svg { width: 13px; height: 13px; flex-shrink: 0; }

        /* Headline */
        .hero-copy h1 {
            font-size: clamp(2.5rem, 3.8vw, 4.1rem);
            line-height: 1.09; font-weight: 900;
            color: var(--primary); margin-bottom: 26px;
            letter-spacing: -0.038em;
            opacity: 0; transform: translateY(18px);
            animation: fadeUp 0.65s ease forwards 0.22s;
        }
        /* Accent span in h1 — dark everywhere, no blue distraction */
        .hero-copy h1 .accent { color: var(--primary); font-style: normal; }

        /* Subheadline */
        .hero-sub {
            font-size: 0.97rem; color: #8898AF; margin-bottom: 44px;
            max-width: 500px; line-height: 1.78;
            opacity: 0; transform: translateY(16px);
            animation: fadeUp 0.65s ease forwards 0.36s;
        }

        /* CTAs */
        .hero-ctas {
            display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
            margin-bottom: 30px;
            opacity: 0; transform: translateY(14px);
            animation: fadeUp 0.6s ease forwards 0.5s;
        }
        .btn-primary-hero {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--accent); color: white;
            padding: 16px 32px; border-radius: 13px;
            font-weight: 700; font-size: 0.94rem;
            text-decoration: none; border: none; cursor: pointer;
            box-shadow: 0 8px 28px rgba(37,99,235,0.28);
            transition: var(--tr); letter-spacing: 0.1px;
        }
        .btn-primary-hero:hover { background: var(--primary); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(37,99,235,0.38); }
        .btn-secondary-hero {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(255,255,255,0.7); color: var(--primary);
            padding: 16px 28px; border-radius: 13px;
            font-weight: 600; font-size: 0.94rem;
            text-decoration: none;
            border: 1.5px solid rgba(15,36,96,0.14);
            backdrop-filter: blur(8px);
            transition: var(--tr); cursor: pointer;
            letter-spacing: 0.1px;
        }
        .btn-secondary-hero:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,99,235,0.1); background: rgba(255,255,255,0.9); }

        /* Proof bar */
        .hero-proof {
            display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
            opacity: 0; transform: translateY(12px);
            animation: fadeUp 0.6s ease forwards 0.64s;
        }
        .proof-item {
            display: flex; align-items: center; gap: 6px;
            font-size: 0.76rem; color: var(--muted); font-weight: 600;
            white-space: nowrap;
        }
        .proof-dot {
            width: 5px; height: 5px; border-radius: 50%;
            background: var(--accent); flex-shrink: 0;
        }

        /* ── Hero logo strip – normaler Flow nach dem Inner ── */
        .hero-logo-strip {
            padding: 20px 0 24px;
            border-top: 1px solid rgba(37,99,235,0.06);
            overflow: hidden;
        }
        .hero-logo-strip .logo-marquee-label {
            text-align: center;
            font-size: 0.63rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 2.5px;
            color: var(--muted); opacity: 0.4; margin-bottom: 18px;
        }
        .hero-logo-strip .logo-marquee-track-wrap {
            overflow: hidden;
            display: block;
            height: 46px;
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
        }
        .hero-logo-strip .logo-marquee-track { animation-duration: 32s; height: 46px; align-items: center; }
        .hero-logo-strip .logo-item img { height: 38px; display: block; }

        /* Hero visual */
        .hero-visual {
            position: relative;
            display: flex; align-items: center; justify-content: flex-start;
            overflow: visible;
            margin-left: -40px;
            margin-top: 28px; /* push laptop bottom closer to logo strip */
            opacity: 0; transform: scale(0.96) translateY(10px);
            animation: fadeScale 0.8s ease forwards 0.45s;
        }
        /* Subtle ambient zone behind the PNG so its bg melts into the hero */
        .hero-visual::before {
            content: '';
            position: absolute;
            inset: -40px -30px -40px -80px;
            z-index: 0;
            pointer-events: none;
            background: radial-gradient(ellipse 80% 80% at 54% 50%,
                rgba(240,244,255,0.72) 0%,
                transparent 70%);
        }
        .hero-img {
            position: relative; z-index: 1;
            width: calc(100% + 120px);
            max-width: 1000px;
            height: auto;
            display: block;
            user-select: none;
            -webkit-user-drag: none;
            animation: floatLaptop 7s ease-in-out infinite;
            /* Intersect two gradients: all-edge fade */
            -webkit-mask-image:
                linear-gradient(to right, transparent 0%, rgba(0,0,0,0.55) 8%, black 17%, black 72%, transparent 92%),
                linear-gradient(to bottom, transparent 0%, black 6%, black 90%, transparent 100%);
            -webkit-mask-composite: source-in;
            mask-image:
                linear-gradient(to right, transparent 0%, rgba(0,0,0,0.55) 8%, black 17%, black 72%, transparent 92%),
                linear-gradient(to bottom, transparent 0%, black 6%, black 90%, transparent 100%);
            mask-composite: intersect;
            filter: drop-shadow(0 24px 52px rgba(15,36,96,0.07));
        }

        /* ── MacBook 3D Laptop ── */
        .mb-scene {
            position: relative; z-index: 3;
            display: flex; align-items: center; justify-content: center;
        }
        .mb-laptop {
            position: relative; width: 480px;
            animation: floatLaptop 7s ease-in-out infinite;
            flex-shrink: 0;
        }
        /* Lid (screen) */
        .mb-lid {
            width: 480px;
            background: linear-gradient(180deg, #dcdfe5 0%, #c4c7cf 100%);
            border-radius: 14px 14px 4px 4px;
            padding: 10px 10px 3px;
            position: relative;
            transform: perspective(1400px) rotateX(-22deg) rotateY(-5deg);
            transform-origin: bottom center;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), inset 0 -1px 0 rgba(0,0,0,0.08);
            z-index: 2;
        }
        .mb-notch-bar {
            height: 13px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 3px;
        }
        .mb-camera {
            width: 5px; height: 5px; border-radius: 50%; background: #3a3a3c;
        }
        .mb-bezel {
            background: #090909;
            border-radius: 7px 7px 0 0;
            padding: 3px 3px 0;
        }
        /* Screen area – bright/white like real macOS */
        .mb-screen {
            background: linear-gradient(160deg, #f2f6ff 0%, #ffffff 50%, #f5f8ff 100%);
            border-radius: 4px 4px 0 0;
            aspect-ratio: 16/10;
            overflow: hidden; position: relative;
            display: flex; flex-direction: column;
        }
        /* macOS top bar */
        .mb-macos-bar {
            height: 24px;
            background: rgba(246,248,253,0.98);
            border-bottom: 1px solid rgba(0,0,0,0.06);
            display: flex; align-items: center;
            padding: 0 10px; gap: 5px; flex-shrink: 0;
        }
        .mb-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
        .mb-dot.rd { background: #ff5f56; }
        .mb-dot.am { background: #febc2e; }
        .mb-dot.gr { background: #27c840; }
        .mb-url-bar {
            flex: 1; height: 12px;
            background: rgba(0,0,0,0.05); border-radius: 4px; margin: 0 14px;
        }
        /* Screen content */
        .mb-content {
            flex: 1; display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            padding: 10px 20px; gap: 4px;
        }
        .mb-logo-img {
            height: 24px; width: auto; object-fit: contain; display: block; margin-bottom: 4px;
        }
        .mb-site-tagline {
            font-size: 0.5rem; color: #1e3a6e; font-weight: 700;
            letter-spacing: 0.04em; text-align: center; line-height: 1.3;
        }
        .mb-site-sub {
            font-size: 0.4rem; color: #9ca3af;
            text-align: center; letter-spacing: 0.02em; line-height: 1.4;
        }
        .mb-site-divider { width: 34px; height: 1px; background: rgba(37,99,235,0.15); margin: 3px auto; }
        .mb-site-blocks { display: flex; gap: 4px; margin-top: 5px; }
        .mb-block { height: 18px; border-radius: 3px; background: rgba(37,99,235,0.07); }
        .mb-block:nth-child(1) { width: 46px; }
        .mb-block:nth-child(2) { width: 32px; background: rgba(37,99,235,0.17); }
        .mb-block:nth-child(3) { width: 40px; }
        /* Hinge strip */
        .mb-hinge {
            height: 7px;
            background: linear-gradient(180deg, #b0b3bb 0%, #9da0a8 100%);
            transform: perspective(1400px) rotateY(-5deg);
        }
        /* Base / keyboard body */
        .mb-base {
            width: 480px; height: 150px;
            background: linear-gradient(180deg, #c8cbd3 0%, #babdc6 50%, #acafb7 100%);
            border-radius: 0 0 14px 14px;
            position: relative; overflow: hidden;
            transform: perspective(1400px) rotateX(13deg) rotateY(-5deg);
            transform-origin: top center;
            box-shadow: 0 32px 76px rgba(0,0,0,0.24), 0 10px 28px rgba(0,0,0,0.13), 0 3px 8px rgba(0,0,0,0.08);
            margin-top: -3px;
        }
        .mb-keyboard {
            position: absolute;
            top: 14px; left: 26px; right: 26px;
            height: 80px;
            background: #191919; border-radius: 5px; overflow: hidden;
        }
        .mb-key-row {
            height: 14px; margin: 4px 4px 0;
            background: repeating-linear-gradient(
                90deg, #2e2e30 0, #2e2e30 21px, #191919 21px, #191919 25px
            );
            border-radius: 2px;
        }
        .mb-key-row.fn {
            height: 10px;
            background: repeating-linear-gradient(
                90deg, #2e2e30 0, #2e2e30 14px, #191919 14px, #191919 18px
            );
        }
        .mb-key-row.wide {
            background: repeating-linear-gradient(
                90deg, #2e2e30 0, #2e2e30 30px, #191919 30px, #191919 34px
            );
        }
        .mb-trackpad {
            position: absolute; bottom: 13px; left: 50%; transform: translateX(-50%);
            width: 130px; height: 42px;
            background: rgba(0,0,0,0.07); border-radius: 10px;
            border: 1px solid rgba(0,0,0,0.09);
        }
        /* Floating shadow under base */
        .mb-shadow {
            position: absolute; bottom: -34px; left: 50%; transform: translateX(-50%);
            width: 440px; height: 38px;
            background: radial-gradient(ellipse, rgba(0,0,0,0.18) 0%, transparent 68%);
            filter: blur(12px); pointer-events: none;
        }

        /* KPI float cards */
        .kpi-card {
            position: absolute;
            background: rgba(255,255,255,0.88);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.9);
            border-radius: 16px;
            padding: 14px 18px;
            box-shadow: 0 8px 32px rgba(15,36,96,0.12), 0 2px 8px rgba(0,0,0,0.06);
            min-width: 120px;
        }
        .kpi-label { font-size: 0.68rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 4px; }
        .kpi-value { font-size: 1.3rem; font-weight: 800; color: var(--primary); line-height: 1; }
        .kpi-value span { color: var(--accent); }
        .kpi-chart { margin-top: 8px; display: flex; align-items: flex-end; gap: 2px; height: 24px; }
        .kpi-bar {
            width: 5px; border-radius: 2px;
            background: linear-gradient(180deg, var(--accent), rgba(37,99,235,0.3));
        }
        .kpi-stars { color: #F59E0B; font-size: 0.7rem; margin-top: 4px; letter-spacing: 1px; }
        .kpi-trend { font-size: 0.68rem; color: #16A34A; font-weight: 700; margin-top: 3px; }

        /* Card positions — tighter to the laptop, less protrusion */
        .kpi-1 { top: 20px;  left:   2px;  z-index: 5; animation: floatKpi 6s   ease-in-out infinite; }
        .kpi-2 { top: 30px;  right: -14px; z-index: 5; animation: floatKpi 7s   ease-in-out infinite 1.5s; }
        .kpi-3 { bottom: 90px; left:  2px; z-index: 5; animation: floatKpi 8s   ease-in-out infinite 0.8s; }
        .kpi-4 { bottom: 72px; right: -10px; z-index: 5; animation: floatKpi 6.5s ease-in-out infinite 2s; }

        /* Deco sphere — hidden on desktop, shown on mobile */
        .hero-sphere {
            display: none;
            position: absolute;
            width: 80px; height: 80px;
            background: radial-gradient(circle at 35% 35%, rgba(147,197,253,0.9), rgba(37,99,235,0.4) 60%, rgba(15,36,96,0.2));
            border-radius: 50%;
            filter: blur(1px);
            bottom: 40px; left: -60px;
            animation: floatKpi 9s ease-in-out infinite 1s;
            pointer-events: none;
            z-index: 3;
        }
        .hero-sphere-sm {
            display: none;
            position: absolute;
            width: 40px; height: 40px;
            background: radial-gradient(circle at 35% 35%, rgba(147,197,253,0.7), rgba(37,99,235,0.3));
            border-radius: 50%;
            top: 60px; right: 20px;
            animation: floatKpi 7s ease-in-out infinite 3s;
            pointer-events: none;
            z-index: 3;
        }

        /* Animations */
        @keyframes fadeUp {
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeScale {
            to { opacity: 1; transform: scale(1) translateY(0); }
        }
        @keyframes floatKpi {
            0%, 100% { transform: translateY(0px); }
            50%       { transform: translateY(-8px); }
        }
        @keyframes floatLaptop {
            0%, 100% { transform: translateY(0px); }
            50%       { transform: translateY(-12px); }
        }

        /* Hero form (hidden from hero, kept for other CTAs) */
        .hero-card {
            background: white; padding: 40px; border-radius: 20px;
            border: 1px solid var(--border);
            box-shadow: 0 20px 60px rgba(15,36,96,0.08);
        }
        .form-title { font-size: 1.3rem; font-weight: 800; text-transform: uppercase; color: var(--primary); margin-bottom: 4px; }
        .form-subtitle { font-size: 0.85rem; color: var(--muted); margin-bottom: 22px; }
        .hero-card input, .hero-card select {
            width: 100%; padding: 14px 16px; margin-bottom: 12px;
            border: 1.5px solid var(--border); border-radius: 10px;
            font-size: 0.95rem; outline: none; transition: var(--tr);
            background: var(--bg); color: var(--text);
            font-family: 'Plus Jakarta Sans', sans-serif;
        }
        .hero-card input:focus, .hero-card select:focus {
            border-color: var(--accent); background: white;
            box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
        }
        .dsgvo-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
        .dsgvo-check input[type="checkbox"] { width: auto; min-width: 16px; height: 16px; margin-top: 3px; accent-color: var(--accent); cursor: pointer; flex-shrink: 0; }
        .dsgvo-check label { font-size: 0.78rem; color: var(--muted); line-height: 1.5; cursor: pointer; }
        .dsgvo-check label a { color: var(--accent); text-decoration: underline; }
        .btn-submit {
            width: 100%; background: var(--accent); color: white;
            border: none; padding: 16px; border-radius: 10px;
            font-weight: 800; text-transform: uppercase; cursor: pointer;
            transition: var(--tr); font-size: 0.88rem; letter-spacing: 0.5px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            box-shadow: 0 6px 20px rgba(37,99,235,0.35);
        }
        .btn-submit:hover { background: var(--primary); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37,99,235,0.4); }
        .form-note { text-align: center; font-size: 0.77rem; color: #bbb; margin-top: 10px; }
        @keyframes successPop { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }
        .success-msg { text-align: center; animation: successPop 0.4s ease forwards; padding: 20px 0; }
        .success-icon { color: #16A34A; margin-bottom: 14px; }
        .success-icon svg { width: 52px; height: 52px; }

        /* ── Hero trust / proof block ── */
        .hero-trust {
            display: inline-flex; align-items: center; gap: 11px;
            margin-bottom: 24px; flex-wrap: wrap;
            opacity: 0; transform: translateY(10px);
            animation: fadeUp 0.55s ease forwards 0.05s;
        }
        .trust-badge {
            width: 38px; height: 38px; flex-shrink: 0;
            background: #fff;
            border-radius: 50%;
            border: 1.5px solid rgba(0,0,0,0.07);
            box-shadow: 0 2px 10px rgba(0,0,0,0.09), inset 0 1px 0 rgba(255,255,255,0.9);
            display: flex; align-items: center; justify-content: center;
        }
        .trust-badge svg { width: 22px; height: 22px; }
        .trust-text { display: flex; flex-direction: column; gap: 2px; }
        .trust-stars-row { display: flex; align-items: center; gap: 5px; }
        .trust-stars { color: #F59E0B; font-size: 0.78rem; letter-spacing: 1.5px; line-height: 1; }
        .trust-rating { font-size: 0.76rem; font-weight: 800; color: var(--primary); }
        .trust-label { font-size: 0.72rem; color: var(--muted); font-weight: 500; }

        /* Microcopy under CTAs */
        .hero-microcopy { font-size: 0.72rem; color: var(--muted); opacity: 0.6; margin-top: 8px; }

        /* Artwork wrapper – positions KPI cards & spheres relative to image */
        .hero-artwork-wrap {
            position: relative;
            width: 100%;
            display: block;
            overflow: visible;
        }

        /* KPI cards group — hidden on desktop */
        .kpi-cards-group { display: none; }

        /* Sparkline SVGs inside KPI cards */
        .kpi-sparkline { width: 60px; height: 22px; display: block; margin-top: 6px; }

        /* ── DESKTOP HERO HEIGHT (≥ 1101px) ── */
        @media (min-width: 1101px) {
            .hero-section {
                height: 100svh !important;
                min-height: 720px !important;
                padding-top: clamp(94px, 10.5vh, 112px) !important;
                display: grid !important;
                grid-template-rows: minmax(0, 1fr) auto !important;
                overflow: hidden !important;
                position: relative !important;
            }
            .hero-section > .inner {
                min-height: 0;
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                padding-bottom: clamp(6px, 1vh, 12px);
                overflow: hidden; /* verhindert, dass MacBook den Strip überdeckt */
            }
            .hero-grid {
                width: 100%;
                min-height: 0;
                align-items: center;
            }
            .hero-logo-strip {
                margin: 0;
                padding: 14px 0 16px;
                border-top: 1px solid rgba(37,99,235,0.05);
                overflow: hidden;
                align-self: end;
                position: relative;
                z-index: 1; /* liegt sicher über evtl. überlaufendem Inhalt */
            }
            .hero-logo-strip .logo-marquee-label {
                margin-bottom: 10px;
            }
        }

        /* ── Hero responsive ── */
        @media (max-width: 1024px) {
            .hero-grid { grid-template-columns: 50% 50%; }
            .hero-img { width: calc(100% + 40px); }
            .hero-visual { margin-left: -30px; }
        }

        /* ── Mobile hero (≤ 768px) ── */
        @media (max-width: 768px) {

            /* ── MOBILE NAVBAR: premium pill (unverändert) ── */
            nav { padding: 10px 18px !important; }
            nav.scrolled { padding: 8px 18px !important; }
            .nav-pill {
                border-radius: 26px !important;
                padding: 14px 14px 14px 22px !important;
                background: rgba(255,255,255,0.86) !important;
                backdrop-filter: blur(36px) saturate(200%) !important;
                -webkit-backdrop-filter: blur(36px) saturate(200%) !important;
                border: 1px solid rgba(255,255,255,0.85) !important;
                box-shadow:
                    0 12px 40px rgba(15,36,96,0.10),
                    0 3px 10px rgba(0,0,0,0.05),
                    inset 0 1px 0 rgba(255,255,255,0.95) !important;
            }
            .logo img { height: auto !important; max-width: 140px !important; }
            .hamburger {
                display: flex !important; width: 50px !important; height: 50px !important;
                align-items: center !important; justify-content: center !important;
                flex-direction: column !important; gap: 0 !important; padding: 0 !important;
                background: rgba(15,36,96,0.07) !important;
                border: 1px solid rgba(15,36,96,0.09) !important;
                border-radius: 14px !important; cursor: pointer !important;
            }
            .hamburger span {
                width: 23px !important; height: 2.5px !important;
                background: var(--primary) !important; border-radius: 3px !important;
                margin: 3.5px 0 !important; display: block !important;
            }
            .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,6px) !important; }
            .hamburger.active span:nth-child(2) { opacity: 0 !important; }
            .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px) !important; }

            /* ── MOBILE HERO ── */
            .hero-section { height: auto !important; min-height: auto !important; display: block !important; padding-top: 96px !important; overflow: hidden !important; grid-template-rows: unset !important; }
            .hero-section > .inner { height: auto !important; min-height: 0 !important; display: block !important; padding-bottom: 0 !important; flex: unset !important; justify-content: unset !important; }
            .hero-logo-strip { margin-top: 0 !important; align-self: unset !important; }
            .hero-grid { grid-template-columns: 1fr !important; gap: 0 !important; min-height: auto !important; }

            /* ── REIHENFOLGE: Trust → H1 → Sub → MacBook → Buttons → Microcopy ── */
            /* Grid → Flex, damit order-Werte greifen */
            .hero-grid {
                display: flex !important;
                flex-direction: column !important;
                grid-template-columns: unset !important;
            }
            /* hero-copy "auflösen" → Kinder werden direkte Flex-Items */
            .hero-copy {
                display: contents !important;
                padding: 0 !important;
            }
            /* Top-Abstand (war padding-top von hero-copy) */
            .hero-trust { margin-top: 22px !important; }
            /* text-align center explizit, da Vererbung von hero-copy entfällt */
            .hero-copy h1, .hero-sub { text-align: center !important; }

            /* Order-Werte */
            .hero-trust     { order: 1 !important; }
            .hero-copy h1   { order: 2 !important; }
            .hero-sub       { order: 3 !important; }
            .hero-visual    { order: 4 !important; }
            .hero-ctas      { order: 5 !important; }
            .hero-microcopy { order: 6 !important; }

            /* Abstände an neue Reihenfolge anpassen */
            .hero-sub    { margin-bottom: 0 !important; }   /* kein Abstand mehr zu Buttons */
            .hero-visual { margin-top: 12px !important; }   /* Luft nach Sub-Text */
            .hero-ctas   { margin-top: 22px !important; }   /* Luft nach MacBook */

            /* Copy block: clean top, no bottom padding — children control spacing */
            /* (display:contents ignoriert padding/text-align, siehe oben) */

            /* ── 1. TRUST: compact inline, no big badge feel ── */
            .hero-trust {
                justify-content: center !important;
                margin-bottom: 28px !important;
                gap: 8px !important;
                align-items: center !important;
            }
            .trust-badge {
                width: 28px !important; height: 28px !important;
                box-shadow: 0 1px 6px rgba(0,0,0,0.08) !important;
            }
            .trust-badge svg { width: 16px !important; height: 16px !important; }
            .trust-text { gap: 1px !important; }
            .trust-stars { font-size: 0.70rem !important; letter-spacing: 1px !important; }
            .trust-rating { font-size: 0.70rem !important; }
            .trust-label { font-size: 0.67rem !important; }

            /* ── 2. EYEBROW: hidden on mobile ── */
            .hero-eyebrow { display: none !important; }

            /* ── 3. HEADLINE: dominant but not crushing ── */
            .hero-copy h1 {
                font-size: clamp(1.85rem, 7.4vw, 2.4rem) !important;
                line-height: 1.11 !important;
                margin-bottom: 20px !important;
            }
            /* Accent: full dark on mobile (blau bereits in CTA + Logo genug) */
            .hero-copy h1 .accent { color: var(--primary) !important; }

            /* ── 4. SUBHEADLINE: supporting role ── */
            .hero-sub {
                font-size: 0.82rem !important;
                line-height: 1.66 !important;
                color: #8494A8 !important;
                margin-bottom: 30px !important;
                max-width: 82% !important;
                margin-left: auto !important;
                margin-right: auto !important;
            }

            /* ── 5. CTAs: comfortable, not massive ── */
            .hero-ctas { flex-direction: column !important; gap: 10px !important; margin-bottom: 0 !important; }
            .btn-primary-hero {
                width: 100% !important; justify-content: center !important;
                border-radius: 14px !important; padding: 16px 24px !important;
                font-size: 0.9rem !important; order: -1 !important;
            }
            .btn-secondary-hero {
                width: 100% !important; justify-content: center !important;
                border-radius: 14px !important; padding: 15px 24px !important;
                font-size: 0.9rem !important;
                background: transparent !important;
                border: 1.5px solid rgba(15,36,96,0.18) !important;
                color: var(--primary) !important;
                box-shadow: none !important;
                white-space: normal !important;
            }

            /* ── 6. MICROCOPY: truly micro ── */
            .hero-microcopy {
                text-align: center !important;
                font-size: 0.67rem !important;
                opacity: 0.45 !important;
                margin-top: 14px !important;
                margin-bottom: 0 !important;
            }

            /* ── 7. VISUAL: full-width, pulled close to copy ── */
            .hero-visual {
                margin-left: -16px !important;
                margin-right: -16px !important;
                width: calc(100% + 32px) !important;
                overflow: visible !important;
                justify-content: center !important;
                margin-top: -18px !important;
                position: relative !important;
                animation: none !important; opacity: 1 !important; transform: none !important;
            }
            .hero-visual::before { display: none !important; }
            .hero-artwork-wrap { width: 100% !important; overflow: visible !important; position: relative !important; }

            /* MacBook: seamless 4-side fade */
            .hero-img {
                width: 100% !important; max-width: 100% !important;
                display: block !important; margin: 0 !important;
                -webkit-mask-image:
                    linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%),
                    linear-gradient(to bottom, transparent 0%, black 10%, black 64%, transparent 100%) !important;
                -webkit-mask-composite: source-in !important;
                mask-image:
                    linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%),
                    linear-gradient(to bottom, transparent 0%, black 10%, black 64%, transparent 100%) !important;
                mask-composite: intersect !important;
                animation: floatLaptop 7s ease-in-out infinite !important;
                filter: none !important;
            }

            /* KPI-Gruppen (falls vorhanden — im Bild enthalten) */
            .kpi-cards-group {
                display: block !important; position: absolute !important; inset: 0 !important;
                pointer-events: none !important; z-index: 4 !important;
            }
            .kpi-card {
                position: absolute !important; padding: 8px 11px !important;
                min-width: 76px !important; border-radius: 12px !important;
            }
            .kpi-1 { top: 13% !important; left: 10px !important; }
            .kpi-2 { top: 7% !important;  right: 10px !important; }
            .kpi-3 { top: 46% !important; left: 10px !important; }
            .kpi-4 { bottom: 20% !important; right: 10px !important; }
            .kpi-label { font-size: 0.56rem !important; }
            .kpi-value { font-size: 0.96rem !important; }
            .kpi-sparkline { width: 46px !important; height: 16px !important; }
            .kpi-chart { height: 19px !important; }
            .hero-sphere { display: block !important; width: 36px !important; height: 36px !important; bottom: 26% !important; left: 8% !important; z-index: 3 !important; }
            .hero-sphere-sm { display: none !important; }

            /* ── 8. LOGO-STRIP: kompakt, kein Border-Top ── */
            .hero-logo-strip {
                margin-top: 0 !important;
                padding: 14px 0 0 !important;
                border-top: none !important;
            }
            .hero-logo-strip .logo-marquee-label {
                font-size: 0.59rem !important;
                letter-spacing: 2px !important;
                margin-bottom: 12px !important;
                opacity: 0.38 !important;
            }
            .hero-logo-strip .logo-item img { height: 28px !important; }
            .hero-logo-strip .logo-item { padding: 0 26px !important; }
        }

        @media (max-width: 480px) {
            .hero-copy h1 { font-size: clamp(1.72rem, 7.2vw, 2.1rem) !important; }
            .hero-sub { max-width: 90% !important; }
        }

        /* ── CLIENT LOGO MARQUEE ── */
        .logo-marquee-section {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            padding: 20px 0;
            overflow: hidden;
        }
        .logo-marquee-label {
            text-align: center;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--muted);
            opacity: 0.5;
            margin-bottom: 18px;
        }
        .logo-marquee-track-wrap {
            overflow: hidden;
            /* Wider soft fade — logos disappear smoothly at edges */
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 14%, black 86%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, black 14%, black 86%, transparent 100%);
        }
        .logo-marquee-track {
            display: flex;
            align-items: center;
            width: max-content;
            animation: logoScroll 28s linear infinite;
            gap: 0;
        }
        .logo-marquee-track:hover { animation-play-state: paused; }
        @keyframes logoScroll {
            from { transform: translateX(0); }
            to   { transform: translateX(-50%); }
        }
        @media (prefers-reduced-motion: reduce) {
            .logo-marquee-track { animation: none; }
        }
        .logo-item {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 48px;
            flex-shrink: 0;
            /* border-right: 1px solid var(--border); */
        }
        .logo-item a {
            display: flex; align-items: center; justify-content: center;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }
        .logo-item img {
            height: 36px;
            width: auto;
            max-width: 150px;
            object-fit: contain;
            /* Uniform dim + desaturate; mix-blend-mode removes white boxes on light bg */
            filter: grayscale(1) opacity(0.48);
            mix-blend-mode: multiply;
            transition: filter 0.35s ease, opacity 0.35s ease;
            display: block;
        }
        .logo-item a:hover img {
            filter: grayscale(0) opacity(1);
        }
        /* Per-logo optical corrections */
        .logo-item[data-client="sengbusch"] img {
            height: 24px; max-width: 160px;
            filter: brightness(0) opacity(0.42) !important;
            mix-blend-mode: normal !important;
        }
        .logo-item[data-client="sengbusch"] a:hover img {
            filter: brightness(0) opacity(0.75) !important; }
        .logo-item[data-client="pier14"]   img { height: 30px; }
        .logo-item[data-client="sfp"]      img { height: 40px; }
        .logo-item[data-client="carplace"] img { height: 34px; }

        /* ── STATS BAR ── */
        .stats-bar { background: var(--primary); padding: 28px 0; }
        .stats-grid {
            display: grid; grid-template-columns: repeat(4, 1fr);
            gap: 0; text-align: center;
        }
        .stat-item {
            padding: 10px 20px;
            border-right: 1px solid rgba(255,255,255,0.12);
        }
        .stat-item:last-child { border-right: none; }
        .stat-num {
            display: block; font-size: clamp(1.6rem,2.5vw,2.4rem);
            font-weight: 800; color: white; line-height: 1.1; margin-bottom: 4px;
        }
        .stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

        /* ── SECTION HEADER ── */
        .section-header { text-align: center; margin-bottom: 20px; }
        .section-eyebrow {
            display: inline-block; background: var(--accent-light); color: var(--accent);
            font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
            padding: 5px 14px; border-radius: 100px; margin-bottom: 14px;
        }
        .section-header h2 {
            font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 900;
            color: var(--primary); text-wrap: balance;
        }
        .section-header p { color: var(--muted); margin-top: 10px; font-size: 1rem; }

        /* ── PORTFOLIO ── */
        .portfolio-section { padding: 100px 0; background: var(--bg); border-bottom: 1px solid var(--border); }
        .portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 60px; }
        .p-card {
            background: white; border-radius: 16px; overflow: hidden;
            border: 1px solid var(--border); transition: var(--tr);
            display: flex; flex-direction: column; text-decoration: none; color: inherit;
        }
        .p-card:hover { transform: translateY(-8px); border-color: var(--accent); box-shadow: 0 24px 50px rgba(0,0,0,0.09); }
        .p-img-box { width: 100%; height: 260px; overflow: hidden; border-bottom: 1px solid var(--border); }
        .p-img { width: 100%; height: auto; min-height: 100%; display: block; object-fit: cover; object-position: top center; transition: transform 5s ease-in-out; }
        .p-card:hover .p-img { transform: translateY(-20%); }
        .p-info { padding: 22px; flex-grow: 1; }
        .p-info h3 { color: var(--primary); font-weight: 800; text-transform: uppercase; margin-bottom: 6px; font-size: 1.1rem; }
        .p-tag {
            display: inline-block; background: var(--accent-light); color: var(--accent);
            font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
            letter-spacing: 0.5px; padding: 3px 10px; border-radius: 100px; margin-bottom: 8px;
        }

        /* ── CASE STUDY ── */
        .case-study-section {
            padding: 100px 0;
            background: #F8FAFF;
            overflow: hidden;
        }
        .cs-eyebrow {
            display: inline-block; background: var(--accent-light); color: var(--accent);
            font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
            padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
        }
        .cs-headline {
            font-size: clamp(1.8rem,3vw,3rem); font-weight: 900;
            color: var(--primary); margin-bottom: 14px; text-wrap: balance;
        }
        .cs-headline em { font-style: italic; color: var(--accent); font-family: Georgia, serif; font-weight: 400; }
        .cs-sub { color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 520px; margin-bottom: 48px; }
        .cs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
        .cs-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
        .cs-stat {
            background: white; padding: 28px 24px;
            border: 1px solid var(--border);
        }
        .cs-stat:first-child { border-radius: 12px 0 0 0; }
        .cs-stat:nth-child(2) { border-radius: 0 12px 0 0; }
        .cs-stat:nth-child(3) { border-radius: 0 0 0 12px; }
        .cs-stat:last-child { border-radius: 0 0 12px 0; }
        .cs-stat-num {
            font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 800;
            color: var(--primary); display: block; margin-bottom: 4px; line-height: 1;
        }
        .cs-stat-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
        .cs-client-info { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--border); }
        .cs-client-name { font-weight: 700; color: var(--primary); font-size: 1rem; }
        .cs-client-role { font-size: 0.85rem; color: var(--muted); margin-top: 2px; }
        .cs-link {
            display: inline-flex; align-items: center; gap: 8px;
            color: var(--accent); text-decoration: none; font-weight: 600; font-size: 0.88rem;
            margin-top: 20px; transition: var(--tr);
        }
        .cs-link:hover { color: var(--primary); gap: 12px; }
        .cs-link svg { width: 16px; height: 16px; }

        /* ── TESTIMONIALS ── */
        .testimonial-section { padding: 90px 0; background: var(--bg); border-bottom: 1px solid var(--border); }
        .google-rating-row {
            display: flex; align-items: center; justify-content: center; gap: 12px;
            margin-bottom: 50px;
        }
        .google-score { font-size: 2.4rem; font-weight: 800; color: var(--primary); }
        .google-stars-col { display: flex; flex-direction: column; gap: 3px; }
        .google-stars { color: #F59E0B; display: flex; gap: 3px; }
        .google-stars svg { width: 18px; height: 18px; }
        .google-sub { font-size: 0.78rem; color: var(--muted); font-weight: 500; }
        .google-rainbow { width: 50px; height: 3px; background: linear-gradient(90deg,#4285F4,#DB4437,#F4B400,#0F9D58); border-radius: 2px; opacity: 0.7; }
        .testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
        .t-card { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 28px; transition: var(--tr); }
        .t-card:hover { border-color: var(--accent); box-shadow: 0 12px 30px rgba(37,99,235,0.07); transform: translateY(-3px); }
        .t-stars { color: #F59E0B; display: flex; gap: 4px; margin-bottom: 16px; }
        .t-stars svg { width: 20px; height: 20px; }
        .t-text { color: var(--muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
        .t-author { color: var(--primary); font-weight: 800; font-size: 0.88rem; }
        .t-role { color: var(--muted); font-size: 0.78rem; margin-top: 2px; }
        .testimonial-cta { text-align: center; margin-top: 40px; }
        .ghost-btn {
            display: inline-flex; align-items: center; gap: 10px;
            border: 1.5px solid var(--accent); color: var(--accent);
            padding: 13px 28px; border-radius: 10px; text-decoration: none;
            font-weight: 700; font-size: 0.85rem; transition: var(--tr);
        }
        .ghost-btn:hover { background: var(--accent); color: white; }

        /* ── WORKFLOW ── */
        .workflow-section { padding: 100px 0; background: white; border-bottom: 1px solid var(--border); }
        .workflow-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 60px; }

        /* ── INTERACTIVE BEFORE / AFTER ── */
        .ba-section {
            padding: 100px 0;
            background: white;
            border-bottom: 1px solid var(--border);
            overflow: hidden;
        }
        .ba-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: end;
            margin-bottom: 56px;
        }
        .ba-eyebrow {
            display: inline-block;
            background: var(--accent-light);
            color: var(--accent);
            font-size: 0.72rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 2px;
            padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
        }
        .ba-headline {
            font-size: clamp(1.7rem, 3.2vw, 3rem);
            font-weight: 900; color: var(--primary); line-height: 1.08; text-wrap: balance;
        }
        .ba-headline em {
            font-style: italic; color: var(--accent);
            font-family: Georgia, serif; font-weight: 400;
        }
        .ba-kpis {
            display: grid; grid-template-columns: repeat(3,1fr); gap: 10px;
            align-self: end;
        }
        .ba-kpi {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 14px; padding: 18px 16px; text-align: center;
        }
        .ba-kpi-val {
            display: block; font-size: 1.4rem; font-weight: 900;
            color: var(--accent); line-height: 1; margin-bottom: 6px;
        }
        .ba-kpi-label {
            font-size: 0.7rem; color: var(--muted);
            line-height: 1.4; font-weight: 500;
        }

        /* — Slider container — */
        .ba-slider-wrap {
            position: relative; width: 100%; aspect-ratio: 16/9;
            border-radius: 16px; overflow: hidden;
            user-select: none; cursor: ew-resize;
            box-shadow: 0 24px 56px rgba(15,36,96,0.14);
            outline: none;
        }
        .ba-slider-wrap:focus-visible {
            outline: 3px solid var(--accent); outline-offset: 3px;
        }
        .ba-img-base,
        .ba-img-reveal {
            position: absolute; inset: 0; width: 100%; height: 100%;
            object-fit: cover; object-position: top center; display: block;
            pointer-events: none;
        }
        /* The "after" image sits on top and is clipped from the left */
        .ba-img-reveal { clip-path: inset(0 50% 0 0); }

        /* — Divider line — */
        .ba-divider {
            position: absolute; top: 0; bottom: 0;
            left: 50%; width: 2px;
            background: rgba(255,255,255,0.9);
            transform: translateX(-50%);
            pointer-events: none; z-index: 10;
        }
        /* — Handle — */
        .ba-handle {
            position: absolute; top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 48px; height: 48px;
            background: white; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            z-index: 11; pointer-events: none;
            box-shadow: 0 4px 20px rgba(0,0,0,0.35);
        }
        .ba-handle svg { width: 22px; height: 22px; color: var(--primary); }

        /* — Labels — */
        .ba-tag {
            position: absolute; bottom: 18px; z-index: 12;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
            color: white; font-size: 0.68rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 1.5px;
            padding: 5px 13px; border-radius: 100px; pointer-events: none;
        }
        .ba-tag-before { left: 18px; }
        .ba-tag-after  { right: 18px; }

        /* — Intro hint arrow that fades after use — */
        .ba-hint {
            position: absolute; top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            z-index: 9; pointer-events: none;
            opacity: 1; transition: opacity 0.4s;
        }
        .ba-hint.hidden { opacity: 0; }
        .ba-hint-inner {
            display: flex; align-items: center; gap: 8px;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.15);
            color: white; font-size: 0.75rem; font-weight: 600;
            padding: 9px 18px; border-radius: 100px;
            white-space: nowrap; letter-spacing: 0.3px;
        }
        .ba-hint-inner svg { width: 14px; height: 14px; flex-shrink: 0; }
        .step-card {
            padding: 36px; background: var(--bg); border-radius: 16px;
            border: 1px solid var(--border); transition: var(--tr);
        }
        .step-card:hover { border-color: var(--accent); transform: translateY(-8px); box-shadow: 0 16px 36px rgba(0,0,0,0.05); }
        .step-num { font-size: 3rem; font-weight: 900; color: var(--accent); opacity: 0.7; display: block; margin-bottom: 12px; line-height: 1; }
        .step-time {
            display: inline-block; background: var(--accent-light);
            border-radius: 100px; padding: 4px 12px; font-size: 0.73rem;
            font-weight: 700; color: var(--accent); margin-bottom: 12px;
        }
        .step-card h3 { font-weight: 800; color: var(--primary); margin-bottom: 10px; font-size: 1rem; }
        .step-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

        /* ── LEISTUNGEN ── */
        .services-section { padding: 100px 0; background: var(--bg); border-bottom: 1px solid var(--border); }
        .services-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 60px; }
        .svc-card {
            background: white; border-radius: 16px; padding: 32px 28px;
            border: 1px solid var(--border); transition: var(--tr);
        }
        .svc-card:hover { border-color: var(--accent); box-shadow: 0 12px 30px rgba(37,99,235,0.08); transform: translateY(-4px); }
        .svc-icon {
            width: 44px; height: 44px; background: var(--accent-light);
            border-radius: 12px; display: flex; align-items: center; justify-content: center;
            margin-bottom: 18px; color: var(--accent);
        }
        .svc-icon svg { width: 22px; height: 22px; }
        .svc-card h3 { font-weight: 800; color: var(--primary); font-size: 1rem; text-transform: uppercase; margin-bottom: 10px; }
        .svc-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

        /* ── PREISE ── */
        .pricing-section { padding: 100px 0; background: white; border-bottom: 1px solid var(--border); }
        .pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
        .price-card {
            background: var(--bg); border-radius: 20px; padding: 36px 30px;
            border: 1px solid var(--border); display: flex; flex-direction: column;
            transition: var(--tr);
        }
        .price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
        .price-card.featured { background: var(--primary); border-color: var(--primary); }
        .price-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 8px; }
        .price-card.featured .price-label { color: #93C5FD; }
        .price-name { font-size: 1.4rem; font-weight: 900; color: var(--primary); margin-bottom: 6px; text-transform: uppercase; }
        .price-card.featured .price-name { color: white; }
        .price-amount { font-size: 2.2rem; font-weight: 900; color: var(--primary); margin-bottom: 4px; line-height: 1; }
        .price-card.featured .price-amount { color: white; }
        .price-from { font-size: 0.78rem; color: var(--muted); margin-bottom: 24px; }
        .price-card.featured .price-from { color: rgba(255,255,255,0.5); }
        .price-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
        .price-card.featured .price-divider { background: rgba(255,255,255,0.15); }
        .price-features { list-style: none; flex-grow: 1; margin-bottom: 28px; }
        .price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--muted); margin-bottom: 10px; line-height: 1.5; }
        .price-card.featured .price-features li { color: rgba(255,255,255,0.75); }
        .price-features li svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
        .price-card.featured .price-features li svg { color: #93C5FD; }
        .price-cta {
            display: block; text-align: center;
            background: var(--accent); color: white; padding: 14px;
            border-radius: 10px; text-decoration: none; font-weight: 800;
            font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.3px;
            transition: var(--tr); border: none; cursor: pointer; font-family: 'Inter',sans-serif;
        }
        .price-cta:hover { background: var(--primary); transform: translateY(-2px); }
        .price-card.featured .price-cta { background: white; color: var(--primary); }
        .price-card.featured .price-cta:hover { background: var(--accent-light); }
        .price-note { text-align: center; margin-top: 28px; font-size: 0.82rem; color: var(--muted); }

        /* ── FAQ ── */
        .faq-section { padding: 100px 0; background: var(--bg); border-bottom: 1px solid var(--border); }
        .faq-grid { max-width: 760px; margin: 60px auto 0; }
        .acc-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; background: white; transition: var(--tr); }
        .acc-item:hover { border-color: var(--accent); }
        .acc-head { padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 16px; }
        .acc-head span { font-weight: 700; color: var(--primary); font-size: 0.97rem; }
        .acc-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent); transition: transform 0.35s ease; }
        .acc-head.open .acc-icon { transform: rotate(45deg); }
        /* Progressive enhancement: visible without JS; collapsed when .js-enabled is present */
        .acc-body { max-height: none; overflow: visible; }
        .js-enabled .acc-body { max-height: 0; overflow: hidden; transition: max-height 0.42s ease; }
        .acc-body div { padding: 0 24px 22px; color: var(--muted); line-height: 1.7; font-size: 0.92rem; }
        .faq-cta { text-align: center; margin-top: 48px; }
        .faq-cta a {
            display: inline-block; background: var(--primary); color: white;
            padding: 16px 36px; border-radius: 10px; text-decoration: none;
            font-weight: 800; text-transform: uppercase; font-size: 0.88rem;
            letter-spacing: 0.3px; transition: var(--tr);
        }
        .faq-cta a:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,99,235,0.25); }

        /* ── FOOTER ── */
        footer { padding: 80px 0 36px; background: var(--bg); }
        .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
        .footer-col h4 { color: var(--accent); text-transform: uppercase; font-size: 0.78rem; letter-spacing: 1px; margin-bottom: 20px; font-weight: 800; }
        .footer-col p, .footer-col a { font-size: 0.9rem; line-height: 1.85; color: var(--muted); text-decoration: none; display: block; transition: var(--tr); }
        .footer-col a:hover { color: var(--accent); }
        .footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; font-size: 0.78rem; color: #bbb; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
        .footer-bottom a { color: var(--accent); text-decoration: none; }
        .back-top { color: var(--primary); font-weight: 700; font-size: 0.82rem; cursor: pointer; text-decoration: none; transition: var(--tr); }
        .back-top:hover { color: var(--accent); }

        /* ── SUBPAGES ── */
        #datenschutz-page, #impressum-page { display: none; }
        .page-content { max-width: 860px; margin: 0 auto; padding: 120px 28px 80px; }
        .page-content .page-h1 { font-size: 2rem; font-weight: 900; color: var(--primary); text-transform: uppercase; margin-bottom: 10px; display: block; }
        .last-updated { color: var(--muted); font-size: 0.85rem; margin-bottom: 50px; display: block; }
        .ds-section { margin-bottom: 44px; }
        .ds-section h2 { font-size: 1.1rem; font-weight: 800; color: var(--primary); text-transform: uppercase; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
        .ds-section p { color: var(--muted); line-height: 1.8; margin-bottom: 10px; font-size: 0.92rem; }
        .ds-section a { color: var(--accent); text-decoration: none; }
        .ds-section a:hover { text-decoration: underline; }
        .info-box { background: var(--bg); border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: 8px; padding: 18px 22px; margin-bottom: 10px; }
        .info-box p { margin-bottom: 3px; }
        #datenschutz-page footer, #impressum-page footer { padding: 36px 0; background: var(--bg); border-top: 1px solid var(--border); text-align: center; }
        #datenschutz-page footer a, #impressum-page footer a { color: var(--accent); text-decoration: none; font-size: 0.88rem; margin: 0 14px; display: inline; }
        #datenschutz-page footer p, #impressum-page footer p { font-size: 0.78rem; color: #bbb; margin-top: 12px; }

        /* ── RESPONSIVE ── */
        /* ── TRUST STRIP ── */
        .trust-strip { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; }
        .trust-strip-inner { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
        .trust-badge { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; font-weight: 700; color: var(--muted); }
        .trust-badge svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }

        /* ── PAIN SECTION ── */
        .pain-section { padding: 100px 0; background: white; border-bottom: 1px solid var(--border); }
        .pain-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 50px; }
        .pain-item {
            display: flex; align-items: flex-start; gap: 16px;
            padding: 26px; background: var(--bg); border-radius: 14px;
            border: 1px solid var(--border); transition: var(--tr);
        }
        .pain-item:hover { border-color: #EF4444; background: #FFF8F8; }
        .pain-icon {
            width: 42px; height: 42px; background: #FEE2E2; border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            color: #DC2626; flex-shrink: 0;
        }
        .pain-icon svg { width: 20px; height: 20px; }
        .pain-item h3 { font-weight: 800; color: var(--primary); font-size: 0.95rem; margin-bottom: 5px; }
        .pain-item p { color: var(--muted); font-size: 0.87rem; line-height: 1.6; }

        /* ── AGITATION SECTION ── */
        .agitation-section { padding: 90px 0; background: #0c1a2e; }
        .agit-eyebrow {
            display: inline-block; background: rgba(239,68,68,0.15); color: #F87171;
            font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
            padding: 5px 14px; border-radius: 100px; margin-bottom: 14px;
        }
        .agit-header { text-align: center; margin-bottom: 50px; }
        .agit-header h2 { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 900; color: white; text-transform: uppercase; text-wrap: balance; }
        .agit-header p { color: rgba(255,255,255,0.5); margin-top: 10px; font-size: 1rem; }
        .agit-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 3px; }
        .agit-item {
            padding: 32px 28px; background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            display: flex; align-items: flex-start; gap: 16px;
        }
        .agit-item:first-child { border-radius: 12px 0 0 0; }
        .agit-item:nth-child(2) { border-radius: 0 12px 0 0; }
        .agit-item:nth-child(3) { border-radius: 0 0 0 12px; }
        .agit-item:last-child { border-radius: 0 0 12px 0; }
        .agit-num { font-size: 2.2rem; font-weight: 900; color: rgba(239,68,68,0.4); line-height: 1; flex-shrink: 0; }
        .agit-text h3 { font-weight: 800; color: white; font-size: 1rem; margin-bottom: 6px; }
        .agit-text p { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.65; }
        .agit-cta { text-align: center; margin-top: 50px; }
        .agit-cta a {
            display: inline-flex; align-items: center; gap: 10px;
            background: var(--accent); color: white;
            padding: 16px 36px; border-radius: 10px; text-decoration: none;
            font-weight: 800; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.3px;
            transition: var(--tr);
        }
        .agit-cta a:hover { background: white; color: var(--primary); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.3); }

        /* ── MID CTA ── */
        .mid-cta { background: var(--accent-light); padding: 50px 0; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
        .mid-cta p { font-weight: 700; color: var(--primary); font-size: 1.05rem; margin-bottom: 18px; }
        .mid-cta a {
            display: inline-flex; align-items: center; gap: 10px;
            background: var(--accent); color: white;
            padding: 14px 32px; border-radius: 10px; text-decoration: none;
            font-weight: 800; font-size: 0.88rem; text-transform: uppercase;
            transition: var(--tr);
        }
        .mid-cta a:hover { background: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,99,235,0.25); }

        /* ── SOLUTION BANNER ── */
        .solution-banner { background: var(--primary); padding: 70px 0; border-bottom: 4px solid var(--accent); }
        .solution-banner-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .solution-list { list-style: none; margin-top: 20px; }
        .solution-list li {
            display: flex; align-items: center; gap: 12px;
            padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.85); font-size: 0.97rem; font-weight: 600;
        }
        .solution-list li:last-child { border-bottom: none; }
        .solution-list li svg { width: 18px; height: 18px; color: #93C5FD; flex-shrink: 0; }

        /* ── ÜBER MICH ── */
        .about-section { padding: 100px 0; background: white; border-bottom: 1px solid var(--border); }
        .about-grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 70px; align-items: center; }
        .about-visual {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            border-radius: 20px; aspect-ratio: 3/4;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            gap: 10px; color: white; padding: 40px;
        }
        .about-visual-icon { font-size: 3.5rem; }
        .about-visual-name { font-weight: 900; font-size: 1.2rem; text-align: center; }
        .about-visual-title { font-size: 0.82rem; color: rgba(255,255,255,0.65); text-align: center; }
        .about-text h2 { font-size: clamp(1.6rem,2.8vw,2.2rem); font-weight: 900; color: var(--primary); margin-bottom: 16px; text-wrap: balance; }
        .about-text p { color: var(--muted); font-size: 0.97rem; line-height: 1.8; margin-bottom: 14px; }
        .about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
        .about-fact { background: var(--bg); border-radius: 12px; padding: 18px 20px; border: 1px solid var(--border); }
        .about-fact-num { font-size: 1.6rem; font-weight: 900; color: var(--accent); line-height: 1; display: block; }
        .about-fact-label { font-size: 0.78rem; color: var(--muted); margin-top: 3px; display: block; }

        /* ── FINAL CTA ── */
        .final-cta-section {
            padding: 120px 0; text-align: center;
            background: linear-gradient(135deg, var(--primary) 0%, #1e3a8a 100%);
        }
        .final-cta-section h2 {
            font-size: clamp(1.8rem,3.5vw,3rem); font-weight: 900; color: white;
            text-transform: uppercase; margin-bottom: 16px; text-wrap: balance;
        }
        .final-cta-section h2 em { font-style: italic; color: #93C5FD; font-family: Georgia,serif; font-weight: 400; text-transform: none; }
        .final-cta-section > .inner > p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7; }
        .final-cta-btn {
            display: inline-flex; align-items: center; gap: 12px;
            background: white; color: var(--primary);
            padding: 18px 42px; border-radius: 12px; text-decoration: none;
            font-weight: 900; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.5px;
            transition: var(--tr); box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }
        .final-cta-btn:hover { background: var(--accent-light); transform: translateY(-3px); }
        .final-cta-note { color: rgba(255,255,255,0.35); font-size: 0.82rem; margin-top: 20px; }

        @media (max-width: 1100px) {
            .hero-grid { grid-template-columns: 1fr; gap: 40px; }
            .hero-text { text-align: center; }
            .hero-text p { margin-left: auto; margin-right: auto; }
            .hero-badges { justify-content: center; }
            .cs-grid { grid-template-columns: 1fr; gap: 40px; }
            .workflow-grid, .portfolio-grid, .footer-grid,
            .services-card-grid, .pricing-grid, .testimonial-grid { grid-template-columns: 1fr !important; gap: 20px; }
            .stats-grid { grid-template-columns: repeat(2,1fr); }
            .stat-item:nth-child(2) { border-right: none; }
            /* Nav pill on tablet/mobile */
            .nav-pill { padding: 8px 16px 8px 14px; border-radius: 16px; }
            .nav-links { display: none; }
            #main-nav-cta { display: none !important; }
            .hamburger { display: flex; }
            .pain-grid, .agit-grid, .solution-banner-inner, .about-grid { grid-template-columns: 1fr !important; }
            .ba-header { grid-template-columns: 1fr !important; gap: 28px; }
            .ba-kpis { grid-template-columns: repeat(3,1fr) !important; }
            .ba-slider-wrap { aspect-ratio: 4/5 !important; }
            .workflow-grid { grid-template-columns: repeat(2,1fr) !important; }
            /* Hero responsive fixes */
            .hero-visual { margin-left: 0; }
            .hero-visual::before { display: none; }
            .hero-img {
                width: 100%; max-width: 600px;
                -webkit-mask-image: none; mask-image: none;
            }
            .hero-copy { padding-right: 0; }
        }
        @media (max-width: 600px) {
            nav { padding: 10px 14px; }
            .nav-pill { border-radius: 11px; padding: 8px 12px; }
            .inner { padding: 0 16px; }
            .hero-section { padding-top: 76px; }
            .hero-card { padding: 24px; }
            .page-content { padding: 100px 16px 60px; }
            .workflow-grid { grid-template-columns: 1fr !important; }
            .ba-kpis { grid-template-columns: 1fr !important; }
            .ba-slider-wrap { aspect-ratio: 3/4 !important; }
            .hero-img { width: 100%; max-width: 440px; }
            .hero-logo-strip .logo-item img { height: 30px; }
            .hero-logo-strip .logo-item { padding: 0 32px; }
        }
        /* ═══════════════ PREMIUM INTRO ═══════════════ */
        #site-intro {
            position: fixed; inset: 0; z-index: 99999;
            display: flex; align-items: center; justify-content: center;
            background:
                radial-gradient(ellipse 72% 68% at 50% 38%, rgba(205,220,255,0.30) 0%, transparent 65%),
                linear-gradient(158deg, #eff3ff 0%, #f5f8ff 52%, #edf1ff 100%);
            pointer-events: all;
            will-change: transform, opacity;
        }
        #site-intro.intro-hidden { display: none !important; }
        #site-intro.intro-exit {
            animation: introReveal 0.76s cubic-bezier(0.76, 0, 0.24, 1) forwards;
        }
        @keyframes introReveal {
            from { transform: translateY(0);     }
            to   { transform: translateY(-100%); }
        }

        .intro-glow {
            position: absolute; width: 700px; height: 700px;
            background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 65%);
            top: 50%; left: 50%; transform: translate(-50%, -58%);
            pointer-events: none;
        }
        .intro-content {
            position: relative; z-index: 1;
            display: flex; flex-direction: column;
            align-items: center; gap: 26px;
        }
        .intro-logo {
            height: auto; width: auto; max-width: 280px; display: block;
            opacity: 0; transform: translateY(14px);
            transition: opacity 0.76s cubic-bezier(0.33,1,0.68,1),
                        transform 0.76s cubic-bezier(0.33,1,0.68,1);
        }
        .intro-logo.in { opacity: 1; transform: translateY(0); }

        .intro-tagline {
            font-family: 'Inter', system-ui, sans-serif;
            font-size: 1.08rem; font-weight: 600;
            letter-spacing: -0.015em; color: var(--primary);
            margin: 0; opacity: 0; transform: translateY(8px);
            transition: opacity 0.65s cubic-bezier(0.33,1,0.68,1) 0.08s,
                        transform 0.65s cubic-bezier(0.33,1,0.68,1) 0.08s;
        }
        .intro-tagline.in { opacity: 1; transform: translateY(0); }

        @media (max-width: 768px) {
            .intro-logo    { max-width: 200px !important; height: auto !important; }
            .intro-tagline { font-size: 0.94rem !important; }
        }
        @media (prefers-reduced-motion: reduce) {
            .intro-logo, .intro-tagline {
                transform: none !important;
                transition-duration: 0.25s !important;
            }
            #site-intro.intro-exit {
                animation: none !important;
                opacity: 0 !important;
                transition: opacity 0.4s ease !important;
            }
        }

/* ══════════════════════════════════════════
   AUFWIND PERFORMANCE – NEW SECTIONS CSS
   ══════════════════════════════════════════ */

/* ══════════════════════════════════════════════
   S = SYSTEM  –  "Unser Ansatz" (ruhige Text-Section)
   ══════════════════════════════════════════════ */
.aw-sys-section {
    background: #F8FAFF;
    padding: 118px 0 118px;
}
.aw-sys-inner {
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: 8%;
    align-items: start;
}
.aw-sys-eyebrow {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 22px;
}
.aw-sys-h2 {
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.028em;
    color: var(--primary);
    line-height: 1.14;
    margin: 0;
}
.aw-sys-lead {
    font-size: 1.04rem;
    line-height: 1.72;
    color: var(--muted);
    margin: 0 0 22px;
}
.aw-sys-body {
    font-size: 0.975rem;
    line-height: 1.72;
    color: var(--muted);
    margin: 0 0 22px;
}
.aw-sys-body:last-of-type { margin-bottom: 0; }
.aw-sys-chain {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid #D6E2EF;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8FABC6;
    line-height: 2;
}
.aw-sys-chain-accent { color: var(--accent); }

/* ── Leistungen section ── */
.aw-leistungen-section {
    background: #fff;
    padding: 100px 0 110px;
}
.aw-leistungen-section .section-header {
    margin-bottom: 64px;
}
.aw-leistungen-section .section-header h2 {
    font-size: clamp(2.2rem, 3.2vw, 3rem);
    letter-spacing: -0.026em;
}
@media (max-width: 860px) {
    .aw-leistungen-section { padding: 72px 0 80px; }
    .aw-leistungen-section .section-header { margin-bottom: 48px; }
}
@media (max-width: 480px) {
    .aw-leistungen-section { padding: 60px 0 68px; }
}
@media (max-width: 860px) {
    .aw-sys-section { padding: 72px 0 80px; }
    .aw-sys-inner { grid-template-columns: 1fr; gap: 36px; }
    .aw-sys-chain { font-size: 0.65rem; }
}
@media (max-width: 480px) {
    .aw-sys-section { padding: 60px 0 68px; }
}

.aw-lv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 8px;
}
.aw-lv-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    transition: var(--tr);
    position: relative;
    overflow: hidden;
}
.aw-lv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), #60A5FA);
    opacity: 0; transition: opacity 0.3s;
}
.aw-lv-card:hover::before { opacity: 1; }
.aw-lv-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(15,36,96,0.1); }
.aw-lv-icon {
    width: 52px; height: 52px;
    background: var(--accent-light);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; color: var(--accent);
}
.aw-lv-card h3 {
    font-size: 1.15rem; font-weight: 700;
    color: var(--primary); margin-bottom: 10px;
}
.aw-lv-card p {
    font-size: 0.88rem; color: var(--muted);
    line-height: 1.65; margin-bottom: 20px;
}
.aw-lv-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.aw-lv-tag {
    font-size: 0.72rem; font-weight: 600;
    padding: 4px 11px;
    background: var(--accent-light);
    color: var(--accent); border-radius: 100px;
}

/* portfolio cards: results overlay */
.p-result-bar {
    display: flex; gap: 16px; padding: 14px 16px;
    background: linear-gradient(135deg, var(--primary), #1a3580);
    border-radius: 0 0 12px 12px;
}
.p-result-item {
    display: flex; flex-direction: column;
}
.p-result-num {
    font-size: 1rem; font-weight: 800; color: white; line-height: 1.1;
}
.p-result-label {
    font-size: 0.67rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px;
}

/* ── SECTION 7: WARUM SCHEITERN ── */
.aw-why-section {
    padding: 100px 0;
    background: white;
}
.aw-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 56px 0 40px;
}
.aw-why-card {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 16px;
    padding: 28px 24px;
}
.aw-why-label {
    font-size: 0.62rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: #EF4444; margin-bottom: 12px;
}
.aw-why-card h3 {
    font-size: 0.98rem; font-weight: 700;
    color: var(--primary); margin-bottom: 10px;
}
.aw-why-card p {
    font-size: 0.84rem; color: var(--muted); line-height: 1.6;
}
.aw-why-solution {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border: 1px solid #BFDBFE;
    border-radius: 18px;
    padding: 36px 40px;
    display: flex; align-items: center; gap: 48px;
}
.aw-why-sol-icon {
    width: 64px; height: 64px; min-width: 64px;
    background: var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
}
.aw-why-sol-text h3 {
    font-size: 1.25rem; font-weight: 700;
    color: var(--primary); margin-bottom: 8px;
}
.aw-why-sol-text p {
    font-size: 0.9rem; color: var(--muted); line-height: 1.65;
}

/* ── SECTION 8: WAS AUFWIND ÜBERNIMMT ── */
.aw-uebernimmt-section {
    padding: 100px 0;
    background: var(--bg);
}
.aw-uebernimmt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 56px;
}
.aw-uebernimmt-item {
    display: flex; align-items: flex-start; gap: 14px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 22px;
    transition: var(--tr);
}
.aw-uebernimmt-item:hover {
    border-color: #BFDBFE; transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(15,36,96,0.07);
}
.aw-uebernimmt-icon {
    width: 38px; height: 38px; min-width: 38px;
    background: var(--accent-light);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
}
.aw-uebernimmt-text h4 {
    font-size: 0.93rem; font-weight: 700;
    color: var(--primary); margin-bottom: 4px;
}
.aw-uebernimmt-text p {
    font-size: 0.8rem; color: var(--muted); line-height: 1.5;
}

/* ── SECTION 10: TEAM ── */
.aw-team-section {
    padding: 100px 0;
    background: white;
}
.aw-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 56px;
    max-width: 860px;
    margin-left: auto; margin-right: auto;
}
.aw-team-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 44px 36px;
    text-align: center;
    transition: var(--tr);
}
.aw-team-card:hover {
    border-color: #BFDBFE;
    box-shadow: 0 16px 50px rgba(15,36,96,0.08);
}
.aw-team-avatar {
    width: 96px; height: 96px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; font-weight: 800; color: white;
    margin: 0 auto 22px;
    letter-spacing: -1px;
}
.aw-team-avatar.aw-av-niklas {
    background: linear-gradient(135deg, #1d4ed8, #0F2460);
}
.aw-team-avatar.aw-av-bruno {
    background: linear-gradient(135deg, #2563EB, #0891b2);
}
.aw-team-name {
    font-size: 1.25rem; font-weight: 700;
    color: var(--primary); margin-bottom: 4px;
}
.aw-team-role {
    font-size: 0.82rem; font-weight: 600;
    color: var(--accent); margin-bottom: 14px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.aw-team-bio {
    font-size: 0.87rem; color: var(--muted);
    line-height: 1.7; margin-bottom: 22px;
}
.aw-team-tags {
    display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
}
.aw-team-tag {
    font-size: 0.71rem; font-weight: 600;
    padding: 4px 11px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 100px; color: var(--muted);
}

/* ── WARUM AUFWIND ── */
/* Hero / Etymology */
.wa-hero { padding: 100px 0; background: white; border-bottom: 1px solid var(--border); }
.wa-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.wa-dict-word { font-size: clamp(3rem, 5vw, 5rem); font-weight: 900; color: var(--primary); letter-spacing: -0.04em; line-height: 1; margin-bottom: 8px; }
.wa-dict-phon { font-size: 1rem; color: var(--muted); margin-bottom: 28px; font-family: Georgia, serif; }
.wa-dict-sep { height: 2px; background: var(--border); margin-bottom: 28px; }
.wa-dict-list { list-style: none; counter-reset: dict-count; display: flex; flex-direction: column; gap: 20px; }
.wa-dict-list li { font-size: 0.97rem; line-height: 1.7; color: var(--muted); counter-increment: dict-count; display: grid; grid-template-columns: 1.4em 1fr; gap: 4px; }
.wa-dict-list li::before { content: counter(dict-count) "."; font-weight: 700; color: var(--primary); margin-top: 2px; }
.wa-dict-cat { display: inline-block; font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); background: var(--accent-light); padding: 2px 8px; border-radius: 4px; margin-right: 8px; vertical-align: middle; }
.wa-hero-statement { border-left: 3px solid var(--accent); padding-left: 28px; margin-top: 12px; }
.wa-hero-quote { font-size: clamp(1.2rem, 1.8vw, 1.55rem); font-style: italic; color: var(--primary); font-family: Georgia, serif; line-height: 1.5; margin-bottom: 20px; font-weight: 400; }
.wa-hero-body { font-size: 1.02rem; line-height: 1.72; color: var(--muted); margin-bottom: 20px; }
.wa-hero-tag { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); }

/* Transfer */
.wa-transfer { padding: 100px 0; background: #F8FAFF; border-bottom: 1px solid var(--border); }
.wa-transfer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.wa-transfer-h2 { font-size: clamp(2rem, 3vw, 2.9rem); font-weight: 900; color: var(--primary); letter-spacing: -0.028em; line-height: 1.1; margin: 12px 0 24px; }
.wa-transfer-h2 em { font-style: italic; color: var(--accent); font-family: Georgia, serif; font-weight: 400; }
.wa-transfer-body { font-size: 1rem; line-height: 1.72; color: var(--muted); margin-bottom: 18px; }
.wa-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.wa-metric { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 22px 20px; transition: var(--tr); }
.wa-metric:hover { border-color: var(--accent); box-shadow: 0 8px 20px rgba(37,99,235,0.07); transform: translateY(-2px); }
.wa-metric-val { display: block; font-size: 1.15rem; font-weight: 800; color: var(--primary); margin-bottom: 6px; line-height: 1.2; }
.wa-arr { color: var(--accent); }
.wa-metric-label { font-size: 0.8rem; color: var(--muted); line-height: 1.4; }

/* Team inside wa */
.wa-team-block { padding: 100px 0; background: white; border-bottom: 1px solid var(--border); }

/* Principles */
.wa-principles { padding: 100px 0; background: #F8FAFF; border-bottom: 1px solid var(--border); }
.wa-principles .section-header { text-align: left; }
.wa-principle-list { margin-top: 48px; }
.wa-principle { display: grid; grid-template-columns: 68px 1fr; gap: 28px; align-items: start; padding: 36px 0; border-top: 1px solid var(--border); }
.wa-principle:last-child { border-bottom: 1px solid var(--border); }
.wa-principle-num { font-size: 2.4rem; font-weight: 900; color: var(--accent); opacity: 0.22; line-height: 1; padding-top: 4px; }
.wa-principle-title { font-size: 1.2rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; letter-spacing: -0.018em; }
.wa-principle-text { font-size: 1rem; line-height: 1.72; color: var(--muted); }

/* Ambition */
.wa-ambition { padding: 100px 0; background: white; border-bottom: 1px solid var(--border); }
.wa-ambition-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.wa-ambition-h2 { font-size: clamp(1.8rem, 2.8vw, 2.7rem); font-weight: 900; color: var(--primary); letter-spacing: -0.028em; line-height: 1.12; margin: 12px 0 0; }
.wa-ambition-h2 em { font-style: italic; color: var(--accent); font-family: Georgia, serif; font-weight: 400; }
.wa-ambition-body { font-size: 1rem; line-height: 1.72; color: var(--muted); margin-bottom: 18px; }

/* Brand Moment */
.wa-brand-moment { padding: 100px 0; background: var(--primary); }
.wa-bm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 64px; }
.wa-bm-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); padding: 36px 28px; }
.wa-bm-item:first-child { border-radius: 12px 0 0 12px; }
.wa-bm-item:last-child { border-radius: 0 12px 12px 0; }
.wa-bm-phrase { display: block; font-size: clamp(1rem, 1.6vw, 1.35rem); font-weight: 800; color: white; margin-bottom: 10px; }
.wa-bm-meaning { display: block; font-size: 0.88rem; line-height: 1.6; color: rgba(255,255,255,0.48); }
.wa-bm-footer { text-align: center; padding-top: 8px; }
.wa-bm-logo { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; color: white; letter-spacing: -0.03em; opacity: 0.15; line-height: 1; }
.wa-bm-tagline { font-size: 0.95rem; color: rgba(255,255,255,0.4); margin-top: 10px; font-style: italic; font-family: Georgia, serif; }

/* CTA */
.wa-cta-block { padding: 80px 0; background: #F8FAFF; border-top: 1px solid var(--border); }
.wa-cta-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.wa-cta-h2 { font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 900; color: var(--primary); letter-spacing: -0.03em; margin-bottom: 16px; }
.wa-cta-body { font-size: 1.02rem; line-height: 1.7; color: var(--muted); margin-bottom: 32px; }
.wa-cta-btn { display: inline-block; background: var(--accent); color: white; padding: 16px 36px; border-radius: 10px; text-decoration: none; font-weight: 800; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.3px; transition: var(--tr); }
.wa-cta-btn:hover { background: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,99,235,0.25); }

/* Responsive – Warum Aufwind */
@media (max-width: 860px) {
    .wa-hero  { padding: 72px 0; }
    .wa-hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .wa-transfer { padding: 72px 0; }
    .wa-transfer-grid { grid-template-columns: 1fr; gap: 40px; }
    .wa-team-block { padding: 72px 0; }
    .wa-principles { padding: 72px 0; }
    .wa-principle { grid-template-columns: 52px 1fr; gap: 16px; padding: 28px 0; }
    .wa-ambition { padding: 72px 0; }
    .wa-ambition-grid { grid-template-columns: 1fr; gap: 36px; }
    .wa-brand-moment { padding: 72px 0; }
    .wa-bm-grid { grid-template-columns: 1fr; gap: 2px; }
    .wa-bm-item:first-child { border-radius: 12px 12px 0 0; }
    .wa-bm-item:last-child { border-radius: 0 0 12px 12px; }
    .wa-cta-block { padding: 64px 0; }
}
@media (max-width: 480px) {
    .wa-dict-word { font-size: 2.6rem; }
    .wa-metrics { grid-template-columns: 1fr; }
    .wa-principle { grid-template-columns: 42px 1fr; }
}

/* FAQ updated */
.aw-faq-cta { text-align: center; margin-top: 48px; }

/* Responsive – new sections */
@media (max-width: 900px) {
.aw-lv-grid { grid-template-columns: 1fr; }
    .aw-why-grid { grid-template-columns: 1fr; }
    .aw-why-solution { flex-direction: column; gap: 20px; padding: 28px 24px; }
    .aw-uebernimmt-grid { grid-template-columns: 1fr; }
    .aw-team-grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* btn-outline-mid for pain section CTA */
.btn-outline-mid {
    display: inline-block;
    padding: 14px 28px;
    border: 2px solid var(--accent);
    border-radius: 8px;
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--tr);
}
.btn-outline-mid:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════════
   AUFWIND PERFORMANCE – PAGE SECTIONS (PAS FRAMEWORK)
   P = Problem  |  A = Agitate  |  S = Solution
   ══════════════════════════════════════════════════════════════ */

/* ── SHARED ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.65rem, 3vw, 2.4rem); font-weight: 800; color: var(--primary); line-height: 1.2; margin: 10px 0 16px; }
.section-header p  { font-size: 1rem; color: var(--muted); max-width: 580px; margin: 0 auto; line-height: 1.7; }
.section-eyebrow {
    display: inline-block;
    font-size: 0.68rem; font-weight: 800;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--accent); background: var(--accent-light);
    padding: 5px 12px; border-radius: 100px;
}

/* ── BTN STYLES ── */
.aw-btn-outline {
    display: inline-block;
    padding: 14px 30px;
    border: 2px solid var(--accent);
    border-radius: 8px;
    color: var(--accent);
    font-size: 0.95rem; font-weight: 700;
    text-decoration: none;
    transition: var(--tr);
    cursor: pointer;
}
.aw-btn-outline:hover {
    background: var(--accent); color: white; transform: translateY(-2px);
}

/* ══════════════════════════════════════════════
   P = PROBLEM SECTION
   ══════════════════════════════════════════════ */
/* ─── Snake Problem Section ─────────────────────────────── */
.aw-snake-section {
    padding: 80px 0;
    background: #fff;
}
.aw-snake-header {
    max-width: 660px;
    margin: 0 auto 52px;
    text-align: center;
}
.aw-snake-header h2 { margin-bottom: 14px; }
.aw-snake-header > p { color: var(--muted); font-size: 0.97rem; line-height: 1.7; margin: 0; }
/* Grid */
.aw-snake-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px 60px;
    padding: 8px;
}
/* SVG overlay – stays behind cards */
.aw-snake-svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}
.aw-snake-path-bg {
    fill: none;
    stroke: #CDDAEA;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.aw-snake-path-fg {
    fill: none;
    stroke: var(--accent);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
/* Card wrapper */
.aw-snake-card-wrap {
    position: relative;
    z-index: 2;
}
/* Anchor dot – sits on card edge at the snake connection point */
.aw-snake-dot {
    position: absolute;
    width: 11px; height: 11px;
    border-radius: 50%;
    background: white;
    border: 2.5px solid #B8CCDF;
    z-index: 5;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
/* Dot positions by snake-index */
.aw-snake-card-wrap[data-si="0"] .aw-snake-dot { right: -5.5px; top: 50%; transform: translateY(-50%); }
.aw-snake-card-wrap[data-si="1"] .aw-snake-dot { left: -5.5px; top: 50%; transform: translateY(-50%); }
.aw-snake-card-wrap[data-si="2"] .aw-snake-dot { top: -5.5px; left: 50%; transform: translateX(-50%); }
.aw-snake-card-wrap[data-si="3"] .aw-snake-dot { right: -5.5px; top: 50%; transform: translateY(-50%); }
.aw-snake-card-wrap[data-si="4"] .aw-snake-dot { top: -5.5px; left: 50%; transform: translateX(-50%); }
.aw-snake-card-wrap[data-si="5"] .aw-snake-dot { left: -5.5px; top: 50%; transform: translateY(-50%); }
.aw-snake-dot.dot-active {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 0 5px rgba(37,99,235,0.14);
}
/* Card */
.aw-snake-card {
    background: white;
    border: 1.5px solid #E8EEF8;
    border-radius: 18px;
    padding: 22px;
    height: 100%;
    box-sizing: border-box;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.aw-snake-card-wrap.card-active .aw-snake-card {
    border-color: #BFDBFE;
    box-shadow: 0 6px 28px rgba(37,99,235,0.09);
}
.aw-snake-ico {
    width: 40px; height: 40px;
    border-radius: 11px;
    background: var(--accent-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    margin-bottom: 12px;
    transition: background 0.4s ease, color 0.4s ease;
}
.aw-snake-card-wrap.card-active .aw-snake-ico {
    background: var(--accent);
    color: white;
}
.aw-snake-cat {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--accent);
    background: var(--accent-light);
    padding: 3px 9px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.aw-snake-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    line-height: 1.3;
}
.aw-snake-text {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}
@media (max-width: 768px) {
    /* ── Snake: mobile layout ── */
    .aw-snake-section { padding: 56px 0; }
    .aw-snake-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0;
    }
    /* SVG shown — JS builds the S-curve path */
    .aw-snake-svg { display: block; }
    /* Desktop anchor dots hidden — mobile uses SVG <circle> nodes created by JS */
    .aw-snake-dot { display: none; }
    /* Reorder: swap si=2↔si=3 so snake visits 0→1→2→3→4→5 top-to-bottom */
    .aw-snake-card-wrap[data-si="2"] { order: 3; }
    .aw-snake-card-wrap[data-si="3"] { order: 4; }
    /* Compact card internals */
    .aw-snake-card { padding: 20px; }
    .aw-snake-ico  { width: 36px; height: 36px; border-radius: 9px; margin-bottom: 10px; }
    .aw-snake-cat  { font-size: 0.58rem; }
    .aw-snake-title{ font-size: 0.93rem; margin: 4px 0 8px; }
    .aw-snake-text { font-size: 0.82rem; line-height: 1.55; }
}

/* ══════════════════════════════════════════════
   A = AGITATE  –  "Warum Wachstum oft stockt"
   Light editorial – 3 alternating story blocks
   ══════════════════════════════════════════════ */
.aw-ag-section { background: #fff; }

/* ── Section header ── */
.aw-ag-header {
    padding: 100px 0 0;
    text-align: center;
}
.aw-ag-eyebrow {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 22px;
}
.aw-ag-header h2 {
    font-size: clamp(2.4rem, 3.5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--primary);
    line-height: 1.1;
    max-width: 860px;
    margin: 0 auto 20px;
}
.aw-ag-header h2 em {
    font-style: normal;
    color: var(--accent);
}
.aw-ag-header-sub {
    font-size: 1.02rem;
    line-height: 1.72;
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto;
}

/* ── Bands ── */
.aw-ag-band {
    padding: 80px 0;
    background: #fff;
}
.aw-ag-band--tinted { background: #F5F8FF; }

.aw-ag-block {
    display: grid;
    grid-template-columns: 46% 1fr;
    gap: 80px;
    align-items: center;
}

/* ── Text side ── */
.aw-ag-num {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.88;
    color: #E8EFF9;
    margin-bottom: 12px;
}
.aw-ag-kicker {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.aw-ag-title {
    font-size: clamp(1.75rem, 2.3vw, 2.2rem);
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.025em;
    line-height: 1.18;
    margin: 0 0 16px;
}
.aw-ag-body {
    font-size: 1.03rem;
    line-height: 1.75;
    color: var(--muted);
    margin: 0 0 22px;
}
.aw-ag-tag {
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    opacity: 0.38;
    border-top: 1px solid #D6E0F2;
    padding-top: 14px;
}

/* ── Visual side ── */
.aw-ag-visual {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    background: transparent;
}
.aw-ag-visual--01,
.aw-ag-visual--02,
.aw-ag-visual--03 { background: transparent; }
.aw-ag-visual svg,
.aw-ag-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* ── Bridge / closing ── */
.aw-ag-bridge {
    padding: 108px 0 100px;
    text-align: center;
    background: #fff;
    border-top: 1px solid #E6EEF8;
}
.aw-ag-bridge-eyebrow {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.55;
    margin: 0 0 20px;
}
.aw-ag-bridge-big {
    font-size: clamp(1.9rem, 2.6vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.028em;
    line-height: 1.2;
    max-width: 680px;
    margin: 0 auto 18px;
}
.aw-ag-bridge-chain {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--accent);
    opacity: 0.55;
    margin: 28px 0 0;
}

/* ── Mobile ── */
@media (max-width: 860px) {
    .aw-ag-header { padding: 64px 0 0; }
    .aw-ag-band   { padding: 64px 0; }
    .aw-ag-block  { grid-template-columns: 1fr; gap: 32px; }
    .aw-ag-num    { font-size: 2.6rem; }
    .aw-ag-visual { aspect-ratio: 16/9; }
    .aw-ag-block--odd .aw-ag-visual { order: 2; }
    .aw-ag-block--odd .aw-ag-text   { order: 1; }
    .aw-ag-bridge { padding: 44px 0 56px; }
    .aw-ag-bridge-big { font-size: clamp(1.6rem, 4.5vw, 2.1rem); }
}
@media (max-width: 480px) {
    .aw-ag-header h2 { font-size: 1.7rem; }
    .aw-ag-band { padding: 48px 0; }
}


/* ═══════════════════════════════════════════════════════════════
   HOME PROOF SECTION
═══════════════════════════════════════════════════════════════ */
.home-proof-section {
    padding: 100px 0;
    background: #F8FAFF;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
@media (max-width: 860px) {
    .home-proof-section { padding: 72px 0; }
}

/* ═══════════════════════════════════════════════════════════════
   STRATEGY MODAL
═══════════════════════════════════════════════════════════════ */
.s-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.s-modal[hidden] { display: none; }
.s-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15,36,96,0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.s-modal-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 44px 40px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 32px 80px rgba(15,36,96,0.18);
    z-index: 1;
}
.s-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--muted);
    transition: var(--tr);
}
.s-modal-close:hover { background: var(--border); color: var(--primary); }
.s-modal-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.025em;
}
.s-modal-sub {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 28px;
}
.s-modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.s-form-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.s-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.s-input {
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--primary);
    background: white;
    transition: border-color 0.2s;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}
.s-input:focus { border-color: var(--accent); }
.s-textarea { resize: vertical; min-height: 80px; }
.s-form-check {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 10px;
}
.s-form-check input {
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.s-form-check label {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}
.s-form-check a { color: var(--accent); }
.s-form-error {
    color: #dc2626;
    font-size: 0.82rem;
    background: #fef2f2;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #fca5a5;
}
.s-submit {
    background: var(--accent);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--tr);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-family: inherit;
}
.s-submit:hover { background: var(--primary); transform: translateY(-2px); }
.s-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.s-modal-success {
    text-align: center;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.s-modal-success h3 { font-size: 1.4rem; font-weight: 900; color: var(--primary); }
.s-modal-success p { color: var(--muted); }
@media (max-width: 480px) {
    .s-modal { padding: 0; align-items: flex-end; }
    .s-modal-card { border-radius: 20px 20px 0 0; max-height: 92vh; padding: 32px 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   MOTION SYSTEM  (CSS controls animation; JS only adds .motion-in)
═══════════════════════════════════════════════════════════════ */
[data-motion] {
    opacity: 0;
    transition:
        opacity  720ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--motion-delay, 0ms);
    /* no will-change: browser handles compositing automatically */
}
[data-motion="up"]    { transform: translate3d(0, 24px, 0); }
[data-motion="left"]  { transform: translate3d(-24px, 0, 0); }
[data-motion="right"] { transform: translate3d(24px, 0, 0); }
[data-motion="scale"] { transform: scale(0.978); }
[data-motion="fade"]  { transform: none; }
[data-motion="none"]  { opacity: 1; transform: none; transition: none; }

[data-motion].motion-in {
    opacity: 1;
    transform: none;
}

/* Mobile: reduce horizontal motion to vertical to prevent overflow */
@media (max-width: 768px) {
    [data-motion="left"],
    [data-motion="right"] {
        transform: translate3d(0, 18px, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-motion] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (shared by leistungen + kontakt)
═══════════════════════════════════════════════════════════════ */
.page-hero {
    padding: 120px 0 72px;
    background: white;
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.page-hero .section-eyebrow { margin-bottom: 20px; }
.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.page-hero .page-hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}
@media (max-width: 860px) {
    .page-hero { padding: 100px 0 56px; }
}

/* ═══════════════════════════════════════════════════════════════
   LEISTUNGEN PAGE
═══════════════════════════════════════════════════════════════ */
.lei-chain-block {
    padding: 72px 0 56px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.lei-chain-block h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}
.lei-chain-block p {
    font-size: 1rem;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.lei-service-band {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}
.lei-service-band:nth-child(even) { background: var(--bg); }
.lei-service-band:nth-child(odd) { background: white; }
.lei-service-grid {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 56px;
    align-items: start;
}
.lei-meta { text-align: right; padding-top: 6px; }
.lei-num {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: var(--border);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.04em;
}
.lei-cat {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    background: var(--accent-light);
    padding: 4px 10px;
    border-radius: 100px;
}
.lei-content h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}
.lei-lead {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 620px;
}
.lei-details {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lei-details li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--primary);
    line-height: 1.5;
}
.lei-details li::before {
    content: '→';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
.lei-cta-section {
    padding: 100px 0;
    background: var(--primary);
    text-align: center;
}
.lei-cta-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    color: white;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.lei-cta-section p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 36px; }
.lei-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 16px 36px;
    border-radius: 10px;
    text-decoration: none;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    transition: var(--tr);
}
.lei-cta-btn:hover { background: white; color: var(--primary); transform: translateY(-2px); }
@media (max-width: 860px) {
    .lei-service-grid { grid-template-columns: 1fr; gap: 24px; }
    .lei-meta { text-align: left; padding-top: 0; }
    .lei-num { font-size: 2.5rem; }
    .lei-service-band { padding: 56px 0; }
}

/* ═══════════════════════════════════════════════════════════════
   KONTAKT PAGE
═══════════════════════════════════════════════════════════════ */
.kt-section {
    padding: 80px 0 100px;
    background: white;
}
.kt-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 72px;
    align-items: start;
    margin-top: 64px;
}
.kt-form-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 44px 40px;
    box-shadow: 0 8px 30px rgba(15,36,96,0.06);
}
.kt-form-card h2 {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 28px;
    letter-spacing: -0.025em;
}
.kt-info-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 36px;
    position: sticky;
    top: 100px;
}
.kt-info-title {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.kt-info-sub {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.5;
}
.kt-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.kt-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
}
.kt-benefits li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 900;
    flex-shrink: 0;
}
.kt-divider { height: 1px; background: var(--border); margin: 24px 0; }
.kt-contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.kt-contact-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--muted);
    text-decoration: none;
    transition: var(--tr);
    line-height: 1.4;
}
.kt-contact-links a:hover { color: var(--accent); }
.kt-success {
    text-align: center;
    padding: 40px 20px;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.kt-success.visible { display: flex; }
.kt-success h3 { font-size: 1.4rem; font-weight: 900; color: var(--primary); }
.kt-success p { color: var(--muted); }
@media (max-width: 960px) {
    .kt-layout { grid-template-columns: 1fr; gap: 40px; }
    .kt-info-card { position: static; }
    .kt-form-card { padding: 32px 24px; }
}

/* ── KONTAKT FORM FIELDS ── */
.kt-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}
.kt-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 600px) {
    .kt-field-row { grid-template-columns: 1fr; }
}
.kt-field-group label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.01em;
}
.kt-field-group input,
.kt-field-group select,
.kt-field-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--primary);
    background: var(--bg);
    transition: border-color 0.2s;
    box-sizing: border-box;
    outline: none;
}
.kt-field-group input:focus,
.kt-field-group select:focus,
.kt-field-group textarea:focus {
    border-color: var(--accent);
    background: white;
}
.kt-field-group textarea { resize: vertical; min-height: 120px; }
.kt-field-group select { cursor: pointer; }

/* checkbox */
.kt-privacy-check { margin-top: 4px; }
.kt-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
}
.kt-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--accent);
    cursor: pointer;
}
.kt-checkbox-label a { color: var(--accent); text-decoration: underline; }

/* submit */
.kt-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 10px;
    padding: 16px 32px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    letter-spacing: -0.01em;
}
.kt-submit:hover { background: var(--primary); transform: translateY(-2px); }
.kt-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* contact items in info card */
.kt-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    background: var(--bg);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.kt-contact-item:hover { border-color: var(--accent); box-shadow: 0 4px 12px rgba(37,99,235,0.08); }
.kt-contact-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
}
.kt-contact-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.kt-contact-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 1px;
}
.kt-info-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 16px;
}
.kt-info-card h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 12px;
}
.kt-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.kt-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
}
.kt-benefits li svg {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}

/* ghost-btn — global (also used on leistungen.html) */
.ghost-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    padding: 13px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--tr);
}
.ghost-btn:hover { background: var(--accent); color: white; }

/* ═══════════════════════════════════════════════════════════
   LEISTUNGEN v2 — Premium Service Showcases
   Prefix: ls-  (no overlap with existing lei- classes)
═══════════════════════════════════════════════════════════ */

/* ── HERO ── */
.ls-hero {
    padding: clamp(80px,10vw,130px) 0 clamp(80px,9vw,120px);
    background: linear-gradient(150deg,#ffffff 0%,#F5F8FF 55%,#EEF4FF 100%);
    overflow: hidden; position: relative;
}
.ls-hero::before {
    content: ''; position: absolute; top: -200px; right: -80px;
    width: 560px; height: 560px;
    background: radial-gradient(circle,rgba(37,99,235,.09) 0%,transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.ls-hero-grid {
    display: grid; grid-template-columns: 1fr 1.05fr;
    gap: clamp(48px,7vw,100px); align-items: center;
}
.ls-hero-eyebrow {
    display: inline-block; font-size: .7rem; font-weight: 800;
    letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px;
}
.ls-hero-copy h1 {
    font-size: clamp(2.1rem,4vw,3.1rem); font-weight: 900; color: var(--primary);
    line-height: 1.1; letter-spacing: -.03em; margin-bottom: 18px;
}
.ls-hero-sub {
    font-size: 1.02rem; color: var(--muted); line-height: 1.7;
    max-width: 480px; margin-bottom: 34px;
}
.ls-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.ls-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent); color: white; padding: 13px 26px;
    border-radius: 12px; text-decoration: none; font-weight: 800; font-size: .9rem;
    transition: background .2s,transform .2s;
}
.ls-btn-primary:hover { background: #1d4ed8; transform: translateY(-1px); }
.ls-btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1.5px solid var(--border); color: var(--primary);
    padding: 12px 22px; border-radius: 12px; text-decoration: none;
    font-weight: 600; font-size: .9rem; transition: border-color .2s,color .2s;
}
.ls-btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── HUB VISUAL ── */
.ls-hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.ls-hub-wrap {
    position: relative; width: 100%; max-width: 500px;
    aspect-ratio: 1; margin: 0 auto; overflow: hidden;
}
.ls-hub-bg {
    position: absolute; inset: 0;
    background: linear-gradient(145deg,rgba(255,255,255,.92),rgba(239,246,255,.75));
    backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.85);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(15,36,96,.1),0 4px 20px rgba(37,99,235,.07);
}
.ls-hub-center {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    background: white; border: 1.5px solid var(--border); border-radius: 18px;
    padding: 22px 30px; text-align: center;
    box-shadow: 0 8px 32px rgba(15,36,96,.13),0 2px 8px rgba(37,99,235,.07);
    z-index: 2; min-width: 150px;
}
.ls-hub-center-label {
    font-size: .58rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 5px;
}
.ls-hub-center-title {
    font-size: 1rem; font-weight: 900; color: var(--primary);
    line-height: 1.2; margin-bottom: 6px; letter-spacing: -.02em;
}
.ls-hub-center-sub { font-size: .78rem; font-weight: 800; color: #16a34a; letter-spacing: .02em; }
.ls-hub-node {
    position: absolute; background: white; border: 1.5px solid var(--border);
    border-radius: 12px; padding: 10px 14px; display: flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 16px rgba(15,36,96,.08); z-index: 2; white-space: nowrap;
    transition: transform .25s ease,box-shadow .25s ease;
}
.ls-hub-node:hover { box-shadow: 0 8px 24px rgba(37,99,235,.16); }
.ls-hub-node--tl { top: 13%; left: 4%; }
.ls-hub-node--tl:hover { transform: translate(-2px,-3px); }
.ls-hub-node--tr { top: 13%; right: 4%; }
.ls-hub-node--tr:hover { transform: translate(2px,-3px); }
.ls-hub-node--bl { bottom: 13%; left: 4%; }
.ls-hub-node--bl:hover { transform: translate(-2px,3px); }
.ls-hub-node--br { bottom: 13%; right: 4%; }
.ls-hub-node--br:hover { transform: translate(2px,3px); }
.ls-hub-icon {
    width: 26px; height: 26px; border-radius: 7px;
    background: var(--accent-light); display: flex; align-items: center; justify-content: center;
    font-size: .78rem; flex-shrink: 0;
}
.ls-hub-node-text { font-size: .72rem; font-weight: 800; color: var(--primary); letter-spacing: .02em; }
.ls-hub-svg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    z-index: 1; pointer-events: none;
}

/* ── SYSTEM BAR ── */
.ls-sysbar {
    padding: 80px 0; background: white;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.ls-sysbar-inner { max-width: 860px; }
.ls-sysbar-eyebrow {
    font-size: .68rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 14px; display: block;
}
.ls-sysbar h2 {
    font-size: clamp(1.8rem,3vw,2.5rem); font-weight: 900; color: var(--primary);
    letter-spacing: -.03em; margin-bottom: 14px; line-height: 1.15;
}
.ls-sysbar p {
    color: var(--muted); font-size: 1rem; line-height: 1.7;
    max-width: 600px; margin-bottom: 44px;
}
.ls-sysflow {
    display: flex; align-items: center; gap: 0; flex-wrap: nowrap;
    overflow-x: auto; padding-bottom: 4px; -ms-overflow-style: none; scrollbar-width: none;
}
.ls-sysflow::-webkit-scrollbar { display: none; }
.ls-sysflow-step { display: flex; flex-direction: column; align-items: center; gap: 5px; flex-shrink: 0; }
.ls-sysflow-num { font-size: .58rem; font-weight: 800; color: var(--accent); letter-spacing: .12em; }
.ls-sysflow-chip {
    background: var(--accent-light); border: 1px solid rgba(37,99,235,.2);
    border-radius: 10px; padding: 10px 18px;
    font-size: .8rem; font-weight: 800; color: var(--primary); letter-spacing: .03em; white-space: nowrap;
}
.ls-sysflow-arr { color: var(--border); font-size: 1.2rem; padding: 0 10px; flex-shrink: 0; line-height: 1; margin-top: 18px; }
.ls-sysflow-end { display: flex; flex-direction: column; align-items: center; gap: 5px; flex-shrink: 0; }
.ls-sysflow-end-chip {
    background: linear-gradient(135deg,var(--primary),var(--accent));
    border-radius: 10px; padding: 10px 18px;
    font-size: .8rem; font-weight: 900; color: white; white-space: nowrap; letter-spacing: .03em;
}

/* ── SERVICE SHOWCASES ── */
.ls-showcase { padding: clamp(70px,7vw,110px) 0; background: white; overflow: hidden; }
.ls-showcase--alt { background: var(--bg); }
.ls-showcase-grid {
    display: grid; grid-template-columns: 42fr 58fr;
    gap: clamp(56px,7vw,104px); align-items: center;
}
.ls-showcase--flip .ls-showcase-grid { grid-template-columns: 58fr 42fr; }
.ls-showcase--flip .ls-sc-copy { order: 2; }
.ls-showcase--flip .ls-sc-visual { order: 1; }
.ls-sc-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .66rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 14px;
}
.ls-sc-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; border-radius: 5px; background: var(--accent-light);
    font-size: .62rem; color: var(--accent); font-weight: 900;
}
.ls-sc-copy h2 {
    font-size: clamp(1.6rem,2.8vw,2.4rem); font-weight: 900; color: var(--primary);
    letter-spacing: -.03em; line-height: 1.15; margin-bottom: 12px;
}
.ls-sc-lead { font-size: .98rem; color: var(--muted); line-height: 1.65; margin-bottom: 18px; max-width: 480px; }
.ls-sc-points { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 8px; }
.ls-sc-points li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .88rem; color: var(--primary); font-weight: 500; line-height: 1.5;
}
.ls-sc-points li::before {
    content: ''; display: block; width: 17px; height: 17px; border-radius: 50%;
    background: var(--accent-light) url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%232563EB' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/13px no-repeat;
    border: 1.5px solid rgba(37,99,235,.22); flex-shrink: 0; margin-top: 2px;
}
.ls-sc-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.ls-sc-tag {
    display: inline-block; padding: 5px 11px;
    background: var(--bg); border: 1px solid var(--border); border-radius: 7px;
    font-size: .72rem; font-weight: 700; color: var(--primary); letter-spacing: .02em;
}
.ls-sc-visual { position: relative; }
.ls-visual-wrap {
    background: linear-gradient(145deg,#F0F5FF,#E8EFFD);
    border-radius: 20px; padding: 28px; position: relative; overflow: visible;
    box-shadow: 0 16px 48px rgba(15,36,96,.1),0 4px 16px rgba(37,99,235,.06);
}
.ls-visual-wrap::before {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle,rgba(37,99,235,.12),transparent 70%);
    border-radius: 50%; pointer-events: none;
}

/* ── BROWSER MOCK ── */
.ls-browser {
    background: white; border-radius: 11px; overflow: hidden;
    box-shadow: 0 6px 24px rgba(15,36,96,.1); border: 1px solid rgba(226,232,240,.8);
    position: relative; z-index: 1;
}
.ls-browser-chrome {
    background: #F1F5F9; padding: 9px 13px;
    display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #E2E8F0;
}
.ls-bdots { display: flex; gap: 5px; }
.ls-bdot { width: 7px; height: 7px; border-radius: 50%; }
.ls-bdot:nth-child(1){ background: #F87171; }
.ls-bdot:nth-child(2){ background: #FBBF24; }
.ls-bdot:nth-child(3){ background: #4ADE80; }
.ls-burl {
    flex: 1; background: white; border: 1px solid #E2E8F0; border-radius: 5px;
    padding: 3px 9px; font-size: .62rem; color: #94A3B8; font-weight: 500;
}
.ls-bsite-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 9px 14px; border-bottom: 1px solid #F1F5F9;
}
.ls-blogo { width: 48px; height: 7px; background: var(--primary); border-radius: 3px; opacity: .35; }
.ls-bnav { display: flex; gap: 10px; }
.ls-bnavl { width: 24px; height: 4px; border-radius: 2px; background: #CBD5E1; }
.ls-bcta { width: 48px; height: 14px; background: var(--accent); border-radius: 5px; opacity: .8; }
.ls-bsite-hero { padding: 18px 14px 14px; background: linear-gradient(135deg,#F8FAFF,white); }
.ls-bh1 { width: 72%; height: 9px; background: var(--primary); border-radius: 4px; margin-bottom: 5px; opacity: .7; }
.ls-bh1b { width: 55%; height: 9px; background: var(--primary); border-radius: 4px; margin-bottom: 11px; opacity: .7; }
.ls-bsub { width: 88%; height: 4px; background: #CBD5E1; border-radius: 2px; margin-bottom: 4px; }
.ls-bsub2 { width: 68%; height: 4px; background: #CBD5E1; border-radius: 2px; margin-bottom: 13px; }
.ls-bcta-btn {
    display: inline-block; background: var(--accent); color: white;
    padding: 5px 13px; border-radius: 6px; font-size: .58rem; font-weight: 800; letter-spacing: .02em;
}
.ls-bsite-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; padding: 10px 14px; }
.ls-bcard { background: var(--bg); border-radius: 7px; padding: 9px; border: 1px solid var(--border); }
.ls-bcard-icon { width: 18px; height: 18px; background: var(--accent-light); border-radius: 5px; margin-bottom: 5px; }
.ls-bcard-l1 { width: 70%; height: 4px; background: #CBD5E1; border-radius: 2px; margin-bottom: 3px; }
.ls-bcard-l2 { width: 50%; height: 4px; background: #E2E8F0; border-radius: 2px; }
.ls-fkpi {
    position: absolute; background: white; border: 1.5px solid var(--border);
    border-radius: 11px; padding: 9px 14px; box-shadow: 0 6px 20px rgba(15,36,96,.11);
    display: flex; align-items: center; gap: 8px; z-index: 3;
}
.ls-fkpi--br { bottom: -14px; right: -14px; }
.ls-fkpi--tl { top: -12px; left: -12px; }
.ls-fkpi-icon {
    width: 26px; height: 26px; border-radius: 7px;
    display: flex; align-items: center; justify-content: center; font-size: .8rem;
}
.ls-fkpi-icon--green { background: #DCFCE7; }
.ls-fkpi-icon--purple { background: #EDE9FE; }
.ls-fkpi-icon--blue { background: #DBEAFE; }
.ls-fkpi-icon--orange { background: #FEF3C7; }
.ls-fkpi-icon--star { background: #FEF3C7; }
.ls-fkpi-lbl { font-size: .58rem; color: var(--muted); font-weight: 600; }
.ls-fkpi-val { font-size: .84rem; font-weight: 900; }
.ls-fkpi-val--green { color: #16a34a; }
.ls-fkpi-val--amber { color: #D97706; }
.ls-fkpi-val--blue { color: #2563EB; font-weight: 800; }

/* ── SEARCH MOCK ── */
.ls-search {
    background: white; border-radius: 13px; overflow: hidden;
    border: 1px solid #E2E8F0; box-shadow: 0 6px 24px rgba(15,36,96,.09); position: relative; z-index: 1;
}
.ls-search-bar {
    display: flex; align-items: center; gap: 9px; padding: 13px 14px;
    border-bottom: 1px solid #F1F5F9; background: #FAFBFF;
}
.ls-search-bar-icon { font-size: .85rem; color: #94A3B8; flex-shrink: 0; }
.ls-search-q { font-size: .82rem; font-weight: 600; color: var(--primary); flex: 1; }
.ls-search-q strong { color: var(--accent); }
.ls-search-res { padding: 11px 14px; display: flex; flex-direction: column; gap: 2px; }
.ls-res-top {
    background: linear-gradient(135deg,#EFF6FF,#F0F9FF);
    border-radius: 9px; padding: 11px 12px; border: 1px solid rgba(37,99,235,.15); margin-bottom: 4px; position: relative;
}
.ls-res-badge {
    position: absolute; top: 9px; right: 9px; background: var(--accent); color: white;
    font-size: .52rem; font-weight: 800; padding: 2px 6px; border-radius: 4px; letter-spacing: .08em;
}
.ls-res-domain { font-size: .62rem; color: #16a34a; font-weight: 600; margin-bottom: 2px; }
.ls-res-title { font-size: .8rem; font-weight: 800; color: var(--accent); margin-bottom: 2px; line-height: 1.25; }
.ls-res-desc { font-size: .64rem; color: var(--muted); line-height: 1.4; }
.ls-res-stars { font-size: .62rem; margin-top: 3px; color: #F59E0B; }
.ls-res-item { padding: 7px 4px; border-top: 1px solid #F8FAFC; }
.ls-res-item-title { font-size: .74rem; font-weight: 700; color: #3B82F6; margin-bottom: 1px; }
.ls-res-item-url { font-size: .58rem; color: #16a34a; margin-bottom: 2px; }
.ls-res-item-desc { font-size: .62rem; color: var(--muted); }
.ls-search-bottom {
    display: flex; align-items: center; gap: 9px; padding: 9px 14px;
    background: #F8FAFC; border-top: 1px solid var(--border);
}
.ls-map-lbl { font-size: .65rem; font-weight: 700; color: var(--primary); }
.ls-search-kpi { margin-left: auto; text-align: right; }
.ls-search-kpi-val { font-size: .88rem; font-weight: 900; color: var(--accent); line-height: 1; }
.ls-search-kpi-lbl { font-size: .56rem; font-weight: 600; color: var(--muted); letter-spacing: .04em; }

/* ── AD FLOW MOCK ── */
.ls-flow-wrap { display: flex; gap: 24px; align-items: center; position: relative; z-index: 1; }
.ls-flow-chain { display: flex; flex-direction: column; align-items: stretch; gap: 0; flex: 1; }
.ls-flow-node {
    background: white; border: 1.5px solid var(--border); border-radius: 13px;
    padding: 13px 18px; display: flex; align-items: center; gap: 11px;
    box-shadow: 0 3px 12px rgba(15,36,96,.05); transition: transform .2s;
}
.ls-flow-node:hover { transform: translateX(3px); }
.ls-flow-node--active { border-color: var(--accent); background: linear-gradient(135deg,#EFF6FF,white); }
.ls-flow-icon {
    width: 34px; height: 34px; border-radius: 9px;
    display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0;
}
.ls-fi--blue { background: var(--accent-light); }
.ls-fi--green { background: #DCFCE7; }
.ls-fi--orange { background: #FEF3C7; }
.ls-flow-node-text strong { display: block; font-size: .78rem; font-weight: 800; color: var(--primary); margin-bottom: 1px; }
.ls-flow-node-text span { font-size: .64rem; color: var(--muted); }
.ls-flow-conn { width: 2px; height: 18px; background: linear-gradient(to bottom,var(--accent),rgba(37,99,235,.2)); margin: 2px auto; }
.ls-flow-kpis { display: flex; flex-direction: column; gap: 9px; }
.ls-fkpi-card {
    background: white; border: 1.5px solid var(--border); border-radius: 11px;
    padding: 11px 15px; text-align: center; box-shadow: 0 3px 10px rgba(15,36,96,.05); min-width: 84px;
}
.ls-fkpi-card-val { font-size: 1.05rem; font-weight: 900; line-height: 1; margin-bottom: 3px; }
.ls-fkpi-card-val--red { color: #ef4444; }
.ls-fkpi-card-val--green { color: #22c55e; }
.ls-fkpi-card-val--blue { color: var(--accent); }
.ls-fkpi-card-lbl { font-size: .56rem; font-weight: 700; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }

/* ── WORKFLOW MOCK ── */
.ls-wf { display: flex; flex-direction: column; gap: 0; width: 100%; position: relative; z-index: 1; }
.ls-wf-step {
    background: white; border: 1.5px solid var(--border); border-radius: 11px;
    padding: 11px 16px; display: flex; align-items: center; gap: 11px;
    box-shadow: 0 2px 8px rgba(15,36,96,.04); transition: border-color .2s,box-shadow .2s;
}
.ls-wf-step:hover { border-color: var(--accent); box-shadow: 0 4px 14px rgba(37,99,235,.1); }
.ls-wf-step--active { border-color: var(--accent); background: linear-gradient(135deg,#EFF6FF,white); }
.ls-wf-icon { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; }
.ls-wi--blue { background: var(--accent-light); }
.ls-wi--purple { background: #F3E8FF; }
.ls-wi--green { background: #DCFCE7; }
.ls-wi--orange { background: #FEF3C7; }
.ls-wi--teal { background: #CCFBF1; }
.ls-wf-step-t { font-size: .78rem; font-weight: 800; color: var(--primary); margin-bottom: 1px; }
.ls-wf-step-s { font-size: .62rem; color: var(--muted); }
.ls-wf-conn { width: 2px; height: 14px; background: linear-gradient(to bottom,rgba(37,99,235,.4),rgba(37,99,235,.1)); border-radius: 1px; margin: 2px 0 2px 20px; }

/* ── SYNERGY ── */
.ls-synergy { padding: clamp(80px,8vw,120px) 0; background: white; border-top: 1px solid var(--border); }
.ls-synergy-hdr { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.ls-synergy-hdr h2 { font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 900; color: var(--primary); letter-spacing: -.03em; margin-bottom: 14px; line-height: 1.15; }
.ls-synergy-hdr p { color: var(--muted); line-height: 1.7; font-size: 1rem; }
.ls-mini-flow { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; margin-bottom: 56px; row-gap: 12px; }
.ls-mini-chip { padding: 9px 17px; background: var(--accent-light); border: 1px solid rgba(37,99,235,.2); border-radius: 9px; font-size: .78rem; font-weight: 800; color: var(--primary); white-space: nowrap; }
.ls-mini-arr { color: var(--border); font-size: 1rem; padding: 0 8px; opacity: .8; flex-shrink: 0; line-height: 1; }
.ls-mini-end { padding: 9px 17px; background: linear-gradient(135deg,var(--primary),var(--accent)); border-radius: 9px; font-size: .78rem; font-weight: 900; color: white; white-space: nowrap; }
.ls-scenarios { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ls-sc-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: 16px; padding: 26px; transition: border-color .2s,transform .2s; }
.ls-sc-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.ls-sc-card-lbl { font-size: .62rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--accent); margin-bottom: 9px; }
.ls-sc-card-name { font-size: .98rem; font-weight: 900; color: var(--primary); margin-bottom: 14px; }
.ls-sc-card-items { display: flex; flex-direction: column; gap: 7px; }
.ls-sc-card-item { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: var(--muted); font-weight: 500; }
.ls-sc-card-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ── PROOF ── */
.ls-proof { padding: clamp(80px,8vw,120px) 0; background: var(--bg); border-top: 1px solid var(--border); }
.ls-proof-hdr { text-align: center; margin-bottom: 52px; }
.ls-proof-hdr h2 { font-size: clamp(1.6rem,2.5vw,2.2rem); font-weight: 900; color: var(--primary); letter-spacing: -.03em; margin-bottom: 10px; line-height: 1.2; }
.ls-proof-hdr p { color: var(--muted); font-size: .95rem; }
.ls-proof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 38px; }
.ls-proof-card {
    background: white; border: 1.5px solid var(--border); border-radius: 18px; padding: 28px;
    transition: transform .2s,box-shadow .2s;
}
.ls-proof-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(15,36,96,.1); }
.ls-proof-cat { font-size: .64rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; color: var(--accent); margin-bottom: 7px; }
.ls-proof-name { font-size: 1.05rem; font-weight: 900; color: var(--primary); margin-bottom: 18px; letter-spacing: -.02em; }
.ls-proof-stats { display: flex; flex-direction: column; gap: 13px; margin-bottom: 18px; }
.ls-proof-stat { display: flex; align-items: baseline; gap: 11px; }
.ls-proof-stat-n { font-size: 1.5rem; font-weight: 900; color: var(--primary); letter-spacing: -.03em; line-height: 1; min-width: 76px; }
.ls-proof-stat-n--acc { color: var(--accent); }
.ls-proof-stat-l { font-size: .76rem; color: var(--muted); font-weight: 500; line-height: 1.3; }
.ls-proof-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ls-proof-tg { padding: 4px 10px; background: var(--bg); border: 1px solid var(--border); border-radius: 6px; font-size: .66rem; font-weight: 700; color: var(--muted); }
.ls-proof-footer { text-align: center; }

/* ── FINAL CTA ── */
.ls-cta {
    padding: clamp(80px,8vw,120px) 0;
    background: linear-gradient(135deg,var(--primary) 0%,#1a3a7a 55%,#0f2460 100%);
    position: relative; overflow: hidden; text-align: center;
}
.ls-cta::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 380px; height: 380px; background: radial-gradient(circle,rgba(37,99,235,.28),transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.ls-cta::after {
    content: ''; position: absolute; bottom: -80px; left: -80px;
    width: 280px; height: 280px; background: radial-gradient(circle,rgba(255,255,255,.06),transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.ls-cta .inner { position: relative; z-index: 1; }
.ls-cta h2 { font-size: clamp(1.9rem,3.5vw,3rem); font-weight: 900; color: white; letter-spacing: -.03em; line-height: 1.15; margin-bottom: 14px; }
.ls-cta p { color: rgba(255,255,255,.62); font-size: 1rem; line-height: 1.65; max-width: 460px; margin: 0 auto 34px; }
.ls-cta-link {
    display: inline-flex; align-items: center; gap: 10px;
    background: white; color: var(--primary); padding: 15px 34px;
    border-radius: 13px; text-decoration: none; font-weight: 900; font-size: .98rem;
    letter-spacing: -.01em; transition: transform .2s,box-shadow .2s;
    box-shadow: 0 4px 24px rgba(255,255,255,.18);
}
.ls-cta-link:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,.28); }
.ls-cta-note { margin-top: 14px; color: rgba(255,255,255,.38); font-size: .78rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .ls-hero-grid { grid-template-columns: 1fr; gap: 52px; }
    .ls-hub-wrap { max-width: 400px; }
    .ls-showcase-grid { grid-template-columns: 1fr; gap: 40px; }
    .ls-showcase--flip .ls-sc-copy { order: 1; }
    .ls-showcase--flip .ls-sc-visual { order: 2; }
    .ls-scenarios { grid-template-columns: 1fr; gap: 14px; }
    .ls-proof-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 768px) {
    .ls-hero { padding: 76px 0 60px; }
    .ls-sysbar { padding: 56px 0; }
    .ls-sysflow { flex-direction: column; align-items: flex-start; gap: 4px; }
    .ls-sysflow-arr { transform: rotate(90deg); padding: 2px 0; margin-top: 0; margin-left: 38px; }
    .ls-hub-wrap { max-width: 320px; min-height: 320px; aspect-ratio: 1; }
    .ls-hub-node { padding: 7px 11px; }
    .ls-hub-node-text { font-size: .66rem; }
    .ls-hub-icon { width: 22px; height: 22px; font-size: .72rem; }
    .ls-showcase { padding: 68px 0; }
    .ls-visual-wrap { padding: 20px; }
    .ls-flow-wrap { flex-direction: column; }
    .ls-flow-kpis { flex-direction: row; justify-content: center; }
    .ls-synergy { padding: 68px 0; }
    .ls-mini-flow { flex-direction: column; align-items: flex-start; }
    .ls-mini-arr { transform: rotate(90deg); padding: 2px 8px; }
    .ls-proof { padding: 68px 0; }
    .ls-cta { padding: 80px 0; }
    .ls-scenarios { grid-template-columns: 1fr; }
    .ls-proof-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ── LEISTUNGEN HERO IMAGE — seamless blend (eigener Hintergrund im PNG) ── */
.hero-img--lei {
    /* Same mask as homepage hero — 1:1 blending */
    -webkit-mask-image:
        linear-gradient(to right, transparent 0%, rgba(0,0,0,0.55) 8%, black 17%, black 72%, transparent 92%),
        linear-gradient(to bottom, transparent 0%, black 6%, black 90%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to right, transparent 0%, rgba(0,0,0,0.55) 8%, black 17%, black 72%, transparent 92%),
        linear-gradient(to bottom, transparent 0%, black 6%, black 90%, transparent 100%);
    mask-composite: intersect;
    filter: drop-shadow(0 24px 52px rgba(15,36,96,0.07));
}

/* ── DIE FOLGE – Agitate consequence blocks ── */
.aw-ag-folge {
    margin-top: 20px;
    padding: 12px 16px;
    border-left: 3px solid var(--accent);
    background: rgba(37,99,235,0.05);
    border-radius: 0 8px 8px 0;
}
.aw-ag-folge-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 5px;
}
.aw-ag-folge-text {
    font-size: 0.88rem;
    color: var(--primary);
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

/* ── Unser Ansatz – process steps + trust ── */
.aw-sys-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    align-items: center;
    margin-top: 24px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}
.aw-sys-arr {
    color: var(--muted);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0;
    text-transform: none;
}
.aw-sys-trust {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.aw-sys-trust p {
    font-weight: 700;
    font-size: 0.93rem;
    color: var(--primary);
    margin: 0 0 4px;
}
.aw-sys-trust span {
    font-size: 0.83rem;
    color: var(--muted);
}

/* ── Bridge animated Wachstumsweg ── */
.aw-ag-bridge { position: relative; overflow: hidden; }
.aw-ag-bridge::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 800px; height: 100%;
    background: radial-gradient(ellipse 65% 55% at 50% 42%, rgba(37,99,235,0.07) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}
.aw-ag-bridge .inner { position: relative; z-index: 1; }

.aw-bridge-path-wrap {
    max-width: 700px;
    margin: 40px auto 12px;
    overflow: visible;
}
.aw-bridge-svg { width: 100%; height: auto; overflow: visible; }

.abg-path {
    fill: none;
    stroke: #2563EB;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-dasharray: 870;
    stroke-dashoffset: 870;
    transition: stroke-dashoffset 1.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.abg-path.abg-drawn { stroke-dashoffset: 0; }

.abg-dot {
    fill: #2563EB;
    opacity: 0;
    transform: scale(0);
    transform-origin: center;
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.abg-dot.abg-show { opacity: 1; transform: scale(1); }

.abg-halo {
    opacity: 0;
    transition: opacity 0.5s ease;
}
.abg-halo.abg-show { opacity: 0.11; }

.abg-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.1em;
    fill: #2563EB;
    text-anchor: middle;
    opacity: 0;
    transition: opacity 0.45s ease;
}
.abg-label.abg-show { opacity: 0.75; }

@media (max-width: 768px) {
    .aw-bridge-path-wrap { margin: 28px auto 8px; }
    .abg-label { font-size: 7.5px; }
}

/* ════════════════════════════════════════════
   AUFWIND PERSPECTIVE GROWTH RAIL  v2
   ════════════════════════════════════════════ */

/* Outer container */
.apg-outer {
    position: relative;
    width: 100%;
    height: 210px;
    margin: 52px auto 0;
    overflow: hidden;
}

/* Side fade masks — heavy vignette, creates spatial depth at edges */
.apg-outer::before,
.apg-outer::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 310px;
    z-index: 5;
    pointer-events: none;
}
.apg-outer::before {
    left: 0;
    background: linear-gradient(to right,
        #fff 0%,
        rgba(255,255,255,0.97) 28%,
        rgba(255,255,255,0.60) 62%,
        transparent 100%);
}
.apg-outer::after {
    right: 0;
    background: linear-gradient(to left,
        #fff 0%,
        rgba(255,255,255,0.97) 28%,
        rgba(255,255,255,0.60) 62%,
        transparent 100%);
}

/* Atmosphere — broad blue ambient glow */
.apg-atmo {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.apg-atmo--1 {
    top: 50%; left: 50%;
    width: 860px; height: 340px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center,
        rgba(37,99,235,0.062) 0%,
        rgba(37,99,235,0.016) 44%,
        transparent 66%);
    z-index: 0;
}
/* Central white lift — brightens the focal zone */
.apg-atmo--2 {
    top: 50%; left: 50%;
    width: 500px; height: 230px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center,
        rgba(255,255,255,0.88) 0%,
        rgba(255,255,255,0.38) 40%,
        transparent 72%);
    z-index: 3;
}

/* Decorative outline ring — geometry without clutter */
.apg-ring {
    position: absolute;
    top: 50%; left: 50%;
    width: 450px; height: 450px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(37,99,235,0.052);
    pointer-events: none;
    z-index: 1;
}

/* ── Shared layer base ── */
.apg-layer {
    position: absolute;
    inset: 0;
}

/* ── Background atmospheric layer ──
   Small, blurred, blue-tinted, very slow — creates illusion of depth behind main track */
.apg-layer--bg {
    display: flex;
    align-items: center;
    z-index: 1;
    transform: translateY(-14px); /* sit above centre-line, creating layered height */
}
.apg-track--bg {
    display: inline-flex;
    white-space: nowrap;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(14px, 1.4vw, 22px);
    font-weight: 800;
    letter-spacing: 0.11em;
    color: #2563EB;
    opacity: 0.046;
    filter: blur(2.5px);
    animation: apg-bg-scroll 70s linear infinite;
    will-change: transform;
}
.apg-bg-set {
    display: inline-block;
}
.apg-bsep {
    font-weight: 300;
    opacity: 0.6;
}
@keyframes apg-bg-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Foreground main layer ── */
.apg-layer--fg {
    perspective: 1100px;
    z-index: 2;
}
/* Static 3D tilt wrapper — perspective is applied to this element's transforms */
.apg-tilt {
    position: absolute;
    top: 50%;
    left: 0;
    transform: rotateX(3deg) rotateY(-6deg) translateY(-50%);
}
/* Scrolling track — translateX-only animation inside the tilted space */
.apg-track--fg {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: apg-fg-scroll 42s linear infinite;
    will-change: transform;
}
.apg-set {
    display: inline-flex;
    align-items: center;
}
.apg-word {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(34px, 3.6vw, 60px);
    font-weight: 800;
    letter-spacing: -0.022em;
    color: var(--primary);
    padding: 0 8px;
    display: inline-block;
}
.apg-sep {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(16px, 1.7vw, 28px);
    font-weight: 300;
    color: var(--primary);
    opacity: 0.08;
    padding: 0 6px;
    display: inline-block;
}
/* Subtle tonal variation — no single word dominates */
.apg-o1 { opacity: 0.14; }  /* ANALYSIEREN  */
.apg-o2 { opacity: 0.21; }  /* PRIORISIEREN / VERBINDEN */
.apg-o3 { opacity: 0.16; }  /* OPTIMIEREN   */

@keyframes apg-fg-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Pause when off-screen (JS adds class) */
.apg-outer.apg-paused .apg-track--fg,
.apg-outer.apg-paused .apg-track--bg {
    animation-play-state: paused;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .apg-track--fg,
    .apg-track--bg { animation: none !important; }
}

/* ── Mobile ── */
@media (max-width: 860px) {
    .apg-outer { height: 140px; margin-top: 36px; }
    .apg-outer::before, .apg-outer::after { width: 100px; }
    .apg-ring,
    .apg-layer--bg { display: none; }
    .apg-tilt { transform: rotateX(2deg) rotateY(-3deg) translateY(-50%); }
}
@media (max-width: 480px) {
    .apg-outer { height: 100px; margin-top: 26px; }
    .apg-outer::before, .apg-outer::after { width: 56px; }
    .apg-tilt { transform: rotateX(1deg) rotateY(-2deg) translateY(-50%); }
}

/* ════════════════════════════════════════════
   LOGO CYCLING STRIP  (replaces marquee)
   Exact height preserved: 46px grid = old track-wrap height
   ════════════════════════════════════════════ */

/* 5-column grid, same height as old track-wrap */
.lcs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 46px;
    /* Subtle edge fades — stationary logos, keep it gentle */
    -webkit-mask-image: linear-gradient(to right,
        transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right,
        transparent 0%, black 5%, black 95%, transparent 100%);
}

/* Fixed slot — clips the vertical enter/exit motion */
.lcs-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    overflow: hidden;
}

/* Inner wrapper — this is what we animate */
.lcs-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
    transition:
        opacity   480ms cubic-bezier(0.4, 0, 0.2, 1),
        transform 480ms cubic-bezier(0.4, 0, 0.2, 1),
        filter    480ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Exit: old logo slides up and fades out */
.lcs-inner.lcs-exit {
    opacity: 0;
    transform: translateY(-11px);
    filter: blur(5px);
}

/* From: new logo snaps to enter-from state (no transition) */
.lcs-inner.lcs-from {
    opacity: 0;
    transform: translateY(11px);
    filter: blur(5px);
    transition: none !important;
}
/* When .lcs-from is removed, .lcs-inner transition fires → enter animation */

.lcs-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    outline: none;
}

.lcs-img {
    height: 36px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    display: block;
    filter: grayscale(1) opacity(0.52);
    mix-blend-mode: multiply;
    /* no transition on filter — handled by .lcs-inner transition instead */
}

/* Hover — very subtle brightening */
.lcs-slot:hover .lcs-inner { opacity: 0.85; }

/* Per-logo optical corrections (applied via data-client set by JS) */
.lcs-img[data-client="sfp"]      { height: 40px; }
.lcs-img[data-client="carplace"] { height: 34px; }
.lcs-img[data-client="pier14"]   { height: 30px; }
.lcs-img[data-client="sengbusch"] {
    height: 24px;
    filter: brightness(0) opacity(0.46);
    mix-blend-mode: normal;
}

/* Tablet: 4 slots (hide slot 4) */
@media (max-width: 900px) {
    .lcs-grid { grid-template-columns: repeat(4, 1fr); }
    .lcs-slot[data-slot="4"] { display: none; }
}

/* Mobile: 3 slots (hide slots 3 and 4) */
@media (max-width: 600px) {
    .lcs-grid { grid-template-columns: repeat(3, 1fr); }
    .lcs-slot[data-slot="3"],
    .lcs-slot[data-slot="4"] { display: none; }
    .lcs-img               { height: 28px !important; max-width: 100px; }
    .lcs-img[data-client="sfp"]      { height: 32px !important; }
    .lcs-img[data-client="sengbusch"] { height: 20px !important; }
}

/* Reduced motion: opacity-only fade, no translate/blur */
@media (prefers-reduced-motion: reduce) {
    .lcs-inner {
        transition: opacity 400ms ease !important;
    }
    .lcs-inner.lcs-exit {
        opacity: 0 !important;
        transform: translateY(0) !important;
        filter: blur(0) !important;
    }
    .lcs-inner.lcs-from {
        opacity: 0 !important;
        transform: translateY(0) !important;
        filter: blur(0) !important;
    }
}

/* ══════════════════════════════════════════
   AUFWIND SYSTEM STACK  (ass-*)
══════════════════════════════════════════ */

.ass-section { position: relative; overflow: hidden; }
.ass-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; height: 700px;
    background: radial-gradient(ellipse at center, rgba(37,99,235,0.038) 0%, transparent 62%);
    pointer-events: none; z-index: 0;
}
.ass-inner { max-width: 1080px; position: relative; z-index: 1; }

/* Header */
.ass-header { text-align: center; max-width: 620px; margin: 0 auto 54px; }
.ass-eyebrow {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 16px;
}
.ass-headline {
    font-size: clamp(30px, 3.8vw, 50px);
    font-weight: 800; color: var(--primary);
    line-height: 1.12; margin: 0 0 18px;
}
.ass-subline { font-size: 17px; color: var(--muted); line-height: 1.65; margin: 0; }

/* Stage */
.ass-stage { position: relative; }

/* ── Collapsed view ── */
.ass-collapsed-wrap { transition: opacity 0.28s ease, transform 0.28s ease; }
.ass-collapsed-wrap.is-exiting { opacity: 0; transform: scale(0.97); pointer-events: none; }

.ass-collapsed { position: relative; height: 620px; }

.ass-ccard {
    position: absolute; top: 50%; left: 50%;
    width: 458px; height: auto;
    background: white;
    border: 1px solid rgba(37,99,235,0.10);
    border-radius: 16px;
    box-shadow:
        0 4px 18px rgba(15,36,96,0.08),
        0 1px 4px rgba(15,36,96,0.04),
        inset 0 1px 0 rgba(255,255,255,0.85);
    cursor: pointer;
    display: flex; flex-direction: column;
    padding: 0; overflow: hidden;
    transition:
        transform 0.38s cubic-bezier(0.34, 1.28, 0.64, 1),
        opacity 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
    will-change: transform;
}
.ass-ccard:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

/* Fan positions */
.ass-ccard--1 { transform: translate(calc(-236px - 50%), -50%) rotate(-8deg);   z-index: 2; }
.ass-ccard--2 { transform: translate(calc(-78px  - 50%), -50%) rotate(-2.5deg); z-index: 4; }
.ass-ccard--3 { transform: translate(calc( 78px  - 50%), -50%) rotate(2.5deg);  z-index: 3; }
.ass-ccard--4 { transform: translate(calc( 236px - 50%), -50%) rotate(8deg);    z-index: 1; }

/* Hover: lift */
.ass-ccard--1:hover { transform: translate(calc(-236px - 50%), calc(-50% - 34px)) rotate(-5.5deg); z-index: 10; box-shadow: 0 34px 70px rgba(15,36,96,0.16), 0 4px 14px rgba(15,36,96,0.07), inset 0 1px 0 rgba(255,255,255,0.9); }
.ass-ccard--2:hover { transform: translate(calc(-78px  - 50%), calc(-50% - 34px)) rotate(-1.5deg); z-index: 10; box-shadow: 0 34px 70px rgba(15,36,96,0.16), 0 4px 14px rgba(15,36,96,0.07), inset 0 1px 0 rgba(255,255,255,0.9); }
.ass-ccard--3:hover { transform: translate(calc( 78px  - 50%), calc(-50% - 34px)) rotate(1.5deg);  z-index: 10; box-shadow: 0 34px 70px rgba(15,36,96,0.16), 0 4px 14px rgba(15,36,96,0.07), inset 0 1px 0 rgba(255,255,255,0.9); }
.ass-ccard--4:hover { transform: translate(calc( 236px - 50%), calc(-50% - 34px)) rotate(5.5deg);  z-index: 10; box-shadow: 0 34px 70px rgba(15,36,96,0.16), 0 4px 14px rgba(15,36,96,0.07), inset 0 1px 0 rgba(255,255,255,0.9); }

/* Recede non-hovered cards */
.ass-collapsed:has(.ass-ccard:hover) .ass-ccard:not(:hover) {
    opacity: 0.58; filter: brightness(0.97);
}

/* Card internals */
.ass-ccard-visual {
    flex: none; overflow: hidden;
    background: white;
    aspect-ratio: 3 / 2;
    width: 100%;
}
.ass-ccard-img {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}
.ass-ccard-meta {
    padding: 12px 18px 16px;
    border-top: 1px solid rgba(37,99,235,0.07);
    display: flex; align-items: center; gap: 10px;
}
.ass-ccard-num {
    font-size: 10px; font-weight: 800; letter-spacing: 0.05em;
    color: var(--accent); opacity: 0.55;
}
.ass-ccard-cat {
    font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--primary);
}

/* CTA row */
.ass-cta-row { display: flex; justify-content: center; margin-top: 44px; }

/* ── Expanded view ── */
.ass-expanded-wrap { display: none; }

.ass-expanded-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 18px; margin-bottom: 20px;
}

.ass-ecard {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 20px 22px;
    display: flex; flex-direction: column; gap: 10px;
    animation: assCardIn 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--ass-i, 0) * 75ms);
}
@keyframes assCardIn {
    from { opacity: 0; transform: translateY(18px) scale(0.985); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.ass-ecard:hover {
    border-color: rgba(37,99,235,0.18);
    box-shadow: 0 4px 20px rgba(15,36,96,0.07);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ass-ecard-head {
    display: flex; align-items: center;
    justify-content: space-between; margin-bottom: 2px;
}
.ass-ecard-num {
    font-size: 11px; font-weight: 800; letter-spacing: 0.05em;
    color: var(--accent); opacity: 0.55;
}
.ass-ecard-icon { width: 32px; height: 32px; flex-shrink: 0; }
.ass-ecard-icon svg { width: 32px; height: 32px; display: block; }
.ass-ecard-cat {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.10em; color: var(--accent); margin: 0;
}
.ass-ecard-title {
    font-size: 15px; font-weight: 700; color: var(--primary);
    line-height: 1.35; margin: 0;
}
.ass-ecard-body {
    font-size: 13.5px; color: var(--muted);
    line-height: 1.62; margin: 0; flex: 1;
}
.ass-ecard-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.ass-ec-chip {
    font-size: 11px; font-weight: 600;
    color: var(--accent); background: var(--accent-light);
    border-radius: 100px; padding: 3px 10px;
}
.ass-ecard-cta {
    display: inline-block; font-size: 13px; font-weight: 700;
    color: var(--accent); text-decoration: none;
    margin-top: 4px; letter-spacing: 0.01em;
    transition: color 0.2s ease;
}
.ass-ecard-cta:hover { color: var(--primary); }

/* Wachstum bar */
.ass-result-bar {
    background: var(--primary); border-radius: 14px;
    padding: 22px 28px; margin-bottom: 24px;
    animation: assCardIn 0.48s cubic-bezier(0.22, 1, 0.36, 1) 320ms both;
}
.ass-result-inner { display: flex; align-items: center; gap: 18px; width: 100%; }
.ass-result-arrow { font-size: 26px; color: var(--accent); flex-shrink: 0; line-height: 1; }
.ass-result-text { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.ass-result-text strong {
    font-size: 14px; font-weight: 800; letter-spacing: 0.10em; color: white;
}
.ass-result-text span { font-size: 13.5px; color: rgba(255,255,255,0.58); line-height: 1.5; }

/* Close button */
.ass-close-row {
    display: flex; justify-content: center;
    animation: assCardIn 0.4s ease 380ms both;
}
.ass-close-btn {
    font-size: 13px; font-weight: 600; color: var(--muted);
    background: none; border: 1px solid var(--border);
    border-radius: 100px; padding: 9px 22px;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.ass-close-btn:hover {
    color: var(--primary); border-color: rgba(37,99,235,0.25);
    background: rgba(37,99,235,0.03);
}

/* ── Responsive ── */
@media (max-width: 1000px) {
    .ass-expanded-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
    .ass-collapsed { height: 508px; }
    .ass-ccard { width: 374px; height: auto; border-radius: 14px; }
    .ass-ccard--1 { transform: translate(calc(-192px - 50%), -50%) rotate(-7deg); }
    .ass-ccard--2 { transform: translate(calc(-64px  - 50%), -50%) rotate(-2deg); }
    .ass-ccard--3 { transform: translate(calc( 64px  - 50%), -50%) rotate(2deg);  }
    .ass-ccard--4 { transform: translate(calc( 192px - 50%), -50%) rotate(7deg);  }
    .ass-ccard--1:hover { transform: translate(calc(-192px - 50%), calc(-50% - 28px)) rotate(-5deg); z-index:10; }
    .ass-ccard--2:hover { transform: translate(calc(-64px  - 50%), calc(-50% - 28px)) rotate(-1deg); z-index:10; }
    .ass-ccard--3:hover { transform: translate(calc( 64px  - 50%), calc(-50% - 28px)) rotate(1deg);  z-index:10; }
    .ass-ccard--4:hover { transform: translate(calc( 192px - 50%), calc(-50% - 28px)) rotate(5deg);  z-index:10; }
}
@media (max-width: 640px) {
    .ass-expanded-grid { grid-template-columns: 1fr; }
    .ass-collapsed { height: 430px; }
    .ass-ccard { width: 304px; height: auto; border-radius: 12px; }
    .ass-ccard--1 { transform: translate(calc(-154px - 50%), -50%) rotate(-7deg); }
    .ass-ccard--2 { transform: translate(calc(-52px  - 50%), -50%) rotate(-2deg); }
    .ass-ccard--3 { transform: translate(calc( 52px  - 50%), -50%) rotate(2.5deg); }
    .ass-ccard--4 { transform: translate(calc( 154px - 50%), -50%) rotate(7.5deg); }
    .ass-ccard--1:hover { transform: translate(calc(-154px - 50%), calc(-50% - 20px)) rotate(-5deg); z-index:10; }
    .ass-ccard--2:hover { transform: translate(calc(-52px  - 50%), calc(-50% - 20px)) rotate(-1deg); z-index:10; }
    .ass-ccard--3:hover { transform: translate(calc( 52px  - 50%), calc(-50% - 20px)) rotate(1.5deg); z-index:10; }
    .ass-ccard--4:hover { transform: translate(calc( 154px - 50%), calc(-50% - 20px)) rotate(5.5deg); z-index:10; }
    .ass-ccard-meta { padding: 8px 12px 12px; }
    .ass-ccard-cat { font-size: 10px; }
    .ass-result-inner { flex-direction: column; text-align: center; gap: 10px; }
    .ass-result-text { flex-direction: column; gap: 4px; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
    .ass-ccard,
    .ass-ecard,
    .ass-result-bar,
    .ass-close-row,
    .ass-collapsed-wrap { transition: none !important; animation: none !important; }
}

/* ── WAS WIR UMSETZEN eyebrow label */
.ls-sc-umsetzen {
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 .5rem;
}

/* ── Section outcome line */
.ls-sc-ziel {
    display: flex; align-items: center; gap: 10px;
    font-size: .8rem; font-weight: 700; color: var(--primary);
    padding: 10px 14px;
    background: var(--accent-light);
    border: 1px solid rgba(37,99,235,.18);
    border-radius: 9px;
    margin-top: 4px;
}
.ls-sc-ziel-lbl {
    font-size: .6rem; font-weight: 900; letter-spacing: .12em;
    text-transform: uppercase; color: var(--accent);
    background: white; border: 1px solid rgba(37,99,235,.22);
    border-radius: 5px; padding: 2px 7px; flex-shrink: 0;
}
