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

        :root {
            --g900: #0B2618; --g800: #14432A; --g700: #1A6B3C;
            --g600: #22C55E; --g500: #4ADE80; --g400: #86EFAC;
            --g300: #BBF7D0; --g200: #DCFCE7; --g100: #F0FDF4;
            --y500: #FACC15; --y400: #FDE047; --y300: #FEF08A;
            --n950: #0A0A0A; --n900: #171717; --n800: #262626;
            --n700: #404040; --n600: #525252; --n500: #737373;
            --n400: #A3A3A3; --n300: #D4D4D4; --n200: #E5E5E5;
            --n100: #F5F5F5; --n50: #FAFAFA; --white: #FFF;
            --font-h: 'Outfit', sans-serif;
            --font-b: 'DM Sans', sans-serif;
        }

        html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
        body { font-family: var(--font-b); color: var(--n700); background: var(--white); line-height: 1.6; overflow-x: hidden; }
        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: inherit; cursor: pointer; }
        button { cursor: pointer; border: none; background: none; font-family: inherit; }
        .ctn { max-width: 1220px; margin: 0 auto; padding: 0 28px; }

        /* ============ NAV ============ */
        .nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            padding: 16px 0;
            transition: all 0.4s cubic-bezier(.4,0,.2,1);
        }
        .nav.scrolled {
            background: rgba(11,38,24,0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 10px 0;
            box-shadow: 0 4px 30px rgba(0,0,0,0.15);
        }
        .nav-inner { display: flex; align-items: center; justify-content: space-between; }

        .nav-logo-link { display: flex; align-items: center; }
        .nav-logo {
            height: 48px; width: auto;
            transition: transform 0.3s;
            filter: brightness(1.05);
        }
        .nav-logo:hover { transform: scale(1.05); }

        /* Footer logo */
        .ft-logo { height: 44px; width: auto; }

        .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
        .nav-links a {
            font-family: var(--font-h);
            font-size: 0.88rem; font-weight: 500;
            color: rgba(255,255,255,0.7);
            padding: 10px 18px; border-radius: 100px;
            transition: all 0.25s;
        }
        .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

        .nav-cta-btn {
            background: var(--g600) !important; color: var(--white) !important;
            font-weight: 600 !important; padding: 11px 26px !important;
            border-radius: 100px !important;
            box-shadow: 0 0 20px rgba(34,197,94,0.3);
            transition: all 0.25s !important;
        }
        .nav-cta-btn:hover {
            background: var(--g500) !important;
            box-shadow: 0 0 30px rgba(34,197,94,0.5);
            transform: translateY(-2px);
        }

        .mob-btn {
            display: none; width: 44px; height: 44px;
            align-items: center; justify-content: center;
        }
        .mob-btn span {
            display: block; width: 24px; height: 2px; background: var(--white);
            border-radius: 2px; position: relative; transition: 0.3s;
        }
        .mob-btn span::before, .mob-btn span::after {
            content: ''; position: absolute; width: 24px; height: 2px;
            background: var(--white); border-radius: 2px; transition: 0.3s;
        }
        .mob-btn span::before { top: -7px; }
        .mob-btn span::after { top: 7px; }

        /* ============ HERO ============ */
        .hero {
            min-height: 100vh;
            background: var(--g900);
            display: flex; align-items: center;
            padding: 100px 0 60px;
            position: relative; overflow: hidden;
        }

        /* Animated gradient orbs */
        .hero-orb {
            position: absolute; border-radius: 50%;
            filter: blur(100px); opacity: 0.4;
            animation: orbFloat 8s ease-in-out infinite;
        }
        .hero-orb-1 {
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(34,197,94,0.3), transparent);
            top: -20%; left: -10%;
            animation-delay: 0s;
        }
        .hero-orb-2 {
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(250,204,21,0.15), transparent);
            bottom: -30%; right: -15%;
            animation-delay: -4s;
        }
        .hero-orb-3 {
            width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(74,222,128,0.2), transparent);
            top: 50%; left: 50%;
            animation-delay: -2s;
        }

        @keyframes orbFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -20px) scale(1.05); }
            66% { transform: translate(-20px, 15px) scale(0.95); }
        }

        /* Grid pattern overlay */
        .hero-grid-bg {
            position: absolute; inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px; align-items: center;
            position: relative; z-index: 2;
        }

        .hero-tag {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(34,197,94,0.1);
            border: 1px solid rgba(34,197,94,0.2);
            color: var(--g400); padding: 8px 20px;
            border-radius: 100px;
            font-family: var(--font-h); font-size: 0.82rem; font-weight: 600;
            margin-bottom: 28px;
            animation: fadeSlideUp 0.8s ease both;
        }
        .hero-tag .pulse {
            width: 8px; height: 8px; background: var(--g500);
            border-radius: 50%; position: relative;
        }
        .hero-tag .pulse::after {
            content: ''; position: absolute; inset: -4px;
            border: 2px solid var(--g500); border-radius: 50%;
            animation: ping 2s cubic-bezier(0,0,0.2,1) infinite;
        }
        @keyframes ping {
            75%, 100% { transform: scale(2); opacity: 0; }
        }

        .hero h1 {
            font-family: var(--font-h);
            font-size: clamp(2.8rem, 5.5vw, 4.2rem);
            font-weight: 900; line-height: 1.05;
            color: var(--white);
            letter-spacing: -0.04em;
            margin-bottom: 24px;
            animation: fadeSlideUp 0.8s ease 0.1s both;
        }
        .hero h1 .gr {
            background: linear-gradient(135deg, var(--g400), var(--y400));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-p {
            font-size: 1.15rem; color: rgba(255,255,255,0.55);
            line-height: 1.75; margin-bottom: 40px; max-width: 480px;
            animation: fadeSlideUp 0.8s ease 0.2s both;
        }

        .hero-btns {
            display: flex; gap: 14px; flex-wrap: wrap;
            animation: fadeSlideUp 0.8s ease 0.3s both;
        }

        .btn {
            display: inline-flex; align-items: center; gap: 10px;
            font-family: var(--font-h); font-weight: 700;
            font-size: 0.95rem; padding: 16px 32px;
            border-radius: 100px; transition: all 0.3s cubic-bezier(.4,0,.2,1);
            position: relative; overflow: hidden;
        }
        .btn svg { width: 20px; height: 20px; flex-shrink: 0; }

        .btn-main {
            background: linear-gradient(135deg, var(--g600), var(--g500));
            color: var(--white);
            box-shadow: 0 4px 20px rgba(34,197,94,0.3);
        }
        .btn-main::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(135deg, var(--g500), var(--y400));
            opacity: 0; transition: opacity 0.3s;
        }
        .btn-main:hover::before { opacity: 1; }
        .btn-main:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 40px rgba(34,197,94,0.4);
        }
        .btn-main span { position: relative; z-index: 1; display: flex; align-items: center; gap: 10px; }

        .btn-ghost {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.12);
            color: var(--white);
        }
        .btn-ghost:hover {
            background: #25D366; border-color: #25D366;
            transform: translateY(-3px);
            box-shadow: 0 8px 40px rgba(37,211,102,0.3);
        }

        /* Hero right side */
        .hero-right {
            animation: fadeSlideUp 0.8s ease 0.4s both;
        }

        .hero-visual {
            position: relative;
            display: flex; flex-direction: column; align-items: center;
        }

        /* Logo container with glow */
        .logo-showcase {
            position: relative;
            margin-bottom: 40px;
        }
        .logo-showcase::before {
            content: ''; position: absolute;
            inset: -40px; border-radius: 50%;
            background: radial-gradient(circle, rgba(34,197,94,0.15), transparent 70%);
            animation: logoPulse 4s ease-in-out infinite;
        }
        @keyframes logoPulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .logo-showcase img {
            width: 300px; height: auto;
            position: relative; z-index: 1;
            filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
            animation: logoFloat 5s ease-in-out infinite;
        }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-10px) rotate(0.5deg); }
            75% { transform: translateY(6px) rotate(-0.5deg); }
        }

        /* Stats strip */
        .stats-strip {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 2px; width: 100%;
            background: rgba(255,255,255,0.04);
            border-radius: 16px; overflow: hidden;
            border: 1px solid rgba(255,255,255,0.06);
        }
        .stat-cell {
            padding: 24px 16px; text-align: center;
            background: rgba(255,255,255,0.02);
            transition: background 0.3s;
        }
        .stat-cell:hover { background: rgba(255,255,255,0.06); }
        .stat-val {
            font-family: var(--font-h);
            font-size: 2rem; font-weight: 900;
            color: var(--g400); line-height: 1;
        }
        .stat-lbl {
            font-size: 0.75rem; color: rgba(255,255,255,0.35);
            margin-top: 6px; font-weight: 600;
            text-transform: uppercase; letter-spacing: 0.08em;
        }

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

        /* ============ MARQUEE TRUST ============ */
        .marquee-wrap {
            background: var(--g800);
            border-top: 1px solid rgba(255,255,255,0.05);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding: 18px 0;
            overflow: hidden;
        }
        .marquee-track {
            display: flex; gap: 60px;
            animation: marquee 25s linear infinite;
            width: max-content;
        }
        .marquee-item {
            display: flex; align-items: center; gap: 10px;
            font-family: var(--font-h); font-weight: 600;
            font-size: 0.88rem; color: rgba(255,255,255,0.5);
            white-space: nowrap;
        }
        .marquee-item svg { width: 18px; height: 18px; color: var(--g500); flex-shrink: 0; }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* ============ SERVICES ============ */
        .services { padding: 120px 0; background: var(--white); }

        .s-eyebrow {
            font-family: var(--font-h); font-size: 0.78rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.12em;
            color: var(--g700); margin-bottom: 12px;
            display: flex; align-items: center; gap: 12px;
        }
        .s-eyebrow::before {
            content: ''; width: 24px; height: 2px;
            background: var(--g600); border-radius: 2px;
        }

        .s-heading {
            font-family: var(--font-h);
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 900; color: var(--n900);
            letter-spacing: -0.03em; margin-bottom: 16px;
        }

        .s-sub {
            font-size: 1.1rem; color: var(--n500);
            max-width: 520px; line-height: 1.7;
        }

        .s-header { margin-bottom: 64px; }

        .svc-grid {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .svc {
            background: var(--white);
            border: 1px solid var(--n200);
            border-radius: 20px; padding: 40px 32px;
            position: relative; overflow: hidden;
            transition: all 0.4s cubic-bezier(.4,0,.2,1);
        }
        .svc::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--g600), var(--g400), var(--y400));
            transform: scaleX(0); transform-origin: left;
            transition: transform 0.5s cubic-bezier(.4,0,.2,1);
        }
        .svc:hover {
            border-color: var(--g300);
            box-shadow: 0 20px 60px rgba(0,0,0,0.06);
            transform: translateY(-8px);
        }
        .svc:hover::before { transform: scaleX(1); }

        .svc-ico {
            width: 60px; height: 60px;
            background: linear-gradient(135deg, var(--g200), var(--g100));
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 24px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .svc:hover .svc-ico {
            transform: scale(1.1) rotate(-3deg);
            box-shadow: 0 8px 24px rgba(34,197,94,0.15);
        }
        .svc-ico svg { width: 28px; height: 28px; color: var(--g700); }

        .svc h3 {
            font-family: var(--font-h); font-size: 1.35rem;
            font-weight: 800; color: var(--n900);
            margin-bottom: 12px; letter-spacing: -0.01em;
        }
        .svc > p {
            font-size: 0.95rem; color: var(--n500);
            line-height: 1.65; margin-bottom: 24px;
        }

        .svc-checks { list-style: none; margin-bottom: 28px; }
        .svc-checks li {
            display: flex; align-items: center; gap: 10px;
            padding: 7px 0; font-size: 0.9rem; color: var(--n600);
        }
        .svc-checks svg { width: 18px; height: 18px; color: var(--g600); flex-shrink: 0; }

        .svc-cta {
            display: inline-flex; align-items: center; gap: 8px;
            font-family: var(--font-h); font-weight: 700;
            font-size: 0.9rem; color: var(--g700);
            padding: 10px 20px; border-radius: 100px;
            background: var(--g100);
            transition: all 0.3s;
        }
        .svc-cta:hover {
            background: var(--g700); color: var(--white);
            transform: translateX(4px);
        }
        .svc-cta svg { width: 16px; height: 16px; transition: transform 0.3s; }
        .svc-cta:hover svg { transform: translateX(4px); }

        /* ============ WHY US (dark) ============ */
        .why {
            padding: 120px 0;
            background: var(--n950);
            position: relative; overflow: hidden;
        }
        .why::before {
            content: ''; position: absolute; inset: 0;
            background:
                radial-gradient(circle at 10% 50%, rgba(34,197,94,0.06), transparent 50%),
                radial-gradient(circle at 90% 50%, rgba(250,204,21,0.04), transparent 50%);
        }

        .why .s-eyebrow { color: var(--g400); }
        .why .s-eyebrow::before { background: var(--g500); }
        .why .s-heading { color: var(--white); }
        .why .s-sub { color: var(--n400); }

        .why-grid {
            display: grid; grid-template-columns: repeat(4, 1fr);
            gap: 16px; position: relative; z-index: 1;
        }

        .wh {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 20px; padding: 36px 24px;
            text-align: center;
            transition: all 0.4s cubic-bezier(.4,0,.2,1);
            position: relative; overflow: hidden;
        }
        .wh::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(34,197,94,0.06), transparent);
            opacity: 0; transition: opacity 0.4s;
        }
        .wh:hover {
            border-color: rgba(34,197,94,0.2);
            transform: translateY(-6px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        .wh:hover::after { opacity: 1; }

        .wh-ico {
            width: 56px; height: 56px; margin: 0 auto 18px;
            background: rgba(34,197,94,0.1);
            border: 1px solid rgba(34,197,94,0.15);
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            position: relative; z-index: 1;
            transition: transform 0.3s;
        }
        .wh:hover .wh-ico { transform: scale(1.1); }
        .wh-ico svg { width: 26px; height: 26px; color: var(--g400); }

        .wh h3 {
            font-family: var(--font-h); font-weight: 700;
            font-size: 1.05rem; color: var(--white);
            margin-bottom: 8px; position: relative; z-index: 1;
        }
        .wh p {
            font-size: 0.88rem; color: var(--n400);
            line-height: 1.6; position: relative; z-index: 1;
        }

        /* ============ PROCESS ============ */
        .process { padding: 120px 0; background: var(--n50); }

        .proc-grid {
            display: grid; grid-template-columns: repeat(4, 1fr);
            gap: 0; position: relative;
        }

        /* Connecting line */
        .proc-grid::before {
            content: ''; position: absolute;
            top: 42px; left: calc(12.5% + 26px); right: calc(12.5% + 26px);
            height: 2px;
            background: linear-gradient(90deg, var(--g600), var(--g400), var(--y400), var(--g600));
        }

        .step {
            text-align: center; padding: 0 16px;
            position: relative;
        }

        .step-n {
            width: 56px; height: 56px; border-radius: 50%;
            background: linear-gradient(135deg, var(--g700), var(--g600));
            color: var(--white);
            display: flex; align-items: center; justify-content: center;
            font-family: var(--font-h); font-weight: 900; font-size: 1.2rem;
            margin: 0 auto 24px;
            box-shadow: 0 4px 20px rgba(34,197,94,0.25);
            position: relative; z-index: 2;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .step:hover .step-n {
            transform: scale(1.15);
            box-shadow: 0 8px 30px rgba(34,197,94,0.35);
        }

        .step h3 {
            font-family: var(--font-h); font-weight: 700;
            font-size: 1.05rem; color: var(--n900);
            margin-bottom: 8px;
        }
        .step p { font-size: 0.88rem; color: var(--n500); line-height: 1.6; }

        /* ============ CONTACT ============ */
        .contact {
            padding: 120px 0;
            background: var(--g900);
            position: relative; overflow: hidden;
        }
        .contact::before {
            content: ''; position: absolute; inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 80px 80px;
        }
        .contact-orb {
            position: absolute; width: 500px; height: 500px;
            border-radius: 50%; filter: blur(120px);
            background: rgba(34,197,94,0.08);
            top: -20%; right: -10%;
        }

        .ct-grid {
            display: grid; grid-template-columns: 1fr 1.15fr;
            gap: 60px; align-items: start;
            position: relative; z-index: 1;
        }

        .ct-left h2 {
            font-family: var(--font-h);
            font-size: clamp(2rem, 4vw, 2.6rem);
            font-weight: 900; color: var(--white);
            letter-spacing: -0.03em; margin-bottom: 16px;
        }
        .ct-left h2 .gr {
            background: linear-gradient(135deg, var(--g400), var(--y400));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .ct-left > p {
            font-size: 1.05rem; color: rgba(255,255,255,0.5);
            margin-bottom: 40px; line-height: 1.7;
        }

        .ci {
            display: flex; align-items: center; gap: 16px;
            padding: 14px 0;
            transition: transform 0.3s;
        }
        .ci:hover { transform: translateX(6px); }

        .ci-ic {
            width: 48px; height: 48px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0; transition: all 0.3s;
        }
        .ci:hover .ci-ic {
            background: rgba(34,197,94,0.1);
            border-color: rgba(34,197,94,0.2);
        }
        .ci-ic svg { width: 20px; height: 20px; color: var(--g400); }

        .ci-txt h4 {
            font-family: var(--font-h); font-weight: 600;
            font-size: 0.8rem; color: rgba(255,255,255,0.35);
            text-transform: uppercase; letter-spacing: 0.05em;
            margin-bottom: 2px;
        }
        .ci-txt a, .ci-txt p { font-size: 0.95rem; color: var(--white); font-weight: 500; }
        .ci-txt a:hover { color: var(--g400); }

        /* Form card */
        .ct-form {
            background: var(--white);
            border-radius: 24px; padding: 44px;
            box-shadow: 0 25px 80px rgba(0,0,0,0.15);
            position: relative;
        }
        .ct-form::before {
            content: ''; position: absolute;
            top: -1px; left: 40px; right: 40px; height: 3px;
            background: linear-gradient(90deg, var(--g600), var(--g400), var(--y400));
            border-radius: 0 0 4px 4px;
        }

        .ct-form h3 {
            font-family: var(--font-h); font-size: 1.4rem;
            font-weight: 800; color: var(--n900);
            margin-bottom: 28px;
        }

        .fg { margin-bottom: 18px; }
        .fg label {
            display: block; font-family: var(--font-h);
            font-size: 0.82rem; font-weight: 600;
            color: var(--n700); margin-bottom: 6px;
        }
        .fg input, .fg select, .fg textarea {
            width: 100%; padding: 14px 18px;
            border: 1.5px solid var(--n200); border-radius: 12px;
            font-family: var(--font-b); font-size: 0.95rem;
            color: var(--n900); background: var(--n50);
            transition: all 0.25s; outline: none;
        }
        .fg input:focus, .fg select:focus, .fg textarea:focus {
            border-color: var(--g600);
            box-shadow: 0 0 0 4px rgba(34,197,94,0.08);
            background: var(--white);
        }
        .fg textarea { resize: vertical; min-height: 100px; }
        .fr { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

        .btn-send {
            width: 100%; justify-content: center; margin-top: 8px;
            background: linear-gradient(135deg, var(--g700), var(--g600));
            color: var(--white); font-size: 1rem; padding: 16px 32px;
            border-radius: 100px; position: relative; overflow: hidden;
        }
        .btn-send::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(135deg, var(--g600), var(--g500));
            opacity: 0; transition: opacity 0.3s;
        }
        .btn-send:hover::before { opacity: 1; }
        .btn-send:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(34,197,94,0.3);
        }
        .btn-send span { position: relative; z-index: 1; display: flex; align-items: center; gap: 10px; }

        /* ============ IMPRESSUM ============ */
        .impressum { padding: 80px 0; background: var(--n50); }
        .imp-inner { max-width: 720px; }
        .impressum h2 {
            font-family: var(--font-h); font-size: 2rem;
            font-weight: 900; color: var(--n900); margin-bottom: 32px;
        }
        .imp-content { font-size: 0.95rem; color: var(--n600); line-height: 1.8; }
        .imp-content strong { color: var(--n900); }
        .imp-content p { margin-bottom: 20px; }
        .imp-content a { color: var(--g700); }
        .imp-content a:hover { text-decoration: underline; }

        /* ============ FOOTER ============ */
        .footer { background: var(--n950); padding: 60px 0 28px; color: var(--n500); }
        .ft-grid {
            display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
            gap: 32px; margin-bottom: 40px;
        }
        .ft-brand p { font-size: 0.88rem; line-height: 1.65; max-width: 280px; margin-top: 16px; }
        .ft-col h4 {
            font-family: var(--font-h); color: var(--white);
            font-weight: 600; font-size: 0.88rem; margin-bottom: 16px;
        }
        .ft-col a { display: block; padding: 5px 0; font-size: 0.85rem; transition: color 0.2s; }
        .ft-col a:hover { color: var(--g400); }
        .socials { display: flex; gap: 10px; margin-top: 12px; }
        .sc {
            width: 38px; height: 38px; border-radius: 10px;
            background: rgba(255,255,255,0.05);
            display: flex; align-items: center; justify-content: center;
            transition: all 0.3s;
        }
        .sc:hover { background: var(--g700); transform: translateY(-3px); box-shadow: 0 4px 16px rgba(34,197,94,0.2); }
        .sc svg { width: 18px; height: 18px; color: var(--white); }
        .ft-bot {
            border-top: 1px solid rgba(255,255,255,0.06);
            padding-top: 24px; display: flex;
            justify-content: space-between; align-items: center;
            font-size: 0.8rem;
        }
        .ft-legal { display: flex; gap: 20px; }
        .ft-legal a:hover { color: var(--g400); }

        /* ============ WA FLOAT ============ */
        .waf {
            position: fixed; bottom: 24px; right: 24px; z-index: 99;
            width: 64px; height: 64px; background: #25D366;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 4px 24px rgba(37,211,102,0.4);
            transition: all 0.3s;
        }
        .waf::before {
            content: ''; position: absolute; inset: -6px;
            border: 2px solid rgba(37,211,102,0.3);
            border-radius: 50%;
            animation: waRing 2s ease-out infinite;
        }
        @keyframes waRing {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(1.5); opacity: 0; }
        }
        .waf:hover { transform: scale(1.12); box-shadow: 0 8px 40px rgba(37,211,102,0.5); }
        .waf svg { width: 32px; height: 32px; color: white; }

        /* ============ REVIEWS ============ */
        .reviews { padding: 120px 0; background: var(--white); }
        .reviews .s-header { text-align: center; margin-bottom: 56px; }
        .reviews .s-eyebrow { justify-content: center; }
        .rev-meta {
            display: inline-flex; align-items: center; gap: 16px;
            margin-top: 20px; padding: 12px 24px;
            background: var(--g100); border-radius: 100px;
        }
        .rev-stars { display: flex; gap: 2px; }
        .rev-stars svg { width: 18px; height: 18px; color: var(--y500); }
        .rev-meta-txt {
            font-family: var(--font-h); font-weight: 700;
            font-size: 0.95rem; color: var(--g900);
        }
        .rev-meta-txt span { color: var(--n500); font-weight: 500; }
        .rev-grid {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .rev-grid.rev-grid-2 {
            grid-template-columns: repeat(2, 1fr);
            max-width: 880px; margin: 0 auto;
        }
        .rev-card {
            background: var(--n50);
            border: 1px solid var(--n200);
            border-radius: 20px; padding: 32px 28px;
            transition: all 0.3s cubic-bezier(.4,0,.2,1);
            display: flex; flex-direction: column;
        }
        .rev-card:hover {
            border-color: var(--g300);
            box-shadow: 0 16px 40px rgba(0,0,0,0.06);
            transform: translateY(-4px);
        }
        .rev-card .rev-stars { margin-bottom: 16px; }
        .rev-card .rev-stars svg { width: 16px; height: 16px; }
        .rev-quote {
            font-size: 0.98rem; color: var(--n700);
            line-height: 1.65; margin-bottom: 24px;
            flex-grow: 1;
        }
        .rev-author {
            display: flex; align-items: center; gap: 12px;
            padding-top: 20px; border-top: 1px solid var(--n200);
        }
        .rev-avatar {
            width: 44px; height: 44px; border-radius: 50%;
            background: linear-gradient(135deg, var(--g600), var(--g400));
            color: var(--white);
            display: flex; align-items: center; justify-content: center;
            font-family: var(--font-h); font-weight: 800; font-size: 1rem;
            flex-shrink: 0;
        }
        .rev-author-info h4 {
            font-family: var(--font-h); font-weight: 700;
            font-size: 0.95rem; color: var(--n900);
            margin-bottom: 2px;
        }
        .rev-author-info p {
            font-size: 0.82rem; color: var(--n500);
        }
        .rev-google {
            margin-top: 40px; text-align: center;
        }
        .rev-google-btn {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 14px 28px; border-radius: 100px;
            background: var(--white); border: 1.5px solid var(--n200);
            font-family: var(--font-h); font-weight: 700;
            font-size: 0.92rem; color: var(--n900);
            transition: all 0.3s;
        }
        .rev-google-btn:hover {
            border-color: var(--g600); color: var(--g700);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.05);
        }
        .rev-google-btn svg { width: 18px; height: 18px; }

        /* ============ FAQ ============ */
        .faq { padding: 120px 0; background: var(--n50); }
        .faq .s-header { text-align: center; margin-bottom: 56px; }
        .faq .s-eyebrow { justify-content: center; }
        .faq-list { max-width: 820px; margin: 0 auto; }
        .faq-item {
            background: var(--white);
            border: 1px solid var(--n200);
            border-radius: 16px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: border-color 0.25s, box-shadow 0.25s;
        }
        .faq-item[open] {
            border-color: var(--g300);
            box-shadow: 0 8px 28px rgba(0,0,0,0.05);
        }
        .faq-item summary {
            list-style: none;
            cursor: pointer;
            padding: 22px 28px;
            display: flex; justify-content: space-between; align-items: center;
            gap: 16px;
            font-family: var(--font-h);
            font-weight: 700; font-size: 1.02rem;
            color: var(--n900);
            transition: color 0.2s;
        }
        .faq-item summary::-webkit-details-marker { display: none; }
        .faq-item summary:hover { color: var(--g700); }
        .faq-icon {
            width: 32px; height: 32px; border-radius: 50%;
            background: var(--g100);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
            transition: transform 0.3s, background 0.3s;
        }
        .faq-icon svg { width: 14px; height: 14px; color: var(--g700); }
        .faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--g600); }
        .faq-item[open] .faq-icon svg { color: var(--white); }
        .faq-answer {
            padding: 0 28px 24px;
            font-size: 0.96rem; color: var(--n600);
            line-height: 1.7;
        }

        /* ============ HOURS (inside contact left) ============ */
        .hours {
            margin-top: 28px;
            padding: 20px 22px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 14px;
        }
        .hours h4 {
            font-family: var(--font-h); font-weight: 600;
            font-size: 0.8rem; color: rgba(255,255,255,0.35);
            text-transform: uppercase; letter-spacing: 0.05em;
            margin-bottom: 12px;
        }
        .hours-row {
            display: flex; justify-content: space-between;
            font-size: 0.92rem; color: rgba(255,255,255,0.85);
            padding: 4px 0;
        }
        .hours-row span:last-child { color: var(--g400); font-weight: 600; }

        /* ============ SCROLL REVEAL ============ */
        .rv { opacity: 0; transform: translateY(40px); transition: all 0.7s cubic-bezier(.4,0,.2,1); }
        .rv.vis { opacity: 1; transform: translateY(0); }
        .rv-left { opacity: 0; transform: translateX(-40px); transition: all 0.7s cubic-bezier(.4,0,.2,1); }
        .rv-left.vis { opacity: 1; transform: translateX(0); }
        .rv-right { opacity: 0; transform: translateX(40px); transition: all 0.7s cubic-bezier(.4,0,.2,1); }
        .rv-right.vis { opacity: 1; transform: translateX(0); }
        .rv-scale { opacity: 0; transform: scale(0.9); transition: all 0.6s cubic-bezier(.4,0,.2,1); }
        .rv-scale.vis { opacity: 1; transform: scale(1); }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .hero-content { grid-template-columns: 1fr; }
            .hero-right { max-width: 420px; margin: 0 auto; }
            .logo-showcase img { width: 220px; }
            .svc-grid { grid-template-columns: 1fr 1fr; }
            .why-grid { grid-template-columns: 1fr 1fr; }
            .proc-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
            .proc-grid::before { display: none; }
            .ct-grid { grid-template-columns: 1fr; }
            .ft-grid { grid-template-columns: 1fr 1fr; }
            .rev-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mob-btn { display: flex; }
            .nav-links.open {
                display: flex; flex-direction: column;
                position: absolute; top: 76px; left: 0; right: 0;
                background: var(--g900);
                border-bottom: 1px solid rgba(255,255,255,0.06);
                padding: 16px 24px; gap: 4px;
                box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            }
            .nav-links.open a { padding: 14px 18px; width: 100%; border-radius: 12px; }
            .hero { min-height: auto; padding: 100px 0 50px; }
            .hero h1 { font-size: 2.2rem; }
            .hero-btns { flex-direction: column; }
            .hero-btns .btn { justify-content: center; width: 100%; }
            .stats-strip { grid-template-columns: 1fr; }
            .svc-grid, .why-grid { grid-template-columns: 1fr; }
            .proc-grid { grid-template-columns: 1fr; }
            .fr { grid-template-columns: 1fr; }
            .ft-grid { grid-template-columns: 1fr; gap: 28px; }
            .ft-bot { flex-direction: column; gap: 10px; text-align: center; }
            .rev-grid { grid-template-columns: 1fr; }
            .reviews, .faq { padding: 80px 0; }
            .faq-item summary { padding: 18px 22px; font-size: 0.96rem; }
            .faq-answer { padding: 0 22px 20px; }
        }

        @media (prefers-reduced-motion: reduce) {
            .rv, .rv-left, .rv-right, .rv-scale { opacity: 1; transform: none; transition: none; }
            .hero-orb, .logo-showcase img { animation: none; }
            .logo-showcase::before { animation: none; }
            .waf::before { animation: none; }
            .marquee-track { animation: none; }
            * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
        }

