/* Reset and Base Styles - Modern UI (Cluely-inspired) */
/* A2 Gothic Medium – place font files in /fonts/ (e.g. A2Gothic-Medium.woff2, A2Gothic-Medium.woff) */
@font-face {
    font-family: 'A2 Gothic';
    src: url('fonts/A2Gothic-Medium.woff2') format('woff2'),
         url('fonts/A2Gothic-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Refined palette - modern, clean */
    --primary-color: #F97316;
    --primary-dark: #EA580C;
    --primary-light: #FDBA74;
    --secondary-color: #0F172A;
    --secondary-light: #334155;
    --accent-color: #FBBF24;
    --success-color: #22C55E;
    
    /* Neutrals - high contrast, minimal */
    --text-dark: #0F172A;
    --text-medium: #475569;
    --text-light: #94A3B8;
    --background: #FFFFFF;
    --background-light: #F8FAFC;
    --background-medium: #F1F5F9;
    --border-color: #E2E8F0;
    
    /* A2 Gothic Medium – match logo */
    --font-primary: 'A2 Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-headings: 'A2 Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing - more breathable */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    
    /* Border radius - softer, modern */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-pill: 9999px;
    
    /* Shadows - subtle */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
}

body {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-dark);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.375rem;
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.large-text {
    font-size: 1.25rem;
    line-height: 1.7;
}

/* Buttons - modern, pill-friendly */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-primary-small {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-pill);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--background);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--background-medium);
    border-color: var(--text-light);
}

.btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--background-light);
    border-color: var(--text-dark);
}

.btn-primary-small {
    padding: 0.5rem 1.25rem;
    background: var(--primary-color);
    color: white;
    font-size: 0.875rem;
}

.btn-primary-small:hover {
    background: var(--primary-dark);
}

.btn-full {
    width: 100%;
}

/* Navigation - minimal, clean */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.875rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: var(--text-dark);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section - bold, minimal */
.hero {
    background: var(--background);
    padding: 5rem 0 4rem;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-headings);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Section Styles */
.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-top: var(--spacing-sm);
}

/* About Section - Redesigned */
.about-section-redesign {
    background: var(--background);
    padding: var(--spacing-xl) 0;
}

.about-hero-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin: var(--spacing-xl) 0;
    background: var(--background-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
}

.about-hero-content .hero-badge {
    display: inline-block;
    background: var(--text-dark);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 0.8125rem;
    margin-bottom: var(--spacing-md);
}

.about-hero-content h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    line-height: 1.3;
}

.about-hero-content .hero-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

/* Stats row below What is CareerQuest */
.stats-row {
    background: var(--background);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--border-color);
}

.stats-row-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    max-width: 800px;
    margin: 0 auto;
}

.stats-row-item {
    text-align: center;
    padding: var(--spacing-sm) var(--spacing-md);
}

.stats-row-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-headings);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.stats-row-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-medium);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* About Section Continued */
.about-section-continued {
    padding-top: var(--spacing-xl);
    background: var(--background);
}

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.highlight-item {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.highlight-content {
    padding: var(--spacing-md);
    text-align: center;
}

.highlight-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-headings);
    line-height: 1;
    display: block;
    margin-bottom: 0.75rem;
}

