        /* ============================================
           HERO
           ============================================ */
        .l-hero {
            position: relative;
            padding: 100px 56px 80px;
            background: linear-gradient(135deg, #0a0f14 0%, #0d1520 50%, #0a1018 100%);
            overflow: hidden;
            text-align: center;
        }
        .l-hero::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -100px;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0,177,235,0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        .l-hero::after {
            content: '';
            position: absolute;
            bottom: -200px;
            left: -100px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0,177,235,0.06) 0%, transparent 70%);
            pointer-events: none;
        }
        .l-particle {
            position: absolute;
            border-radius: 50%;
            background: #00B1EB;
            pointer-events: none;
            animation: l-float 16s ease-in-out infinite;
        }
        .l-particle:nth-child(1) { width: 4px; height: 4px; top: 15%; left: 10%; opacity: 0.3; animation-duration: 18s; }
        .l-particle:nth-child(2) { width: 6px; height: 6px; top: 25%; right: 15%; opacity: 0.2; animation-duration: 14s; animation-delay: -3s; }
        .l-particle:nth-child(3) { width: 3px; height: 3px; top: 60%; left: 20%; opacity: 0.4; animation-duration: 20s; animation-delay: -6s; }
        .l-particle:nth-child(4) { width: 5px; height: 5px; bottom: 20%; right: 25%; opacity: 0.25; animation-duration: 15s; animation-delay: -2s; }
        .l-particle:nth-child(5) { width: 4px; height: 4px; top: 40%; left: 70%; opacity: 0.35; animation-duration: 22s; animation-delay: -8s; }
        .l-particle:nth-child(6) { width: 7px; height: 7px; bottom: 30%; left: 40%; opacity: 0.15; animation-duration: 17s; animation-delay: -5s; }
        @keyframes l-float {
            0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
            25% { transform: translate(15px, -25px) scale(1.2); opacity: 0.5; }
            50% { transform: translate(-10px, -40px) scale(0.8); opacity: 0.3; }
            75% { transform: translate(20px, -15px) scale(1.1); opacity: 0.6; }
            100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
        }
        .l-hero-inner {
            position: relative;
            z-index: 1;
            max-width: 720px;
            margin: 0 auto;
        }
        .l-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #00B1EB;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 24px;
        }
        .l-badge::before {
            content: '';
            width: 32px;
            height: 2px;
            background: #00B1EB;
        }
        .l-hero h1 {
            font-size: 48px;
            font-weight: 700;
            color: #fff;
            letter-spacing: -1.5px;
            line-height: 1.1;
            margin-bottom: 24px;
        }
        .l-hero h1 span { color: #00B1EB; }
        .l-hero-text {
            font-size: 18px;
            color: rgba(255,255,255,0.65);
            line-height: 1.8;
            margin-bottom: 36px;
        }
        .l-hero-actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .l-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 28px;
            background: #00B1EB;
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
        }
        .l-btn:hover { background: #0095c8; transform: translateY(-1px); }
        .l-btn svg { width: 18px; height: 18px; }
        .l-btn-sec {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 24px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.15);
            color: #fff;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s;
        }
        .l-btn-sec:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.08); }
        .l-btn-sec svg { width: 18px; height: 18px; }

        /* ============================================
           TRUST BAR
           ============================================ */
        .l-trust {
            padding: 28px 56px;
            background: #fff;
            border-bottom: 1px solid #e8eaed;
        }
        .l-trust-items {
            display: flex;
            justify-content: center;
            gap: 56px;
            flex-wrap: wrap;
        }
        .l-trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 500;
            color: #5f6368;
        }
        .l-trust-item svg { width: 18px; height: 18px; color: #00B1EB; }

        /* ============================================
           OVERVIEW
           ============================================ */
        .l-overview {
            padding: 100px 56px;
            background: #fff;
        }
        .l-sh {
            text-align: center;
            margin-bottom: 64px;
        }
        .l-sh h2 {
            font-size: 36px;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: #0a0f14;
            margin-bottom: 16px;
        }
        .l-sh p {
            font-size: 16px;
            color: #5f6368;
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.7;
        }
        .l-ov-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        .l-ov-card {
            background: #f8f9fa;
            border: 1px solid #e8eaed;
            padding: 32px 24px;
            text-decoration: none;
            transition: all 0.3s;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .l-ov-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: #00B1EB;
            transform: scaleX(0);
            transition: transform 0.3s;
        }
        .l-ov-card:hover {
            border-color: rgba(0,177,235,0.3);
            background: #fff;
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.06);
        }
        .l-ov-card:hover::before { transform: scaleX(1); }
        .l-ov-icon {
            width: 56px;
            height: 56px;
            background: rgba(0,177,235,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        .l-ov-icon svg { width: 24px; height: 24px; color: #00B1EB; }
        .l-ov-num {
            font-size: 11px;
            font-weight: 700;
            color: #00B1EB;
            letter-spacing: 2px;
            margin-bottom: 6px;
        }
        .l-ov-card h3 {
            font-size: 17px;
            font-weight: 700;
            color: #0a0f14;
            margin-bottom: 8px;
        }
        .l-ov-card p {
            font-size: 13px;
            color: #5f6368;
            line-height: 1.6;
        }

        /* ============================================
           FEATURED (Aktuell stark nachgefragt)
           ============================================ */
        .l-featured {
            padding: 80px 56px;
            background: #f8f9fa;
        }
        .l-featured-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: linear-gradient(135deg, #0a0f14 0%, #1a2530 100%);
            overflow: hidden;
        }
        .l-featured-content {
            padding: 56px;
        }
        .l-featured-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            background: rgba(34,197,94,0.15);
            font-size: 11px;
            font-weight: 700;
            color: #22c55e;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }
        .l-featured-content h2 {
            font-size: 36px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        .l-featured-content > p {
            font-size: 16px;
            color: rgba(255,255,255,0.6);
            line-height: 1.8;
            margin-bottom: 32px;
        }
        .l-featured-points {
            list-style: none;
            padding: 0;
            margin: 0 0 32px 0;
        }
        .l-featured-points li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            font-size: 15px;
            color: rgba(255,255,255,0.8);
        }
        .l-featured-points li:last-child { border-bottom: none; }
        .l-featured-points svg {
            width: 20px;
            height: 20px;
            color: #22c55e;
            flex-shrink: 0;
        }
        .l-featured-visual {
            background: rgba(0,177,235,0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 56px;
        }
        .l-featured-stat {
            text-align: center;
            margin-bottom: 32px;
        }
        .l-featured-stat-value {
            font-size: 80px;
            font-weight: 700;
            color: #00B1EB;
            line-height: 1;
        }
        .l-featured-stat-value span { font-size: 48px; }
        .l-featured-stat-label {
            font-size: 16px;
            color: rgba(255,255,255,0.6);
            margin-top: 12px;
        }
        .l-featured-techs {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }
        .l-featured-tech {
            padding: 10px 16px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.15);
            font-size: 13px;
            font-weight: 500;
            color: rgba(255,255,255,0.8);
        }
        .l-featured-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 24px;
            background: #00B1EB;
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
        }
        .l-featured-btn:hover { background: #0095c8; }
        .l-featured-btn svg { width: 18px; height: 18px; }

        /* ============================================
           DARK TEASER SECTIONS
           ============================================ */
        .l-teaser {
            padding: 100px 56px;
            position: relative;
            overflow: hidden;
        }
        .l-teaser.grad {
            background: linear-gradient(135deg, #0a0f14 0%, #0f1923 50%, #0a0f14 100%);
        }
        .l-teaser.flat {
            background: #0a0f14;
        }
        .l-teaser::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0,177,235,0.06) 0%, transparent 70%);
            pointer-events: none;
        }
        .l-teaser.right-glow::before {
            left: auto;
            right: -10%;
            top: -20%;
        }
        .l-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .l-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #00B1EB;
            margin-bottom: 16px;
        }
        .l-label::before {
            content: '';
            width: 24px;
            height: 2px;
            background: #00B1EB;
        }
        .l-content h2 {
            font-size: 42px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: -1px;
            line-height: 1.2;
        }
        .l-content > p {
            font-size: 16px;
            color: rgba(255,255,255,0.6);
            line-height: 1.8;
            margin-bottom: 28px;
        }
        .l-list {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin-bottom: 32px;
        }
        .l-list-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            text-decoration: none;
            transition: all 0.2s;
        }
        .l-list-item:last-child { border-bottom: none; }
        .l-list-item:hover { padding-left: 8px; }
        .l-list-icon {
            width: 32px;
            height: 32px;
            background: rgba(0,177,235,0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .l-list-icon svg { width: 16px; height: 16px; color: #00B1EB; }
        .l-list-text { flex: 1; }
        .l-list-text strong {
            display: block;
            font-size: 15px;
            font-weight: 600;
            color: #fff;
        }
        .l-list-text span {
            font-size: 13px;
            color: rgba(255,255,255,0.45);
        }
        .l-list-arrow {
            width: 16px;
            height: 16px;
            color: rgba(255,255,255,0.2);
            flex-shrink: 0;
            transition: all 0.2s;
        }
        .l-list-item:hover .l-list-arrow {
            color: #00B1EB;
            transform: translateX(3px);
        }
        .l-teaser-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: #00B1EB;
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.25s;
        }
        .l-teaser-btn:hover {
            background: #0095c8;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,177,235,0.3);
        }
        .l-teaser-btn svg { width: 18px; height: 18px; }
        .l-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }
        .l-cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
        .l-card {
            background: rgba(0,177,235,0.04);
            border: 1px solid rgba(0,177,235,0.15);
            padding: 24px 20px;
            text-decoration: none;
            transition: all 0.3s;
        }
        .l-card:hover {
            border-color: rgba(0,177,235,0.4);
            background: rgba(0,177,235,0.08);
            transform: translateY(-2px);
        }
        .l-card svg { width: 24px; height: 24px; color: #00B1EB; margin-bottom: 12px; }
        .l-card h4 {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 4px;
        }
        .l-card p {
            font-size: 12px;
            color: rgba(255,255,255,0.45);
            line-height: 1.5;
        }

        /* ============================================
           SECURITY SECTION (centered dark cards)
           ============================================ */
        .l-sec-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            position: relative;
            z-index: 1;
        }
        .l-sec-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 28px 24px;
            text-decoration: none;
            transition: all 0.3s;
        }
        .l-sec-card:hover {
            border-color: rgba(0,177,235,0.4);
            background: rgba(0,177,235,0.05);
            transform: translateY(-4px);
        }
        .l-sec-icon {
            width: 48px;
            height: 48px;
            background: rgba(0,177,235,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }
        .l-sec-icon svg { width: 22px; height: 22px; color: #00B1EB; }
        .l-sec-card h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
        .l-sec-card > p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 12px; }
        .l-sec-feat {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 6px;
        }
        .l-sec-feat svg { width: 14px; height: 14px; color: #00B1EB; flex-shrink: 0; }
        .l-sec-cta {
            display: flex;
            justify-content: center;
            margin-top: 48px;
            position: relative;
            z-index: 1;
        }
        .l-sec-cta a {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            border: 1px solid rgba(255,255,255,0.2);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
        }
        .l-sec-cta a:hover { border-color: #00B1EB; background: rgba(0,177,235,0.1); }
        .l-sec-cta svg { width: 18px; height: 18px; }
        .l-sh-dark {
            text-align: center;
            margin-bottom: 56px;
            position: relative;
            z-index: 1;
        }
        .l-sh-dark h2 {
            font-size: 36px;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
        }
        .l-sh-dark p {
            font-size: 16px;
            color: rgba(255,255,255,0.6);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ============================================
           HARDWARE & SPEZIAL (Light Section)
           ============================================ */
        .l-special {
            padding: 100px 56px;
            background: #fff;
        }
        .l-special-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .l-special-card {
            border: 1px solid #e8eaed;
            padding: 28px 24px;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        .l-special-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: #00B1EB;
            transform: scaleX(0);
            transition: transform 0.3s;
        }
        .l-special-card:hover {
            border-color: rgba(0,177,235,0.3);
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.06);
        }
        .l-special-card:hover::before { transform: scaleX(1); }
        .l-special-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            background: rgba(0,177,235,0.08);
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #00B1EB;
            margin-bottom: 16px;
            width: fit-content;
        }
        .l-special-tag.green { background: rgba(34,197,94,0.1); color: #16a34a; }
        .l-special-tag.orange { background: rgba(245,158,11,0.1); color: #d97706; }
        .l-special-tag.purple { background: rgba(139,92,246,0.1); color: #7c3aed; }
        .l-special-tag svg { width: 12px; height: 12px; }
        .l-special-card h4 { font-size: 17px; font-weight: 700; color: #0a0f14; margin-bottom: 8px; }
        .l-special-card > p { font-size: 14px; color: #5f6368; line-height: 1.6; margin-bottom: 16px; flex: 1; }
        .l-special-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 16px;
        }
        .l-special-meta span {
            font-size: 11px;
            color: #5f6368;
            background: #f8f9fa;
            padding: 4px 8px;
            border: 1px solid #e8eaed;
        }
        .l-special-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: #00B1EB;
            margin-top: auto;
        }
        .l-special-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
        .l-special-card:hover .l-special-link svg { transform: translateX(4px); }

        /* ============================================
           CTA SECTION
           ============================================ */
        .l-cta {
            padding: 100px 56px;
            background: linear-gradient(135deg, #0a0f14 0%, #111820 100%);
            text-align: center;
        }
        .l-cta-inner {
            max-width: 600px;
            margin: 0 auto;
        }
        .l-cta h2 {
            font-size: 42px;
            font-weight: 700;
            color: #fff;
            letter-spacing: -1px;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .l-cta > .l-cta-inner > p {
            font-size: 18px;
            color: rgba(255,255,255,0.6);
            line-height: 1.7;
            margin-bottom: 32px;
        }
        .l-cta-actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-bottom: 48px;
            flex-wrap: wrap;
        }
        .l-cta-contact {
            display: flex;
            gap: 48px;
            justify-content: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            flex-wrap: wrap;
        }
        .l-cta-item {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: all 0.2s;
        }
        .l-cta-icon {
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .l-cta-icon svg { width: 20px; height: 20px; color: #00B1EB; }
        .l-cta-text { text-align: left; }
        .l-cta-text span { display: block; font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 2px; }
        .l-cta-text strong { font-size: 15px; color: #fff; font-weight: 600; }
        .l-cta-item:hover .l-cta-icon { background: rgba(0,177,235,0.1); border-color: rgba(0,177,235,0.3); }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1200px) {
            .l-ov-grid { grid-template-columns: repeat(3, 1fr); }
            .l-featured-card { grid-template-columns: 1fr; }
            .l-featured-visual { padding: 40px; }
            .l-featured-stat-value { font-size: 64px; }
            .l-cards.cols-3 { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 1024px) {
            .l-grid { grid-template-columns: 1fr; gap: 48px; }
            .l-content h2 { font-size: 32px; }
            .l-sec-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .l-hero { padding: 60px 24px 48px; }
            .l-hero h1 { font-size: 32px; }
            .l-hero-text { font-size: 16px; }
            .l-hero-actions { flex-direction: column; align-items: center; }
            .l-hero-actions a { width: 100%; justify-content: center; }
            .l-trust { padding: 20px 24px; }
            .l-trust-items { gap: 24px; display: grid; grid-template-columns: 1fr 1fr; justify-items: start; }
            .l-trust-item { font-size: 12px; gap: 8px; }
            .l-trust-item svg { width: 16px; height: 16px; }
            .l-overview { padding: 64px 24px; }
            .l-sh h2 { font-size: 28px; }
            .l-ov-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
            .l-ov-card { padding: 24px 16px; }
            .l-ov-card h3 { font-size: 15px; }
            .l-featured { padding: 40px 24px; }
            .l-featured-content { padding: 28px 20px; }
            .l-featured-content h2 { font-size: 26px; }
            .l-featured-visual { padding: 28px 20px; }
            .l-featured-stat-value { font-size: 44px; }
            .l-featured-stat-value span { font-size: 28px; }
            .l-teaser { padding: 64px 24px; }
            .l-content h2 { font-size: 28px; }
            .l-cards { grid-template-columns: 1fr 1fr; }
            .l-sec-grid { grid-template-columns: 1fr; }
            .l-sh-dark h2 { font-size: 28px; }
            .l-special { padding: 64px 24px; }
            .l-special-grid { grid-template-columns: 1fr; }
            .l-cta { padding: 64px 24px; }
            .l-cta h2 { font-size: 28px; }
            .l-cta-actions { flex-direction: column; }
            .l-cta-actions a { width: 100%; justify-content: center; }
            .l-cta-contact { flex-direction: column; gap: 20px; align-items: center; }
        }
        @media (max-width: 480px) {
            .l-hero { padding: 40px 16px 36px; }
            .l-hero h1 { font-size: 26px; letter-spacing: -1px; }
            .l-hero-text { font-size: 15px; }
            .l-trust { padding: 16px; }
            .l-trust-items { grid-template-columns: 1fr; gap: 10px; }
            .l-overview { padding: 48px 16px; }
            .l-sh h2 { font-size: 24px; }
            .l-ov-grid { grid-template-columns: 1fr; }
            .l-ov-card { flex-direction: row; text-align: left; gap: 14px; padding: 20px 16px; }
            .l-ov-icon { margin: 0; width: 44px; height: 44px; flex-shrink: 0; }
            .l-ov-icon svg { width: 20px; height: 20px; }
            .l-featured { padding: 32px 16px; }
            .l-featured-content h2 { font-size: 24px; }
            .l-featured-stat-value { font-size: 36px; }
            .l-featured-stat-value span { font-size: 24px; }
            .l-teaser { padding: 48px 16px; }
            .l-content h2 { font-size: 24px; }
            .l-cards { grid-template-columns: 1fr; }
            .l-card { padding: 20px 16px; }
            .l-sec-grid { gap: 12px; }
            .l-sec-card { padding: 20px 16px; }
            .l-sh-dark h2 { font-size: 24px; }
            .l-special { padding: 48px 16px; }
            .l-special-card { padding: 20px 16px; }
            .l-cta { padding: 48px 16px; }
            .l-cta h2 { font-size: 24px; }
        }
