/* === RootRise Design System === */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --soil: #2C1810;
    --bark: #4A3228;
    --leaf: #3D6B35;
    --sprout: #6BA368;
    --sun: #E8A838;
    --cream: #FDF6EC;
    --warm-white: #FEFCF8;
    --clay: #C4724E;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--soil);
    background: var(--warm-white);
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Syne', sans-serif; }

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

/* --- NAV --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(254, 252, 248, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(44, 24, 16, 0.06);
}

.logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--leaf);
    letter-spacing: -0.5px;
}

.logo span { color: var(--sun); }

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--bark);
    transition: color 0.2s;
    position: relative;
}

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

.nav-links a.active {
    color: var(--leaf);
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--leaf);
    border-radius: 1px;
}

.nav-cta {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background: var(--leaf);
    color: white !important;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
    background: #345C2D;
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--soil);
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}

/* --- SHARED SECTION STYLES --- */
.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--leaf);
    margin-bottom: 1rem;
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    background: linear-gradient(170deg, var(--warm-white) 0%, var(--cream) 40%, #EDE7D9 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 30%, rgba(107, 163, 104, 0.08) 0%, transparent 70%),
                radial-gradient(ellipse at 60% 80%, rgba(232, 168, 56, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--leaf);
    margin-bottom: 1.5rem;
    padding: 0.4rem 1rem;
    background: rgba(61, 107, 53, 0.08);
    border-radius: 20px;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--soil);
    margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: normal;
    color: var(--leaf);
    position: relative;
}

.hero h1 em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(232, 168, 56, 0.3);
    border-radius: 4px;
    z-index: -1;
}

.hero-sub {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--bark);
    max-width: 620px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--leaf);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
    background: #345C2D;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--soil);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid rgba(44, 24, 16, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
    border-color: var(--leaf);
    color: var(--leaf);
    transform: translateY(-2px);
}

/* --- STAT BAR --- */
.stat-bar {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(44, 24, 16, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--clay);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--bark);
    opacity: 0.7;
    margin-top: 0.25rem;
}

/* --- PROBLEM --- */
.problem {
    padding: 6rem 2rem;
    background: var(--soil);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.problem::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(107, 163, 104, 0.05);
}

.problem-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.problem h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.problem h2 span { color: var(--sun); }

.problem-text {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.85;
    max-width: 700px;
}

.problem-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.fact {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.fact-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--sun);
    margin-bottom: 0.5rem;
}

.fact-desc {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.5;
}

/* --- MODEL (Level Up) --- */
.model {
    padding: 6rem 2rem;
    background: var(--cream);
}

.model-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.model h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.model-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--bark);
    max-width: 600px;
    margin-bottom: 3.5rem;
}

.levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.level-card {
    padding: 2rem;
    background: var(--warm-white);
    border-radius: 16px;
    border: 1px solid rgba(44, 24, 16, 0.06);
    position: relative;
    transition: transform 0.2s;
}

.level-card:hover { transform: translateY(-4px); }

.level-badge {
    display: inline-block;
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.level-card:nth-child(1) .level-badge { background: rgba(61, 107, 53, 0.1); color: var(--leaf); }
.level-card:nth-child(2) .level-badge { background: rgba(232, 168, 56, 0.12); color: #B8841C; }
.level-card:nth-child(3) .level-badge { background: rgba(196, 114, 78, 0.12); color: var(--clay); }
.level-card:nth-child(4) .level-badge { background: rgba(44, 24, 16, 0.08); color: var(--soil); }

.level-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.level-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--bark);
    opacity: 0.8;
}

.level-card ul {
    list-style: none;
    margin-top: 1rem;
}

.level-card ul li {
    font-size: 0.9rem;
    color: var(--bark);
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.level-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sprout);
}

/* --- GREENHOUSE --- */
.greenhouse {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--warm-white) 0%, #F0EBE0 100%);
}

.greenhouse-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.greenhouse h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
}

.greenhouse p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--bark);
}

.greenhouse-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gh-row {
    display: flex;
    gap: 0.75rem;
}

.gh-block {
    flex: 1;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.gh-block.spring { background: #D4E8C2; color: var(--leaf); }
.gh-block.summer { background: #F5E0A0; color: #8B6914; }
.gh-block.fall { background: #E8C9A0; color: var(--clay); }
.gh-block.winter { background: #C8D8D0; color: #3A5A4A; }

/* --- CLOSING CTA --- */
.closing {
    padding: 8rem 2rem;
    text-align: center;
    background: var(--leaf);
    color: white;
    position: relative;
    overflow: hidden;
}

.closing::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(232, 168, 56, 0.08) 0%, transparent 60%);
}

.closing-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.closing h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.closing p {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 2rem;
}

.closing-location {
    margin-top: 2.5rem;
    font-size: 0.85rem;
    opacity: 0.6;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--leaf);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* --- FOOTER --- */
footer {
    padding: 3rem 2rem;
    background: var(--soil);
    color: var(--cream);
}

.footer-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--sprout);
}

.footer-logo span { color: var(--sun); }

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

.footer-links a {
    font-size: 0.85rem;
    color: var(--cream);
    opacity: 0.6;
    transition: opacity 0.2s;
}

.footer-links a:hover { opacity: 1; }

.footer-copy {
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.4;
    padding-top: 2rem;
    border-top: 1px solid rgba(253, 246, 236, 0.08);
    margin-top: 1rem;
}

/* --- PAGE HEADER (for interior pages) --- */
.page-header {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(170deg, var(--warm-white) 0%, var(--cream) 100%);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 50%, rgba(107, 163, 104, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.page-header-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.page-header h1 em {
    font-style: normal;
    color: var(--leaf);
}

.page-header p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--bark);
    max-width: 600px;
}

/* --- PROGRAM PAGE --- */
.program-journey {
    padding: 5rem 2rem;
    background: var(--warm-white);
}

.program-journey-inner {
    max-width: 900px;
    margin: 0 auto;
}

.journey-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(44, 24, 16, 0.06);
    position: relative;
}

