﻿

:root {
    --navy: #2b3077;
    --navy-dark: #1f2459;
    --green: #86c440;
    --green-dark: #6da832;
    --ink: #1a1d3a;
    --muted: #5b6079;
    --soft: #f5f7fb;
}

* {
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--ink);
    background: #fff;
}

h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3, .display-4, .display-5, .navbar-brand {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--navy);
}

h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.75rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

p {
    font-size: 1.15rem;
    color: var(--muted);
}

.lead {
    font-size: 1.25rem;
    line-height: 1.65;
    color: var(--muted);
}

.navbar {
    background: rgba(255,255,255,0.92);
    backdrop-filter: saturate(160%) blur(12px);
    transition: all .3s ease;
    padding: .9rem 0;
    border-bottom: 1px solid rgba(43,48,119,0.06);
}

    .navbar.scrolled {
        box-shadow: 0 6px 24px rgba(43,48,119,0.08);
    }

.navbar-brand {
    font-size: 1.4rem;
    color: var(--navy) !important;
}

    .navbar-brand .dot {
        color: var(--green);
    }

.nav-link {
    font-weight: 600;
    color: var(--ink) !important;
    font-size: 1.05rem;
}

    .nav-link:hover {
        color: var(--green) !important;
    }

.btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    padding: .85rem 1.6rem;
    border-radius: 999px;
    font-size: 1.05rem;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn-primary {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    box-shadow: 0 10px 24px rgba(134,196,64,0.35);
}

    .btn-primary:hover {
        background: var(--green-dark);
        border-color: var(--green-dark);
        transform: translateY(-3px);
        box-shadow: 0 16px 30px rgba(134,196,64,0.45);
    }

.btn-outline-light-navy {
    border: 2px solid #fff;
    color: #fff;
}

    .btn-outline-light-navy:hover {
        background: #fff;
        color: var(--navy);
        transform: translateY(-3px);
    }

.btn-navy {
    background: var(--navy);
    color: #fff;
}

    .btn-navy:hover {
        background: var(--navy-dark);
        color: #fff;
        transform: translateY(-3px);
    }

.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(1200px 600px at 85% -10%, rgba(134,196,64,0.18), transparent 60%), radial-gradient(900px 500px at -10% 110%, rgba(134,196,64,0.12), transparent 60%), linear-gradient(135deg, #2b3077 0%, #1f2459 100%);
    color: #fff;
    padding: 9rem 0 6rem;
}

    .hero h1 {
        color: #fff;
        font-size: clamp(2.4rem, 5vw, 4rem);
        line-height: 1.1;
        margin-bottom: 1.25rem;
    }

    .hero p.lead {
        color: rgba(255,255,255,0.85);
        font-size: 1.3rem;
    }

    .hero .pill {
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        background: rgba(134,196,64,0.18);
        border: 1px solid rgba(134,196,64,0.45);
        color: #d9f0b6;
        padding: .5rem 1rem;
        border-radius: 999px;
        font-weight: 600;
        font-size: .95rem;
        margin-bottom: 1.5rem;
    }

.hero-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

    .hero-img-wrap img {
        width: 100%;
        height: 520px;
        object-fit: cover;
        display: block;
    }

.hero-stat {
    position: absolute;
    background: #fff;
    color: var(--navy);
    border-radius: 16px;
    padding: .9rem 1.1rem;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: .7rem;
    animation: float 5s ease-in-out infinite;
    font-size: 1rem;
}

    .hero-stat .ic {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        color: #fff;
        font-size: 1.2rem;
    }

    .hero-stat .sub {
        color: #8a90a8;
        font-weight: 500;
        font-size: .85rem;
        display: block;
    }

    .hero-stat.s1 {
        top: 18px;
        left: -18px;
    }

    .hero-stat.s2 {
        bottom: 24px;
        right: -12px;
        animation-delay: 1.5s;
    }

