﻿ 
:root {
    --blue: #1565C0;
    --blue-light: #1E88E5;
    --blue-pale: #E3F2FD;
    --blue-mid: #BBDEFB;
    --green: #2E7D32;
    --green-light: #43A047;
    --green-pale: #E8F5E9;
    --gold: #F9A825;
    --gold-pale: #FFF8E1;
    --orange: #E65100;
    --orange-pale: #FFF3E0;
    --purple: #6A1B9A;
    --purple-pale: #F3E5F5;
    --teal: #00695C;
    --teal-pale: #E0F2F1;
    --white: #ffffff;
    --off-white: #F7FBF7;
    --text-dark: #1a2e1a;
    --text-mid: #3a4a3a;
    --text-light: #6a7a6a;
    --border: #D8E8D8;
    --radius: 14px;
    --radius-lg: 24px;
}

*, *::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,.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: .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 {
            background: var(--purple-pale);
            color: var(--purple);
        }

        .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;
    }

/* ══ BREADCRUMB ══ */
.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 5vw 0;
    font-size: .84rem;
    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 .sep {
        opacity: .45;
    }

/* ══ HERO ══ */
.page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, var(--purple-pale) 0%, #F7FBF7 45%, var(--blue-pale) 100%);
    padding: 72px 5vw 60px;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

    .hero-bg span {
        position: absolute;
        border-radius: 50%;
        opacity: .09;
    }

        .hero-bg span:nth-child(1) {
            width: 460px;
            height: 460px;
            background: var(--purple);
            top: -160px;
            left: -110px;
        }

        .hero-bg span:nth-child(2) {
            width: 340px;
            height: 340px;
            background: var(--blue);
            bottom: -120px;
            right: -80px;
        }

        .hero-bg span:nth-child(3) {
            width: 180px;
            height: 180px;
            background: var(--gold);
            top: 40%;
            left: 60%;
            opacity: .06;
        }

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 740px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--purple-pale);
    color: var(--purple);
    font-weight: 800;
    font-size: .78rem;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeUp .5s ease both;
}

.page-hero h1 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2.4rem, 5.5vw, 3.6rem);
    line-height: 1.1;
    margin-bottom: 16px;
    animation: fadeUp .6s .1s ease both;
}

    .page-hero h1 .purple {
        color: var(--purple);
    }

    .page-hero h1 .blue {
        color: var(--blue);
    }

.page-hero p {
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--text-mid);
    line-height: 1.75;
    animation: fadeUp .6s .2s ease both;
}

/* Category quick-nav pills */
.quick-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    animation: fadeUp .6s .3s ease both;
}

.qn-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--white);
    border-radius: 50px;
    padding: 8px 18px;
    font-weight: 800;
    font-size: .86rem;
    text-decoration: none;
    color: var(--text-mid);
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    border: 2px solid transparent;
    transition: border-color .2s, transform .2s;
}

    .qn-pill:hover {
        transform: translateY(-2px);
    }

    .qn-pill.qp-blue {
        border-color: var(--blue-mid);
    }

    .qn-pill.qp-green {
        border-color: #A5D6A7;
    }

    .qn-pill.qp-orange {
        border-color: #FFE082;
    }

    .qn-pill.qp-purple {
        border-color: #CE93D8;
    }

/* ══ MAIN ══ */
.resources-main {
    padding: 72px 5vw 80px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 72px;
}

/* ── Section header ── */
.rs-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
}

.rs-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0,0,0,.10);
}

.rs-icon-blue {
    background: linear-gradient(135deg, var(--blue-pale), var(--blue-mid));
}

