:root {
    /* Brand Colors extracted from Screenshots */
    --clr-pink: #E91E63;
    /* The vibrant hero pink */
    --clr-pink-light: #FFF0F5;
    /* Pale pink for benefits section */
    --clr-navy: #1a1b4b;
    /* Header and Text */
    --clr-yellow: #FFD700;
    /* CTA Button */
    --clr-white: #ffffff;
    --clr-text: #4a5568;
    /* Grey text */

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-card: 12px;
    --radius-btn: 6px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-white);
    color: var(--clr-text);
    margin: 0;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
5,
.logo,
.btn {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* --- Header --- */
header {
    background-color: var(--clr-navy);
    padding: 1rem 0;
    color: white;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

@media(max-width: 768px) {
    .hide-mobile {
        display: none;
    }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-btn);
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: transform 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-yellow {
    background-color: var(--clr-yellow);
    color: var(--clr-navy);
}

.btn-white-pink {
    background-color: white;
    color: var(--clr-pink);
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- Hero --- */
.hero {
    background: linear-gradient(110deg, #D81B60 0%, #F06292 100%);
    padding: 5rem 0 6rem;
    color: white;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media(max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 600px;
}

.small-text {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Stats Card */
.hero-card {
    background: white;
    color: var(--clr-navy);
    padding: 2.5rem;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-num {
    color: var(--clr-pink);
    font-size: 1.8rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--clr-text);
    margin-top: 0.25rem;
}

@media(max-width: 600px) {
    .hero-card {
        flex-direction: column;
        gap: 1.5rem;
    }
}


/* --- How it Works --- */
.how-it-works {
    padding: 5rem 1.5rem;
    text-align: center;
}

.section-heading {
    font-size: 2rem;
    color: var(--clr-navy);
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media(max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-circle {
    width: 60px;
    height: 60px;
    background-color: var(--clr-pink);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    color: var(--clr-navy);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- Benefits --- */
.benefits-section {
    background-color: var(--clr-pink-light);
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media(max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-card);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.icon-box {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 10px;
    background: var(--clr-pink-light);
    border-radius: 8px;
    color: var(--clr-pink);
}

.benefit-card h3 {
    color: var(--clr-navy);
    margin-bottom: 0.75rem;
}

/* --- Categories Grid (Middle) --- */
.categories-section {
    padding: 4rem 1.5rem;
    text-align: center;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: left;
    margin-top: 3rem;
}

@media(max-width: 900px) {
    .cat-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 600px) {
    .cat-grid {
        grid-template-columns: 1fr;
    }
}

.cat-col h4 {
    color: var(--clr-navy);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--clr-pink);
    margin-bottom: 1.5rem;
    width: fit-content;
}

.cat-col ul {
    list-style: none;
    padding: 0;
}

.cat-col li {
    margin-bottom: 1rem;
}

.cat-col a {
    color: #4a5568;
    transition: color 0.2s;
}

.cat-col a:hover {
    color: var(--clr-pink);
}

/* --- Footer (Dark Navy) --- */
.dark-footer {
    background-color: var(--clr-navy);
    /* #1a1b4b */
    color: white;
    padding: 5rem 0 2rem;
    font-size: 0.95rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 4rem;
}

@media(max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }
}

.footer-brand {
    max-width: 300px;
}

.brand-tagline {
    color: #a0aec0;
    margin-top: 1rem;
    font-size: 1rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-col h5 {
    color: #a0aec0;
    /* Lighter grey for headers */
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-col a {
    display: block;
    color: white;
    margin-bottom: 0.8rem;
    transition: opacity 0.2s;
}

.footer-col a:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: #a0aec0;
    font-size: 0.85rem;
}

.disclosure {
    margin-bottom: 1rem;
    line-height: 1.5;
}