@keyframes float {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

section {
    padding: 5.5rem 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 700;
    color: var(--green);
    font-size: .95rem;
    margin-bottom: .75rem;
}

.section-soft {
    background: var(--soft);
}

.feature-card {
    background: #fff;
    border: 1px solid rgba(43,48,119,0.08);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 48px rgba(43,48,119,0.14);
        border-color: rgba(134,196,64,0.45);
    }

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    color: #fff;
    background: linear-gradient(135deg, var(--navy), #3a4099);
    margin-bottom: 1.25rem;
}

    .feature-icon.green {
        background: linear-gradient(135deg, var(--green), var(--green-dark));
    }

.feature-card ul {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

    .feature-card ul li {
        padding: .4rem 0 .4rem 1.8rem;
        position: relative;
        color: var(--ink);
        font-size: 1.1rem;
    }

        .feature-card ul li::before {
            content: "\F26B";
            font-family: "bootstrap-icons";
            position: absolute;
            left: 0;
            top: .45rem;
            color: var(--green);
            font-size: 1.1rem;
        }

.split-img {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(43,48,119,0.18);
}

    .split-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.audience-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #fff;
    border: 1px solid rgba(43,48,119,0.12);
    padding: .7rem 1.15rem;
    border-radius: 999px;
    margin: .3rem;
    font-weight: 600;
    color: var(--navy);
    font-size: 1.05rem;
    transition: all .25s ease;
}

    .audience-tag:hover {
        background: var(--green);
        color: #fff;
        border-color: var(--green);
        transform: translateY(-3px);
    }

    .audience-tag i {
        color: var(--green);
    }

    .audience-tag:hover i {
        color: #fff;
    }

.cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, #383f9e 100%);
    color: #fff;
    border-radius: 28px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

    .cta-band::before {
        content: "";
        position: absolute;
        right: -80px;
        top: -80px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(134,196,64,0.35), transparent 70%);
    }

    .cta-band h2 {
        color: #fff;
    }

    .cta-band p {
        color: rgba(255,255,255,0.85);
    }

.ideal-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem 1.4rem;
    border: 1px solid rgba(43,48,119,0.08);
    transition: all .3s ease;
}

    .ideal-item:hover {
        transform: translateX(6px);
        border-color: var(--green);
    }

    .ideal-item .ic {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 12px;
        background: rgba(134,196,64,0.15);
        color: var(--green-dark);
        display: grid;
        place-items: center;
        font-size: 1.25rem;
    }

    .ideal-item p {
        margin: 0;
        color: var(--ink);
        font-weight: 600;
        font-size: 1.1rem;
    }

.contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(43,48,119,0.08);
    transition: all .3s ease;
    height: 100%;
}

    .contact-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(43,48,119,0.12);
    }

    .contact-card .ic {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        background: linear-gradient(135deg, var(--green), var(--green-dark));
        color: #fff;
        display: grid;
        place-items: center;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .contact-card a {
        color: var(--navy);
        font-weight: 700;
        text-decoration: none;
        font-size: 1.15rem;
        word-break: break-word;
    }

        .contact-card a:hover {
            color: var(--green-dark);
        }

footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.78);
    padding: 3rem 0 2rem;
    font-size: 1.05rem;
}

    footer a {
        color: #fff;
        text-decoration: none;
    }

        footer a:hover {
            color: var(--green);
        }

.footer-brand {
    color: #fff;
    font-family: 'Plus Jakarta Sans';
    font-weight: 800;
    font-size: 1.3rem;
}

    .footer-brand .dot {
        color: var(--green);
    }

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal.delay-1 {
        transition-delay: .12s;
    }

    .reveal.delay-2 {
        transition-delay: .24s;
    }

    .reveal.delay-3 {
        transition-delay: .36s;
    }

@media (max-width: 768px) {
    .hero {
        padding: 7rem 0 4rem;
        text-align: center;
    }

    .hero-stat {
        display: none;
    }

    .cta-band {
        padding: 2.25rem 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    body {
        font-size: 1.12rem;
    }
}

