﻿:root {
    --blue: #1565C0;
    --blue-light: #1E88E5;
    --blue-pale: #E3F2FD;
    --green: #2E7D32;
    --green-light: #43A047;
    --green-pale: #E8F5E9;
    --gold: #F9A825;
    --gold-pale: #FFF8E1;
    --white: #ffffff;
    --off-white: #F7FBF7;
    --text-dark: #1a2e1a;
    --text-mid: #3a4a3a;
    --radius: 22px;
    --shadow-blue: 0 12px 40px rgba(21,101,192,0.18);
    --shadow-green: 0 12px 40px rgba(46,125,50,0.18);
    --shadow-gold: 0 12px 40px rgba(249,168,37,0.22);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(21,101,192,0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

    .nav-logo img {
        height: 54px;
        width: auto;
        object-fit: contain;
    }

.nav-links {
    display: flex;
    gap: 6px;
    list-style: none;
    align-items: center;
}

    .nav-links a {
        text-decoration: none;
        font-weight: 700;
        font-size: 0.93rem;
        color: var(--text-mid);
        padding: 8px 16px;
        border-radius: 50px;
        transition: background .2s, color .2s;
    }

        .nav-links a:hover {
            background: var(--blue-pale);
            color: var(--blue);
        }

        .nav-links a.active {
            color: var(--blue);
            background: var(--blue-pale);
        }

        .nav-links a.cta {
            background: var(--blue);
            color: white;
            padding: 8px 22px;
        }

            .nav-links a.cta:hover {
                background: var(--blue-light);
            }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

    .hamburger span {
        display: block;
        width: 26px;
        height: 3px;
        background: var(--blue);
        border-radius: 3px;
        transition: all .3s;
    }

/* ── HERO ── */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, #E3F2FD 0%, #F7FBF7 50%, #E8F5E9 100%);
    padding: 80px 5vw 70px;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

    .hero-bg span {
        position: absolute;
        border-radius: 50%;
        opacity: .10;
    }

        .hero-bg span:nth-child(1) {
            width: 480px;
            height: 480px;
            background: var(--blue);
            top: -180px;
            left: -120px;
        }

        .hero-bg span:nth-child(2) {
            width: 360px;
            height: 360px;
            background: var(--green);
            bottom: -140px;
            right: -80px;
        }

        .hero-bg span:nth-child(3) {
            width: 220px;
            height: 220px;
            background: var(--gold);
            top: 30%;
            left: 60%;
            opacity: .07;
        }

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-pale);
    color: var(--blue);
    font-weight: 800;
    font-size: 0.78rem;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 22px;
    animation: fadeUp .6s ease both;
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 22px;
    animation: fadeUp .7s .1s ease both;
}

    .hero-title .blue {
        color: var(--blue);
    }

    .hero-title .green {
        color: var(--green);
    }

.hero-desc {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto 40px;
    animation: fadeUp .7s .2s ease both;
}

.hero-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    animation: fadeUp .7s .3s ease both;
}

.pill {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--white);
    border: 2px solid var(--blue-pale);
    border-radius: 50px;
    padding: 7px 18px;
    font-weight: 700;
    font-size: 0.87rem;
    color: var(--text-mid);
    box-shadow: 0 2px 10px rgba(21,101,192,.07);
}

    .pill .dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
    }

.dot-blue {
    background: var(--blue);
}

.dot-green {
    background: var(--green-light);
}

.dot-gold {
    background: var(--gold);
}

/* ── BREADCRUMB ── */
.breadcrumb {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 5vw 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 8px;
}

    .breadcrumb a {
        color: var(--blue);
        text-decoration: none;
    }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

    .breadcrumb span {
        opacity: .5;
    }

/* ── CARDS SECTION ── */
.cards-section {
    padding: 72px 5vw 90px;
    max-width: 1200px;
    margin: 0 auto;
}

.cards-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green);
    font-weight: 800;
    font-size: 0.76rem;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cards-header h2 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    color: var(--text-dark);
}

