/* ═══════════════════════════════════════════════════════════════
   SPAZA BOOST v1.1.0 — Rebranded Colour Palette
   Brand Kit: Logo 6 + Official Colour Codes
   ═══════════════════════════════════════════════════════════════ */

:root {
    /* ── Primary Brand Colours ── */
    --sb-blue: #3653A4;
    /* R54  G83  B164  — Primary deep blue */
    --sb-yellow: #F0E81A;
    /* R240 G232 B26   — Vibrant yellow */
    --sb-red: #CC0000;
    /* R204 G0   B0    — Bold red */
    --sb-cyan: #00CCCC;
    /* R0   G204 B204  — Cyan accent */
    --sb-magenta: #FF008C;
    /* R255 G0   B140  — Hot magenta/pink */
    --sb-green: #00BA2C;
    /* R0   G186 B44   — Bright green */
    --sb-lime: #51FF00;
    /* R81  G255 B0    — Neon lime */
    --sb-hotpink: #BC0094;
    /* R188 G0   B148  — Deep pink/purple */
    --sb-gold: #F5EB17;
    /* R245 G235 B23   — Gold/amber */
    --sb-purple: #632B86;
    /* R99  G43  B134  — Deep purple */
    --sb-aqua: #00FF99;
    /* R0   G255 B153  — Mint aqua */
    --sb-orange: #FF6600;
    /* R255 G102 B0    — Warm orange */
    --sb-black: #000000;
    /* K=100 */

    /* ── Semantic Aliases ── */
    --primary: var(--sb-magenta);
    --primary-dark: #d10076;
    --secondary: var(--sb-yellow);
    --accent: var(--sb-cyan);
    --accent-alt: var(--sb-lime);
    --dark: #0a0a0a;
    --cream: #fefcf4;
    --white: #ffffff;

    /* ── Typography ── */
    --font-heading: "Outfit", sans-serif;
    --font-body: "Inter", sans-serif;

    /* ── Layout ── */
    --navbar-h: 112px;
}

/* ── RESET ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Subtle background texture */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='40' height='40' fill='%23FF008C'/%3E%3Crect x='40' y='40' width='40' height='40' fill='%23FF008C'/%3E%3Crect x='40' y='0' width='40' height='40' fill='%233653A4'/%3E%3Crect x='0' y='40' width='40' height='40' fill='%233653A4'/%3E%3Crect x='16' y='16' width='10' height='10' fill='%23F0E81A'/%3E%3Crect x='54' y='54' width='10' height='10' fill='%23F0E81A'/%3E%3C/svg%3E");
    background-size: 80px 80px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.15;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* ═══ NDEBELE STRIP — Multi-colour brand zigzag ═══ */
.african-strip,
.color-strip {
    background: repeating-linear-gradient(to right,
            var(--sb-magenta) 0px, var(--sb-magenta) 40px,
            var(--sb-blue) 40px, var(--sb-blue) 80px,
            var(--sb-yellow) 80px, var(--sb-yellow) 120px,
            var(--sb-green) 120px, var(--sb-green) 160px,
            var(--sb-cyan) 160px, var(--sb-cyan) 200px,
            var(--sb-red) 200px, var(--sb-red) 240px,
            var(--sb-lime) 240px, var(--sb-lime) 280px,
            var(--sb-purple) 280px, var(--sb-purple) 320px,
            var(--sb-orange) 320px, var(--sb-orange) 360px);
    background-size: 360px 100%;
    width: 100%;
    height: 18px;
    animation: ndebeleScroll 6s linear infinite;
}

@keyframes ndebeleScroll {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 360px 0;
    }
}

