        :root {
            /* Colors - DachfensterONE Green Theme */
            --primary: #0a3821;
            --primary-dark: #072918;
            --primary-light: #eef5f1;
            --secondary: #112d1f;
            --accent: #27ae60;
            --bg-body: #f4f8f5;
            --bg-alt: #e9f2ee;
            --bg-surface: #ffffff;
            --text-main: #1a2e24;
            --text-muted: #5c7a6e;
            --border-light: #d1dfd8;

            /* Effects - Layered Shadows for Depth */
            --shadow-sm: 0 1px 2px 0 rgba(10, 56, 33, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(10, 56, 33, 0.1), 0 2px 4px -1px rgba(10, 56, 33, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(10, 56, 33, 0.1), 0 4px 6px -2px rgba(10, 56, 33, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(10, 56, 33, 0.1), 0 10px 10px -5px rgba(10, 56, 33, 0.04);

            --radius-md: 10px;
            --radius-lg: 24px;
            --radius-full: 9999px;
            --spacing: 32px;
            --container-max: 1200px;

            /* Additional green tokens */
            --green-subtle: #f0f7f3;
            --green-vibrant: #48bb78;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            width: 100%;
            background-color: #1a202c;
            /* Matches footer to hide bottom gap */
            height: 100%;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .bafa-section {
            font-family: 'Inter', sans-serif;
            color: var(--text-main);
            line-height: 1.6;
        }

        .bafa-card {
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
        }

        .bafa-heading {
            font-size: 1.75rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 0.5rem;
            text-align: center;
        }

        .bafa-subheading {
            text-align: center;
            color: #718096;
            margin-bottom: 2rem;
            font-size: 1rem;
        }

        .bafa-calc-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 30px;
        }

        @media (max-width: 768px) {
            .bafa-calc-grid {
                grid-template-columns: 1fr;
            }
        }

        .bafa-input-group {
            margin-bottom: 20px;
        }

        .bafa-label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: #4a5568;
            font-size: 0.95rem;
        }

        .bafa-input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .bafa-input {
            width: 100%;
            padding: 12px 14px;
            font-size: 1.1rem;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            outline: none;
        }

        .bafa-input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
        }

        .bafa-currency {
            position: absolute;
            right: 14px;
            color: #a0aec0;
        }

        .bafa-toggle-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px;
            background: #f7fafc;
            border-radius: 8px;
            cursor: pointer;
        }

        .bafa-toggle-label {
            font-weight: 600;
            color: #2d3748;
            flex: 1;
            font-size: 0.95rem;
        }

        .bafa-switch {
            position: relative;
            display: inline-block;
            width: 44px;
            height: 24px;
        }

        .bafa-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .bafa-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #cbd5e0;
            transition: .4s;
            border-radius: 24px;
        }

        .bafa-slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

        input:checked+.bafa-slider {
            background-color: #48bb78;
        }

        input:checked+.bafa-slider:before {
            transform: translateX(20px);
        }

        .bafa-info-icon {
            display: inline-block;
            width: 18px;
            height: 18px;
            background: #cbd5e0;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 18px;
            font-size: 12px;
            margin-left: 6px;
            cursor: help;
            position: relative;
        }

        .bafa-tooltip {
            visibility: hidden;
            background-color: #2d3748;
            color: #fff;
            text-align: center;
            border-radius: 6px;
            padding: 10px;
            position: absolute;
            z-index: 100;
            bottom: 125%;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: opacity 0.3s;
            font-weight: normal;
            font-size: 0.8rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            pointer-events: none;
        }

        .bafa-info-icon:hover .bafa-tooltip {
            visibility: visible;
            opacity: 1;
        }

        .bafa-results {
            background: #f0fff4;
            border: 1px solid #c6f6d5;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
        }

        .bafa-result-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: #4a5568;
        }

        .bafa-grant-amount {
            font-size: 2.25rem;
            font-weight: 700;
            color: #2f855a;
            line-height: 1.2;
            margin: 10px 0;
        }

        .bafa-steps-container {
            margin-top: 40px;
        }

        .bafa-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 30px;
        }

        .bafa-steps::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 0;
            right: 0;
            height: 2px;
            background: #e2e8f0;
            z-index: 0;
        }

        .bafa-step {
            position: relative;
            z-index: 1;
            text-align: center;
            width: 18%;
        }

        .bafa-step-circle {
            width: 40px;
            height: 40px;
            background: white;
            border: 2px solid #0c4828;
            color: #0c4828;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin: 0 auto 12px;
            font-size: 1.1rem;
        }

        .bafa-step-title {
            font-weight: 600;
            font-size: 0.85rem;
            color: #2d3748;
            margin-bottom: 2px;
        }

        @media (max-width: 768px) {
            .bafa-steps {
                flex-direction: column;
                padding-left: 0;
            }

            .bafa-steps::before {
                display: none;
            }

            .bafa-step {
                width: 100%;
                display: flex;
                align-items: flex-start;
                text-align: left;
                margin-bottom: 24px;
            }

            .bafa-step-circle {
                margin: 0 15px 0 0;
                flex-shrink: 0;
            }
        }

        .bafa-disclaimer {
            font-size: 0.75rem;
            color: #718096;
            margin-top: 20px;
            text-align: center;
            padding: 15px;
            background: #f7fafc;
            border-radius: 8px;
            line-height: 1.5;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-main);
            background: var(--bg-body);
            overflow-x: hidden;
            width: 100%;
            position: relative;
            /* For pseudo-element */
            min-height: 100vh;
            margin: 0;
            padding-bottom: 0 !important;
            display: flex;
            flex-direction: column;
        }

        /* Scoped styles for the BAFA Section */
        /* These styles were replaced by the new BAFA styles above */

        /* Smooth Dark Mode Transition via Pseudo-Element */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Cinematic Mode: Burred Image with Neutral Dark Overlay */
            /* Less blue, more neutral gray. Less blurred to see content. */
            background: linear-gradient(rgba(30, 30, 30, 0.75), rgba(20, 20, 20, 0.9)), url('wizard-bg.jpg');
            background: linear-gradient(rgba(30, 30, 30, 0.75), rgba(20, 20, 20, 0.9)), -webkit-image-set(url('wizard-bg.webp') type('image/webp'), url('wizard-bg.jpg') type('image/jpeg'));
            background: linear-gradient(rgba(30, 30, 30, 0.75), rgba(20, 20, 20, 0.9)), image-set(url('wizard-bg.webp') type('image/webp'), url('wizard-bg.jpg') type('image/jpeg'));
            background-size: cover;
            background-position: center;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            pointer-events: none;
            /* Apple-like blur effect - reduced for visibility */
            filter: blur(4px);
            transform: scale(1.02);
            /* Hide blurred edges */
        }

        body.wizard-active::before {
            opacity: 1;
        }

        body.wizard-active {
            color: white;
            background-color: transparent;
            /* Reveal pseudo-element background */
            transition: color 0.6s ease, background-color 0.6s ease;
        }

        body.wizard-active #wizard-section {
            background-color: transparent !important;
            transition: background-color 0.8s ease;
        }

        body.wizard-active .hero h1,
        body.wizard-active .hero p.subhead {
            display: none !important;
        }

        /* Typography */
        h1,
        h2,
        h3 {
            line-height: 1.25;
            margin-bottom: 0.75em;
            font-weight: 700;
            letter-spacing: -0.025em;
            overflow-wrap: break-word;
            word-wrap: break-word;
            hyphens: auto;
        }

        h1 {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 0.5em;
        }

        /* Header & Logo */




        h2 {
            font-size: 1.5rem;
            color: var(--secondary);
            /* Darker heading for professionalism */
            margin-top: 2em;
        }

        h3 {
            font-size: 1.125rem;
        }

        p {
            margin-bottom: 1.25em;
            color: var(--text-muted);
        }

        /* Layout Sections - Optimized for Breathing Room */
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--spacing);
        }

        /* Full-width sections for backgrounds */
        .full-width,
        .section-full-width,
        .hero,
        .cms-section.full-width {
            width: 100%;
            max-width: 100%;
            margin-left: 0;
            margin-right: 0;
            padding-left: 0;
            padding-right: 0;
        }

        /* Allow sections with background colors to span full width */
        section[style*="background"],
        .cms-section[style*="background"] {
            width: 100%;
            box-sizing: border-box;
        }

        /* Container inside full-width sections should be constrained */
        .full-width .container,
        .section-full-width .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--spacing);
        }

        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 44px;
            height: 44px;
            border: 2px solid rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            animation: bounce 2s infinite;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .scroll-down:hover {
            border-color: white;
            background: rgba(255, 255, 255, 0.1);
        }

        .scroll-down::after {
            content: '';
            width: 10px;
            height: 10px;
            border-bottom: 2px solid white;
            border-right: 2px solid white;
            transform: rotate(45deg);
            margin-top: -4px;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            40% {
                transform: translateX(-50%) translateY(-10px);
            }

            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        .hero {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 160px 20px 100px;
            min-height: 100vh;
            /* Full height for maximum impact */
            width: 100%;
            box-sizing: border-box;
            text-align: center;
            /* Enhanced Overlay - Cinematic & Professional */
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), url('hero-bg.jpg');
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), -webkit-image-set(url('hero-bg.webp') type('image/webp'), url('hero-bg.jpg') type('image/jpeg'));
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), image-set(url('hero-bg.webp') type('image/webp'), url('hero-bg.jpg') type('image/jpeg'));
            background-size: cover;
            background-position: center;
            border-bottom: none;
            margin-bottom: 0;
            color: white;
            position: relative;
            transition: padding 0.8s ease, background-color 0.8s ease, min-height 0.8s ease;
        }

        .hero h1 {
            font-size: 3.5rem;
            /* More impact */
            letter-spacing: -0.03em;
            margin-bottom: 24px;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p.subhead {
                font-size: 1.1rem;
            }
        }

        .hero h1,
        .hero p.subhead,
        .hero .trust-badge span {
            color: white !important;
            /* Stronger shadow for better readability */
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 4px 12px rgba(0, 0, 0, 0.8);
        }

        .hero p.subhead {
            font-size: 1.25rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .section-alt {
            background-color: var(--bg-alt);
            /* Muted background */
            padding: 20px 0 60px;
            /* Default text color (dark) for initial state */
            color: var(--text-main);
            border-top: none;
            border-bottom: 1px solid var(--border-light);
            position: relative;
            z-index: 5;
            margin-top: 0;
            transition: color 0.6s ease;
        }

        /* When Wizard is active (Dark Mode), make text white */
        body.wizard-active .section-alt h2 {
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        body.wizard-active .section-alt {
            border-bottom: none;
            /* Remove border in cinematic mode for seamless look */
        }

        /* Smooth Transition basics for Hero elements */
        .hero p.subhead,
        .hero .trust-badges,
        .hero .btn,
        .hero .scroll-down,
        .hero .hero-hint {
            transition: opacity 0.5s ease, max-height 0.5s ease, margin 0.5s ease;
            max-height: 500px;
            /* Enough to fit content */
            opacity: 1;
        }

        /* Compact Hero Mode */
        .hero.compact {
            padding: 90px 20px 10px;
            /* Minimal padding: header clearance + small buffer */
            margin-bottom: 0;
            background: transparent;
            border-bottom: none;
            /* Smoothly animate height */
            min-height: 0;
        }

        .hero.compact p.subhead,
        .hero.compact .trust-badges,
        .hero.compact .btn,
        .hero.compact .scroll-down,
        .hero.compact .hero-hint,
        .hero.compact .container > div {
            /* Also hides the FAQ/Blog buttons container */
            opacity: 0;
            max-height: 0;
            margin: 0;
            padding: 0;
            pointer-events: none;
            overflow: hidden;
        }

        /* Components - Elevated Interaction */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 14px 32px;
            font-size: 1.05rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: var(--radius-full);
            border: 1px solid rgba(255, 255, 255, 0.2);
            /* Subtle premium border */
            cursor: pointer;
            width: auto;
            /* Buttons shouldn't always be 100% on desktop */
            min-width: 200px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
            /* Refined shadow */
            letter-spacing: 0.01em;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 20px 35px -10px rgba(10, 56, 33, 0.5);
            filter: brightness(110%);
        }

        .btn:active {
            transform: translateY(-1px);
        }

        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
            box-shadow: none;
        }

        .btn-secondary:hover {
            background: var(--primary-light);
            color: var(--primary-dark);
            box-shadow: var(--shadow-md);
        }

        .feature-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin: 40px 0;
        }

        .feature-card {
            background: var(--bg-surface);
            padding: 30px 24px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            text-align: center;
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-xl);
            border-color: rgba(10, 56, 33, 0.1);
        }

        /* Upload Wizard */
        #wizard-area {
            margin-top: 0;
            padding-top: 0;
            padding-bottom: 0;
            position: relative;
            z-index: 10;
        }

        .upload-card {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            margin-bottom: 20px;
            text-align: center;
            border: 1px solid var(--border-light);
        }

        .window-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: stretch;
            /* Cards in same row have equal height */
            gap: 32px;
            margin-top: 40px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .window-item {
            background: var(--bg-surface);
            color: var(--text-main);
            border: 1px solid var(--border-light);
            padding: 24px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            width: 100%;
            flex: 1 1 500px;
            /* Prominent width */
            max-width: 700px;
            /* Prevent it from becoming too massive */
            min-width: 320px;
        }

        .window-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .window-item img.preview {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: var(--radius-md);
            margin-bottom: 16px;
            box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
        }

        .status-badge {
            font-size: 0.75rem;
            padding: 6px 12px;
            border-radius: var(--radius-full);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            white-space: nowrap;
            /* Prevent wrapping */
        }

        .status-badge.pending {
            background: #fff3cd;
            color: #856404;
        }

        .status-badge.processing {
            background: #e2e8f0;
            color: #4a5568;
        }

        .status-badge.success {
            background: #c6f6d5;
            color: #2f855a;
        }

        .status-badge.error {
            background: #fed7d7;
            color: #c53030;
        }

        .options-group {
            margin-top: 20px;
            padding: 20px;
            background: var(--bg-body);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-light);
        }

        .form-select {
            display: block;
            width: 100%;
            padding: 14px 18px;
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.5;
            color: var(--text-main);
            background-color: #f8fafc;
            background-clip: padding-box;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            transition: all 0.2s ease;
            margin-top: 10px;
            cursor: pointer;
        }

        .form-select:focus {
            border-color: var(--primary);
            background-color: white;
            outline: 0;
            box-shadow: 0 0 0 4px rgba(10, 56, 33, 0.1);
        }

        /* Results */
        .result-box {
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid #eee;
        }

        .rec-item {
            background: #f0f7ff;
            padding: 10px;
            margin-top: 5px;
            border-left: 4px solid var(--primary);
            font-size: 0.9rem;
        }

        .acc-item {
            font-size: 0.85rem;
            color: #666;
            margin-left: 10px;
        }

        /* Sticky Action Bar */
        #sticky-action-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            padding: 12px 20px;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
            display: none;
            /* Toggled via JS */
            justify-content: space-between;
            align-items: center;
            z-index: 900;
        }

        @media (max-width: 1024px) {
            .header-container {
                padding: 0 15px;
            }

            .header-content {
                gap: 10px;
            }
        }

        @media (max-width: 768px) {
            #sticky-action-bar {
                padding: 10px 15px;
            }

            #sticky-action-bar .btn {
                padding: 10px 20px !important;
                font-size: 0.95rem !important;
                font-weight: 600 !important;
                height: auto !important;
            }
        }

        @keyframes slideUp {
            from {
                transform: translateY(100%);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Footer / FAQ */
        /* Footer / FAQ */
        /* Footer / FAQ */
        .faq-section {
            background-color: var(--bg-alt);
            /* Consistent muted background */
            padding: 40px 20px 60px;
            /* Reduced top padding */
            margin-top: 0;
            /* Attach to previous section */
            color: var(--text-main);
            position: relative;
            z-index: 5;
            /* Ensure it sits on top of body gradient */
            border-top: 1px solid var(--border-light);
        }

        .faq-item {
            background: #fcfdfc;
            /* Tinted white */
            padding: 24px;
            border-radius: var(--radius-md);
            border: 1px solid rgba(0, 0, 0, 0.05);
            margin-bottom: 15px;
            box-shadow: none;
            transition: transform 0.2s, border-color 0.2s;
        }

        .faq-item:hover {
            transform: translateX(5px);
            border-color: var(--primary);
        }

        .faq-q {
            font-weight: bold;
            margin-bottom: 5px;
            color: var(--primary);
        }

        /* FAQ Accordion Styles (matching landingpage) */
        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 15px;
            background: white;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-question {
            width: 100%;
            padding: 22px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-size: 1.15rem;
            font-weight: 700;
            color: #2d3748;
        }

        .faq-icon {
            transition: transform 0.3s ease;
            color: #cbd5e0;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background: #fff;
        }

        .faq-answer-inner {
            padding: 0 25px 25px 25px;
            color: #4a5568;
            line-height: 1.7;
            font-size: 1.05rem;
        }

        /* FAQ Accordion Styles (fallback for Astro components) */
        .faq-accordion .faq-item {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            margin-bottom: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-accordion .faq-item:hover {
            border-color: var(--primary);
            box-shadow: 0 4px 12px rgba(10, 56, 33, 0.1);
        }

        .faq-accordion .faq-question {
            width: 100%;
            padding: 20px 24px;
            background: white;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--secondary);
            text-align: left;
            transition: all 0.2s ease;
        }

        .faq-accordion .faq-question:hover {
            background: var(--primary-light);
            color: var(--primary-dark);
        }

        .faq-accordion .faq-icon {
            font-size: 1.2rem;
            color: var(--primary);
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 16px;
        }

        .faq-accordion .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background: #fafafa;
        }

        .faq-accordion .faq-answer-inner {
            color: var(--text-muted);
            line-height: 1.7;
            font-size: 1rem;
            padding: 0 24px 24px 24px;
        }

        .faq-accordion .faq-answer-inner p {
            margin: 0;
        }

        /* Trust Badges */
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 20px 0;
            opacity: 0.8;
        }

        .trust-badge {
            font-size: 0.8rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .trust-badge svg {
            margin-bottom: 5px;
        }

        .hidden {
            display: none !important;
        }

        @media (max-width: 767px) {
            .container {
                padding: 15px;
            }

            .hero {
                /* Robust Mobile Layout Fix */
                width: 100%;
                max-width: 100vw;
                padding-top: 80px;
                padding-bottom: max(80px, env(safe-area-inset-bottom));
                /* Increased to clear scroll button */
                /* Safe area support */

                /* Height handling */
                min-height: 100vh;
                /* Fallback */
                min-height: 100dvh;
                /* Dynamic viewport height for modern mobile */
                height: auto;

                /* Centering */
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;

                box-sizing: border-box;
                overflow-x: hidden;
            }

            .hero h1 {
                font-size: 1.7rem;
                /* Slightly smaller */
                margin-bottom: 5px;
                /* Minimal gap */
                line-height: 1.2;
            }

            .hero p.subhead {
                margin-bottom: 5px;
                font-size: 1rem;
            }

            .trust-badges {
                flex-direction: row;
                /* Save vertical space! */
                flex-wrap: wrap;
                justify-content: center;
                gap: 5px;
                align-items: center;
                margin: 10px 0;
            }

            .window-list {
                flex-direction: column;
                align-items: center;
                gap: 24px;
            }

            .window-item {
                padding: 20px;
            }

            .add-card {
                padding: 30px;
                min-height: 180px;
            }
        }

        .add-card {
            border: 2px dashed rgba(255, 255, 255, 0.3);
            border-radius: var(--radius-lg);
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.05);
            min-height: 200px;
            text-align: center;
            width: 100%;
            flex: 0 0 240px;
            /* Clearly secondary / narrower */
            box-sizing: border-box;
            color: rgba(255, 255, 255, 0.85);
            /* Increased opacity for readability */
        }

        .add-card:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.8);
            color: white;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            transform: translateY(-4px);
        }

        .add-card-icon {
            font-size: 3rem;
            color: white;
            /* Changed from var(--primary) for dark background */
            margin-bottom: 12px;
            opacity: 0.5;
            transition: all 0.3s ease;
        }

        .add-card:hover .add-card-icon {
            transform: scale(1.1) rotate(90deg);
            opacity: 1;
        }

        .add-card-text {
            font-weight: 700;
            font-size: 1.1rem;
            color: white;
            /* Changed from var(--primary) for dark background */
            opacity: 0.8;
        }

        .add-card:hover .add-card-text {
            opacity: 1;
        }

        /* Delete Button */
        .btn-delete {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
            color: #999;
            padding: 4px;
            border-radius: 4px;
            transition: color 0.2s, background 0.2s;
        }

        .btn-delete:hover {
            color: #dc3545;
            background: #ffe6e6;
        }

        /* Loading Overlay */
        #loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 2000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            display: none;
            /* hidden by default */
            color: white;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top: 4px solid #fff;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 24px;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* Quantity Input Styling */
        .qty-group {
            display: flex;
            align-items: center;
            border: 1px solid #ddd;
            border-radius: 4px;
            background: #fff;
            overflow: hidden;
        }

        .qty-btn {
            background: #f8f9fa;
            border: none;
            width: 28px;
            height: 28px;
            font-weight: bold;
            color: #555;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }

        .qty-btn:hover {
            background: #e9ecef;
        }

        .qty-input {
            width: 32px;
            text-align: center;
            border: none;
            border-left: 1px solid #ddd;
            border-right: 1px solid #ddd;
            font-weight: 600;
            padding: 4px 0;
            outline: none;
            -moz-appearance: textfield;
            appearance: textfield;
        }

        .qty-input::-webkit-outer-spin-button,
        .qty-input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            appearance: none;
            margin: 0;
        }

        /* Header & Navigation */
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            min-height: 80px;
            gap: 40px;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
            flex: 1;
            justify-content: center;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            letter-spacing: 0.02em;
        }

        .nav-link:hover {
            background: rgba(255, 255, 255, 0.08);
            color: white;
            transform: translateY(-2px);
        }

        .nav-link.active {
            color: white;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1100;
        }

        .mobile-toggle span {
            display: block;
            width: 28px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        @media (max-width: 1024px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background: linear-gradient(135deg, #0c4828 0%, #08331c 100%);
                flex-direction: column;
                justify-content: center;
                gap: 20px;
                transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1050;
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
            }

            .nav-menu.open {
                right: 0;
            }

            .mobile-toggle {
                display: flex;
            }

            .mobile-toggle.open span:nth-child(1) {
                transform: translateY(9px) rotate(45deg);
            }

            .mobile-toggle.open span:nth-child(2) {
                opacity: 0;
            }

            .mobile-toggle.open span:nth-child(3) {
                transform: translateY(-9px) rotate(-45deg);
            }

            .nav-link {
                font-size: 1.5rem;
                width: 80%;
                text-align: center;
                padding: 15px;
            }

            .header-content {
                gap: 20px;
            }

            .partner-badge {
                display: none !important;
            }
        }

        @media (max-width: 768px) {

            #how-it-works,
            #bafa-section,
            .section-scope,
            .faq-section,
            .section-modern {
                padding-top: 30px !important;
                padding-bottom: 30px !important;
            }

            /* Specific fix for Scope section top spacing */
            .section-scope {
                padding-top: 20px !important;
            }

            .btn {
                padding: 12px 24px !important;
                font-size: 1rem !important;
                width: 100% !important;
                min-width: auto !important;
            }

            /* Compact Sticky Action Bar for Mobile */
            #sticky-action-bar {
                padding: 10px 16px !important;
            }

            #sticky-btn {
                padding: 10px 20px !important;
                font-size: 0.95rem !important;
                min-width: auto !important;
                flex: 0 1 auto !important;
            }

            #sticky-status {
                font-size: 0.85rem !important;
            }

            #sticky-delete-all {
                font-size: 1.1rem !important;
                padding: 6px !important;
            }
        }

        /* Compact Quantity Input styles */
        .qty-group.compact .qty-btn {
            display: none;
        }

        .qty-group.compact:hover .qty-btn,
        .qty-group.compact:focus-within .qty-btn {
            display: inline-block;
        }

        .qty-group.compact .qty-input {
            width: 40px;
            /* Smaller width when compact */
            text-align: center;
            border: 1px solid transparent;
            /* Hide border initially */
            background: transparent;
            font-weight: bold;
        }

        .qty-group.compact:hover .qty-input,
        .qty-group.compact:focus-within .qty-input {
            width: 50px;
            /* Expand on interact */
            border: 1px solid #cbd5e0;
            background: white;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Responsive Styles for Info Modal */
        @media (max-width: 767px) {
            #info-modal {
                padding: 10px !important;
            }

            #info-modal>div {
                margin: 20px auto !important;
                border-radius: 8px !important;
            }

            #info-modal>div>div {
                padding: 25px 20px !important;
                padding-top: 50px !important;
            }

            #info-modal h2 {
                font-size: 22px !important;
            }

            #info-modal h3 {
                font-size: 16px !important;
            }

            #info-modal p {
                font-size: 14px !important;
            }

            #info-modal .step-icon {
                width: 50px !important;
                height: 50px !important;
                font-size: 24px !important;
            }

            #info-modal button[onclick*="closeInfoModal(); document"] {
                padding: 12px 20px !important;
                font-size: 14px !important;
            }
        }

        /* Mobile Responsive Styles for BAFA Modal - Aggressive Fix */
        @media (max-width: 768px) {
            #bafa-modal {
                padding: 0 !important;
                align-items: flex-start !important;
                -webkit-backdrop-filter: blur(8px) !important;
                backdrop-filter: blur(8px) !important;
                height: 100% !important;
                overflow-x: hidden !important;
                overflow-y: auto !important;
                -webkit-overflow-scrolling: touch;
            }

            #bafa-modal>div {
                margin: 0 !important;
                width: 100% !important;
                min-height: 100vh !important;
                min-height: 100dvh !important;
                border-radius: 0 !important;
                max-height: none !important;
                display: flex;
                flex-direction: column;
                box-shadow: none !important;
                overflow-x: hidden !important;
            }

            #bafa-modal>div>div {
                padding: 20px 16px !important;
                padding-bottom: max(80px, env(safe-area-inset-bottom)) !important;
                box-sizing: border-box !important;
                width: 100% !important;
                overflow-x: hidden !important;
            }

            /* Fix Nested Grid in Modal (EEE / Requirements) */
            .bafa-calc-grid+div[style*="grid-template-columns"] {
                grid-template-columns: 1fr !important;
                display: flex !important;
                flex-direction: column !important;
                gap: 24px !important;
                padding-bottom: 20px !important;
            }

            .bafa-grant-amount {
                font-size: 1.75rem !important;
                word-wrap: break-word !important;
            }

            /* Fix Close Button Position for Fullscreen Modal */
            #bafa-modal button[onclick*="closeBafaModal"] {
                top: 10px !important;
                right: 10px !important;
                background: rgba(255, 255, 255, 0.9) !important;
                width: 36px !important;
                height: 36px !important;
                border-radius: 50% !important;
                z-index: 2005 !important;
                display: flex !important;
                align-items: center;
                justify-content: center;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
                border: 1px solid #e2e8f0 !important;
            }

            .bafa-heading {
                font-size: 1.4rem !important;
                margin-top: 45px !important;
                padding: 0 !important;
                text-align: left !important;
                line-height: 1.2;
                max-width: 100%;
            }

            .bafa-subheading {
                margin-bottom: 20px !important;
                font-size: 0.9rem !important;
                padding: 0 !important;
                text-align: left !important;
                line-height: 1.4;
                opacity: 0.8;
                max-width: 100%;
            }

            .bafa-result-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
                margin-bottom: 15px;
            }

            .bafa-calc-grid {
                display: flex !important;
                flex-direction: column !important;
                gap: 16px !important;
                width: 100% !important;
            }

            .bafa-inputs,
            .bafa-results {
                width: 100% !important;
                box-sizing: border-box !important;
            }

            /* Steps vertical stack - Senior Refinement */
            .bafa-steps {
                flex-direction: column !important;
                align-items: flex-start !important;
                padding-left: 10px !important;
                margin-top: 20px !important;
                position: relative !important;
                gap: 0 !important;
            }

            .bafa-steps::before {
                display: block !important;
                width: 2px !important;
                height: calc(100% - 40px) !important;
                left: 20px !important;
                /* Center of 40px circle */
                top: 30px !important;
                background: #e2e8f0 !important;
                z-index: 0 !important;
            }

            .bafa-step {
                width: 100% !important;
                display: flex !important;
                flex-direction: row !important;
                /* Side by side on mobile list */
                align-items: flex-start !important;
                margin-bottom: 24px !important;
                gap: 16px !important;
                z-index: 1 !important;
            }

            .bafa-step-circle {
                margin: 0 !important;
                width: 40px !important;
                height: 40px !important;
                min-width: 40px !important;
                min-height: 40px !important;
                flex-shrink: 0 !important;
                background: white !important;
                border: 2px solid #0c4828 !important;
                border-radius: 50% !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                z-index: 2 !important;
                box-shadow: 0 0 0 4px white !important;
                /* High contrast over the line */
            }

            .bafa-step-content {
                flex: 1;
            }
        }

        /* Scope Grid Responsive */
        .scope-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        @media (max-width: 768px) {
            .scope-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        /* Scoped Styles for Steps */
        .steps-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        @media (max-width: 900px) {
            .steps-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .steps-container {
                grid-template-columns: 1fr;
            }
        }

        .step-card {
            background: white;
            padding: 32px 24px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid var(--border-light);
            position: relative;
            height: 100%;
        }

        .step-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-light);
        }

        .step-number {
            background: var(--primary);
            color: white;
            width: 56px;
            height: 56px;
            border-radius: 18px;
            /* Squircle look */
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.5rem;
            margin: 0 auto 24px;
            box-shadow: 0 8px 20px rgba(10, 56, 33, 0.2);
        }

        .step-content h3 {
            font-size: 1.35rem;
            margin-bottom: 16px;
            color: var(--secondary);
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .step-content p {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        /* Mobile Responsive Steps */
        @media (max-width: 1024px) {
            .steps-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 767px) {
            .steps-container {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .step-card {
                display: flex;
                flex-direction: row;
                /* Horizontal layout on mobile */
                text-align: left;
                align-items: center;
                padding: 20px;
                gap: 20px;
                min-height: auto;
            }

            .step-number {
                margin: 0;
                flex-shrink: 0;
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }

            .step-content h3 {
                margin-bottom: 4px;
                font-size: 1.1rem;
            }

            .step-content p {
                font-size: 0.85rem;
            }
        }

        /* Shared Section Styles */
        .section-modern {
            padding: 100px 0;
            position: relative;
        }

        /* BAFA Modern Card - Premium Design */
        .bafa-modern-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 40px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
            overflow: hidden;
            position: relative;
        }

        @media (max-width: 900px) {
            .bafa-modern-card {
                flex-direction: column;
                gap: 40px;
                text-align: center;
                padding: 30px;
            }

            .bafa-content {
                text-align: center;
            }
        }

        .bafa-modern-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(72, 187, 120, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(30%, -30%);
            z-index: 0;
        }

        .bafa-content {
            flex: 1;
            position: relative;
            z-index: 1;
            text-align: left;
        }

        .bafa-stat-box {
            background: var(--primary-light);
            padding: 10px 20px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 24px;
            font-weight: 700;
            color: var(--primary);
            border: 1px solid rgba(10, 56, 33, 0.1);
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 0.05em;
        }

        .bafa-action {
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        /* Scope Cards */
        .scope-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            height: 100%;
            transition: transform 0.3s ease;
            position: relative;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .scope-card:hover {
            transform: translateY(-5px);
        }

        .scope-card.included {
            border-top: 6px solid #48bb78;
        }

        .scope-card.excluded {
            border-top: 6px solid #cbd5e0;
            background: #fcfcfc;
            opacity: 0.9;
        }

        .scope-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .scope-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .scope-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .scope-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
            font-size: 1rem;
            color: #4a5568;
            line-height: 1.5;
        }

        .check-icon {
            color: #48bb78;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .cross-icon {
            color: #a0aec0;
            font-size: 1.1rem;
        }

        /* FAQ Accordion - Modern Clean */
        .accordion-item {
            background: white;
            border-radius: var(--radius-md);
            margin-bottom: 16px;
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
        }

        .accordion-trigger {
            width: 100%;
            padding: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: #2d3748;
        }

        .accordion-content {
            padding: 0 24px 24px;
            color: #718096;
            line-height: 1.6;
            display: none;
            /* JS Toggle needed */
        }

        /* Simple JS toggle class */
        .accordion-item.active .accordion-content {
            display: block;
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(180deg);
        }

        .accordion-icon {
            transition: transform 0.3s ease;
            color: #a0aec0;
        }

        /* Responsive adjustments for these sections */
        @media (max-width: 900px) {
            .bafa-modern-card {
                flex-direction: column;
                text-align: center;
                padding: 30px;
                gap: 30px;
            }

            .bafa-content {
                text-align: center;
            }
        }

        /* ========================================
           Extracted inline styles for SEO
           ======================================== */

        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10000;
            overflow-y: auto;
            padding: 20px;
            box-sizing: border-box;
        }

        .modal-overlay--dark {
            background: rgba(0, 0, 0, 0.8);
        }

        .modal-overlay--blur {
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
        }

        .modal-box {
            max-width: 700px;
            margin: 40px auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            position: relative;
            animation: modalSlideIn 0.3s ease;
        }

        .modal-box--wide {
            max-width: 900px;
            margin: 20px auto;
            border-radius: 20px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .modal-body {
            padding: 40px;
        }

        .modal-body--padded-top {
            padding-top: 60px;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: transparent;
            border: none;
            font-size: 32px;
            cursor: pointer;
            color: #666;
            line-height: 1;
            padding: 0;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: all 0.2s;
        }

        .modal-close:hover {
            background: #f0f0f0;
            color: #000;
        }

        .modal-close--sm {
            font-size: 24px;
            color: #718096;
            z-index: 10;
        }

        .info-steps {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .info-step {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .info-step-icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0c4828, #2e7d32);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 4px 12px rgba(12, 72, 40, 0.3);
        }

        .info-step-body {
            flex: 1;
        }

        .info-step-body h3 {
            margin: 0 0 8px 0;
            color: #333;
            font-size: 18px;
        }

        .info-step-body p {
            margin: 0;
            color: #666;
            line-height: 1.6;
            font-size: 15px;
        }

        .modal-cta-box {
            margin-top: 40px;
            padding: 25px;
            background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
            border-radius: 8px;
            text-align: center;
        }

        .modal-cta-box h3 {
            margin: 0 0 10px 0;
            color: var(--primary);
            font-size: 20px;
        }

        .modal-cta-box p {
            margin: 0 0 15px 0;
            color: #555;
            line-height: 1.6;
        }

        .modal-cta-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(12, 72, 40, 0.3);
        }

        .modal-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(12, 72, 40, 0.4);
        }

        .section-howit {
            background: linear-gradient(180deg, #0a3821 0%, #051b10 100%);
            padding: 50px 0 100px;
            position: relative;
            z-index: 2;
        }

        .section-howit h2 {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.2rem;
            color: white;
            letter-spacing: -0.02em;
        }

        .section-howit .cta-wrap {
            text-align: center;
            margin-top: 50px;
        }

        .section-howit .cta-hint {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #718096;
            opacity: 0.8;
        }

        .section-scope .scope-heading {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-scope .scope-heading h2 {
            font-size: 2rem;
            margin-bottom: 10px;
            color: white;
        }

        .section-scope .scope-heading p {
            color: #cbd5e0;
        }

        .section-final-cta {
            background: var(--primary);
            color: white;
            padding: 60px 20px 100px;
            text-align: center;
            position: relative;
        }

        .section-final-cta h2 {
            color: white;
            margin-bottom: 20px;
        }

        .section-final-cta .btn-inverted {
            background: white;
            color: var(--primary);
            font-weight: bold;
        }

        .wave-transition {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .wave-transition svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 60px;
        }

        .site-footer {
            background: #1a202c;
            color: #a0aec0;
            padding: 40px 0;
            text-align: center;
            font-size: 0.9rem;
            margin-top: auto;
        }

        .site-footer .company-name {
            color: white;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .site-footer .footer-nav {
            margin: 20px 0;
            display: flex;
            justify-content: center;
            gap: 20px;
            font-weight: 600;
        }

        .site-footer .footer-nav a {
            color: white;
            text-decoration: none;
        }

        .site-footer .footer-legal {
            opacity: 0.8;
            margin: 10px 0;
        }

        .site-footer .footer-legal a {
            color: inherit;
            margin: 0 10px;
        }

        .site-footer .footer-trademark {
            margin-top: 20px;
            font-size: 0.75rem;
            opacity: 0.6;
            margin-bottom: 0;
        }

        .bafa-info-card {
            background: var(--bg-body);
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid var(--accent);
        }

        .bafa-info-card h4 {
            margin: 0 0 10px 0;
            color: var(--primary);
        }

        .bafa-warning-box {
            background: #fff3cd;
            color: #856404;
            padding: 10px;
            border-radius: 6px;
            margin-top: 10px;
            font-size: 0.8rem;
            border: 1px solid #ffeeba;
        }

        .bafa-grant-box {
            margin: 25px 0;
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .bafa-close-btn {
            background: var(--primary);
            color: white;
            padding: 12px 30px;
            border-radius: 99px;
            font-weight: 600;
            border: none;
            cursor: pointer;
        }

        .bafa-two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #edf2f7;
        }

        @media (max-width: 768px) {
            .bafa-two-col {
                grid-template-columns: 1fr;
            }
        }

        .scope-note {
            margin-top: 30px;
            padding: 15px;
            background: #e2e8f0;
            border-radius: 8px;
            font-size: 0.85rem;
            color: #4a5568;
        }

        .section-wizard {
            display: none;
            background-color: #0a3821;
            margin: 0;
            padding: 0 0 120px 0;
            transition: background-color 0.8s ease;
        }

        .hero-hint {
            font-size: 0.9rem;
            margin-top: 15px;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 1), 0 4px 10px rgba(0, 0, 0, 0.8);
            font-weight: 600;
        }

        /* Mobile specific background images */
        @media (max-width: 768px) {
            .hero {
                background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), url('hero-bg-mobile.webp');
                background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), -webkit-image-set(url('hero-bg-mobile.webp') type('image/webp'), url('hero-bg.jpg') type('image/jpeg'));
                background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), image-set(url('hero-bg-mobile.webp') type('image/webp'), url('hero-bg.jpg') type('image/jpeg'));
                background-size: cover;
                background-position: center;
            }

            body.wizard-active::before {
                background: linear-gradient(rgba(30, 30, 30, 0.75), rgba(20, 20, 20, 0.9)), url('wizard-bg-mobile.webp');
                background: linear-gradient(rgba(30, 30, 30, 0.75), rgba(20, 20, 20, 0.9)), -webkit-image-set(url('wizard-bg-mobile.webp') type('image/webp'), url('wizard-bg.jpg') type('image/jpeg'));
                background: linear-gradient(rgba(30, 30, 30, 0.75), rgba(20, 20, 20, 0.9)), image-set(url('wizard-bg-mobile.webp') type('image/webp'), url('wizard-bg.jpg') type('image/jpeg'));
                background-size: cover;
                background-position: center;
            }
        }