/* ── ACTION CARDS GRID ── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.action-card {
    border-radius: 28px;
    padding: 44px 36px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    cursor: default;
}

    .action-card:hover {
        transform: translateY(-10px);
    }

/* Card 1 — Investor (Blue) */
.card-investor {
    background: linear-gradient(160deg, #E3F2FD 0%, #BBDEFB 100%);
    box-shadow: var(--shadow-blue);
    border: 2px solid rgba(21,101,192,.12);
}

    .card-investor:hover {
        box-shadow: 0 24px 60px rgba(21,101,192,.28);
    }

/* Card 2 — Books (Green) */
.card-books {
    background: linear-gradient(160deg, #E8F5E9 0%, #C8E6C9 100%);
    box-shadow: var(--shadow-green);
    border: 2px solid rgba(46,125,50,.12);
}

    .card-books:hover {
        box-shadow: 0 24px 60px rgba(46,125,50,.28);
    }

/* Card 3 — Refer (Gold) */
.card-refer {
    background: linear-gradient(160deg, #FFF9C4 0%, #FFE082 100%);
    box-shadow: var(--shadow-gold);
    border: 2px solid rgba(249,168,37,.20);
}

    .card-refer:hover {
        box-shadow: 0 24px 60px rgba(249,168,37,.38);
    }

/* Card top accent bar */
.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 28px 28px 0 0;
}

.card-investor::before {
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

.card-books::before {
    background: linear-gradient(90deg, var(--green), var(--green-light));
}

.card-refer::before {
    background: linear-gradient(90deg, #F57F17, var(--gold));
}

/* Icon bubble */
.card-icon-wrap {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    margin-bottom: 26px;
    position: relative;
}

.card-investor .card-icon-wrap {
    background: var(--white);
    box-shadow: 0 6px 24px rgba(21,101,192,.18);
}

.card-books .card-icon-wrap {
    background: var(--white);
    box-shadow: 0 6px 24px rgba(46,125,50,.18);
}

.card-refer .card-icon-wrap {
    background: var(--white);
    box-shadow: 0 6px 24px rgba(249,168,37,.25);
}

/* Badge on icon */
.icon-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    border: 2px solid var(--white);
}

.badge-blue {
    background: var(--blue);
}

.badge-green {
    background: var(--green);
}

.badge-gold {
    background: #F57F17;
}

.card-number {
    position: absolute;
    top: 20px;
    right: 22px;
    font-family: 'Fredoka One', cursive;
    font-size: 3.5rem;
    opacity: .08;
    line-height: 1;
}

.card-investor .card-number {
    color: var(--blue);
}

.card-books .card-number {
    color: var(--green);
}

.card-refer .card-number {
    color: #E65100;
}

.action-card h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.55rem;
    margin-bottom: 14px;
    line-height: 1.2;
}

.card-investor h2 {
    color: var(--blue);
}

.card-books h2 {
    color: var(--green);
}

.card-refer h2 {
    color: #E65100;
}

.action-card p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 32px;
    flex-grow: 1;
}

/* Feature list inside card */
.card-features {
    list-style: none;
    text-align: left;
    width: 100%;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .card-features li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.88rem;
        font-weight: 700;
        color: var(--text-mid);
    }

.feat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.feat-dot-blue {
    background: var(--blue);
}

.feat-dot-green {
    background: var(--green-light);
}

.feat-dot-gold {
    background: var(--gold);
}

/* Card CTA button */
.card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .18s, box-shadow .18s;
    letter-spacing: .01em;
}

    .card-btn:hover {
        transform: translateY(-3px);
    }

.btn-investor {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(21,101,192,.35);
}

    .btn-investor:hover {
        box-shadow: 0 14px 36px rgba(21,101,192,.45);
    }

.btn-books {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(46,125,50,.35);
}

    .btn-books:hover {
        box-shadow: 0 14px 36px rgba(46,125,50,.45);
    }

