:root {
    --dark-bg: #050B32;
    --dark-surface: #092052;
    --dark-card: #0b1a4a;
    --teal: #097CAC;
    --teal-light: #3ba8d4;
    --teal-glow: rgba(9, 124, 172, 0.3);
    --accent-gradient: linear-gradient(135deg, #097CAC, #3ba8d4, #06b6d4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--dark-bg);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

@keyframes lineDrop {
    0% { top: -50%; }
    100% { top: 150%; }
}
@keyframes particleFloat {
    0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
    25% { opacity: 0.6; }
    50% { opacity: 0.8; transform: translateY(-40px) scale(1.5); }
    75% { opacity: 0.4; }
}
@keyframes ctaLineMove {
    0% { left: -200px; }
    100% { left: 110%; }
}

.cu-page {
    p { margin-bottom: 0; }

    .bg-lines {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        pointer-events: none;
        z-index: 0;
        overflow: hidden;
    }
    .bg-lines .line {
        position: absolute;
        width: 1px;
        height: 100%;
        top: 0;
        background: linear-gradient(180deg, transparent, rgba(9,124,172,0.08), transparent);
    }
    .bg-lines .line::after {
        content: '';
        display: block;
        position: absolute;
        top: -50%;
        left: 0;
        width: 100%;
        height: 15vh;
        background: linear-gradient(180deg, transparent, var(--teal-glow), transparent);
        animation: lineDrop 6s ease-in-out infinite;
    }
    .bg-lines .line:nth-child(1) { left: 10%; }
    .bg-lines .line:nth-child(1)::after { animation-delay: 0s; animation-duration: 7s; }
    .bg-lines .line:nth-child(2) { left: 30%; }
    .bg-lines .line:nth-child(2)::after { animation-delay: 1.5s; animation-duration: 8s; }
    .bg-lines .line:nth-child(3) { left: 50%; }
    .bg-lines .line:nth-child(3)::after { animation-delay: 3s; animation-duration: 6s; }
    .bg-lines .line:nth-child(4) { left: 70%; }
    .bg-lines .line:nth-child(4)::after { animation-delay: 4.5s; animation-duration: 9s; }
    .bg-lines .line:nth-child(5) { left: 90%; }
    .bg-lines .line:nth-child(5)::after { animation-delay: 2s; animation-duration: 7.5s; }

    .particles {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        pointer-events: none;
        z-index: 0;
    }
    .particle {
        position: absolute;
        width: 4px; height: 4px;
        background: var(--teal);
        border-radius: 50%;
        opacity: 0;
        animation: particleFloat 8s ease-in-out infinite;
    }
    .particle:nth-child(1) { left: 15%; top: 20%; animation-delay: 0s; }
    .particle:nth-child(2) { left: 45%; top: 60%; animation-delay: 2s; }
    .particle:nth-child(3) { left: 75%; top: 30%; animation-delay: 4s; }
    .particle:nth-child(4) { left: 25%; top: 80%; animation-delay: 1s; }
    .particle:nth-child(5) { left: 85%; top: 70%; animation-delay: 3s; }
    .particle:nth-child(6) { left: 55%; top: 10%; animation-delay: 5s; }

    .z-1 { position: relative; z-index: 1; }
    .text-teal { color: var(--teal) !important; }
    .text-gray { color: #94a3b8; }
    .bg-card { background-color: var(--dark-card); }

    .fs-7 { font-size: 16px !important; }
    .fs-8 { font-size: 15px !important; }
    .fs-9 { font-size: 14px !important; }

    .section-label {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--teal-light);
        margin-bottom: 12px;
        padding: 6px 16px;
        border: 1px solid rgba(9,124,172,0.3);
        border-radius: 50px;
    }
    .section-title {
        color: #fff;
        font-size: 2.8rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
        font-family: "poppins_700" !important;
    }
    .section-subtitle {
        font-size: 1.1rem;
        color: #94a3b8;
        max-width: 800px;
    }
    .hero-highlight {
        background: var(--accent-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* ===== Hero ===== */
    .hero-section {
        padding: 50px 0;
        position: relative;
        overflow: hidden;
    }
    .hero-glow {
        position: absolute;
        width: 600px; height: 600px;
        border-radius: 50%;
        filter: blur(150px);
        opacity: 0.15;
        pointer-events: none;
    }
    .hero-glow-1 { background: var(--teal); top: -150px; left: -100px; }
    .hero-glow-2 { background: #6366f1; bottom: -200px; right: -100px; }

    /* ===== Contact Section ===== */
    .contact-section {
        padding: 60px 0 100px;
        position: relative;
        overflow: hidden;
    }
    .contact-section .cta-bg-lines {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        pointer-events: none;
    }
    .contact-section .cta-bg-lines span {
        position: absolute;
        width: 200px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--teal-glow), transparent);
        animation: ctaLineMove 5s linear infinite;
    }
    .contact-section .cta-bg-lines span:nth-child(1) { top: 20%; left: -200px; animation-delay: 0s; }
    .contact-section .cta-bg-lines span:nth-child(2) { top: 50%; left: -200px; animation-delay: 2s; }
    .contact-section .cta-bg-lines span:nth-child(3) { top: 80%; left: -200px; animation-delay: 4s; }

    .contact-info-card {
        background: linear-gradient(135deg, rgba(9,124,172,0.06), rgba(9,124,172,0.02));
        border: 1px solid rgba(9,124,172,0.12);
        border-radius: 20px;
        padding: 32px;
        position: relative;
        overflow: hidden;
    }
    .contact-info-card::before {
        content: '';
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 2px;
        background: var(--accent-gradient);
    }
    .contact-info-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .contact-info-item:last-child { border-bottom: none; }
    .contact-info-icon {
        width: 44px; height: 44px;
        min-width: 44px;
        border-radius: 12px;
        background: rgba(9,124,172,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--teal-light);
        font-size: 1.1rem;
    }

    .contact-form-wrapper {
        min-height: 600px;
    }
    .contact-form-iframe {
        width: 100%;
        height: 100%;
        min-height: 580px;
        border: none;
        border-radius: 14px;
    }


    /* ===== Why Section ===== */
    .why-section {
        padding: 80px 0;
        background-color: var(--dark-surface);
    }
    .why-card {
        background: var(--dark-card);
        border: 1px solid rgba(255,255,255,0.06);
        border-radius: 20px;
        padding: 32px 24px;
        text-align: center;
        transition: all 0.4s ease;
    }
    .why-card:hover {
        border-color: rgba(9,124,172,0.25);
        transform: translateY(-6px);
    }
    .why-icon {
        width: 60px; height: 60px;
        background: linear-gradient(135deg, rgba(9,124,172,0.15), rgba(9,124,172,0.05));
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--teal-light);
        margin-bottom: 18px;
    }

    /* ===== CTA Banner Section ===== */
    .cta-banner-section {
        padding: 80px 0 100px;
    }
    .cta-banner {
        background: linear-gradient(135deg, var(--dark-card), var(--dark-surface));
        border: 1px solid rgba(9,124,172,0.2);
        border-radius: 24px;
        padding: 60px 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .cta-banner::before {
        content: '';
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 3px;
        background: var(--accent-gradient);
    }
    .cta-banner h2 {
        font-size: 2rem;
    }
    .btn-raise-capital {
        display: inline-flex;
        align-items: center;
        background: var(--accent-gradient);
        border: none;
        color: #fff;
        padding: 14px 36px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.95rem;
        text-decoration: none;
        transition: all 0.4s ease;
        box-shadow: 0 4px 25px var(--teal-glow);
    }
    .btn-raise-capital:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 40px rgba(9,124,172,0.5);
        color: #fff;
    }

    /* ======== iPad (801px – 1320px) ======== */
    @media (min-width: 801px) and (max-width: 1320px) {
        .hero-section { padding-top: 80px; padding-bottom: 40px; }
        .section-title { font-size: 2.2rem; }
        .section-subtitle { font-size: 1rem; }
        .contact-section { padding: 50px 0 80px; }
        .contact-info-card { padding: 28px; }
        .contact-form-wrapper { min-height: 500px; }
        .contact-form-iframe { min-height: 480px; }
        .why-section { padding: 60px 0; }
        .why-card { padding: 28px 20px; }
        .cta-banner-section { padding: 0 0 80px; }
        .cta-banner { padding: 50px 32px; }
    }

    /* ======== Mobile (max-width: 800px) ======== */
    @media (max-width: 800px) {
        .container { padding-left: 15px !important; padding-right: 15px !important; }

        .hero-section { padding-top: 60px; padding-bottom: 30px; }
        .section-title { color: #fff !important; -webkit-text-fill-color: #fff; font-size: 1.9rem; }
        .section-subtitle { font-size: 1rem; }

        .contact-section { padding: 40px 0 60px; }
        .contact-info-card { padding: 24px 18px; }
        .contact-info-icon { width: 38px; height: 38px; min-width: 38px; font-size: 1rem; }
        .contact-form-wrapper { min-height: 450px; }
        .contact-form-iframe { min-height: 430px; }
        .why-section { padding: 50px 0; }
        .why-card { padding: 24px 18px; }
        .why-icon { width: 50px; height: 50px; font-size: 1.3rem; }
        .cta-banner-section { padding: 0 0 60px; }
        .cta-banner { padding: 40px 24px; border-radius: 18px; }
        .cta-banner h2 { font-size: 1.6rem; }
        .btn-raise-capital { padding: 12px 28px; font-size: 0.9rem; }
    }

    /* ======== Small Mobile (max-width: 576px) ======== */
    @media (max-width: 576px) {
        .hero-section { padding-top: 40px; padding-bottom: 20px; }
        .section-title { font-size: 1.6rem; }
        .section-subtitle { font-size: 0.92rem; }
        .section-label { font-size: 0.65rem; letter-spacing: 2px; padding: 4px 12px; }
        .contact-section { padding: 30px 0 50px; }
        .contact-info-card { padding: 20px 14px; border-radius: 14px; }
        .contact-info-item { gap: 12px; padding: 12px 0; }
        .contact-info-icon { width: 34px; height: 34px; min-width: 34px; font-size: 0.9rem; border-radius: 10px; }
        .contact-form-wrapper { min-height: 400px; }
        .contact-form-iframe { min-height: 380px; }
        .why-section { padding: 40px 0; }
        .why-card { padding: 20px 14px; border-radius: 14px; }
        .why-icon { width: 44px; height: 44px; font-size: 1.1rem; margin-bottom: 12px; }
        .cta-banner-section { padding: 50px 0; }
        .cta-banner { padding: 36px 18px; border-radius: 16px; }
        .cta-banner h2 { font-size: 1.4rem; }
        .btn-raise-capital { padding: 10px 24px; font-size: 0.85rem; }
    }
}