/* =========================
   BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    background: #f6f8fb;
    color: #0f172a;
    line-height: 1.6;
}

/* =========================
   NAV
========================= */
.header {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e6eaf0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
}

.nav-cta {
    color: #2563eb;
}
/* =========================
   HERO — CENTERED LAYOUT
========================= */

.hero {
    padding: 100px 20px 40px 20px; /* reduced bottom padding */
    text-align: center;
}

.hero-centered {
    max-width: 900px;
    margin: 0 auto;
}
.hero-logo-link {
    display: block;
    text-decoration: none;
}


/* LOGO IN WHITE CARD — BIGGER */
.hero-logo {
    background: white;
    padding: 80px; /* bigger container */
    border-radius: 26px;
    box-shadow: 0 35px 80px rgba(15, 23, 42, 0.12);
    width: fit-content;
    margin: 0 auto 1.5rem auto; /* tighter spacing below */
}

/* BIGGER LOGO */
.hero-logo img {
    width: 100%; /* full width inside container */
    max-width: 100%;
    height: auto;
    display: block;
}

/* MAIN HEADLINE */
.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 16px; /* tighter */
    color: #0f172a;
}

/* DESCRIPTION */
.hero-text p {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 20px; /* tighter */
}

/* BUTTONS */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 10px; /* tighter */
}

.hero-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;                 /* equal width */
    max-width: 220px;        /* keeps them tidy */
    text-align: center;
}


.primary-btn {
    background: #2563eb;
    color: white;
    padding: 14px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.secondary-btn {
    border: 1px solid #cbd5e1;
    padding: 14px 22px;
    border-radius: 12px;
    text-decoration: none;
    color: #0f172a;
    font-size: 1rem;
}

@media (max-width: 600px) {

    .hero {
        padding-top: 40px;   /* reduced from 100px */
        padding-bottom: 20px; /* optional: tighter bottom */
    }

    .hero-logo {
        padding: 60px; /* smaller container */
    }

    .hero-logo img {
        width: 200%;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-actions {
        justify-content: center;   /* keep centered */
        gap: 12px;                 /* tighter spacing */
        flex-wrap: nowrap;         /* keep them on one line */
    }

    .hero-actions a {
        flex: 0 1 auto;            /* allow shrinking */
        max-width: 150px;          /* equal width, smaller */
        padding: 12px 18px;        /* tighter padding */
        white-space: nowrap;       /* prevent text wrapping */
        text-align: center;
    }
}



/* =========================
   VALUE STRIP
========================= */
.value-strip {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-item {
    background: white;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(15,23,42,0.05);
}

.value-item h3 {
    margin-bottom: 8px;
    color: #1e40af;
}

/* =========================
   CTA
========================= */
.cta {
    text-align: center;
    padding: 80px 20px;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta p {
    color: #64748b;
    margin-bottom: 20px;
}

/* =========================
   FOOTER
========================= */
.footer {
    text-align: center;
    padding: 40px;
    color: #64748b;
}

/* =========================
   ASSESSMENT PAGE
========================= */
.assessment-header {
    background: white;
    padding: 24px;
    margin-bottom: 24px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.assessment-header h2 {
    margin-top: 0;
    font-size: 1.8rem;
    color: #003366;
}

.question-card {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.question-label {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #003366;
}

.question-input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

/* =========================
   PROGRESS BAR
========================= */
.progress-container {
    max-width: 520px;
    margin: 2rem auto;
    text-align: center;
}

.progress-track {
    width: 100%;
    height: 10px;
    background: #e6e8ef;
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 10px;
    width: 0%;
    background: linear-gradient(90deg, #2563eb, #3f63c7);
    border-radius: 6px;
    transition: width 0.45s ease;
}

.progress-label {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #1f2f5d;
    opacity: 0.85;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
    .value-strip {
        grid-template-columns: 1fr 1fr;
    }
}

/* Spacer pushes the button fully right */
.nav-spacer {
    flex: 1;
}

/* BUY ME A COFFEE BUTTON IN HEADER */
.bmc-header-btn {
    background: #ffdd00;
    color: #000;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.bmc-header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}






