        /* ============================================================
           INVESTMENT PAGE – ALL CSS WITH PREFIX: invest_
        ============================================================ */
        :root {
            --invest-blue: #1aafef;
            --invest-pink: #fd62bc;
            --invest-white: #ffffff;
            --invest-soft: #f4fbff;
            --invest-dark: #0a1628;
            --invest-grey: #6b7a90;
            --invest-blue-light: rgba(26, 175, 239, 0.10);
            --invest-pink-light: rgba(253, 98, 188, 0.10);
            --invest-shadow: 0 20px 60px rgba(26, 175, 239, 0.13);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .invest_body {
           
            background: #ffffff;
            color: var(--invest-dark);
            overflow-x: hidden;
        }

        /* SCROLL REVEAL */
        .invest_reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.75s cubic-bezier(.4, 0, .2, 1), transform 0.75s cubic-bezier(.4, 0, .2, 1);
        }

        .invest_reveal.invest_visible {
            opacity: 1;
            transform: translateY(0);
        }

        .invest_reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .invest_reveal-left.invest_visible {
            opacity: 1;
            transform: translateX(0);
        }

        .invest_reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .invest_reveal-right.invest_visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* ---- HERO ---- */
        .invest_hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #0a1628 0%, #0d2040 55%, #0a1628 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .invest_hero::before {
            content: '';
            position: absolute;
            top: -200px;
            left: -200px;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(26, 175, 239, 0.18) 0%, transparent 70%);
            border-radius: 50%;
            animation: invest_pulse 6s ease-in-out infinite;
        }

        .invest_hero::after {
            content: '';
            position: absolute;
            bottom: -200px;
            right: -100px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(253, 98, 188, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: invest_pulse 8s ease-in-out infinite reverse;
        }

        @keyframes invest_pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.15);
                opacity: 0.7;
            }
        }

        .invest_orb {
            position: absolute;
            border-radius: 50%;
            animation: invest_float 10s ease-in-out infinite;
        }

        .invest_orb-1 {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--invest-blue), transparent);
            border: 2px solid rgba(26, 175, 239, 0.4);
            top: 20%;
            right: 15%;
        }

        .invest_orb-2 {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--invest-pink), transparent);
            border: 2px solid rgba(253, 98, 188, 0.4);
            top: 60%;
            right: 30%;
            animation-delay: 3s;
        }

        .invest_orb-3 {
            width: 120px;
            height: 120px;
            border: 1px solid rgba(26, 175, 239, 0.2);
            top: 75%;
            left: 10%;
            animation-delay: 5s;
        }

        @keyframes invest_float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            33% {
                transform: translateY(-25px) rotate(10deg);
            }

            66% {
                transform: translateY(15px) rotate(-5deg);
            }
        }

        .invest_hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .invest_hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(26, 175, 239, 0.12);
            border: 1px solid rgba(26, 175, 239, 0.35);
            color: var(--invest-blue);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 28px;
            animation: invest_fadeDown 0.8s ease forwards;
        }

        .invest_hero-badge span {
            width: 8px;
            height: 8px;
            background: var(--invest-blue);
            border-radius: 50%;
            display: inline-block;
            animation: invest_blink 1.5s ease infinite;
        }

        @keyframes invest_blink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.2;
            }
        }

        .invest_hero-title {
           
            font-size: clamp(42px, 6vw, 80px);
            font-weight: 900;
            color: var(--invest-white);
            line-height: 1.1;
            margin-bottom: 24px;
            animation: invest_fadeUp 0.9s ease 0.2s both;
        }

        .invest_hero-title .invest_blue {
            color: var(--invest-blue);
        }

        .invest_hero-title .invest_pink {
            color: var(--invest-pink);
        }

        .invest_hero-sub {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.65);
            max-width: 580px;
            line-height: 1.75;
            margin-bottom: 44px;
            animation: invest_fadeUp 0.9s ease 0.35s both;
        }

        .invest_hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: invest_fadeUp 0.9s ease 0.5s both;
        }

        .invest_btn-primary {
            background: linear-gradient(135deg, var(--invest-blue) 0%, #0e87c8 100%);
            color: #fff;
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 8px 30px rgba(26, 175, 239, 0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            cursor: pointer;
           
        }

        .invest_btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(26, 175, 239, 0.5);
        }

        .invest_btn-secondary {
            background: transparent;
            color: var(--invest-white);
            padding: 15px 36px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 2px solid rgba(255, 255, 255, 0.25);
            transition: border-color 0.3s ease, background 0.3s ease;
            cursor: pointer;
           
        }

        .invest_btn-secondary:hover {
            border-color: var(--invest-pink);
            background: rgba(253, 98, 188, 0.08);
        }

        .invest_hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            margin-top: 72px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
            animation: invest_fadeUp 0.9s ease 0.65s both;
        }

        .invest_hero-stat {
            padding: 28px 24px;
            text-align: center;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
        }

        .invest_hero-stat:not(:last-child) {
            border-right: 1px solid rgba(255, 255, 255, 0.08);
        }

        .invest_hero-stat-num {
          
            font-size: 36px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--invest-blue), var(--invest-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 6px;
        }

        .invest_hero-stat-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 400;
        }

        @keyframes invest_fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes invest_fadeDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* SHARED */
        .invest_container {
            max-width: 1340px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .invest_section {
            padding: 100px 0;
        }

        .invest_section-label {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--invest-blue);
            margin-bottom: 12px;
        }

        .invest_section-title {
            font-size: clamp(32px, 4vw, 52px);
            font-weight: 600;
            color: var(--invest-dark);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .invest_section-title .invest_accent-blue {
            color: var(--invest-blue);
        }

        .invest_section-title .invest_accent-pink {
            color: var(--invest-pink);
        }

        .invest_section-desc {
            font-size: 17px;
            color: var(--invest-grey);
            line-height: 1.8;
            max-width: 600px;
        }

        /* OVERVIEW */
        .invest_overview {
            background: #fff;
        }

        .invest_overview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .invest_overview-card-main {
            background: linear-gradient(135deg, var(--invest-dark) 0%, #0d2040 100%);
            border-radius: 24px;
            padding: 48px 40px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--invest-shadow);
        }

        .invest_overview-card-main::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(26, 175, 239, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .invest_cost-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .invest_cost-amount {
           
            font-size: 56px;
            font-weight: 900;
            color: #fff;
            line-height: 1;
            margin-bottom: 6px;
        }

        .invest_cost-amount span {
            font-size: 26px;
            color: var(--invest-blue);
        }

        .invest_cost-range {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.45);
            margin-bottom: 36px;
        }

        .invest_cost-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            margin-bottom: 32px;
        }

        .invest_cost-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .invest_cost-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
        }

        .invest_cost-features li::before {
            content: '✦';
            color: var(--invest-blue);
            font-size: 10px;
            flex-shrink: 0;
        }

        .invest_floating-badge {
            position: absolute;
            bottom: -20px;
            right: 30px;
            background: linear-gradient(135deg, var(--invest-pink), #d93fa0);
            color: #fff;
            padding: 14px 24px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            box-shadow: 0 10px 30px rgba(253, 98, 188, 0.4);
            white-space: nowrap;
            z-index: 10;
        }

        .invest_metrics-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 56px;
        }

        .invest_metric-pill {
            background: var(--invest-soft);
            border-radius: 16px;
            padding: 20px;
            border: 1px solid rgba(26, 175, 239, 0.12);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .invest_metric-pill:hover {
            transform: translateY(-4px);
            box-shadow: var(--invest-shadow);
        }

        .invest_metric-icon {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .invest_metric-num {
           
            font-size: 26px;
            font-weight: 700;
            color: var(--invest-blue);
            line-height: 1;
        }

        .invest_metric-text {
            font-size: 12px;
            color: var(--invest-grey);
            margin-top: 4px;
        }

        /* BENEFITS */
        .invest_benefits {
            background: linear-gradient(180deg, #f4fbff 0%, #fff 100%);
        }

        .invest_benefits-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .invest_benefits-header .invest_section-desc {
            margin: 0 auto;
        }

        .invest_benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .invest_benefit-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px 32px;
            border: 1px solid rgba(26, 175, 239, 0.1);
            position: relative;
            overflow: hidden;
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
        }

        .invest_benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--invest-blue), var(--invest-pink));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .invest_benefit-card:hover::before {
            transform: scaleX(1);
        }

        .invest_benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--invest-shadow);
            border-color: rgba(26, 175, 239, 0.25);
        }

        .invest_benefit-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            margin-bottom: 24px;
        }

        .invest_benefit-icon.invest_blue-icon {
            background: var(--invest-blue-light);
        }

        .invest_benefit-icon.invest_pink-icon {
            background: var(--invest-pink-light);
        }

        .invest_benefit-title {
           
            font-size: 20px;
            font-weight: 700;
            color: var(--invest-dark);
            margin-bottom: 12px;
        }

        .invest_benefit-desc {
            font-size: 14px;
            color: var(--invest-grey);
            line-height: 1.75;
        }

        .invest_benefit-tag {
            display: inline-block;
            margin-top: 20px;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .invest_tag-blue {
            background: var(--invest-blue-light);
            color: var(--invest-blue);
        }

        .invest_tag-pink {
            background: var(--invest-pink-light);
            color: var(--invest-pink);
        }

        /* MODEL */
        .invest_model {
            background: var(--invest-dark);
            position: relative;
            overflow: hidden;
        }

        .invest_model::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 10% 50%, rgba(26, 175, 239, 0.08) 0%, transparent 50%), radial-gradient(circle at 90% 20%, rgba(253, 98, 188, 0.08) 0%, transparent 50%);
        }

        .invest_model-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .invest_model .invest_section-label {
            color: var(--invest-blue);
        }

        .invest_model .invest_section-title {
            color: #fff;
        }

        .invest_model .invest_section-desc {
            color: rgba(255, 255, 255, 0.55);
        }

        .invest_model-steps {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin-top: 40px;
        }

        .invest_model-step {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            position: relative;
            padding-bottom: 32px;
        }

        .invest_model-step:last-child {
            padding-bottom: 0;
        }

        .invest_model-step:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 21px;
            top: 44px;
            width: 2px;
            bottom: 0;
            background: linear-gradient(180deg, rgba(26, 175, 239, 0.4), rgba(253, 98, 188, 0.2));
        }

        .invest_step-dot {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 800;
            flex-shrink: 0;
        }

        .invest_step-dot.invest_dot-blue {
            background: rgba(26, 175, 239, 0.15);
            border: 2px solid var(--invest-blue);
            color: var(--invest-blue);
        }

        .invest_step-dot.invest_dot-pink {
            background: rgba(253, 98, 188, 0.15);
            border: 2px solid var(--invest-pink);
            color: var(--invest-pink);
        }

        .invest_step-content h4 {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 4px;
            padding-top: 10px;
        }

        .invest_step-content p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.6;
        }

        .invest_streams-box {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 40px;
        }

        .invest_streams-title {
           
            font-size: 22px;
            color: #fff;
            margin-bottom: 28px;
            font-weight: 700;
        }

        .invest_stream-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .invest_stream-item:last-child {
            border-bottom: none;
        }

        .invest_stream-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .invest_stream-info h5 {
            font-size: 14px;
            color: #fff;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .invest_stream-info p {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
        }

        .invest_visitor-highlight {
            text-align: center;
            margin-top: 32px;
            padding: 28px;
            background: linear-gradient(135deg, rgba(26, 175, 239, 0.12), rgba(253, 98, 188, 0.08));
            border-radius: 16px;
            border: 1px solid rgba(26, 175, 239, 0.2);
        }

        .invest_visitor-num {
           
            font-size: 52px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--invest-blue), var(--invest-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .invest_visitor-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 8px;
        }

        /* VISION */
        .invest_vision {
            background: #fff;
        }

        .invest_vision-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .invest_vision-header .invest_section-desc {
            margin: 0 auto;
        }

        .invest_vision-timeline {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            position: relative;
            margin-bottom: 80px;
        }

        .invest_vision-timeline::before {
            content: '';
            position: absolute;
            top: 32px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: linear-gradient(90deg, var(--invest-blue), var(--invest-pink), var(--invest-blue));
        }

        .invest_timeline-item {
            text-align: center;
            padding: 0 16px;
        }

        .invest_timeline-dot {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            position: relative;
            z-index: 2;
            transition: transform 0.3s ease;
        }

        .invest_timeline-dot:hover {
            transform: scale(1.15);
        }

        .invest_dot-1 {
            background: linear-gradient(135deg, var(--invest-blue), #0e87c8);
            box-shadow: 0 8px 24px rgba(26, 175, 239, 0.35);
        }

        .invest_dot-2 {
            background: linear-gradient(135deg, var(--invest-pink), #d93fa0);
            box-shadow: 0 8px 24px rgba(253, 98, 188, 0.35);
        }

        .invest_dot-3 {
            background: linear-gradient(135deg, var(--invest-blue), var(--invest-pink));
            box-shadow: 0 8px 24px rgba(26, 175, 239, 0.25);
        }

        .invest_dot-4 {
            background: linear-gradient(135deg, #0a1628, #0d2040);
            border: 2px solid var(--invest-blue);
            box-shadow: 0 8px 24px rgba(26, 175, 239, 0.2);
        }

        .invest_timeline-title {
         
            font-size: 16px;
            font-weight: 700;
            color: var(--invest-dark);
            margin-bottom: 8px;
        }

        .invest_timeline-desc {
            font-size: 13px;
            color: var(--invest-grey);
            line-height: 1.6;
        }

        .invest_vision-pillars {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .invest_pillar {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            padding: 28px;
            border-radius: 16px;
            background: var(--invest-soft);
            border: 1px solid rgba(26, 175, 239, 0.1);
            transition: transform 0.3s ease;
        }

        .invest_pillar:hover {
            transform: translateY(-4px);
        }

        .invest_pillar-icon {
            width: 50px;
            height: 50px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }

        .invest_pillar-icon.invest_pi-blue {
            background: var(--invest-blue-light);
        }

        .invest_pillar-icon.invest_pi-pink {
            background: var(--invest-pink-light);
        }

        .invest_pillar-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--invest-dark);
            margin-bottom: 6px;
        }

        .invest_pillar-desc {
            font-size: 13px;
            color: var(--invest-grey);
            line-height: 1.6;
        }

        /* CONTACT */
        .invest_contact {
            background: linear-gradient(135deg, #0a1628 0%, #0d2040 100%);
            position: relative;
            overflow: hidden;
        }

        .invest_contact::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(253, 98, 188, 0.12) 0%, transparent 70%);
            border-radius: 50%;
        }

        .invest_contact::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(26, 175, 239, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .invest_contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 80px;
            align-items: start;
            position: relative;
            z-index: 1;
        }

        .invest_contact .invest_section-label {
            color: var(--invest-pink);
        }

        .invest_contact .invest_section-title {
            color: #fff;
        }

        .invest_contact .invest_section-desc {
            color: rgba(255, 255, 255, 0.55);
        }

        .invest_contact-details {
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .invest_contact-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .invest_contact-icon {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .invest_contact-icon.invest_ci-blue {
            background: rgba(26, 175, 239, 0.15);
            border: 1px solid rgba(26, 175, 239, 0.3);
        }

        .invest_contact-icon.invest_ci-pink {
            background: rgba(253, 98, 188, 0.15);
            border: 1px solid rgba(253, 98, 188, 0.3);
        }

        .invest_contact-info-label {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.4);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 4px;
        }

        .invest_contact-info-value {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
        }

        .invest_contact-info-value a {
            color: var(--invest-blue);
            text-decoration: none;
        }

        .invest_contact-info-value a:hover {
            color: var(--invest-pink);
        }

        .invest_social-row {
            display: flex;
            gap: 12px;
            margin-top: 36px;
        }

        .invest_social-btn {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.6);
            transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
        }

        .invest_social-btn:hover {
            background: var(--invest-blue);
            color: #fff;
            border-color: var(--invest-blue);
        }

        .invest_form-box {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 48px;
            backdrop-filter: blur(10px);
        }

        .invest_form-title {
          
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }

        .invest_form-subtitle {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.45);
            margin-bottom: 32px;
        }

        .invest_form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }

        .invest_form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 16px;
        }

        .invest_form-label {
            font-size: 12px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.55);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .invest_form-input,
        .invest_form-select,
        .invest_form-textarea {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 14px 18px;
            color: #fff;
            font-size: 14px;
           
            outline: none;
            transition: border-color 0.3s ease, background 0.3s ease;
            width: 100%;
        }

        .invest_form-input::placeholder,
        .invest_form-textarea::placeholder {
            color: rgba(255, 255, 255, 0.25);
        }

        .invest_form-input:focus,
        .invest_form-select:focus,
        .invest_form-textarea:focus {
            border-color: var(--invest-blue);
            background: rgba(26, 175, 239, 0.06);
        }

        .invest_form-select option {
            background: #0d2040;
            color: #fff;
        }

        .invest_form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .invest_form-submit {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--invest-blue) 0%, var(--invest-pink) 100%);
            border: none;
            border-radius: 12px;
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
        
            transition: opacity 0.3s ease, transform 0.3s ease;
            margin-top: 8px;
        }

        .invest_form-submit:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }


        /* INLINE HELPERS */
        .invest_info-row {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 20px;
            border-radius: 14px;
            margin-bottom: 16px;
        }

        .invest_info-row:last-child {
            margin-bottom: 0;
        }

        .invest_info-row-blue {
            background: var(--invest-soft);
            border: 1px solid rgba(26, 175, 239, 0.1);
        }

        .invest_info-row-pink {
            background: var(--invest-soft);
            border: 1px solid rgba(253, 98, 188, 0.1);
        }

        .invest_info-row-title {
            font-weight: 500;
            color: var(--invest-dark);
            font-size: 15px;
        }

        .invest_info-row-desc {
            font-size: 13px;
            color: var(--invest-grey);
            margin-top: 3px;
        }

        .invest_kpi-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 24px;
        }

        .invest_kpi-box {
            border-radius: 16px;
            padding: 24px;
            text-align: center;
        }

        .invest_kpi-box-blue {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(26, 175, 239, 0.15);
        }

        .invest_kpi-box-pink {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(253, 98, 188, 0.15);
        }

        .invest_kpi-num {
          
            font-size: 32px;
            font-weight: 900;
            line-height: 1;
        }

        .invest_kpi-num-blue {
            color: var(--invest-blue);
        }

        .invest_kpi-num-pink {
            color: var(--invest-pink);
        }

        .invest_kpi-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 4px;
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {

            .invest_overview-grid,
            .invest_model-grid,
            .invest_contact-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .invest_benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .invest_vision-timeline {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .invest_vision-timeline::before {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .invest_section {
                padding: 70px 0;
            }

            .invest_benefits-grid {
                grid-template-columns: 1fr;
            }

            .invest_vision-pillars {
                grid-template-columns: 1fr;
            }

            .invest_form-row {
                grid-template-columns: 1fr;
            }

            .invest_form-box {
                padding: 28px;
            }

            .invest_hero-stats {
                grid-template-columns: 1fr;
            }

            .invest_hero-stat:not(:last-child) {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }

            .invest_vision-timeline {
                grid-template-columns: 1fr 1fr;
            }

            .invest_vision-pillars {
                grid-template-columns: 1fr;
            }
        }