/* ============ CITY PAGES ============ */
.page-hero {
    background: var(--g900);
    padding: 140px 0 80px;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(34,197,94,0.18), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(250,204,21,0.08), transparent 50%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 820px; }
.page-hero h1 {
    font-family: var(--font-h);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 900; line-height: 1.05;
    color: var(--white); letter-spacing: -0.03em;
    margin: 20px 0 18px;
}
.page-hero h1 .gr {
    background: linear-gradient(135deg, var(--g400), var(--y400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-hero p {
    font-size: 1.1rem; color: rgba(255,255,255,0.65);
    line-height: 1.7; max-width: 620px;
    margin-bottom: 32px;
}
.page-hero .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Breadcrumb */
.breadcrumb {
    background: var(--n100);
    padding: 14px 0;
    border-bottom: 1px solid var(--n200);
}
.breadcrumb ol {
    list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    font-size: 0.85rem; color: var(--n500);
    font-family: var(--font-h); font-weight: 500;
}
.breadcrumb a { color: var(--g700); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--g600); text-decoration: underline; }
.breadcrumb li[aria-current="page"] { color: var(--n900); font-weight: 600; }
.breadcrumb li + li::before {
    content: '/'; margin-right: 8px; color: var(--n400);
}

/* Long-form prose */
.prose-section { padding: 100px 0; background: var(--white); }
.prose-section.alt { background: var(--n50); }
.prose-inner { max-width: 820px; margin: 0 auto; }
.prose-inner h2 {
    font-family: var(--font-h);
    font-size: clamp(1.7rem, 3.2vw, 2.3rem);
    font-weight: 900; color: var(--n900);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.prose-inner h3 {
    font-family: var(--font-h);
    font-size: 1.2rem; font-weight: 700;
    color: var(--n900);
    margin: 32px 0 12px;
}
.prose-inner p {
    font-size: 1.02rem; color: var(--n700);
    line-height: 1.75; margin-bottom: 18px;
}
.prose-inner ul {
    margin: 8px 0 24px 4px;
    padding-left: 0; list-style: none;
}
.prose-inner ul li {
    position: relative;
    padding: 6px 0 6px 28px;
    font-size: 0.98rem; color: var(--n700);
    line-height: 1.6;
}
.prose-inner ul li::before {
    content: ''; position: absolute;
    left: 0; top: 14px;
    width: 16px; height: 16px;
    background: var(--g100);
    border-radius: 50%;
}
.prose-inner ul li::after {
    content: ''; position: absolute;
    left: 4px; top: 17px;
    width: 8px; height: 4px;
    border-left: 2px solid var(--g700);
    border-bottom: 2px solid var(--g700);
    transform: rotate(-45deg);
}
.prose-inner strong { color: var(--n900); font-weight: 700; }

/* Districts grid (Stadtteile in city pages) */
.districts {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 12px; margin: 24px 0;
}
.district {
    background: var(--n50);
    border: 1px solid var(--n200);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.9rem; color: var(--n700);
    font-family: var(--font-h); font-weight: 600;
    text-align: center;
    transition: all 0.2s;
}
.district:hover {
    border-color: var(--g300);
    background: var(--g100);
    color: var(--g900);
}

/* Other cities cross-link grid */
.cities-section { padding: 100px 0; background: var(--n950); color: var(--n400); }
.cities-section .s-eyebrow { color: var(--g400); justify-content: center; }
.cities-section .s-eyebrow::before { background: var(--g500); }
.cities-section .s-heading { color: var(--white); text-align: center; }
.cities-section .s-sub { color: var(--n400); text-align: center; margin: 0 auto 56px; }
.cities-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 12px; max-width: 980px; margin: 0 auto;
}
.city-link {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 16px 20px;
    font-family: var(--font-h); font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    transition: all 0.25s;
    display: flex; justify-content: space-between; align-items: center; gap: 8px;
}
.city-link:hover {
    background: rgba(34,197,94,0.1);
    border-color: rgba(34,197,94,0.25);
    color: var(--white);
    transform: translateY(-2px);
}
.city-link svg { width: 14px; height: 14px; color: var(--g400); flex-shrink: 0; }

@media (max-width: 1024px) {
    .districts { grid-template-columns: repeat(2, 1fr); }
    .cities-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .page-hero { padding: 110px 0 60px; }
    .districts { grid-template-columns: 1fr; }
    .cities-grid { grid-template-columns: repeat(2, 1fr); }
    .prose-section, .cities-section { padding: 70px 0; }
}
