: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 orbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes ctaLineMove {
    0% { left: -200px; }
    100% { left: 110%; }
}

.pwu-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; }
    .particle:nth-child(7) { left: 5%;  top: 50%; animation-delay: 1.5s; }
    .particle:nth-child(8) { left: 65%; top: 90%; animation-delay: 3.5s; }

    .z-1 { position: relative; z-index: 1; }
    .text-teal { color: var(--teal) !important; }
    .text-gray { color: #94a3b8; }
    .bg-surface { background-color: var(--dark-surface); }
    .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-highlight-gradient {
        background: linear-gradient(90deg, #097CAC 0%, #06b6d4 40%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-style: italic;
    }

    /* ===== Hero ===== */
    .hero-section {
        min-height: 90vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        padding-top: 60px;
    }
    .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; }
    .hero-title {
        font-size: 4.2rem;
        font-weight: 900;
        line-height: 1.1;
    }
    .hero-desc {
        font-size: 1.15rem;
        color: #94a3b8;
        line-height: 1.7;
        max-width: 550px;
    }
    .hero-desc strong { color: #fff; }
    .hero-visual { position: relative; }
    .hero-visual .orbit-ring {
        position: absolute;
        border: 1px solid rgba(9,124,172,0.2);
        border-radius: 50%;
        animation: orbitSpin 20s linear infinite;
    }
    .hero-visual .orbit-ring:nth-child(1) { width: 350px; height: 350px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
    .hero-visual .orbit-ring:nth-child(2) { width: 250px; height: 250px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-direction: reverse; animation-duration: 15s; }
    .hero-visual .orbit-ring:nth-child(3) { width: 150px; height: 150px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-duration: 10s; }
    .hero-card-float {
        position: absolute;
        background: rgba(11, 26, 74, 0.8);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(9,124,172,0.2);
        border-radius: 16px;
        padding: 20px 24px;
        animation: floatUpDown 4s ease-in-out infinite;
    }
    .hero-card-float:nth-child(4) { top: 10%; right: 5%; animation-delay: 0s; }
    .hero-card-float:nth-child(5) { bottom: 15%; left: 0%; animation-delay: 2s; }
    .feature-icon-circle-sm {
        width: 44px; height: 44px;
        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.2rem;
        color: var(--teal-light);
    }
    .btn-white {
        background: #fff; color: #0a0f1a; border: none;
        padding: 14px 32px; border-radius: 12px;
        font-weight: 600; font-size: 0.95rem;
        transition: background 0.3s, transform 0.2s; text-decoration: none;
    }
    .btn-white:hover { background: #e0e0e0; color: #0a0f1a; transform: translateY(-2px); }
    .btn-outline-light {
        background: rgba(255,255,255,0.05); color: #fff;
        border: 1px solid rgba(255,255,255,0.2);
        padding: 14px 32px; border-radius: 12px;
        font-weight: 600; font-size: 0.95rem;
        transition: background 0.3s, border-color 0.3s, transform 0.2s; text-decoration: none;
    }
    .btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); color: #fff; transform: translateY(-2px); }

    /* ===== Partnership Section (light bg) ===== */
    .section-label--light {
        color: var(--teal);
        border-color: rgba(9,124,172,0.25);
    }
    .section-title--light {
        color: #0f172a;
        -webkit-text-fill-color: #0f172a;
    }
    .section-title--light .hero-highlight {
        -webkit-text-fill-color: transparent;
    }
    .section-subtitle--light {
        color: #5a6a7a;
    }
    .partnership-section {
        padding: 80px 0;
        background: #f0f7fb;
        border-top: 1px solid #d6e8f0;
        border-bottom: 1px solid #d6e8f0;
        position: relative;
        overflow: hidden;
    }

    /* Section Floating Particles */
    .svc-particles {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        pointer-events: none;
        z-index: 0;
    }
    .svc-particles .svc-dot {
        position: absolute;
        border-radius: 50%;
        opacity: 0;
        animation: svcFloat 7s ease-in-out infinite;
    }
    .svc-dot--1 { width: 8px; height: 8px; background: rgba(9,124,172,0.25); left: 8%; top: 15%; animation-delay: 0s; }
    .svc-dot--2 { width: 5px; height: 5px; background: rgba(9,124,172,0.2); left: 92%; top: 25%; animation-delay: 1.5s; }
    .svc-dot--3 { width: 12px; height: 12px; background: rgba(9,124,172,0.12); left: 20%; top: 75%; animation-delay: 3s; }
    .svc-dot--4 { width: 6px; height: 6px; background: rgba(9,124,172,0.22); left: 80%; top: 65%; animation-delay: 4.5s; }
    .svc-dot--5 { width: 10px; height: 10px; background: rgba(9,124,172,0.15); left: 50%; top: 10%; animation-delay: 2s; }
    .svc-dot--6 { width: 7px; height: 7px; background: rgba(9,124,172,0.18); left: 35%; top: 90%; animation-delay: 5.5s; }
    @keyframes svcFloat {
        0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
        25% { opacity: 0.7; }
        50% { opacity: 1; transform: translateY(-20px) scale(1.3); }
        75% { opacity: 0.5; }
    }

    /* Decorative rings */
    .partnership-section::before,
    .partnership-section::after {
        content: '';
        position: absolute;
        border: 1px solid rgba(9,124,172,0.08);
        border-radius: 50%;
        pointer-events: none;
    }
    .partnership-section::before {
        width: 300px; height: 300px;
        top: -80px; right: -80px;
        animation: orbitSpin 30s linear infinite;
    }
    .partnership-section::after {
        width: 200px; height: 200px;
        bottom: -60px; left: -60px;
        animation: orbitSpin 25s linear infinite reverse;
    }

    /* Partnership Cards Grid */
    .partnership-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
        position: relative;
        z-index: 1;
    }

    /* Card */
    .pwu-card {
        background: #ffffff;
        border: 1px solid rgba(9,124,172,0.15);
        border-radius: 14px;
        padding: 28px 24px 24px;
        box-shadow: 0 3px 12px rgba(9,124,172,0.08);
        transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
        display: flex;
        flex-direction: column;
    }
    .pwu-card:hover {
        border-color: var(--teal);
        box-shadow: 0 8px 28px rgba(9,124,172,0.15);
        transform: translateY(-4px);
    }

    /* Card Header */
    .pwu-card-head {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 14px;
    }
    .pwu-card-num {
        width: 36px; height: 36px;
        min-width: 36px;
        background: var(--accent-gradient);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.95rem;
        font-weight: 800;
        color: #fff;
        box-shadow: 0 3px 10px var(--teal-glow);
    }
    .pwu-card-head h3 {
        margin: 0;
        font-size: 20px;
        font-weight: 700;
        color: #0f172a;
        line-height: 1.35;
    }

    /* Card Description */
    .pwu-card-desc {
        color: #4b5563;
        font-size: 0.82rem;
        line-height: 1.55;
        margin-bottom: 10px;
    }

    /* Card List */
    .pwu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .pwu-list li {
        padding: 4px 0 4px 16px;
        color: #374151;
        font-size: 0.8rem;
        line-height: 1.5;
        position: relative;
    }
    .pwu-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 11px;
        width: 6px; height: 6px;
        border-radius: 50%;
        background: var(--teal);
    }

    /* ===== 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;
    }
    .btn-raise-outline {
        display: inline-flex;
        align-items: center;
        background: transparent;
        border: 1px solid rgba(255,255,255,0.2);
        color: #fff;
        padding: 14px 36px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.95rem;
        text-decoration: none;
        transition: all 0.4s ease;
    }
    .btn-raise-outline:hover {
        transform: translateY(-3px);
        border-color: rgba(255,255,255,0.4);
        background: rgba(255,255,255,0.05);
        color: #fff;
    }

    /* ======== iPad (801px - 1320px) ======== */
    @media (min-width: 801px) and (max-width: 1320px) {
        .hero-section { min-height: auto; padding-top: 120px; padding-bottom: 60px; }
        .hero-title { font-size: 2.8rem; }
        .hero-desc { font-size: 1.05rem; }
        .hero-visual { display: none; }
        .section-title { font-size: 2.2rem; }
        .section-subtitle { font-size: 1rem; }

        .partnership-section { padding: 50px 0; }
        .partnership-grid { gap: 16px; }
        .pwu-card { padding: 22px 18px 18px; }
        .pwu-card-head h3 { font-size: 0.95rem; }
        .pwu-card-desc { font-size: 0.78rem; }
        .pwu-list li { font-size: 0.76rem; padding: 3px 0 3px 14px; }
        .pwu-list li::before { top: 9px; width: 5px; height: 5px; }

        .cta-banner-section { padding: 0 0 80px; }
        .cta-banner { padding: 50px 32px; }
        .btn-white, .btn-outline-light { padding: 12px 24px; font-size: 0.9rem; }
    }

    /* ======== Mobile (max-width: 800px) ======== */
    @media (max-width: 800px) {
        .container { padding-left: 15px !important; padding-right: 15px !important; }

        .hero-section { min-height: auto; padding-top: 120px; padding-bottom: 60px; }
        .hero-title { font-size: 2.4rem; }
        .hero-desc { font-size: 1.05rem; }
        .hero-visual { display: none; }

        .section-title { color: #fff !important; -webkit-text-fill-color: #fff; font-size: 1.9rem; }
        .section-subtitle { font-size: 1rem; }

        .partnership-section { padding: 40px 0; }
        .partnership-grid { grid-template-columns: 1fr; gap: 14px; }
        .pwu-card { padding: 20px 18px 16px; border-radius: 12px; }
        .pwu-card-head h3 { font-size: 0.95rem; }
        .pwu-card-desc { font-size: 0.78rem; }
        .pwu-list li { font-size: 0.76rem; padding: 3px 0 3px 14px; }
        .pwu-list li::before { top: 9px; width: 5px; height: 5px; }

        .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; }
        .btn-raise-outline { padding: 12px 28px; font-size: 0.9rem; }
        .btn-white, .btn-outline-light { padding: 12px 24px; font-size: 0.9rem; }
    }

    /* ======== Small Mobile (max-width: 576px) ======== */
    @media (max-width: 576px) {
        .hero-section { padding-top: 40px; padding-bottom: 40px; }
        .hero-title { font-size: 1.9rem; }
        .hero-desc { font-size: 0.95rem; }
        .section-title { font-size: 1.6rem; }
        .section-subtitle { font-size: 0.92rem; }
        .section-label { font-size: 0.65rem; letter-spacing: 2px; padding: 4px 12px; }

        .partnership-section { padding: 30px 0; }
        .partnership-grid { gap: 10px; }
        .pwu-card { padding: 16px 14px 14px; border-radius: 10px; }
        .pwu-card-num { width: 30px; height: 30px; min-width: 30px; font-size: 0.8rem; }
        .pwu-card-head { gap: 10px; margin-bottom: 10px; }
        .pwu-card-head h3 { font-size: 0.88rem; }
        .pwu-card-desc { font-size: 0.74rem; margin-bottom: 8px; }
        .pwu-list li { font-size: 0.73rem; padding: 2px 0 2px 12px; }
        .pwu-list li::before { top: 8px; width: 4px; height: 4px; }

        .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; }
        .btn-raise-outline { padding: 10px 24px; font-size: 0.85rem; }
        .btn-white, .btn-outline-light { padding: 10px 20px; font-size: 0.85rem; border-radius: 10px; }
    }
}