/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a1229;
    --primary-blue: #002b57;
    --accent-green: #e0f7fa;
    --accent-green-alt: #ffffff;
    --text-white: #ffffff;
    --text-black: #1a1a1a;
    --text-gray: #666666;
    --scarcity-red: #ff6b6b;
    --bg-light: #f8f9fa;
    --header-bg: rgba(10, 18, 41, 0.98);
    --hero-overlay: linear-gradient(135deg, rgba(10, 18, 41, 0.85) 0%, rgba(0, 43, 87, 0.8) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-black);
    background-color: var(--text-white);
    overflow-x: hidden;
    letter-spacing: 0.01em;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--header-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--accent-green);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-links a:hover {
    color: var(--accent-green);
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    padding: 140px 20px 100px;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    line-height: 1.5;
    opacity: 0.95;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 12px 24px;
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.badge:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scarcity-badge {
    background-color: rgba(255, 107, 107, 0.15);
    border-color: var(--scarcity-red);
    color: #ffebee;
    font-weight: 700;
    animation: pulse 2s infinite;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.scarcity-text {
    color: var(--scarcity-red);
    font-weight: 700;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.6), 0 0 0 2px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-cta {
    font-size: 1.3rem;
    padding: 22px 55px;
    letter-spacing: 0.5px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    position: relative;
    margin: 0 auto;
    animation: scroll-bounce 2s infinite;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-right: 2px solid rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    transform: rotate(45deg);
}

@keyframes scroll-bounce {
    0%, 20% {
        transform: translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: translateY(10px);
        opacity: 1;
    }
    80%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
}


/* Section Headings */
.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    letter-spacing: -0.3px;
}

.section-subheading {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

/* What You'll Do Section */
.what-youll-do {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.timeline::after {
    display: none;
}

.timeline-item {
    background: var(--text-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.timeline-item::after {
    display: none;
}

.timeline-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.timeline-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.timeline-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.timeline-item:hover .timeline-img {
    transform: scale(1.05);
}

.timeline-content h3 {
    margin: 15px 0 10px;
    color: var(--primary-dark);
    font-size: 1.2rem;
    line-height: 1.3;
}

.timeline-content p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .timeline {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .timeline-item {
        margin-bottom: 20px;
    }
}

/* Add smooth hover effects */
.timeline-item {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Improve card shadows on hover */
.timeline-item:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.12), 0 10px 10px rgba(0,0,0,0.08);
}

/* Slightly reduce image height for better proportions */
.timeline-image {
    height: 160px;
}

/* Improve typography spacing */
.timeline-content h3 {
    margin: 12px 0 8px;
    font-size: 1.25rem;
}

.timeline-content p {
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Image Placeholders */
.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    padding: 20px;
}

.image-placeholder.lab-work {
    background: linear-gradient(135deg, #1a4d7a 0%, #0f1b3d 100%);
}

.image-placeholder.glowing-bacteria {
    background: linear-gradient(135deg, #003366 0%, #001122 100%);
    position: relative;
}

.image-placeholder.glowing-bacteria::after {
    content: '🧬';
    font-size: 3rem;
    opacity: 0.3;
    position: absolute;
}

.image-placeholder.poster-presentation {
    background: linear-gradient(135deg, #0f1b3d 0%, #003366 100%);
}

.image-placeholder.poster-example {
    background: linear-gradient(135deg, #2d4a6b 0%, #0f1b3d 100%);
    min-height: 200px;
}

.image-placeholder.certificate {
    background: linear-gradient(135deg, #1a4d7a 0%, #0f1b3d 100%);
    min-height: 150px;
}

.founder-img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--accent-green);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.25), 0 0 0 8px rgba(57, 255, 20, 0.1);
    transition: transform 0.1s ease;
}

.founder-img:hover {
    transform: scale(1.05);
}

/* Resume Gold Section */
.resume-gold {
    padding: 80px 0;
    background-color: var(--text-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 3px solid var(--accent-green);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(3px);
}

.checkmark {
    font-size: 1.5rem;
    color: var(--accent-green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.benefit-content p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}


.results-text {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 2rem;
    padding: 1.25rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Founder Section */
.founder {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.founder-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 5rem;
    margin-top: 3rem;
    align-items: start;
}

.founder-image-container {
    display: flex;
    justify-content: center;
    position: sticky;
    top: 120px;
}

.founder-main {
    max-width: 950px;
}

.founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.founder-intro {
    font-size: 1.2rem;
    line-height: 1.85;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-weight: 400;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

/* Achievement Cards - Professional Design */
.achievements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.achievement-item {
    background: var(--text-white);
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.achievement-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-color: #b0b0b0;
}

.achievement-item.featured {
    border: 2px solid #d4af37;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.achievement-item.featured:hover {
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.3);
}

.achievement-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.achievement-item.featured .achievement-header {
    background: linear-gradient(135deg, #fffef8 0%, #ffffff 100%);
    border-bottom-color: #f0e6c8;
}

.achievement-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.breakthrough-badge {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.3);
}

.hosa-badge {
    background: linear-gradient(135deg, #8b7355 0%, #6b5a45 100%);
    color: #ffffff;
}

.deca-badge {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #ffffff;
}

.badge-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.achievement-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.achievement-item.featured .achievement-title {
    font-size: 1.5rem;
}

.achievement-body {
    padding: 1.5rem;
}

.prize-highlight {
    background: linear-gradient(135deg, #fff8dc 0%, #ffeaa7 100%);
    border: 2px solid #d4af37;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    text-align: center;
}

.prize-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: #b8860b;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.prize-details {
    font-size: 0.95rem;
    color: #8b6914;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.achievement-rank {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.achievement-rank:last-of-type {
    border-bottom: none;
}

.rank-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rank-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.3px;
}

.achievement-item.featured .rank-value {
    color: #b8860b;
    font-size: 1.3rem;
}

.achievement-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.achievement-details p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0.6rem;
}

.achievement-details p:last-child {
    margin-bottom: 0;
}

.achievement-details strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.achievement-prestige {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.prestige-tag {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #d0d0d0;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: 0.3px;
}

/* Teaching & Mentoring Experience */
.founder-mentoring {
    margin: 2.5rem 0;
    background: var(--text-white);
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.founder-mentoring:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-color: #b0b0b0;
}

.mentoring-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.mentoring-badge {
    background: linear-gradient(135deg, var(--accent-green) 0%, #2dd475 100%);
    color: var(--text-white);
    box-shadow: 0 2px 6px rgba(57, 255, 20, 0.3);
}

.mentoring-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.mentoring-content {
    padding: 1.5rem;
    line-height: 1.8;
}

.mentoring-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.6rem;
}

.mentoring-content p:last-child {
    margin-bottom: 0;
}

.mentoring-content strong {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Skills Tags */
.founder-expertise {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: var(--text-white);
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.expertise-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-tag {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: var(--text-white);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(15, 27, 61, 0.2);
}

.founder-closing {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

/* Program Details Section */
.program-details {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.program-details-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.program-info-section {
    margin-bottom: 4rem;
}

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

.detail-card {
    background: var(--text-white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.best-value-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(135deg, var(--accent-green) 0%, #2dd475 100%);
    color: var(--text-white);
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(57, 255, 20, 0.4);
    z-index: 10;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-dark);
}

.detail-card:hover::before {
    transform: scaleX(1);
}

.detail-card.availability {
    border-color: #d0d0d0;
    background: var(--text-white);
}

.detail-card.availability::before {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
}

.detail-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    filter: grayscale(0.3);
    transition: transform 0.3s ease;
}

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

.detail-content {
    width: 100%;
}

.detail-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
}

.price-wrapper {
    width: 100%;
    margin-bottom: 0.75rem;
}

.original-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-gray);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    position: relative;
}

.currency {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    vertical-align: baseline;
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    letter-spacing: -1px;
}

.discount-badge {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, #ff3333 0%, #ff6666 100%);
    color: var(--text-white);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-left: 8px;
    box-shadow: 0 2px 6px rgba(255, 51, 51, 0.3);
    animation: pulse 2s infinite;
}

.price-includes {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0.5rem 0 0.75rem;
}

.deposit-info {
    font-size: 0.9rem;
    color: #000000;
    margin: 0.5rem 0 0.75rem;
    font-weight: 400;
}

.deposit-amount {
    font-weight: 600;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    margin-right: 0.25rem;
}

.price-note {
    font-size: 0.85rem;
    color: var(--scarcity-red);
    font-weight: 600;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Cohort Dates Styling */
.cohort-dates {
    margin: 1rem 0;
    width: 100%;
}

.cohort-dates-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.cohort-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.8rem;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.cohort-date.booked {
    background-color: #f8f9fa;
    color: #999;
    text-decoration: line-through;
    opacity: 0.8;
}

.cohort-date.available {
    background-color: #f0f9ff;
    border: 1px solid #b8e3ff;
    font-weight: 500;
    box-shadow: 0 2px 12px rgba(0, 102, 204, 0.12);
}

.date-range {
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.4;
    flex: 1;
    margin-right: 1rem;
}

.cohort-date.booked .date-range {
    color: #888;
    text-decoration: line-through;
}

.cohort-date.available .date-range {
    color: #0066cc;
    font-weight: 500;
}

.status-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    white-space: nowrap;
    margin-left: 0.5rem;
}

.cohort-date.booked .status-badge {
    background-color: #f0f0f0;
    color: #888;
    border: 1px solid #e0e0e0;
}

.cohort-date.available .status-badge.highlight {
    background-color: #e6f7ff;
    color: #0066cc;
    border: 1px solid #b8e3ff;
    font-weight: 600;
}

.date-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1.2rem;
    font-style: italic;
    text-align: center;
    opacity: 0.9;
}

.scarcity-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.75rem;
}

.scarcity-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.scarcity-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scarcity-warning {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 0.5rem;
}

.enrollment-count {
    margin: 0.75rem 0;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-radius: 6px;
    border-left: 3px solid var(--accent-green);
}

.enrolled-text {
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.urgency-text {
    font-size: 0.85rem;
    color: var(--scarcity-red);
    font-weight: 700;
    margin-top: 0.75rem;
    padding: 0.5rem;
    background: rgba(255, 51, 51, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(255, 51, 51, 0.2);
}

.apply-section {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.apply-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.4);
}

.apply-button:hover {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.5);
}


/* Contact Section */
.contact-section {
    background-color: var(--primary-dark);
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-text {
    color: var(--text-white);
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
}

.contact-link {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-green-alt);
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--text-white);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer a {
    color: var(--accent-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-green-alt);
}

.privacy-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--primary-dark);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s ease;
        gap: 1rem;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subheadline {
        font-size: 1.2rem;
    }

    .hero-badges {
        gap: 0.75rem;
    }

    .badge {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .section-heading {
        font-size: 2rem;
    }

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

    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .founder-image-container {
        justify-content: center;
        position: static;
    }

    .founder-main {
        text-align: left;
    }

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

    .achievement-item.featured {
        grid-column: 1;
    }

    .achievement-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .achievement-prestige {
        flex-direction: column;
    }

    .founder-name {
        font-size: 2.5rem;
    }

    .details-container {
        grid-template-columns: 1fr;
    }

    .price-amount,
    .scarcity-number {
        font-size: 2.8rem;
    }

    .price-display {
        flex-direction: column;
        gap: 0.5rem;
    }

    .discount-badge {
        margin-left: 0;
        margin-top: 0.25rem;
    }

    .original-price {
        font-size: 1.1rem;
    }

    .enrollment-count,
    .urgency-text {
        font-size: 0.8rem;
        padding: 0.4rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }


    .hero-cta,
    .large-cta {
        font-size: 1rem;
        padding: 16px 30px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-arrow {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 100px 15px 60px;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .founder-name {
        font-size: 2rem;
    }

    .achievement-card {
        flex-direction: column;
        text-align: center;
    }
}