.rs-icon-green {
    background: linear-gradient(135deg, var(--green-pale), #C8E6C9);
}

.rs-icon-orange {
    background: linear-gradient(135deg, var(--gold-pale), #FFE082);
}

.rs-icon-purple {
    background: linear-gradient(135deg, var(--purple-pale), #CE93D8);
}

.rs-header-text h2 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.15;
    margin-bottom: 6px;
}

.rsh-blue h2 {
    color: var(--blue);
}

.rsh-green h2 {
    color: var(--green);
}

.rsh-orange h2 {
    color: var(--orange);
}

.rsh-purple h2 {
    color: var(--purple);
}

.rs-header-text p {
    font-size: .93rem;
    font-weight: 600;
    color: var(--text-mid);
    line-height: 1.65;
    max-width: 560px;
}

/* Section accent line */
.rs-section {
    position: relative;
}

    .rs-section::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        border-radius: 4px;
    }

.rs-blue::before {
    background: linear-gradient(180deg, var(--blue), var(--blue-light));
}

.rs-green::before {
    background: linear-gradient(180deg, var(--green), var(--green-light));
}

.rs-orange::before {
    background: linear-gradient(180deg, var(--orange), var(--gold));
}

.rs-purple::before {
    background: linear-gradient(180deg, var(--purple), #AB47BC);
}

.rs-inner {
    padding-left: 24px;
}

/* ── Resource Cards Grid ── */
.rc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.rc-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .22s, box-shadow .22s;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

    .rc-card:hover {
        transform: translateY(-6px);
    }

.rc-blue {
    border-color: var(--blue-mid);
    box-shadow: 0 6px 28px rgba(21,101,192,.10);
}

.rc-green {
    border-color: #A5D6A7;
    box-shadow: 0 6px 28px rgba(46,125,50,.10);
}

.rc-orange {
    border-color: #FFE082;
    box-shadow: 0 6px 28px rgba(249,168,37,.12);
}

.rc-purple {
    border-color: #CE93D8;
    box-shadow: 0 6px 28px rgba(106,27,154,.10);
}

.rc-teal {
    border-color: #80CBC4;
    box-shadow: 0 6px 28px rgba(0,105,92,.10);
}

.rc-card:hover.rc-blue {
    box-shadow: 0 16px 48px rgba(21,101,192,.18);
}

.rc-card:hover.rc-green {
    box-shadow: 0 16px 48px rgba(46,125,50,.18);
}

.rc-card:hover.rc-orange {
    box-shadow: 0 16px 48px rgba(249,168,37,.22);
}

.rc-card:hover.rc-purple {
    box-shadow: 0 16px 48px rgba(106,27,154,.18);
}

.rc-card:hover.rc-teal {
    box-shadow: 0 16px 48px rgba(0,105,92,.18);
}

/* Card top strip */
.rc-card-top {
    height: 8px;
}

.rc-blue .rc-card-top {
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

.rc-green .rc-card-top {
    background: linear-gradient(90deg, var(--green), var(--green-light));
}

.rc-orange .rc-card-top {
    background: linear-gradient(90deg, var(--orange), var(--gold));
}

.rc-purple .rc-card-top {
    background: linear-gradient(90deg, var(--purple), #AB47BC);
}

.rc-teal .rc-card-top {
    background: linear-gradient(90deg, var(--teal), #26A69A);
}

.rc-card-body {
    padding: 24px 24px 0;
    flex: 1;
}

.rc-card-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.rc-card-body h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.12rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.rc-blue .rc-card-body h3 {
    color: var(--blue);
}

.rc-green .rc-card-body h3 {
    color: var(--green);
}

.rc-orange .rc-card-body h3 {
    color: var(--orange);
}

.rc-purple .rc-card-body h3 {
    color: var(--purple);
}

.rc-teal .rc-card-body h3 {
    color: var(--teal);
}

.rc-card-body p {
    font-size: .88rem;
    font-weight: 600;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 14px;
}

/* Key points list inside card */
.rc-points {
    list-style: none;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .rc-points li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: .83rem;
        font-weight: 700;
        color: var(--text-mid);
        line-height: 1.5;
    }

.rcp-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}

.rc-blue .rcp-dot {
    background: var(--blue-light);
}

.rc-green .rcp-dot {
    background: var(--green-light);
}

.rc-orange .rcp-dot {
    background: var(--gold);
}

.rc-purple .rcp-dot {
    background: #AB47BC;
}

.rc-teal .rcp-dot {
    background: #26A69A;
}

/* Age tag */
.age-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .73rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.rc-blue .age-tag {
    background: var(--blue-pale);
    color: var(--blue);
}

.rc-green .age-tag {
    background: var(--green-pale);
    color: var(--green);
}

.rc-orange .age-tag {
    background: var(--gold-pale);
    color: var(--orange);
}

.rc-purple .age-tag {
    background: var(--purple-pale);
    color: var(--purple);
}

.rc-teal .age-tag {
    background: var(--teal-pale);
    color: var(--teal);
}

/* Card buttons */
.rc-card-footer {
    padding: 16px 24px 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.rc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .80rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .16s, box-shadow .16s;
    letter-spacing: .01em;
}

    .rc-btn:hover {
        transform: translateY(-2px);
    }

/* Solid buttons */
.rcb-solid-blue {
    background: var(--blue);
    color: white;
    box-shadow: 0 4px 14px rgba(21,101,192,.28);
}

.rcb-solid-green {
    background: var(--green);
    color: white;
    box-shadow: 0 4px 14px rgba(46,125,50,.28);
}

.rcb-solid-orange {
    background: var(--orange);
    color: white;
    box-shadow: 0 4px 14px rgba(230,81,0,.28);
}

.rcb-solid-purple {
    background: var(--purple);
    color: white;
    box-shadow: 0 4px 14px rgba(106,27,154,.28);
}

.rcb-solid-teal {
    background: var(--teal);
    color: white;
    box-shadow: 0 4px 14px rgba(0,105,92,.28);
}

/* Outline buttons */
.rcb-outline-blue {
    border-color: var(--blue-mid);
    color: var(--blue);
    background: var(--blue-pale);
}

.rcb-outline-green {
    border-color: #A5D6A7;
    color: var(--green);
    background: var(--green-pale);
}

.rcb-outline-orange {
    border-color: #FFE082;
    color: var(--orange);
    background: var(--gold-pale);
}

.rcb-outline-purple {
    border-color: #CE93D8;
    color: var(--purple);
    background: var(--purple-pale);
}

.rcb-outline-teal {
    border-color: #80CBC4;
    color: var(--teal);
    background: var(--teal-pale);
}

/* ── Business Plan special layout ── */
.bp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 0;
}

.bp-step {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px 18px;
    border: 2px solid var(--border);
    transition: transform .2s, border-color .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}

    .bp-step:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(0,0,0,.08);
    }

.bp-step-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.bpsn-1 {
    background: var(--blue);
}

.bpsn-2 {
    background: var(--green);
}

.bpsn-3 {
    background: var(--orange);
}

.bpsn-4 {
    background: var(--purple);
}

.bpsn-5 {
    background: var(--teal);
}

.bpsn-6 {
    background: #C62828;
}

.bp-step h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    margin-bottom: 7px;
    color: var(--text-dark);
}

.bp-step p {
    font-size: .83rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}

.bp-step-btn {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--blue);
    letter-spacing: .02em;
}

    .bp-step-btn:hover {
        text-decoration: underline;
    }