/* ═══ TEXT GRADIENT ═══ */
.text-gradient {
    background: linear-gradient(135deg, var(--sb-magenta), var(--sb-yellow), var(--sb-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ═══ NAVBAR ═══ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--navbar-h);
    background: var(--dark);
    border-bottom: 4px solid var(--sb-magenta);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.logo-img {
    height: auto;
    width: 504px;
    max-width: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--sb-yellow);
}

.nav-hamburger {
    display: none;
    background: transparent;
    border: 2px solid var(--sb-magenta);
    color: var(--white);
    font-size: 1.3rem;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    cursor: default;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: #111;
    border-top: 2px solid var(--sb-magenta);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
}

/* ═══ BUTTONS ═══ */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: default;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn-primary {
    background: var(--sb-magenta);
    color: var(--white);
    box-shadow: 4px 4px 0px var(--dark);
}

.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--dark);
}

.btn-accent {
    background: var(--sb-yellow);
    color: var(--dark);
    box-shadow: 4px 4px 0px var(--dark);
}

.btn-accent:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--dark);
}

/* ═══ HERO ═══ */
.hero {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding-top: var(--navbar-h);
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    background: var(--sb-magenta);
    clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0.08;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 5rem;
    padding: 5rem 0;
}

#greeting-morph {
    display: inline;
    color: var(--sb-yellow);
    transition: opacity 0.3s;
}

.hero-text h1 {
    font-size: clamp(2.6rem, 4.5vw, 5rem);
    letter-spacing: -2px;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-mockup {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

/* ═══ TAXI ROAD ═══ */
#taxi-road {
    position: relative;
    width: 100%;
    height: 8px;
    background: var(--sb-yellow);
    box-shadow: 0 3px 0 var(--sb-magenta);
    margin: 0;
}

#minibus {
    position: absolute;
    top: -34px;
    left: 0;
    font-size: 2.8rem;
    filter: drop-shadow(3px 3px rgba(0, 0, 0, 0.3));
}

/* ═══ SECTIONS ═══ */
section {
    width: 100%;
}

section .container {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

#how-it-works {
    background: var(--dark);
    color: var(--white);
}

#about {
    background: var(--sb-magenta);
    color: var(--white);
}

#faq {
    background: var(--cream);
    color: var(--dark);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 1rem;
}

#how-it-works .section-header h2 {
    color: var(--sb-yellow);
}

#about .section-header h2 {
    color: var(--white);
}

#faq .section-header h2 {
    color: var(--dark);
}

.section-header h2::after {
    content: "";
    display: block;
    width: 72px;
    height: 7px;
    margin: 0.7rem auto 0;
    background: repeating-linear-gradient(to right,
            var(--sb-yellow) 0, var(--sb-yellow) 18px,
            var(--sb-cyan) 18px, var(--sb-cyan) 36px,
            var(--sb-magenta) 36px, var(--sb-magenta) 54px,
            var(--sb-lime) 54px, var(--sb-lime) 72px);
}

.section-header p {
    max-width: 580px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.82;
}

/* ═══ STEP CARDS ═══ */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.step-card {
    position: relative;
    overflow: hidden;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 2.5rem 2rem;
    transition: transform 0.25s, border-color 0.25s;
}

.step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.step-card:first-child::before {
    background: var(--sb-cyan);
}

.step-card:nth-child(2)::before {
    background: var(--sb-magenta);
}

.step-card:nth-child(3)::before {
    background: var(--sb-lime);
}

.step-card:hover {
    border-color: var(--sb-magenta);
    transform: translateY(-6px);
}

.step-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
}

.step-icon {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

/* ═══ ABOUT ═══ */
.about-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.about-stat {
    background: rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 2rem 1.5rem;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--sb-yellow);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
}

.about-text {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

#about strong {
    font-weight: 900;
}

/* ═══ PRICING ═══ */
#pricing {
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

#pricing::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 0, 140, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

#pricing .section-header h2 {
    color: var(--sb-yellow);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 820px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--sb-cyan);
    box-shadow: 0 20px 60px rgba(0, 204, 204, 0.15);
}

.pricing-card.featured {
    border-color: var(--sb-magenta);
    background: linear-gradient(135deg, rgba(255, 0, 140, 0.08), rgba(99, 43, 134, 0.08));
}

