
        /* ─── LOCAL FONTS (DSGVO-konform — kein Google CDN) ─── */
        @font-face {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 400;
            font-display: swap;
            src: url('/app/web/assets/fonts/Poppins-Regular.ttf') format('truetype');
        }
        @font-face {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 500;
            font-display: swap;
            src: url('/app/web/assets/fonts/Poppins-Medium.ttf') format('truetype');
        }
        @font-face {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 600;
            font-display: swap;
            src: url('/app/web/assets/fonts/Poppins-SemiBold.ttf') format('truetype');
        }
        @font-face {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 700;
            font-display: swap;
            src: url('/app/web/assets/fonts/Poppins-Bold.ttf') format('truetype');
        }
        @font-face {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 800;
            font-display: swap;
            src: url('/app/web/assets/fonts/Poppins-Bold.ttf') format('truetype');
        }


        /* ─── RESET & BASE ───────────────────────────────────── */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --forest:   #3d5a3a;
            --dark:     #2c3e2d;
            --growth:   #7fb069;
            --lime:     #a7c957;
            --earth:    #d4a574;
            --cream:    #f9f7f3;
            --sprout:   #c8e2b9;
            --muted:    #6b7280;
            --text:     #1f2d1e;
            --radius:   14px;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.65;
            color: var(--text);
            background: var(--cream);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* ─── NAV ────────────────────────────────────────────── */
        nav.site-nav {
            position: sticky;
            top: 0;
            z-index: 200;
            background: rgba(249,247,243,0.96);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--sprout);
            padding: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            height: 60px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--forest);
            flex-shrink: 0;
        }
        .nav-logo svg { width: 26px; height: 26px; flex-shrink: 0; }

        /* Desktop nav links */
        .nav-links {
            display: flex;
            align-items: center;
            gap: 0;
            list-style: none;
            height: 100%;
        }

        .nav-links > li {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .nav-links > li > a,
        .nav-links > li > button {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0 1rem;
            height: 100%;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--forest);
            text-decoration: none;
            background: none;
            border: none;
            cursor: pointer;
            white-space: nowrap;
            transition: color 0.15s;
            font-family: inherit;
        }

        .nav-links > li > a:hover,
        .nav-links > li > button:hover { color: var(--growth); }

        .nav-chevron {
            width: 12px; height: 12px;
            transition: transform 0.2s;
            flex-shrink: 0;
        }
        .nav-links > li:hover .nav-chevron { transform: rotate(180deg); }

        /* Dropdown */
        .nav-dropdown {
            position: absolute;
            top: calc(100% + 1px);
            left: 50%;
            transform: translateX(-50%);
            min-width: 260px;
            background: #fff;
            border: 1px solid var(--sprout);
            border-radius: 14px;
            box-shadow: 0 8px 32px rgba(61,90,58,0.14);
            padding: 0.5rem;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.18s, transform 0.18s;
            transform: translateX(-50%) translateY(6px);
        }

        .nav-links > li:hover .nav-dropdown,
        .nav-links > li:focus-within .nav-dropdown {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }

        .nav-dropdown-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.65rem 0.75rem;
            border-radius: 10px;
            text-decoration: none;
            transition: background 0.15s;
        }
        .nav-dropdown-item:hover { background: #f0f9ed; }

        .nav-dd-icon {
            width: 34px; height: 34px;
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .nav-dd-text strong {
            display: block;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--forest);
            line-height: 1.2;
        }
        .nav-dd-text span {
            font-size: 0.75rem;
            color: var(--muted);
            line-height: 1.4;
        }

        .nav-dd-divider {
            height: 1px;
            background: var(--sprout);
            margin: 0.35rem 0.5rem;
        }

        .nav-dd-small {
            display: block;
            padding: 0.4rem 0.75rem;
            font-size: 0.78rem;
            color: var(--muted);
            text-decoration: none;
            border-radius: 8px;
            transition: background 0.15s;
        }
        .nav-dd-small:hover { background: #f0f9ed; color: var(--forest); }

        /* Right side actions */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .lang-btn {
            background: transparent;
            border: 1.5px solid var(--sprout);
            color: var(--forest);
            padding: 0.3rem 0.65rem;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.78rem;
            font-weight: 600;
            transition: all 0.18s;
            line-height: 1;
            font-family: inherit;
        }
        .lang-btn:hover, .lang-btn.active {
            background: var(--forest);
            border-color: var(--forest);
            color: #fff;
        }

        .nav-cta {
            background: var(--growth);
            color: #fff;
            padding: 0.42rem 1rem;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.82rem;
            font-weight: 700;
            transition: background 0.18s;
            white-space: nowrap;
        }
        .nav-cta:hover { background: var(--forest); }

        /* Hamburger */
        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }
        .nav-hamburger span {
            display: block;
            width: 22px; height: 2px;
            background: var(--forest);
            border-radius: 2px;
            transition: all 0.22s;
        }
        .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .nav-hamburger.open span:nth-child(2) { opacity: 0; }
        .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* Mobile drawer */
        .nav-mobile-drawer {
            display: none;
            position: fixed;
            top: 60px; left: 0; right: 0; bottom: 0;
            background: rgba(249,247,243,0.98);
            backdrop-filter: blur(12px);
            z-index: 199;
            padding: 1.5rem 2rem;
            overflow-y: auto;
            flex-direction: column;
            gap: 0.25rem;
            transform: translateY(-12px);
            opacity: 0;
            transition: opacity 0.22s, transform 0.22s;
        }
        .nav-mobile-drawer.open {
            display: flex;
            opacity: 1;
            transform: translateY(0);
        }

        .nav-mobile-section {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1.4px;
            text-transform: uppercase;
            color: var(--growth);
            margin: 1rem 0 0.4rem;
        }

        .nav-mobile-link {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 0.5rem;
            text-decoration: none;
            border-radius: 10px;
            transition: background 0.15s;
            border-bottom: 1px solid rgba(200,226,185,0.5);
        }
        .nav-mobile-link:hover { background: #f0f9ed; }
        .nav-mobile-link strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--forest); }
        .nav-mobile-link span { font-size: 0.8rem; color: var(--muted); }
        .nav-mobile-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }

        .nav-mobile-legal {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1.25rem;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--sprout);
        }
        .nav-mobile-legal a { font-size: 0.78rem; color: var(--muted); text-decoration: none; }


        /* ─── LIFESTYLE BRIDGE ───────────────────────────────── */
        .lifestyle-bridge {
            position: relative;
            width: 100%;
            max-height: 500px;
            overflow: hidden;
            display: block;
        }

        .lifestyle-bridge img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            object-position: center center;
            display: block;
            filter: none;
        }

        .lifestyle-bridge-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(30,50,28,0.08) 0%,
                rgba(30,50,28,0.52) 55%,
                rgba(30,50,28,0.78) 100%
            );
            display: flex;
            align-items: flex-end;
            padding: 3rem 2rem 3.5rem;
        }

        .lifestyle-bridge-caption {
            max-width: 760px;
            margin: 0 auto;
            width: 100%;
            text-align: center;
        }

        .lifestyle-bridge-caption p {
            font-size: clamp(1.2rem, 2.8vw, 1.75rem);
            font-weight: 700;
            color: #ffffff;
            line-height: 1.3;
            letter-spacing: -0.01em;
            text-shadow: 0 2px 12px rgba(0,0,0,0.25);
            margin: 0;
        }


        @media (max-width: 720px) {
            .lifestyle-bridge img { height: 260px; }
            .lifestyle-bridge-overlay { padding: 2rem 1.25rem 2.5rem; }
            .lifestyle-bridge-caption p { font-size: 1.2rem; }
        }

        /* ─── SCROLL ANIMATIONS ──────────────────────────────── */
        .fade-up {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.55s ease, transform 0.55s ease;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .fade-up-delay-1 { transition-delay: 0.1s; }
        .fade-up-delay-2 { transition-delay: 0.2s; }
        .fade-up-delay-3 { transition-delay: 0.3s; }
        .fade-up-delay-4 { transition-delay: 0.4s; }

        /* ─── PLATFORM CHOICE SECTION ────────────────────────── */
        .platform-section {
            background: linear-gradient(135deg, #f0f9ed 0%, var(--cream) 100%);
            border-top: 1px solid var(--sprout);
            border-bottom: 1px solid var(--sprout);
        }

        .platform-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .platform-card {
            background: #fff;
            border: 2px solid var(--sprout);
            border-radius: 20px;
            padding: 2rem 1.75rem;
            text-align: center;
            transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
            cursor: default;
            position: relative;
            overflow: hidden;
        }

        .platform-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(127,176,105,0.04) 0%, transparent 60%);
            pointer-events: none;
        }

        .platform-card:hover {
            border-color: var(--growth);
            box-shadow: 0 8px 32px rgba(61,90,58,0.12);
            transform: translateY(-3px);
        }

        .platform-card-icon {
            font-size: 2.5rem;
            margin-bottom: 0.75rem;
            display: block;
        }

        .platform-card-title {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--forest);
            margin-bottom: 0.4rem;
        }

        .platform-card-desc {
            font-size: 0.85rem;
            color: var(--muted);
            line-height: 1.6;
            margin-bottom: 1.25rem;
        }

        .platform-card-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            background: #f0f9ed;
            border: 1px solid var(--sprout);
            border-radius: 20px;
            padding: 0.25rem 0.75rem;
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--forest);
            margin-bottom: 1.25rem;
        }

        .platform-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: var(--forest);
            color: #fff;
            padding: 0.7rem 1.5rem;
            border-radius: 12px;
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 700;
            transition: background 0.18s, transform 0.18s;
            width: 100%;
            justify-content: center;
        }

        .platform-btn:hover { background: var(--growth); transform: translateY(-1px); }
        .platform-btn.secondary {
            background: transparent;
            color: var(--forest);
            border: 2px solid var(--growth);
        }
        .platform-btn.secondary:hover { background: var(--growth); color: #fff; }

        .platform-shared-note {
            text-align: center;
            margin-top: 1.5rem;
            font-size: 0.82rem;
            color: var(--muted);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
        }

        .platform-shared-note::before,
        .platform-shared-note::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--sprout);
            max-width: 80px;
        }

        @media (max-width: 720px) {
            .platform-cards { grid-template-columns: 1fr; }
            nav.site-nav { padding: 0 1.25rem; }
            .nav-links { display: none; }
            .nav-hamburger { display: flex; }
            .nav-cta { display: none; }
        }

        /* ─── HERO ───────────────────────────────────────────── */
        .hero {
            position: relative;
            overflow: hidden;
            background: linear-gradient(160deg, var(--forest) 0%, #4f7a4b 60%, var(--growth) 100%);
            padding: 5rem 2rem 4.5rem;
            text-align: center;
        }

        /* Organic background accent */
        .hero-bg-svg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            opacity: 0.08;
        }

        .hero-eyebrow {
            display: inline-block;
            background: rgba(167,201,87,0.22);
            border: 1px solid rgba(167,201,87,0.45);
            color: var(--lime);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1.4px;
            text-transform: uppercase;
            padding: 0.35rem 1rem;
            border-radius: 20px;
            margin-bottom: 1.5rem;
        }

        .hero h1 {
            font-size: clamp(1.8rem, 5vw, 3rem);
            font-weight: 800;
            color: #fff;
            line-height: 1.18;
            margin-bottom: 1.25rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero h1 em {
            font-style: normal;
            color: var(--lime);
        }

        .hero-sub {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            color: rgba(255,255,255,0.80);
            max-width: 560px;
            margin: 0 auto 2.25rem;
            line-height: 1.7;
        }

        /* App Store badge — placeholder until live URL available */
        .appstore-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 2.5rem;
        }

        .appstore-badge {
            display: inline-block;
            transition: opacity 0.18s, transform 0.18s;
        }

        .appstore-badge:hover {
            opacity: 0.88;
            transform: translateY(-2px);
        }

        .appstore-badge img {
            height: 52px;
            width: auto;
        }

        .appstore-note {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.50);
            letter-spacing: 0.3px;
        }

        /* Trust bar */
        .trust-bar {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem 1.5rem;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.82rem;
            color: rgba(255,255,255,0.70);
            font-weight: 500;
        }

        .trust-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--lime);
            flex-shrink: 0;
        }

        /* ─── SECTION WRAPPER ────────────────────────────────── */
        .section {
            max-width: 900px;
            margin: 0 auto;
            padding: 4rem 2rem;
            width: 100%;
        }

        .section-label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1.6px;
            text-transform: uppercase;
            color: var(--growth);
            margin-bottom: 0.75rem;
        }

        .section-title {
            font-size: clamp(1.35rem, 3.5vw, 1.9rem);
            font-weight: 800;
            color: var(--forest);
            line-height: 1.25;
            margin-bottom: 1rem;
        }

        .section-body {
            font-size: 1.05rem;
            color: var(--muted);
            line-height: 1.75;
            max-width: 620px;
        }

        /* ─── PROBLEM SECTION ────────────────────────────────── */
        .problem-section {
            background: #fff;
            border-top: 1px solid var(--sprout);
            border-bottom: 1px solid var(--sprout);
        }

        .problem-section .section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        .problem-pills {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding-top: 0.5rem;
        }

        .problem-pill {
            display: flex;
            align-items: flex-start;
            gap: 0.9rem;
            background: var(--cream);
            border: 1.5px solid var(--sprout);
            border-radius: var(--radius);
            padding: 1rem 1.1rem;
        }

        .problem-pill-icon {
            width: 52px;
            height: 52px;
            flex-shrink: 0;
            border-radius: 10px;
            object-fit: cover;
            align-self: flex-start;
        }

        .problem-pill-text strong {
            display: block;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--forest);
            margin-bottom: 0.2rem;
        }

        .problem-pill-text span {
            font-size: 0.84rem;
            color: var(--muted);
            line-height: 1.5;
        }

        /* ─── MODULES GRID ───────────────────────────────────── */
        .modules-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 2rem;
        }

        .module-card {
            background: #fff;
            border: 1.5px solid var(--sprout);
            border-radius: var(--radius);
            padding: 1.4rem 1.3rem;
            border-left-width: 4px;
            transition: transform 0.18s, box-shadow 0.18s;
        }

        .module-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(61,90,58,0.10);
        }

        .module-card.fl { border-left-color: #1a9e9e; }
        .module-card.er { border-left-color: #c05818; }
        .module-card.sp { border-left-color: #6b4c2a; }
        .module-card.dc { border-left-color: #1838c0; }

        .module-icon {
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
            display: block;
        }

        .module-name {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--forest);
            margin-bottom: 0.3rem;
        }

        .module-desc {
            font-size: 0.82rem;
            color: var(--muted);
            line-height: 1.5;
        }

        /* ─── HOW IT WORKS ───────────────────────────────────── */
        .how-section {
            background: linear-gradient(160deg, #f0f9ed 0%, var(--cream) 100%);
            border-top: 1px solid var(--sprout);
            border-bottom: 1px solid var(--sprout);
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .step {
            text-align: center;
            padding: 1.5rem 1rem;
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--forest);
            color: #fff;
            font-size: 1rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .step-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--forest);
            margin-bottom: 0.4rem;
        }

        .step-desc {
            font-size: 0.84rem;
            color: var(--muted);
            line-height: 1.6;
        }

        .step-differentiator {
            display: inline-block;
            background: rgba(167,201,87,0.18);
            border: 1px solid rgba(167,201,87,0.4);
            color: #3d6b1e;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.25rem 0.65rem;
            border-radius: 20px;
            margin-top: 0.6rem;
        }

        /* ─── SOCIAL PROOF ───────────────────────────────────── */
        .quotes-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
            margin-top: 2rem;
        }

        .quote-card {
            background: #fff;
            border: 1.5px solid var(--sprout);
            border-radius: var(--radius);
            padding: 1.4rem 1.2rem;
        }

        .quote-stars {
            color: #f59e0b;
            font-size: 0.85rem;
            letter-spacing: 1px;
            margin-bottom: 0.75rem;
        }

        .quote-text {
            font-size: 0.9rem;
            color: #374151;
            line-height: 1.65;
            margin-bottom: 1rem;
            font-style: italic;
        }

        .quote-author {
            display: flex;
            align-items: center;
            gap: 0.65rem;
        }

        .quote-avatar {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--sprout);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .quote-name {
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--forest);
        }

        .quote-role {
            font-size: 0.75rem;
            color: var(--muted);
        }

        .quote-placeholder-note {
            text-align: center;
            font-size: 0.78rem;
            color: var(--muted);
            margin-top: 1rem;
            font-style: italic;
        }

        /* ─── TRUST SECTION ──────────────────────────────────── */
        .trust-section {
            background: var(--forest);
        }

        .trust-section .section {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .trust-block {
            text-align: center;
        }

        .trust-block-icon {
            font-size: 2rem;
            margin-bottom: 0.6rem;
            display: block;
        }

        .trust-block-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--lime);
            margin-bottom: 0.35rem;
        }

        .trust-block-desc {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.62);
            line-height: 1.55;
        }

        /* ─── BOTTOM CTA ─────────────────────────────────────── */
        .bottom-cta {
            text-align: center;
            padding: 4.5rem 2rem 4rem;
            background: var(--cream);
        }

        .bottom-cta h2 {
            font-size: clamp(1.4rem, 4vw, 2rem);
            font-weight: 800;
            color: var(--forest);
            margin-bottom: 0.75rem;
        }

        .bottom-cta p {
            font-size: 1rem;
            color: var(--muted);
            margin-bottom: 2rem;
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-hint {
            font-size: 0.82rem;
            color: var(--muted);
            margin-top: 1rem;
        }

        /* ─── FOOTER — matches NumeroGen pattern exactly ─────── */
        .site-footer {
            background: #111827;
            padding: 32px 24px;
        }
        .site-footer-inner {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }
        .site-footer-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 700;
            color: #ffffff;
            text-decoration: none;
        }
        .site-footer-brand svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }
        .site-footer-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            align-items: center;
            background: none;
            position: static;
            border: none;
            padding: 0;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }
        .site-footer-links a {
            font-size: 13px;
            color: rgba(255,255,255,0.55);
            text-decoration: none;
            transition: color 0.2s;
        }
        .site-footer-links a:hover { color: #ffffff; }
        .site-footer-copy {
            font-size: 12px;
            color: rgba(255,255,255,0.35);
        }
        @media (max-width: 600px) {
            .site-footer-inner { flex-direction: column; text-align: center; }
            .site-footer-links { justify-content: center; }
        }

        /* ─── DIVIDER ────────────────────────────────────────── */
        .divider {
            height: 1px;
            background: var(--sprout);
        }

        /* ─── RESPONSIVE ─────────────────────────────────────── */
        @media (max-width: 720px) {
            nav { padding: 0.65rem 1rem; }

            .hero { padding: 3.5rem 1.25rem 3.5rem; }

            .problem-section .section {
                grid-template-columns: 1fr;
                gap: 1.75rem;
            }

            .modules-grid { grid-template-columns: 1fr; }

            .steps { grid-template-columns: 1fr; }

            .quotes-grid { grid-template-columns: 1fr; }

            .trust-section .section {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding-top: 3rem;
                padding-bottom: 3rem;
            }

            .section { padding: 3rem 1.25rem; }

            .nav-cta { display: none; }
        }

        @media (max-width: 480px) {
            .trust-bar { gap: 0.4rem 1rem; }
        }

        /* ─── APP SCREENSHOTS ────────────────────────────────── */
        .feature-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            max-width: 900px;
            margin: 0 auto;
            padding: 3.5rem 2rem;
        }
        .feature-row.reverse { direction: rtl; }
        .feature-row.reverse > * { direction: ltr; }

        .feature-text { }

        .feature-text .section-label { margin-bottom: 0.6rem; }
        .feature-text .section-title { font-size: clamp(1.2rem, 3vw, 1.6rem); margin-bottom: 1rem; }
        .feature-text .section-body { font-size: 0.97rem; }

        .feature-shot {
            display: flex;
            justify-content: center;
        }

        .feature-shot img {
            width: 100%;
            max-width: 260px;
            height: auto;
            display: block;
            filter: drop-shadow(0 16px 40px rgba(0,0,0,0.22));
            background: transparent;
        }

        .dual-shots {
            display: flex;
            justify-content: center;
            gap: 1.25rem;
            margin: 0 auto 2.5rem;
            max-width: 560px;
        }

        .dual-shots img {
            width: calc(50% - 0.625rem);
            height: auto;
            display: block;
            filter: drop-shadow(0 12px 32px rgba(0,0,0,0.18));
            background: transparent;
        }

        /* Step 1 full-width intro */
        .step-intro {
            max-width: 900px;
            margin: 0 auto;
            padding: 3rem 2rem 1rem;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .step-divider {
            border: none;
            border-top: 1px solid var(--sprout);
            margin: 0 2rem;
        }

        @media (max-width: 720px) {
            .feature-row {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 2.5rem 1.25rem;
            }
            .feature-row.reverse { direction: ltr; }
            .feature-shot img { max-width: 220px; margin: 0 auto; }
            .dual-shots { gap: 0.75rem; }
            .step-intro { padding: 2rem 1.25rem 0.5rem; flex-direction: column; gap: 1rem; }
        }
        @media (prefers-reduced-motion: reduce) {
            .module-card, .appstore-badge {
                transition: none;
            }
        }
    
        /* ─── LEGAL PAGE LAYOUT ──────────────────────────────────
           Appended to skillgranum.css for use on:
           datenschutz.html, impressum.html, agb.html,
           widerrufsbelehrung.html, privacy.html
           ─────────────────────────────────────────────────────── */

        .legal-page {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background: var(--cream);
        }

        .legal-content {
            flex: 1;
            max-width: 760px;
            margin: 0 auto;
            padding: 3rem 2rem 5rem;
            width: 100%;
        }

        .legal-eyebrow {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1.4px;
            text-transform: uppercase;
            color: var(--growth);
            margin-bottom: 0.5rem;
        }

        .legal-content h1 {
            font-size: clamp(1.6rem, 4vw, 2.2rem);
            font-weight: 800;
            color: var(--forest);
            line-height: 1.2;
            margin-bottom: 0.5rem;
        }

        .legal-meta {
            font-size: 0.82rem;
            color: var(--muted);
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--sprout);
        }

        .legal-content h2 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--forest);
            margin: 2rem 0 0.6rem;
        }

        .legal-content h3 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--forest);
            margin: 1.25rem 0 0.4rem;
        }

        .legal-content p {
            font-size: 0.92rem;
            color: #374151;
            line-height: 1.75;
            margin-bottom: 0.9rem;
        }

        .legal-content ul,
        .legal-content ol {
            font-size: 0.92rem;
            color: #374151;
            line-height: 1.75;
            margin: 0.5rem 0 1rem 1.25rem;
        }

        .legal-content li {
            margin-bottom: 0.3rem;
        }

        .legal-content a {
            color: var(--growth);
            text-decoration: none;
            border-bottom: 1px solid rgba(127,176,105,0.35);
            transition: border-color 0.15s;
        }

        .legal-content a:hover {
            border-bottom-color: var(--growth);
        }

        .legal-content strong {
            font-weight: 600;
            color: var(--forest);
        }

        .legal-info-box {
            background: #f0f9ed;
            border: 1.5px solid var(--sprout);
            border-radius: 12px;
            padding: 1rem 1.25rem;
            margin: 1.25rem 0;
            font-size: 0.88rem;
            color: var(--forest);
            line-height: 1.65;
        }

        .legal-back {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--forest);
            text-decoration: none;
            margin-bottom: 2rem;
            opacity: 0.7;
            transition: opacity 0.15s;
        }

        .legal-back:hover { opacity: 1; }

        @media (max-width: 600px) {
            .legal-content { padding: 2rem 1.25rem 4rem; }
        }