/* ── How-To Guides ── */
.howto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.howto-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    border: 2px solid var(--border);
    display: flex;
    gap: 18px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

    .howto-card:hover {
        transform: translateY(-4px);
        border-color: #FFE082;
        box-shadow: 0 12px 36px rgba(249,168,37,.14);
    }

.howto-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold-pale), #FFE082);
}

.howto-content h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.05rem;
    color: var(--orange);
    margin-bottom: 7px;
}

.howto-content p {
    font-size: .86rem;
    font-weight: 600;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 12px;
}

.howto-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .howto-steps li {
        display: flex;
        align-items: flex-start;
        gap: 7px;
        font-size: .82rem;
        font-weight: 700;
        color: var(--text-mid);
    }

.hs-num {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

.howto-btn-row {
    margin-top: 14px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ── Beginner Resources ── */
.beginner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.br-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border);
    transition: transform .22s, box-shadow .22s;
}

    .br-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 44px rgba(0,0,0,.09);
    }

.br-card-top {
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.brt-blue {
    background: linear-gradient(135deg, var(--blue-pale), var(--blue-mid));
}

.brt-green {
    background: linear-gradient(135deg, var(--green-pale), #C8E6C9);
}

.brt-orange {
    background: linear-gradient(135deg, var(--gold-pale), #FFE082);
}

.brt-purple {
    background: linear-gradient(135deg, var(--purple-pale), #CE93D8);
}

.br-card-top .brt-icon {
    font-size: 2.2rem;
}

.br-card-top .brt-label {
    font-family: 'Fredoka One', cursive;
    font-size: .82rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.brt-blue .brt-label {
    color: var(--blue);
}

.brt-green .brt-label {
    color: var(--green);
}

.brt-orange .brt-label {
    color: var(--orange);
}

.brt-purple .brt-label {
    color: var(--purple);
}

.br-card-body {
    padding: 20px 22px;
}

    .br-card-body h4 {
        font-family: 'Fredoka One', cursive;
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

.brt-blue ~ .br-card-body h4,
.br-card.brc-blue h4 {
    color: var(--blue);
}

.br-card.brc-green h4 {
    color: var(--green);
}

.br-card.brc-orange h4 {
    color: var(--orange);
}

.br-card.brc-purple h4 {
    color: var(--purple);
}

.br-card-body p {
    font-size: .86rem;
    font-weight: 600;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 14px;
}

.br-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 16px;
}

    .br-items li {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: .83rem;
        font-weight: 700;
        color: var(--text-mid);
    }

.bri-tag {
    padding: 2px 8px;
    border-radius: 50px;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .04em;
    white-space: nowrap;
}

.brc-blue .bri-tag {
    background: var(--blue-pale);
    color: var(--blue);
}

.brc-green .bri-tag {
    background: var(--green-pale);
    color: var(--green);
}

.brc-orange .bri-tag {
    background: var(--gold-pale);
    color: var(--orange);
}

.brc-purple .bri-tag {
    background: var(--purple-pale);
    color: var(--purple);
}

.br-btn-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ══ COMING SOON STRIP ══ */
.cs-strip {
    background: linear-gradient(135deg, var(--blue-pale), #DCEEFB);
    border: 2px dashed var(--blue-mid);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    margin-top: 0;
}

    .cs-strip h3 {
        font-family: 'Fredoka One', cursive;
        font-size: 1.4rem;
        color: var(--blue);
        margin-bottom: 8px;
    }

    .cs-strip p {
        font-size: .92rem;
        font-weight: 600;
        color: var(--text-mid);
        max-width: 480px;
        margin: 0 auto 20px;
        line-height: 1.7;
    }

/* ══ TOAST ══ */
.toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: var(--text-dark);
    color: white;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: 800;
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,.22);
    transform: translateY(80px);
    opacity: 0;
    transition: transform .3s, opacity .3s;
}

    .toast.show {
        transform: translateY(0);
        opacity: 1;
    }

/* ══ FOOTER ══ */
footer {
    background: linear-gradient(135deg, #0D47A1 0%, #1B5E20 100%);
    color: white;
    padding: 48px 5vw 24px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 36px;
    flex-wrap: wrap;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,.15);
    margin-bottom: 22px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
    margin-bottom: 14px;
}

.footer-mission {
    font-size: .9rem;
    font-weight: 600;
    opacity: .82;
    line-height: 1.7;
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: .82rem;
    font-weight: 800;
    opacity: .88;
}

    .footer-tagline .heart {
        color: var(--gold);
    }

.footer-links {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-family: 'Fredoka One',cursive;
    font-size: .97rem;
    margin-bottom: 12px;
    color: #90CAF9;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .footer-col ul li a {
        text-decoration: none;
        color: rgba(255,255,255,.74);
        font-weight: 600;
        font-size: .87rem;
        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: .80rem;
    opacity: .58;
    font-weight: 600;
}

.footer-note {
    font-size: .80rem;
    opacity: .58;
    font-weight: 600;
}

    .footer-note a {
        color: #A5D6A7;
        text-decoration: none;
    }

/* ══ ANIMATIONS ══ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
    .bp-steps {
        grid-template-columns: repeat(2,1fr);
    }

    .howto-grid {
        grid-template-columns: 1fr;
    }

    .beginner-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .bp-steps {
        grid-template-columns: 1fr;
    }

    .rc-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        padding: 14px 20px;
        box-shadow: 0 8px 24px rgba(0,0,0,.1);
    }

        .nav-links.open {
            display: flex;
        }

    .hamburger {
        display: flex;
    }

    .howto-card {
        flex-direction: column;
    }

    .footer-links {
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
 