.pricing-card.featured:hover {
    border-color: var(--sb-yellow);
    box-shadow: 0 20px 60px rgba(255, 0, 140, 0.2);
}

.pricing-badge {
    display: inline-block;
    padding: 0.35rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.pricing-card:first-child .pricing-badge {
    background: rgba(0, 204, 204, 0.15);
    color: var(--sb-cyan);
    border: 1px solid rgba(0, 204, 204, 0.3);
}

.pricing-card.featured .pricing-badge {
    background: linear-gradient(135deg, var(--sb-magenta), var(--sb-purple));
    color: var(--white);
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.pricing-price span {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

.pricing-period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: var(--sb-lime);
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-features .cross {
    color: rgba(255, 255, 255, 0.25);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-cta {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:first-child .pricing-cta {
    background: transparent;
    color: var(--sb-cyan);
    border: 2px solid var(--sb-cyan);
}

.pricing-card:first-child .pricing-cta:hover {
    background: var(--sb-cyan);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 204, 204, 0.3);
}

.pricing-card.featured .pricing-cta {
    background: linear-gradient(135deg, var(--sb-magenta), var(--sb-purple));
    color: var(--white);
    border: none;
    box-shadow: 4px 4px 0px var(--sb-yellow);
}

.pricing-card.featured .pricing-cta:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--sb-yellow);
}

.pricing-note {
    text-align: center;
    margin-top: 2.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    line-height: 1.6;
}

.pricing-note strong {
    color: var(--sb-yellow);
}

.consumers-free {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 255, 153, 0.06);
    border: 2px solid rgba(0, 255, 153, 0.2);
    border-radius: 12px;
}

.consumers-free h3 {
    font-size: 1.4rem;
    color: var(--sb-aqua);
    margin-bottom: 0.5rem;
}

.consumers-free p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* ═══ FAQ ═══ */
.faq-container {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid var(--dark);
    background: var(--white);
    border-radius: 6px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item:first-child {
    border-left: 8px solid var(--sb-magenta);
}

.faq-item:nth-child(2) {
    border-left: 8px solid var(--sb-cyan);
}

.faq-item:nth-child(3) {
    border-left: 8px solid var(--sb-lime);
}

.faq-item:nth-child(4) {
    border-left: 8px solid var(--sb-yellow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1.3rem 1.6rem;
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--dark);
    cursor: default;
    line-height: 1.4;
}

.faq-answer {
    padding: 0 1.6rem 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}





.faq-icon {
    font-size: 1.4rem;
    color: var(--sb-magenta);
    flex-shrink: 0;
    transition: transform 0.3s;
}

/* ═══ FOOTER ═══ */
.footer {
    background: var(--dark);
    color: var(--white);
}

.footer .container {
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: auto;
    width: 448px;
    max-width: 100%;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 280px;
    margin-top: 1rem;
    line-height: 1.7;
}

.footer-contact {
    font-size: 0.9rem;
    margin-top: 0.5rem !important;
}

.footer-links h4 {
    color: var(--sb-yellow);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--sb-magenta);
}

.copyright {
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
}

/* ═══ REVEAL ANIMATIONS ═══ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s, transform 0.65s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 4rem 0;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-container {
        display: none;
    }

    .logo-img {
        width: 360px;
    }

    .footer-logo {
        width: 320px;
    }

    .about-body {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    :root {
        --navbar-h: 80px;
    }

    .container {
        padding: 0 1.2rem;
    }

    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: block;
    }

    .logo-img {
        width: 240px;
        height: auto;
    }

    .hero-content {
        gap: 2rem;
        padding: 3rem 0 2.5rem;
    }

    .hero-text h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
        letter-spacing: -1px;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    section .container {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .about-body {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-price {
        font-size: 2.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo {
        width: 220px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    #minibus {
        font-size: 2.2rem;
        top: -26px;
    }

    /* Prevent horizontal scroll jitter */
    .african-strip, .color-strip {
        overflow: hidden;
    }
}