@charset "utf-8";
/* CSS Document */
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    color: #2D2D2D;
    background: #FFFFFF;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #1B2A4A;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav .logo {
    color: #F4A800;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav ul a:hover {
    color: #F4A800;
}

/* Hero Section */
.hero {
    background: #1B2A4A;
    color: #FFFFFF;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #F4A800;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.3rem;
    margin: 15px 0;
    color: #FFFFFF;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 45px;
    background: #F4A800;
    color: #1B2A4A;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    border-radius: 4px;
}

.btn-primary:hover {
    background: #FFFFFF;
    color: #1B2A4A;
    transform: translateY(-3px);
}

/* Pillars Section */
.pillars {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 80px 40px;
    background: #FFFFFF;
}

.pillar {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 40px 30px;
    border-top: 4px solid #F4A800;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.pillar h3 {
    color: #1B2A4A;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.pillar p {
    color: #2D2D2D;
    line-height: 1.7;
}

/* Story Teaser */
.story-teaser {
    background: #1B2A4A;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 40px;
}

.story-teaser blockquote {
    font-size: 1.6rem;
    font-style: italic;
    color: #F4A800;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.story-teaser p {
    color: #FFFFFF;
    margin-bottom: 30px;
    font-size: 1rem;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #F4A800;
    color: #F4A800;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s;
    border-radius: 4px;
}

.btn-secondary:hover {
    background: #F4A800;
    color: #1B2A4A;
}

/* Early Access */
.early-access {
    background: #F4A800;
    text-align: center;
    padding: 80px 40px;
}

.early-access h2 {
    color: #1B2A4A;
    font-size: 2rem;
    margin-bottom: 15px;
}

.early-access p {
    color: #1B2A4A;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.early-access form {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.early-access input {
    padding: 15px 25px;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    width: 320px;
    outline: none;
}

.early-access button {
    padding: 15px 35px;
    background: #1B2A4A;
    color: #FFFFFF;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.early-access button:hover {
    background: #FFFFFF;
    color: #1B2A4A;
}

/* Footer */
footer {
    background: #2D2D2D;
    color: #FFFFFF;
    text-align: center;
    padding: 40px;
}

footer p {
    margin-bottom: 10px;
    opacity: 0.8;
    font-size: 0.9rem;
}

.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    color: #F4A800;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .pillars {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        gap: 15px;
    }

    nav {
        flex-direction: column;
        gap: 15px;
    }
}

/* About Hero */
.about-hero {
    background: #1B2A4A;
    color: #FFFFFF;
    text-align: center;
    padding: 100px 40px;
}

