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

        :root {
            --primary: #004F9F;
            --primary-dark: #003875;
            --accent: #00843D;
            --accent-red: #CE1126;
            --gold: #FFB81C;
            --success: #00843D;
            --white: #FFFFFF;
            --gray-50: #F8F9FA;
            --gray-100: #F1F3F5;
            --gray-200: #E4E7EB;
            --gray-300: #CED4DA;
            --gray-400: #ADB5BD;
            --gray-600: #495057;
            --gray-700: #343A40;
            --gray-900: #1A1D23;
            --error: #CE1126;
            --font-primary: 'Plus Jakarta Sans', sans-serif;
            --font-heading: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        body {
            font-family: var(--font-primary);
            color: var(--gray-900);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--white);
        }

        /* Header */
        header {
            background: var(--white);
            border-bottom: 1px solid var(--gray-200);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            max-width: 1180px;
            margin: 0 auto;
            gap: 1rem;
        }

        .logo-image { height: 38px; width: auto; }

        .nav-actions { display: flex; align-items: center; gap: 0.75rem; }

        .language-selector {
            display: flex;
            gap: 0.25rem;
            background: var(--gray-100);
            padding: 0.25rem;
            border-radius: 8px;
        }

        .lang-btn {
            padding: 0.375rem 0.7rem;
            border: none;
            background: transparent;
            color: var(--gray-600);
            font-size: 0.8125rem;
            font-weight: 600;
            cursor: pointer;
            border-radius: 6px;
            transition: all 0.2s ease;
            font-family: var(--font-primary);
        }
        .lang-btn:hover { background: var(--gray-200); color: var(--gray-900); }
        .lang-btn.active { background: white; color: var(--primary); box-shadow: 0 1px 3px rgba(0,0,0,0.1); }

        .nav-cta {
            display: none;
            align-items: center;
            gap: 0.5rem;
            background: var(--primary);
            color: white;
            padding: 0.625rem 1.25rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.2s ease;
        }
        .nav-cta:hover { background: var(--primary-dark); }

        /* Hero */
        .hero {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            color: white;
            padding: 3.5rem 1.5rem 4rem;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: '';
            position: absolute;
            top: 0; right: 0; bottom: 0;
            width: 6px;
            background: linear-gradient(180deg, var(--gold) 0%, var(--accent) 50%, var(--accent-red) 100%);
        }
        .hero-inner { max-width: 1180px; margin: 0 auto; }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.14);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.8125rem;
            margin-bottom: 1.25rem;
            font-weight: 600;
        }
        .hero-badge i { color: var(--gold); }
        .hero h1 {
            font-family: var(--font-heading);
            font-size: 2rem;
            line-height: 1.15;
            margin-bottom: 1rem;
            font-weight: 800;
            max-width: 16ch;
        }
        .hero h1 .accent { color: var(--gold); }
        .hero p {
            font-size: 1.0625rem;
            opacity: 0.94;
            max-width: 60ch;
            margin-bottom: 2rem;
        }
        .hero-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; }
        .btn-gold {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--gold);
            color: var(--primary-dark);
            padding: 0.95rem 1.75rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: transform 0.15s ease, background 0.2s ease;
            border: none;
            cursor: pointer;
            font-family: var(--font-primary);
        }
        .btn-gold:hover { background: #E5A413; transform: translateY(-2px); }

        /* Partner stats strip */
        .partner-stats {
            background: var(--white);
            border-bottom: 1px solid var(--gray-200);
        }
        .partner-stats-inner {
            max-width: 1180px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.75rem 1.5rem;
        }
        .pstat {
            text-align: center;
            opacity: 0;
            transform: translateY(12px);
            animation: pstatIn 0.55s ease forwards;
        }
        .pstat:nth-child(1) { animation-delay: 0.05s; }
        .pstat:nth-child(2) { animation-delay: 0.15s; }
        .pstat:nth-child(3) { animation-delay: 0.25s; }
        .pstat:nth-child(4) { animation-delay: 0.35s; }
        @keyframes pstatIn {
            to { opacity: 1; transform: translateY(0); }
        }
        .pstat-icon {
            width: 46px; height: 46px; margin: 0 auto 0.75rem;
            display: flex; align-items: center; justify-content: center;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(0,79,159,0.1), rgba(0,132,61,0.1));
            color: var(--primary);
            font-size: 1.15rem;
        }
        .pstat-title {
            font-family: var(--font-heading);
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 0.25rem;
        }
        .pstat-label { font-size: 0.8125rem; color: var(--gray-600); font-weight: 500; line-height: 1.45; }

        /* Sections */
        .section { padding: 3.5rem 1.5rem; max-width: 1180px; margin: 0 auto; }
        .section-alt { background: var(--gray-50); }
        .section-head { text-align: center; margin-bottom: 2.5rem; max-width: 640px; margin-left: auto; margin-right: auto; }
        .eyebrow {
            display: inline-block;
            color: var(--accent);
            font-weight: 700;
            font-size: 0.8125rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 0.75rem;
        }
        .section-title {
            font-family: var(--font-heading);
            font-size: 1.75rem;
            line-height: 1.2;
            color: var(--gray-900);
            font-weight: 700;
            margin-bottom: 0.75rem;
        }
        .section-sub { color: var(--gray-600); font-size: 1rem; }

        /* Benefits */
        .benefit-grid { display: grid; gap: 1.25rem; }
        .benefit {
            background: white;
            border: 1px solid var(--gray-200);
            border-radius: 14px;
            padding: 1.5rem;
            transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        }
        .benefit:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,79,159,0.08); border-color: var(--primary); }
        .benefit-icon {
            width: 50px; height: 50px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.35rem;
            margin-bottom: 1rem;
        }
        .benefit h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--gray-900); }
        .benefit p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }

        /* Impact projector */
        .projector { max-width: 980px; margin: 0 auto; }
        .projector-card {
            background: white; border: 1px solid var(--gray-200); border-radius: 20px;
            overflow: hidden; box-shadow: 0 4px 24px rgba(0,79,159,0.06);
        }
        .projector-grid { display: grid; grid-template-columns: 1fr; }
        .projector-inputs { padding: 1.75rem; border-bottom: 1px solid var(--gray-200); }
        .projector-results { padding: 1.75rem; background: var(--gray-50); }
        .proj-input-head, .proj-results-head {
            font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem;
            margin-bottom: 0.35rem; color: var(--gray-900);
        }
        .proj-sub { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 1.4rem; }
        .slider-field { margin-bottom: 1.5rem; }
        .slider-field:last-child { margin-bottom: 0; }
        .slider-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.6rem; gap: 0.5rem; }
        .slider-label { font-size: 0.875rem; font-weight: 600; color: var(--gray-700); }
        .slider-value { font-family: var(--font-heading); font-weight: 700; color: var(--primary); font-size: 1rem; white-space: nowrap; }
        input[type="range"] {
            -webkit-appearance: none; appearance: none; width: 100%; height: 6px;
            border-radius: 50px; background: var(--gray-200); outline: none; cursor: pointer;
        }
        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%;
            background: var(--primary); border: 3px solid white; box-shadow: 0 1px 4px rgba(0,0,0,0.25); cursor: pointer;
        }
        input[type="range"]::-moz-range-thumb {
            width: 22px; height: 22px; border-radius: 50%; background: var(--primary);
            border: 3px solid white; box-shadow: 0 1px 4px rgba(0,0,0,0.25); cursor: pointer;
        }
        input[type="range"]:focus-visible { box-shadow: 0 0 0 3px rgba(0,79,159,0.25); }
        .result-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; margin-bottom: 1.25rem; }
        .metric {
            background: white; border: 1px solid var(--gray-200); border-radius: 12px;
            padding: 1rem; position: relative; overflow: hidden;
        }
        .metric-ico { font-size: 1rem; color: var(--accent); margin-bottom: 0.5rem; }
        .metric-val {
            font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--gray-900);
            line-height: 1.1; transition: color 0.3s ease;
        }
        .metric-val .unit { font-size: 0.85rem; font-weight: 600; color: var(--gray-500); }
        .metric-lbl { font-size: 0.78rem; color: var(--gray-600); margin-top: 0.3rem; line-height: 1.35; }
        .metric-range { font-size: 0.72rem; color: var(--gray-400); margin-top: 0.25rem; }
        .metric.highlight { border-color: var(--accent); background: linear-gradient(135deg, rgba(0,132,61,0.05), white); }
        .proj-note {
            display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.76rem;
            color: var(--gray-500); line-height: 1.55; background: white;
            border: 1px dashed var(--gray-300); border-radius: 10px; padding: 0.8rem 0.9rem;
        }
        .proj-note i { color: var(--gold); margin-top: 1px; flex-shrink: 0; }
        .proj-sources { margin-top: 0.9rem; font-size: 0.72rem; color: var(--gray-400); line-height: 1.6; }
        .proj-sources a { color: var(--gray-500); text-decoration: underline; }
        .proj-cta { margin-top: 1.25rem; }
        .proj-cta .btn-primary { width: 100%; justify-content: center; }

        /* How it works */
        .steps { display: grid; gap: 1.25rem; counter-reset: step; }
        .step {
            display: flex; gap: 1.25rem; align-items: flex-start;
            background: white; border: 1px solid var(--gray-200);
            border-radius: 14px; padding: 1.5rem;
        }
        .step-num {
            flex-shrink: 0;
            width: 40px; height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            display: flex; align-items: center; justify-content: center;
            font-family: var(--font-heading);
            font-weight: 800; font-size: 1.0625rem;
        }
        .step h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.3rem; }
        .step p { font-size: 0.9rem; color: var(--gray-600); }

        /* Form */
        .form-section { background: var(--gray-50); padding: 3.5rem 1.5rem; }
        .form-wrap { max-width: 820px; margin: 0 auto; }
        .form-card {
            background: white;
            border: 1px solid var(--gray-200);
            border-radius: 18px;
            box-shadow: 0 10px 40px rgba(0,79,159,0.06);
            overflow: hidden;
        }
        .form-card-head {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 1.75rem 1.75rem;
        }
        .form-card-head h2 { font-family: var(--font-heading); font-size: 1.375rem; font-weight: 700; margin-bottom: 0.35rem; }
        .form-card-head p { font-size: 0.9rem; opacity: 0.9; }
        .form-body { padding: 1.75rem; }

        .form-group-title {
            font-family: var(--font-heading);
            font-size: 0.9375rem;
            font-weight: 700;
            color: var(--primary);
            margin: 1.75rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--gray-100);
            display: flex; align-items: center; gap: 0.5rem;
        }
        .form-group-title:first-child { margin-top: 0; }
        .form-group-title i { font-size: 0.875rem; }

        .field-grid { display: grid; gap: 1.1rem; }
        @media (min-width: 640px) { .field-grid.two { grid-template-columns: 1fr 1fr; } }

        .field { display: flex; flex-direction: column; gap: 0.4rem; }
        .field label { font-size: 0.8125rem; font-weight: 600; color: var(--gray-700); }
        .field label .req { color: var(--error); margin-left: 2px; }
        .field input, .field select, .field textarea {
            font-family: var(--font-primary);
            font-size: 0.9375rem;
            padding: 0.7rem 0.85rem;
            border: 1.5px solid var(--gray-200);
            border-radius: 9px;
            background: white;
            color: var(--gray-900);
            transition: border-color 0.15s ease, box-shadow 0.15s ease;
            width: 100%;
        }
        .field input:focus, .field select:focus, .field textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0,79,159,0.1);
        }
        .field textarea { resize: vertical; min-height: 90px; }
        .field input.invalid, .field select.invalid {
            border-color: var(--error);
            box-shadow: 0 0 0 3px rgba(206,17,38,0.08);
        }
        .field-error { font-size: 0.75rem; color: var(--error); display: none; }
        .field-error.show { display: block; }
        .field-hint { font-size: 0.75rem; color: var(--gray-400); }

        /* Chips multi-select */
        .chip-wrap { display: flex; flex-wrap: wrap; gap: 0.5rem; }
        .chip {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.5rem 0.85rem;
            border: 1.5px solid var(--gray-200);
            border-radius: 50px;
            font-size: 0.8125rem;
            font-weight: 500;
            cursor: pointer;
            user-select: none;
            transition: all 0.15s ease;
            background: white;
            color: var(--gray-700);
        }
        .chip:hover { border-color: var(--primary); }
        .chip.selected {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
        }
        .chip.selected::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 0.7rem; }

        .chip-custom-row { display: flex; gap: 0.5rem; margin-top: 0.6rem; }
        .chip-custom-row input { flex: 1; }
        .chip-add-btn {
            border: 1.5px solid var(--primary);
            background: white;
            color: var(--primary);
            border-radius: 9px;
            padding: 0 0.95rem;
            font-weight: 600;
            font-size: 0.8125rem;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.15s ease;
        }
        .chip-add-btn:hover { background: var(--primary); color: white; }

        /* Toggle switch */
        .toggle-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; }
        .toggle-row span { font-size: 0.875rem; font-weight: 500; color: var(--gray-700); }
        .switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
        .switch input { opacity: 0; width: 0; height: 0; }
        .slider {
            position: absolute; cursor: pointer;
            inset: 0;
            background: var(--gray-300);
            border-radius: 26px;
            transition: 0.2s;
        }
        .slider::before {
            content: '';
            position: absolute;
            height: 20px; width: 20px;
            left: 3px; bottom: 3px;
            background: white;
            border-radius: 50%;
            transition: 0.2s;
        }
        .switch input:checked + .slider { background: var(--accent); }
        .switch input:checked + .slider::before { transform: translateX(20px); }
        .switch input:focus-visible + .slider { box-shadow: 0 0 0 3px rgba(0,79,159,0.2); }

        /* Consent */
        .consent {
            display: flex; gap: 0.7rem; align-items: flex-start;
            background: var(--gray-50);
            border: 1.5px solid var(--gray-200);
            border-radius: 11px;
            padding: 1rem;
            margin-top: 1.5rem;
        }
        .consent input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--primary); cursor: pointer; }
        .consent label { font-size: 0.8125rem; color: var(--gray-600); line-height: 1.55; cursor: pointer; }

        .submit-row { margin-top: 1.5rem; }
        .btn-submit {
            width: 100%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            background: var(--accent);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 11px;
            border: none;
            font-family: var(--font-primary);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s ease;
        }
        .btn-submit:hover:not(:disabled) { background: #006B31; }
        .btn-submit:disabled { opacity: 0.65; cursor: not-allowed; }
        .btn-submit .spinner {
            width: 18px; height: 18px;
            border: 2.5px solid rgba(255,255,255,0.4);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.7s linear infinite;
            display: none;
        }
        .btn-submit.loading .spinner { display: inline-block; }
        .btn-submit.loading .btn-label { opacity: 0.85; }
        @keyframes spin { to { transform: rotate(360deg); } }

        /* Form alert */
        .form-alert {
            display: none;
            align-items: flex-start;
            gap: 0.7rem;
            padding: 1rem;
            border-radius: 11px;
            margin-bottom: 1.5rem;
            font-size: 0.875rem;
            line-height: 1.5;
        }
        .form-alert.show { display: flex; }
        .form-alert.error { background: #FDECEE; color: #8B0A18; border: 1px solid #F5C2C8; }
        .form-alert i { margin-top: 2px; }

        /* Success panel */
        .success-panel { display: none; text-align: center; padding: 1rem; }
        .success-panel.show { display: block; }
        .success-icon {
            width: 72px; height: 72px;
            background: linear-gradient(135deg, var(--accent), var(--success));
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 1.25rem;
            color: white; font-size: 2rem;
        }
        .success-panel h3 { font-family: var(--font-heading); font-size: 1.375rem; margin-bottom: 0.6rem; }
        .success-panel p { color: var(--gray-600); font-size: 0.95rem; max-width: 44ch; margin: 0 auto 1.5rem; }

        /* Footer */
        footer { background: var(--gray-900); color: var(--gray-300); padding: 2.5rem 1.25rem; }
        .footer-content { max-width: 560px; margin: 0 auto; text-align: center; }
        .footer-logo-img { height: 30px; width: auto; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }
        .footer-contact {
            display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
            gap: 0.5rem 1.5rem; margin-bottom: 1rem;
        }
        .footer-contact-item {
            display: inline-flex; align-items: center; gap: 0.45rem;
            color: var(--gray-300); text-decoration: none; font-size: 0.875rem; font-weight: 500;
            transition: color 0.2s ease;
        }
        .footer-contact-item i { color: var(--gold); font-size: 0.875rem; }
        .footer-contact-item:hover { color: var(--gold); }
        .footer-address { font-size: 0.8125rem; line-height: 1.6; color: var(--gray-400); margin-bottom: 1rem; }
        .footer-disclaimer {
            font-size: 0.75rem; line-height: 1.6; color: var(--gray-500);
            max-width: 460px; margin: 0 auto 1.5rem;
        }
        .footer-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 0 auto 1.25rem; max-width: 200px; }
        .footer-legal { font-size: 0.8125rem; color: var(--gray-300); margin-bottom: 0.3rem; }
        .footer-reg { font-size: 0.75rem; color: var(--gray-500); margin-bottom: 0.75rem; }
        .footer-powered { font-size: 0.8125rem; color: var(--gray-400); }
        .footer-link { color: var(--gold); text-decoration: none; font-weight: 600; }
        .footer-link:hover { text-decoration: underline; }

        @media (min-width: 640px) {
            .partner-stats-inner { grid-template-columns: repeat(4, 1fr); }
            .benefit-grid { grid-template-columns: repeat(3, 1fr); }
            .nav-cta { display: inline-flex; }
            .hero h1 { font-size: 2.75rem; }
            .section-title { font-size: 2rem; }
            .result-metrics { grid-template-columns: repeat(3, 1fr); }
        }
        @media (min-width: 900px) {
            .projector-grid { grid-template-columns: 0.95fr 1.05fr; }
            .projector-inputs { border-bottom: none; border-right: 1px solid var(--gray-200); }
        }
        @media (min-width: 1024px) {
            .steps { grid-template-columns: repeat(2, 1fr); }
        }

        @media (prefers-reduced-motion: reduce) {
            * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
        }