.journey-step:last-child { border-bottom: none; }

.journey-number {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.journey-step:nth-child(1) .journey-number { background: rgba(61, 107, 53, 0.1); color: var(--leaf); }
.journey-step:nth-child(2) .journey-number { background: rgba(232, 168, 56, 0.12); color: #B8841C; }
.journey-step:nth-child(3) .journey-number { background: rgba(196, 114, 78, 0.12); color: var(--clay); }
.journey-step:nth-child(4) .journey-number { background: rgba(44, 24, 16, 0.08); color: var(--soil); }

.journey-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.25rem;
}

.journey-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sprout);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.journey-content > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--bark);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.skill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.skill-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--cream);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--bark);
    line-height: 1.4;
}

.skill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sprout);
    flex-shrink: 0;
    margin-top: 0.35rem;
}

/* Timeline connector */
.journey-step::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 80px;
    bottom: 0;
    width: 2px;
    background: rgba(44, 24, 16, 0.06);
}

.journey-step:last-child::before { display: none; }

/* Program outcomes */
.program-outcomes {
    padding: 5rem 2rem;
    background: var(--cream);
}

.outcomes-inner {
    max-width: 900px;
    margin: 0 auto;
}

.outcomes-inner h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.outcomes-inner > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--bark);
    max-width: 600px;
    margin-bottom: 3rem;
}

.outcome-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.outcome-card {
    padding: 2rem;
    background: var(--warm-white);
    border-radius: 16px;
    border: 1px solid rgba(44, 24, 16, 0.06);
}

.outcome-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.outcome-card:nth-child(1) .outcome-icon { background: rgba(61, 107, 53, 0.1); }
.outcome-card:nth-child(2) .outcome-icon { background: rgba(232, 168, 56, 0.1); }
.outcome-card:nth-child(3) .outcome-icon { background: rgba(196, 114, 78, 0.1); }

.outcome-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.outcome-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--bark);
    opacity: 0.8;
}

/* --- GET INVOLVED PAGE --- */
.involvement-options {
    padding: 5rem 2rem;
    background: var(--warm-white);
}

.involvement-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.involvement-card {
    padding: 2.5rem 2rem;
    background: var(--cream);
    border-radius: 16px;
    border: 1px solid rgba(44, 24, 16, 0.06);
    transition: transform 0.2s;
}

.involvement-card:hover { transform: translateY(-4px); }

.involvement-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.involvement-card:nth-child(1) .involvement-icon { background: rgba(61, 107, 53, 0.1); }
.involvement-card:nth-child(2) .involvement-icon { background: rgba(232, 168, 56, 0.1); }
.involvement-card:nth-child(3) .involvement-icon { background: rgba(196, 114, 78, 0.1); }

.involvement-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.involvement-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--bark);
    opacity: 0.8;
}

/* --- CONTACT FORM --- */
.contact-section {
    padding: 5rem 2rem;
    background: var(--cream);
}

.contact-inner {
    max-width: 700px;
    margin: 0 auto;
}

.contact-inner h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
}

.contact-inner > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--bark);
    margin-bottom: 2.5rem;
}

.contact-form {
    background: var(--warm-white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(44, 24, 16, 0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid rgba(44, 24, 16, 0.12);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--soil);
    background: var(--warm-white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--leaf);
    box-shadow: 0 0 0 3px rgba(61, 107, 53, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--bark);
    opacity: 0.4;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.form-submit p {
    font-size: 0.8rem;
    color: var(--bark);
    opacity: 0.5;
}

/* Form success/error states */
.form-message {
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(61, 107, 53, 0.08);
    color: var(--leaf);
    border: 1px solid rgba(61, 107, 53, 0.15);
}

.form-message.error {
    display: block;
    background: rgba(196, 114, 78, 0.08);
    color: var(--clay);
    border: 1px solid rgba(196, 114, 78, 0.15);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--warm-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 99;
    }

    .nav-links.open { display: flex; }

    .nav-links a { font-size: 1.2rem; }

    .mobile-menu-btn { display: block; z-index: 101; }

    .hero { padding: 7rem 1.5rem 3rem; }
    .stat-bar { gap: 1.5rem; }
    .problem, .model, .greenhouse, .closing { padding: 4rem 1.5rem; }
    .greenhouse-inner { grid-template-columns: 1fr; gap: 2rem; }
    .levels { grid-template-columns: 1fr; }

    .page-header { padding: 7rem 1.5rem 3rem; }

    .journey-step { grid-template-columns: 1fr; gap: 1rem; }
    .journey-step::before { display: none; }
    .journey-number { width: 48px; height: 48px; font-size: 1.1rem; border-radius: 12px; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 1.5rem; }

    .involvement-grid { grid-template-columns: 1fr; }

    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
    .hero h1 { letter-spacing: -1px; }
    .stat-bar { flex-direction: column; gap: 1rem; }
    .problem-facts { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-secondary, .btn-light { width: 100%; justify-content: center; }
    .skill-grid { grid-template-columns: 1fr; }
    .outcome-cards { grid-template-columns: 1fr; }
}