.btn-refer {
    background: linear-gradient(135deg, #E65100 0%, var(--gold) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(249,168,37,.40);
}

    .btn-refer:hover {
        box-shadow: 0 14px 36px rgba(249,168,37,.55);
    }

.btn-arrow {
    font-size: 1.1rem;
    transition: transform .2s;
}

.card-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ── TRUST STRIP ── */
.trust-strip {
    background: var(--white);
    border-top: 1px solid #E8F0E8;
    border-bottom: 1px solid #E8F0E8;
    padding: 32px 5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 180px;
    max-width: 240px;
    text-align: center;
    padding: 8px 24px;
    border-right: 1px solid #E0E0E0;
}

    .trust-item:last-child {
        border-right: none;
    }

.trust-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 6px;
}

.trust-label {
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--text-mid);
    letter-spacing: .03em;
}

    .trust-label span {
        display: block;
        font-family: 'Fredoka One', cursive;
        font-size: 1.3rem;
        color: var(--blue);
        margin-bottom: 2px;
    }

/* ── FAQ TEASER ── */
.faq-teaser {
    background: linear-gradient(135deg, var(--blue) 0%, #1976D2 100%);
    color: white;
    padding: 64px 5vw;
    text-align: center;
}

    .faq-teaser h2 {
        font-family: 'Fredoka One', cursive;
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
        margin-bottom: 14px;
    }

    .faq-teaser p {
        font-size: 1rem;
        font-weight: 600;
        opacity: .88;
        line-height: 1.7;
        max-width: 560px;
        margin: 0 auto 32px;
    }

.faq-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    background: var(--white);
    color: var(--blue);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.97rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
    transition: transform .18s, box-shadow .18s;
}

    .btn-white:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(0,0,0,.22);
    }

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    background: transparent;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.97rem;
    text-decoration: none;
    border: 2.5px solid rgba(255,255,255,.6);
    transition: background .18s, border-color .18s, transform .18s;
}

    .btn-outline-white:hover {
        background: rgba(255,255,255,.12);
        border-color: white;
        transform: translateY(-3px);
    }

/* ── FOOTER ── */
footer {
    background: linear-gradient(135deg, #0D47A1 0%, #1B5E20 100%);
    color: white;
    padding: 52px 5vw 26px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,.15);
    margin-bottom: 24px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 14px;
}

    .footer-logo img {
        height: 52px;
        width: auto;
        object-fit: contain;
    }

.footer-mission {
    font-size: 0.93rem;
    font-weight: 600;
    opacity: .82;
    line-height: 1.7;
    margin-bottom: 18px;
}

.footer-tagline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.83rem;
    font-weight: 800;
    opacity: .9;
}

    .footer-tagline .heart {
        color: var(--gold);
        font-size: 1rem;
    }

.footer-links {
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    margin-bottom: 14px;
    color: #90CAF9;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

    .footer-col ul li a {
        text-decoration: none;
        color: rgba(255,255,255,.75);
        font-weight: 600;
        font-size: 0.88rem;
        transition: color .2s;
    }

        .footer-col ul li a:hover {
            color: white;
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copy {
    font-size: 0.81rem;
    opacity: .6;
    font-weight: 600;
}

.footer-note {
    font-size: 0.81rem;
    opacity: .6;
    font-weight: 600;
}

    .footer-note a {
        color: #A5D6A7;
        text-decoration: none;
    }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-anim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .6s ease, transform .6s ease;
}

    .card-anim.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .card-anim:nth-child(2) {
        transition-delay: .12s;
    }

    .card-anim:nth-child(3) {
        transition-delay: .24s;
    }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .trust-item {
        border-right: none;
        border-bottom: 1px solid #E0E0E0;
        padding-bottom: 20px;
    }

        .trust-item:last-child {
            border-bottom: none;
        }
}

@media (max-width: 700px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        padding: 16px 24px;
        box-shadow: 0 8px 24px rgba(0,0,0,.1);
        gap: 4px;
    }

        .nav-links.open {
            display: flex;
        }

    .hamburger {
        display: flex;
    }

    .footer-links {
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .faq-btns {
        flex-direction: column;
        align-items: center;
    }
}