.about-hero h1 {
    font-size: 3rem;
    color: #F4A800;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.85;
    letter-spacing: 2px;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Origin Story */
.origin-story {
    padding: 80px 40px;
    background: #FFFFFF;
}

.origin-story h2 {
    color: #1B2A4A;
    font-size: 2rem;
    margin-bottom: 30px;
}

.origin-story p {
    color: #2D2D2D;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Philosophy */
.philosophy {
    background: #1B2A4A;
    padding: 80px 40px;
    text-align: center;
}

.philosophy h2 {
    color: #F4A800;
    font-size: 2rem;
    margin-bottom: 30px;
}

.philosophy-statement {
    font-size: 1.4rem;
    font-style: italic;
    color: #FFFFFF;
    margin-bottom: 50px;
    line-height: 1.7;
}

.strength-pillars {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.strength {
    background: rgba(255,255,255,0.05);
    border-top: 3px solid #F4A800;
    padding: 30px 25px;
    width: 180px;
}

.strength h3 {
    color: #F4A800;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.strength p {
    color: #FFFFFF;
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Algebra Story */
.algebra-story {
    padding: 80px 40px;
    background: #F9F9F9;
}

.algebra-story h2 {
    color: #1B2A4A;
    font-size: 2rem;
    margin-bottom: 30px;
}

.algebra-story p {
    color: #2D2D2D;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.algebra-story blockquote {
    border-left: 4px solid #F4A800;
    padding: 20px 30px;
    margin: 40px 0;
    font-size: 1.3rem;
    font-style: italic;
    color: #1B2A4A;
    background: #FFFFFF;
}

/* Credentials */
.credentials {
    padding: 80px 40px;
    background: #FFFFFF;
    text-align: center;
}

.credentials h2 {
    color: #1B2A4A;
    font-size: 2rem;
    margin-bottom: 40px;
}

.cred-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cred {
    width: 200px;
    padding: 30px 20px;
    border-bottom: 3px solid #F4A800;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.cred h3 {
    color: #1B2A4A;
    margin-bottom: 10px;
    font-size: 1rem;
}

.cred p {
    color: #2D2D2D;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* About CTA */
.about-cta {
    background: #F4A800;
    text-align: center;
    padding: 80px 40px;
}

.about-cta h2 {
    color: #1B2A4A;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.about-cta p {
    color: #1B2A4A;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Framework Hero */
.framework-hero {
    background: #1B2A4A;
    color: #FFFFFF;
    text-align: center;
    padding: 100px 40px;
}

.framework-hero h1 {
    font-size: 3rem;
    color: #F4A800;
    margin-bottom: 15px;
}

.framework-hero p {
    font-size: 1.2rem;
    opacity: 0.85;
    letter-spacing: 1px;
}

/* Framework Intro */
.framework-intro {
    padding: 80px 40px;
    background: #FFFFFF;
    text-align: center;
}

.framework-intro h2 {
    color: #1B2A4A;
    font-size: 2rem;
    margin-bottom: 30px;
}

.framework-intro p {
    color: #2D2D2D;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Stages */
.stages {
    padding: 80px 40px;
    background: #F9F9F9;
}

.stages h2 {
    color: #1B2A4A;
    font-size: 2rem;
    margin-bottom: 50px;
    text-align: center;
}

.stage {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding: 35px;
    background: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}

.stage:hover {
    transform: translateX(8px);
    border-left: 4px solid #F4A800;
}

.stage-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #F4A800;
    min-width: 60px;
    line-height: 1;
}

.stage-content h3 {
    color: #1B2A4A;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.stage-content p {
    color: #2D2D2D;
    line-height: 1.8;
    font-size: 1rem;
}

/* Framework CTA */
.framework-cta {
    background: #F4A800;
    text-align: center;
    padding: 80px 40px;
}

.framework-cta h2 {
    color: #1B2A4A;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.framework-cta p {
    color: #1B2A4A;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Responsive Stages */
@media (max-width: 768px) {
    .stage {
        flex-direction: column;
        gap: 15px;
    }

    .framework-hero h1 {
        font-size: 2rem;
    }
}

/* Journey Hero */
.journey-hero {
    background: #1B2A4A;
    color: #FFFFFF;
    text-align: center;
    padding: 100px 40px;
}

.journey-hero h1 {
    font-size: 3rem;
    color: #F4A800;
    margin-bottom: 15px;
}

.journey-hero p {
    font-size: 1.2rem;
    opacity: 0.85;
}

/* Stage One */
.stage-one {
    padding: 80px 40px;
    background: #FFFFFF;
}

.stage-label {
    display: inline-block;
    background: #F4A800;
    color: #1B2A4A;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.stage-one h2 {
    color: #1B2A4A;
    font-size: 2rem;
    margin-bottom: 20px;
}

.stage-one p {
    color: #2D2D2D;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

/* Everyone Starts Section */
.everyone-starts {
    padding: 80px 40px;
    background: #FFFFFF;
}

.bridge-philosophy {
    text-align: center;
    margin-bottom: 40px;
}

.bridge-philosophy h2 {
    color: #1B2A4A;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.bridge-philosophy p {
    color: #888;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Bridge Quote */
.bridge-quote {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    padding: 50px;
    background: #1B2A4A;
    border-radius: 4px;
}

.bridge-quote blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: #F4A800;
    line-height: 1.7;
    margin-bottom: 15px;
}

.bridge-quote p {
    color: #FFFFFF;
    font-weight: bold;
    opacity: 0.8;
}

/* Why Stage One */
.why-stage-one {
    max-width: 700px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reason {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px;
    background: #F9F9F9;
    border-left: 4px solid #F4A800;
    border-radius: 0 4px 4px 0;
    transition: transform 0.3s;
}

.reason:hover {
    transform: translateX(5px);
}

.reason-number {
    font-size: 2rem;
    font-weight: bold;
    color: #F4A800;
    min-width: 50px;
}

.reason-content h3 {
    color: #1B2A4A;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.reason-content p {
    color: #2D2D2D;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Already Started */
.already-started {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    padding: 40px;
    border: 2px solid #E0E0E0;
    border-radius: 4px;
}

.already-started h3 {
    color: #1B2A4A;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.already-started p {
    color: #2D2D2D;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Begin Section */
.begin-section {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background: #F4A800;
    border-radius: 4px;
}

.begin-section h2 {
    color: #1B2A4A;
    font-size: 2rem;
    margin-bottom: 15px;
}

.begin-section p {
    color: #1B2A4A;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .bridge-philosophy h2 {
        font-size: 1.8rem;
    }

    .bridge-quote {
        padding: 30px 20px;
    }

    .reason {
        flex-direction: column;
        gap: 15px;
    }

    .begin-section {
        padding: 40px 20px;
    }
}

/* Journey Form */
.journey-form {
    max-width: 700px;
}

.form-group {
    margin-bottom: 35px;
}

.form-group label {
    display: block;
    color: #1B2A4A;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.5;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E0E0E0;
    font-size: 1rem;
    font-family: Georgia, serif;
    color: #2D2D2D;
    outline: none;
    transition: border-color 0.3s;
    border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #F4A800;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Passion Scale */
.passion-scale {
    display: flex;
    align-items: center;
    gap: 20px;
}

.passion-scale input[type="range"] {
    flex: 1;
    accent-color: #F4A800;
    height: 6px;
}

.scale-display {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1B2A4A;
    min-width: 60px;
}

#scale-value {
    color: #F4A800;
}

/* Journey Button */
.btn-journey {
    width: 100%;
    padding: 20px;
    background: #1B2A4A;
    color: #FFFFFF;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
    margin-top: 20px;
}

.btn-journey:hover {
    background: #F4A800;
    color: #1B2A4A;
}

/* Reassurance */
.reassurance {
    background: #F9F9F9;
    padding: 80px 40px;
    text-align: center;
}

.reassurance h2 {
    color: #1B2A4A;
    font-size: 2rem;
    margin-bottom: 50px;
}

.next-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.next-step {
    width: 220px;
    padding: 30px 20px;
}

.step-icon {
    font-size: 2rem;
    font-weight: bold;
    color: #F4A800;
    margin-bottom: 15px;
}

.next-step h3 {
    color: #1B2A4A;
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.next-step p {
    color: #2D2D2D;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .journey-hero h1 {
        font-size: 2rem;
    }

    .passion-scale {
        flex-direction: column;
        align-items: flex-start;
    }

    .next-steps {
        flex-direction: column;
        align-items: center;
    }
}

/* Contact Hero */
.contact-hero {
    background: #1B2A4A;
    color: #FFFFFF;
    text-align: center;
    padding: 100px 40px;
}

.contact-hero h1 {
    font-size: 3rem;
    color: #F4A800;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.85;
}

/* Contact Section */
.contact-section {
    padding: 80px 40px;
    background: #FFFFFF;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Contact Form */
.contact-form-wrap {
    flex: 1.5;
}

.contact-form-wrap h2 {
    color: #1B2A4A;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-form select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E0E0E0;
    font-size: 1rem;
    font-family: Georgia, serif;
    color: #2D2D2D;
    outline: none;
    border-radius: 4px;
    background: #FFFFFF;
    transition: border-color 0.3s;
}

.contact-form select:focus {
    border-color: #F4A800;
}

/* Contact Info */
.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #E0E0E0;
}

.info-block:last-child {
    border-bottom: none;
}

.info-block h3 {
    color: #1B2A4A;
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.info-block p {
    color: #2D2D2D;
    line-height: 1.8;
    font-size: 0.95rem;
}

.social-contact {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-btn {
    padding: 10px 20px;
    border: 2px solid #1B2A4A;
    color: #1B2A4A;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s;
    border-radius: 4px;
}

.social-btn:hover {
    background: #1B2A4A;
    color: #FFFFFF;
}

.quote-block blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #F4A800;
    line-height: 1.6;
    margin-bottom: 10px;
}

.quote-block p {
    color: #1B2A4A;
    font-weight: bold;
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }
}

/* Thank You Hero */
.thankyou-hero {
    background: #1B2A4A;
    color: #FFFFFF;
    text-align: center;
    padding: 100px 40px;
}

.thankyou-icon {
    font-size: 4rem;
    color: #F4A800;
    margin-bottom: 20px;
}

.thankyou-hero h1 {
    font-size: 3rem;
    color: #F4A800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.thankyou-hero p {
    font-size: 1.2rem;
    opacity: 0.85;
}

/* Thank You Message */
.thankyou-message {
    padding: 80px 40px;
    background: #FFFFFF;
}

.message-card {
    max-width: 700px;
    margin: 0 auto 80px;
    text-align: center;
    padding: 50px;
    box-shadow: 0 4px 30px 
                rgba(0,0,0,0.08);
}

.message-card h2 {
    color: #1B2A4A;
    font-size: 2rem;
    margin-bottom: 25px;
}

.message-card p {
    color: #2D2D2D;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.message-card blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #F4A800;
    margin: 30px 0 10px;
    line-height: 1.6;
}

.quote-attr {
    color: #1B2A4A;
    font-weight: bold;
}

/* Whats Next */
.whats-next {
    max-width: 700px;
    margin: 0 auto;
}

.whats-next h2 {
    color: #1B2A4A;
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.next-actions {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.next-action {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px;
    background: #F9F9F9;
    border-left: 4px solid #F4A800;
}

.action-number {
    font-size: 2rem;
    font-weight: bold;
    color: #F4A800;
    min-width: 50px;
}

.action-content h3 {
    color: #1B2A4A;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.action-content p {
    color: #2D2D2D;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.action-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .thankyou-hero h1 {
        font-size: 2rem;
    }

    .message-card {
        padding: 30px 20px;
    }

    .next-action {
        flex-direction: column;
        gap: 15px;
    }
}

/* Stage sections 1-4*/
/* Stage Hero */
.stage-hero {
    background: #1B2A4A;
    color: #FFFFFF;
    text-align: center;
    padding: 100px 40px;
}

.stage-badge {
    display: inline-block;
    background: #F4A800;
    color: #1B2A4A;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.stage-hero h1 {
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.stage-hero p {
    font-size: 1.2rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* Coach Note */
.coach-note {
    padding: 60px 40px;
    background: #F9F9F9;
}

.note-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: #FFFFFF;
    border-left: 4px solid #F4A800;
    box-shadow: 0 4px 20px 
                rgba(0,0,0,0.06);
}

.note-label {
    color: #F4A800;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.note-card p {
    color: #2D2D2D;
    line-height: 1.9;
    margin-bottom: 15px;
    font-size: 1rem;
}

/* Stage Form Section */
.stage-form-section {
    padding: 80px 40px;
    background: #FFFFFF;
}

/* Progress Bar */
.progress-bar {
    margin-bottom: 50px;
}

.progress-label {
    color: #1B2A4A;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.progress-track {
    background: #E0E0E0;
    height: 6px;
    border-radius: 3px;
    margin-bottom: 5px;
}

.progress-fill {
    background: #F4A800;
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s;
}

.progress-text {
    color: #888;
    font-size: 0.8rem;
    text-align: right;
}

/* Question Number */
.question-number {
    display: inline-block;
    background: #1B2A4A;
    color: #F4A800;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
    border-radius: 3px;
}

/* Scale Labels */
.scale-labels {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Submit Section */
.submit-section {
    background: #F9F9F9;
    padding: 30px;
    border-radius: 4px;
    text-align: center;
}

.submit-section p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Journey Welcome */
.journey-welcome {
    padding: 80px 40px;
    background: #FFFFFF;
    text-align: center;
}

.journey-welcome h2 {
    color: #1B2A4A;
    font-size: 2rem;
    margin-bottom: 30px;
}

.journey-welcome p {
    color: #2D2D2D;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* What To Expect */
.what-to-expect {
    padding: 80px 40px;
    background: #F9F9F9;
    text-align: center;
}

.what-to-expect h2 {
    color: #1B2A4A;
    font-size: 2rem;
    margin-bottom: 50px;
}

.expect-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.expect-item {
    width: 200px;
    padding: 30px 20px;
    background: #FFFFFF;
    box-shadow: 0 4px 15px 
                rgba(0,0,0,0.06);
}

.expect-number {
    font-size: 2rem;
    font-weight: bold;
    color: #F4A800;
    margin-bottom: 15px;
}

.expect-item h3 {
    color: #1B2A4A;
    font-size: 1rem;
    margin-bottom: 10px;
}

.expect-item p {
    color: #2D2D2D;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Stage Finder */
.stage-finder {
    padding: 80px 40px;
    background: #FFFFFF;
    text-align: center;
}

.stage-finder h2 {
    color: #1B2A4A;
    font-size: 2rem;
    margin-bottom: 15px;
}

.stage-finder > .container > p {
    color: #2D2D2D;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.stage-options {
    max-width: 700px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stage-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: #F9F9F9;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s;
    border-radius: 4px;
    text-align: left;
}

.stage-option:hover {
    border-color: #F4A800;
    background: #FFFFFF;
    transform: translateX(5px);
}

.option-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #F4A800;
    min-width: 50px;
}

.option-content {
    flex: 1;
}

.option-content h3 {
    color: #1B2A4A;
    font-size: 1rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.option-content p {
    color: #888;
    font-size: 0.85rem;
}

.option-arrow {
    color: #F4A800;
    font-size: 1.5rem;
    font-weight: bold;
}

.not-sure {
    margin-top: 20px;
}

.not-sure p {
    color: #888;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .stage-hero h1 {
        font-size: 2rem;
    }

    .expect-grid {
        flex-direction: column;
        align-items: center;
    }

    .stage-option {
        padding: 20px;
    }
}

/* Stage Form Spacing Fix */
.stage-form-section .container {
    max-width: 700px;
    margin: 0 auto;
}

.stage-form-section .form-group {
    margin-bottom: 45px;
    padding-bottom: 45px;
    border-bottom: 1px solid #F0F0F0;
}

.stage-form-section .form-group:last-of-type {
    border-bottom: none;
}

/* Coach Note Spacing Fix */
.coach-note {
    padding: 60px 40px;
    background: #F9F9F9;
}

/* Progress Bar Fix */
.progress-bar {
    background: #F9F9F9;
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 50px;
}

}

/* Stage List */
.stage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stage-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    transition: background 0.2s;
}

.stage-check {
    font-size: 0.8rem;
    min-width: 20px;
    text-align: center;
}

.stage-name {
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Completed Stage */
.stage-item.completed {
    opacity: 0.7;
}

.stage-item.completed .stage-check {
    color: #4CAF50;
}

.stage-item.completed .stage-name {
    color: #FFFFFF;
    text-decoration: line-through;
    opacity: 0.6;
}

/* Current Stage */
.stage-item.current {
    background: rgba(244,168,0,0.15);
    border-left: 3px solid #F4A800;
}

.stage-item.current .stage-check {
    color: #F4A800;
}

.stage-item.current .stage-name {
    color: #F4A800;
    font-weight: bold;
}

/* Locked Stage */
.stage-item.locked .stage-check {
    font-size: 0.7rem;
    opacity: 0.3;
}

.stage-item.locked .stage-name {
    color: #FFFFFF;
    opacity: 0.3;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 25px;
    border-top: 1px solid
    rgba(255,255,255,0.1);
    margin-top: 20px;
}

.sidebar-footer p {
    color: #FFFFFF;
    font-size: 0.75rem;
    opacity: 0.4;
    line-height: 1.6;
    text-align: center;
    font-style: italic;
}

/* Stage Main Content */
.stage-main {
    flex: 1;
    min-width: 0;
}

/* Responsive Sidebar */
@media (max-width: 768px) {
    .stage-layout {
        flex-direction: column;
    }

    .progress-sidebar {
        width: 100%;
        min-width: 100%;
        min-height: auto;
        position: relative;
        top: 0;
    }

    .stage-list {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        padding: 15px;
    }

    .stage-item {
        padding: 8px 12px;
        border-radius: 4px;
        background: rgba(255,255,255,0.05);
        flex-direction: column;
        gap: 3px;
    }

    .stage-name {
        font-size: 0.7rem;
    }
}

/* Stage Layout with Sidebar */
.stage-layout {
    display: flex;
    min-height: 100vh;
    align-items: flex-start;
}

/* Progress Sidebar */
.progress-sidebar {
    width: 260px;
    min-width: 260px;
    background: #1B2A4A;
    min-height: 100vh;
    padding: 30px 0;
    position: sticky;
    top: 72px;
}

.sidebar-header {
    padding: 0 25px 25px;
    border-bottom: 1px solid
    rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.sidebar-title {
    color: #F4A800;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.sidebar-sub {
    color: #FFFFFF;
    font-size: 0.75rem;
    opacity: 0.5;
    line-height: 1.4;