.highlight-label {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-hero-visual {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.visual-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--primary-color);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.visual-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.visual-card-2 {
    border-left-color: var(--secondary-color);
}

.visual-card-3 {
    border-left-color: var(--accent-color);
}

.visual-card .card-icon-outline {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.visual-card:hover .card-icon-outline {
    transform: scale(1.1);
}

.visual-card-1 .card-icon-outline {
    color: var(--primary-color);
}

.visual-card-2 .card-icon-outline {
    color: var(--secondary-color);
}

.visual-card-3 .card-icon-outline {
    color: var(--accent-color);
}

.visual-card .card-text {
    flex: 1;
}

.visual-card h4 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.visual-card p {
    margin: 0;
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Differentiators Section */
.differentiators {
    margin: var(--spacing-xl) 0;
}

.differentiators-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

.about-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    align-items: stretch;
}

.about-card-new {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.about-card-new:hover {
    border-color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.card-icon-badge {
    width: 48px;
    height: 48px;
    background: var(--background-medium);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    flex-shrink: 0;
}

.card-icon-badge svg {
    color: var(--primary-color);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.about-card-new h3 {
    margin: 0 0 var(--spacing-xs) 0;
    color: var(--text-dark);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
}

.about-card-new > p {
    color: var(--text-medium);
    font-size: 0.9375rem;
    line-height: 1.55;
    margin-bottom: var(--spacing-sm);
    flex-grow: 1;
}

.feature-mini-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-medium);
}

.feature-mini-list li {
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
}

.feature-mini-list li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 960px) {
    .about-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-mini-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.feature-mini-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Journey Overview */
.journey-overview {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
}

.journey-title {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    text-align: center;
}

.journey-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-lg);
}

.journey-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    position: relative;
}

.journey-timeline::before {
    content: "";
    position: absolute;
    top: 1.25rem;
    left: 12%;
    right: 12%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.journey-step {
    flex: 1;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--background);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    flex-shrink: 0;
}

.step-body {
    padding: 0 var(--spacing-xs);
}

.journey-step h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.journey-step p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-medium);
    line-height: 1.45;
}

.journey-connector {
    width: 1.5rem;
    flex-shrink: 0;
    align-self: center;
    margin-top: -2.5rem;
}

.journey-connector::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    margin: 0 auto;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
}

/* Old About Section (keeping for compatibility) */
.about-section {
    background: var(--background);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.about-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.about-card .icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.about-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.about-card p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Why Choose Section */
.why-section {
    background: var(--background-light);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.why-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.check-icon {
    font-size: 1.5rem;
    color: var(--success-color);
    font-weight: bold;
    background: rgba(82, 201, 122, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.why-item h4 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.why-item p {
    margin: 0;
    color: var(--text-medium);
}

.why-image {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    text-align: center;
    padding: var(--spacing-md);
}

/* Programs Section */
.programs-section {
    background: white;
}

.founding-cohort-badge {
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.02em;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
    align-items: stretch;
}

.program-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    position: relative;
    transition: all 0.2s ease;
}

.program-card:hover {
    border-color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.program-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color), 0 8px 24px -4px rgba(249, 115, 22, 0.15);
}

.program-card-industry {
    padding: var(--spacing-lg) calc(var(--spacing-lg) + 0.5rem);
    transform: scale(1.02);
}

.program-card-industry:hover {
    box-shadow: 0 0 0 1px var(--primary-color), 0 12px 32px -4px rgba(249, 115, 22, 0.2);
}

.program-badge {
    position: absolute;
    top: -10px;
    right: var(--spacing-md);
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
}

.program-card.featured .program-badge {
    background: var(--secondary-color);
}

.program-card h3 {
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
}

.program-tagline {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 var(--spacing-xs) 0;
    letter-spacing: 0.02em;
}

.program-duration {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.program-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: var(--spacing-md) 0;
    padding: var(--spacing-sm) 0;
    border-top: 2px solid var(--background-medium);
    border-bottom: 2px solid var(--background-medium);
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-headings);
    letter-spacing: -0.02em;
}

.price-period {
    color: var(--text-light);
    font-size: 0.9rem;
}

.program-features {
    list-style: none;
    margin: var(--spacing-md) 0;
    padding: 0;
}

.program-features li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-medium);
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.pricing-note {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    text-align: center;
}

.discount-badge {
    display: inline-block;
    background: var(--text-dark);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-sm);
}

.pricing-note p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.pricing-note .small-text {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-top: var(--spacing-xs);
}

/* Why Upgrade to Industry Immersion */
.why-upgrade-industry {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
}

.why-upgrade-industry h3 {
    text-align: center;
    font-size: 1.375rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

.why-upgrade-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 960px;
    margin: 0 auto;
}

.why-upgrade-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.why-upgrade-icon {
    color: var(--primary-color);
    font-weight: 700;
    flex-shrink: 0;
}

.why-upgrade-item p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.55;
}

/* Students Section */
.students-section {
    background: linear-gradient(135deg, #E8F4FD 0%, #D6EAFF 100%);
}

.students-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.benefit-item {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.benefit-item .emoji {
    display: block;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.benefit-item .emoji svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.benefit-item h4 {
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.benefit-item p {
    margin: 0;
    font-size: 0.95rem;
}

.cta-box {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-top: var(--spacing-lg);
}

.cta-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.cta-author {
    color: var(--text-medium);
    font-weight: 500;
    margin-bottom: var(--spacing-md);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--background-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.stars {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-color);
    padding-top: var(--spacing-sm);
}

.testimonial-author strong {
    color: var(--text-dark);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.contact-info h2 {
    margin-bottom: var(--spacing-md);
}

.contact-details {
    margin-top: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    color: var(--primary-color);
}

.contact-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    color: var(--text-medium);
}

/* Form Styles */
.contact-form-wrapper {
    background: var(--background);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
}

.contact-form h3 {
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-dark);
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    margin-top: var(--spacing-sm);
}

.field-hint {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.875rem;
}

.form-hint {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.checkbox-group {
    padding: var(--spacing-sm) 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-label a {
    color: var(--secondary-color);
}

.payment-note .form-hint {
    margin-top: 0;
}

/* Thank You / Next Steps Page */
.thank-you-section {
    padding: var(--spacing-xl) 0;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-content h1 {
    text-align: center;
    color: var(--success-color);
    margin-bottom: var(--spacing-sm);
}

.thank-you-lead {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
}

.next-steps {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    margin-bottom: var(--spacing-lg);
}

.next-steps h2 {
    margin-bottom: var(--spacing-md);
}

.next-steps-list {
    padding-left: var(--spacing-md);
}

.next-steps-list li {
    margin-bottom: var(--spacing-md);
}

.next-steps-list h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-action {
    margin-top: var(--spacing-sm);
}

.integration-card {
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    margin-bottom: var(--spacing-lg);
}

.integration-card h3 {
    margin-bottom: var(--spacing-sm);
}

.integration-note {
    font-size: 0.95rem;
    margin-top: var(--spacing-sm);
}

.teams-schedule-placeholder {
    margin-top: var(--spacing-md);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-md) 0;
}

.schedule-table th,
.schedule-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.schedule-table th {
    background: var(--background-medium);
    font-weight: 600;
}

.teams-note {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-top: var(--spacing-sm);
}

.thank-you-footer {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-content:has(.footer-brand) {
    grid-template-columns: 1.25fr 2fr;
    align-items: start;
}

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

.footer-logo {
    margin-bottom: var(--spacing-sm);
}

.footer-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.footer-cta {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--primary-color);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: background 0.2s ease;
}

.footer-cta:hover {
    background: var(--primary-dark);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.footer-column h3,
.footer-column h4 {
    color: white;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: var(--spacing-md);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
}

.footer-copy {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    font-size: 0.875rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: white;
}

.footer-sep {
    margin: 0 0.35rem;
    color: rgba(255, 255, 255, 0.4);
}

.powered-by {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.powered-by strong {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
}

/* Legacy footer-bottom (pages that still use <p> tags) */
.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
    margin-bottom: 0.5rem;
}

.footer-bottom:not(:has(.footer-copy)) {
    flex-direction: column;
    text-align: center;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-md);
        gap: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .why-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content:has(.footer-brand) {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .program-card-industry {
        transform: none;
        padding: var(--spacing-lg);
    }
    
    .why-upgrade-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .programs-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .program-card-industry {
        transform: none;
        padding: var(--spacing-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Page Header Styles */
.page-header {
    background: var(--background-light);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    margin-bottom: var(--spacing-sm);
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

.student-header {
    background: var(--background-light);
}

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

.faq-category {
    margin-bottom: var(--spacing-xl);
}

.faq-category h2 {
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.faq-item {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    font-family: var(--font-headings);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p,
.faq-answer ul {
    padding: 0 var(--spacing-md) var(--spacing-md);
    margin: 0;
}

.faq-answer ul {
    list-style: none;
    padding-left: var(--spacing-lg);
}

.faq-answer ul li {
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.faq-answer ul li::before {
    content: '•';
    position: absolute;
    left: -1.25rem;
    color: var(--primary-color);
    font-weight: bold;
}

.faq-answer a {
    color: var(--secondary-color);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Resource Pages Styles */
.resource-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.resource-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.resource-card h3 {
    margin-bottom: var(--spacing-sm);
}

.resource-list {
    list-style: none;
    margin: var(--spacing-md) 0;
    padding: 0;
}

.resource-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.resource-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.additional-resources {
    margin-top: var(--spacing-xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.resource-section {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--border-color);
}

.resource-section h3 {
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.content-list {
    list-style: none;
    padding: 0;
}

.content-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--background-medium);
}

.content-list li:last-child {
    border-bottom: none;
}

.action-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.action-step {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.action-step h4 {
    margin-bottom: 0.25rem;
}

.action-step p {
    margin: 0;
    color: var(--text-medium);
}

/* Community Section */
.community-section {
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-xl);
    text-align: center;
}

.community-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.community-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.community-card h4 {
    margin-bottom: var(--spacing-sm);
}

/* Student Resources Styles */
.student-resources-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.student-resources-layout {
    display: flex;
    gap: var(--spacing-xl);
    align-items: flex-start;
}

.student-resources-sidebar {
    flex-shrink: 0;
    width: 240px;
    position: sticky;
    top: calc(var(--spacing-md) + 60px);
}

.resources-nav {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-md);
}

.resources-nav-title {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-medium);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid var(--border-color);
}

.resources-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resources-nav-list > li {
    margin-bottom: 0.25rem;
}

.resources-nav-list > li > a {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.resources-nav-list > li > a:hover {
    background: var(--background-light);
    color: var(--primary-color);
}

.resources-nav-sublist {
    list-style: none;
    padding: 0 0 0 0.75rem;
    margin: 0.25rem 0 0.75rem 0;
    border-left: 2px solid var(--border-color);
}

.resources-nav-sublist li {
    margin-bottom: 0.15rem;
}

.resources-nav-sublist a {
    display: block;
    padding: 0.35rem 0.5rem;
    font-size: 0.875rem;
    color: var(--text-medium);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: color 0.2s ease, background 0.2s ease;
}

.resources-nav-sublist a:hover {
    color: var(--primary-color);
    background: var(--background-light);
}

.student-resources-main {
    flex: 1;
    min-width: 0;
}

@media (max-width: 968px) {
    .student-resources-layout {
        flex-direction: column;
    }
    
    .student-resources-sidebar {
        position: static;
        width: 100%;
    }
    
    .resources-nav {
        padding: var(--spacing-md);
    }
    
    .resources-nav-title {
        margin-bottom: var(--spacing-sm);
    }
    
    .resources-nav-sublist {
        margin-left: 0;
        padding-left: 1rem;
        border-left: none;
    }
}

.camp-hub {
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
}

.camp-hub-title {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.camp-hub-subtitle {
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
}

.camp-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.camp-hub-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    background: var(--background);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.camp-hub-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.camp-hub-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.camp-hub-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
}

.camp-hub-card p {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: var(--spacing-sm);
    flex-grow: 1;
}

.camp-hub-cta {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
}

.camp-hub-card:hover .camp-hub-cta {
    text-decoration: underline;
}

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

.tools-section {
    margin-bottom: var(--spacing-xl);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.tool-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.tool-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.tool-card h4 {
    margin-bottom: var(--spacing-sm);
}

.guides-section,
.skills-section,
.spotlight-section,
.learning-section,
.inspiration-section {
    margin-bottom: var(--spacing-xl);
}

.section-intro {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.guide-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.guide-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.guide-badge {
    position: absolute;
    top: -12px;
    right: var(--spacing-md);
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

.guide-card h3 {
    margin-bottom: var(--spacing-sm);
}

.guide-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.guide-card a:hover {
    text-decoration: underline;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.skill-category {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.skill-category h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-size: 1.25rem;
}

.skill-list {
    list-style: none;
    padding: 0;
}

.skill-list li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    border-bottom: 1px solid var(--background-medium);
}

.skill-list li:last-child {
    border-bottom: none;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.spotlight-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.spotlight-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.spotlight-image .image-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.spotlight-content {
    padding: var(--spacing-md);
}

.spotlight-tag {
    background: var(--background-medium);
    color: var(--secondary-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
}

.spotlight-content h4 {
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.spotlight-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.spotlight-content a:hover {
    text-decoration: underline;
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.learning-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.learning-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.learning-card h4 {
    margin-bottom: var(--spacing-xs);
}

.learning-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.learning-card a:hover {
    text-decoration: underline;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.story-card {
    background: var(--background-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.story-quote {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
}

.story-author {
    display: flex;
    flex-direction: column;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-color);
}

.story-author strong {
    color: var(--text-dark);
}

.story-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.text-center {
    text-align: center;
}

/* Blog Styles */
.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-xl);
}

.featured-post-image .image-placeholder {
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 600;
}

.featured-post-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-category {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
    margin-bottom: var(--spacing-sm);
}

.featured-post-content h2 {
    margin-bottom: var(--spacing-sm);
}

.post-excerpt {
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
}

.post-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
}

.post-meta span {
    margin: 0 0.25rem;
}

.blog-filters {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: white;
    border: 2px solid var(--border-color);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--text-medium);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.blog-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.blog-card-image .image-placeholder {
    aspect-ratio: 16/9;
    background: var(--background-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.blog-card-content {
    padding: var(--spacing-md);
}

.blog-card-content h3 {
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 600px;
    margin: 0 auto var(--spacing-sm);
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

.newsletter-form button {
    white-space: nowrap;
}

.newsletter-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Curriculum Page Styles */
.curriculum-page-header .page-header-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-medium);
    margin-bottom: var(--spacing-sm);
}

.curriculum-section .curriculum-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--spacing-xl);
    font-size: 1.0625rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.pillars-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.pillar-card {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pillar-card:hover {
    border-color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.pillar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.pillar-number {
    background: var(--text-dark);
    color: white;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
}

.pillar-timeline {
    color: var(--text-medium);
    font-size: 0.875rem;
    font-weight: 500;
}

.pillar-card h2 {
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
    font-size: 1.5rem;
}

.pillar-description {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.pillar-content {
    display: grid;
    gap: var(--spacing-md);
}

.pillar-section {
    background: var(--background-light);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.pillar-section h3,
.pillar-section-title {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
}

.pillar-section h3 svg {
    color: var(--primary-color);
    vertical-align: middle;
    margin-right: 0.5rem;
}

.pillar-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pillar-section ul li {
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--text-medium);
    font-size: 0.9375rem;
}

.pillar-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary-color);
}

.pillar-section.output {
    border-color: var(--border-color);
    background: var(--background);
}

.output-box {
    background: var(--background-light);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    margin-top: var(--spacing-sm);
}

.output-box strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

/* Program Formats Section */
.formats-section {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
}

.formats-section h2 {
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.formats-section .section-intro {
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-md);
}

.format-card {
    background: var(--background);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.format-card:hover {
    border-color: var(--text-light);
    box-shadow: var(--shadow-sm);
}

.format-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.format-card h4 {
    margin-bottom: 0.35rem;
    color: var(--text-dark);
    font-size: 1.0625rem;
}

.format-card p {
    margin: 0;
    color: var(--text-medium);
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* Track Comparison Section */
.tracks-comparison {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
}

.tracks-comparison h2 {
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.tracks-comparison .section-intro {
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
}

.comparison-table {
    background: var(--background);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-top: var(--spacing-md);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background: var(--text-dark);
}

.comparison-row.header .comparison-cell {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.comparison-cell {
    padding: var(--spacing-md) var(--spacing-sm);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    border-right: 1px solid var(--border-color);
    font-size: 0.9375rem;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-cell.label {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--background-light);
}

.track-subtitle {
    display: block;
    font-size: 0.8125rem;
    font-weight: 400;
    opacity: 0.85;
    margin-top: 0.25rem;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-highlight {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.pricing-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.pricing-col h3 {
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.pricing-col h3 svg {
    color: var(--primary-color);
    vertical-align: middle;
    margin-right: 0.5rem;
}

.pricing-col p {
    color: var(--text-medium);
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
}

.pricing-example {
    background: var(--background);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary-color);
    font-size: 0.9375rem;
    color: var(--text-medium);
}

.curriculum-cta {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-xl);
    text-align: center;
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
}

.curriculum-cta h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.375rem;
}

.curriculum-cta p {
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Legal Pages Styles */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-intro {
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.legal-section {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--border-color);
}

.legal-section h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--background-medium);
}

.legal-section h3 {
    color: var(--text-dark);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.legal-section ul {
    margin: var(--spacing-sm) 0;
    padding-left: var(--spacing-lg);
}

.legal-section ul li {
    margin-bottom: 0.75rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.legal-section p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.contact-box {
    background: var(--background-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary-color);
    margin-top: var(--spacing-md);
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.legal-footer {
    background: var(--background-medium);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-lg);
    text-align: center;
}

.legal-footer p {
    margin: 0;
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Responsive adjustments for new pages */
@media (max-width: 968px) {
    .featured-post {
        grid-template-columns: 1fr;
    }
    
    .featured-post-image .image-placeholder {
        min-height: 300px;
    }
}

@media (max-width: 968px) {
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
    
    .comparison-cell {
        padding: var(--spacing-sm);
        font-size: 0.9rem;
    }
    
    .about-hero-block {
        grid-template-columns: 1fr;
        padding: var(--spacing-lg);
    }
    
    .stats-row-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .journey-timeline {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }
    
    .journey-timeline::before {
        display: none;
    }
    
    .journey-connector {
        display: none;
    }
    
    .journey-step {
        max-width: 280px;
    }
}

@media (max-width: 640px) {
    .tools-grid,
    .guide-grid,
    .skills-grid,
    .spotlight-grid,
    .learning-grid,
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-section {
        padding: var(--spacing-md);
    }
    
    .pillar-card {
        padding: var(--spacing-md);
    }
    
    .pillar-header {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: flex-start;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .comparison-row {
        display: flex;
        flex-direction: column;
        border-bottom: 2px solid var(--border-color);
    }
    
    .comparison-row.header {
        display: none;
    }
    
    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: var(--spacing-sm);
        text-align: left;
    }
    
    .comparison-cell.label {
        font-weight: 700;
        background: var(--background-medium);
    }
    
    .formats-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cols {
        grid-template-columns: 1fr;
    }
    
    .stats-row-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid-new {
        grid-template-columns: 1fr;
    }
    
    .about-hero-content h3 {
        font-size: 1.5rem;
    }
    
    .differentiators-title {
        font-size: 1.5rem;
    }
    
    .about-card-new h3 {
        font-size: 1.125rem;
    }
    
    .about-card-new > p {
        font-size: 0.9375rem;
    }
    
    .journey-title {
        font-size: 1.5rem;
    }
    
    .about-hero-block {
        padding: var(--spacing-md);
    }
}

/* Success message styling */
.success-message {
    background: var(--success-color);
    color: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    text-align: center;
    margin-top: var(--spacing-md);
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
