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

:root {
    --primary-color: #059669;
    --primary-dark: #047857;
    --primary-light: #10B981;
    --secondary-color: #6C5CE7;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #7A7A7A;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E5E5E5;
    --accent-blue: #4A90E2;
    --accent-orange: #FF6B35;
    --accent-purple: #A855F7;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Display Font for Headings and Branding */
.hero-title,
.logo-text,
.footer-brand-text,
h1, h2 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

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

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.2s;
}

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



/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

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

.btn-secondary:hover {
    background: var(--bg-light);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

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

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    background: #FFFFFF;
    position: relative;
    overflow: visible;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 80px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.02) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    max-width: 900px;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 84px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 36px;
    letter-spacing: -2.5px;
    color: var(--text-dark);
}

.hero-highlight {
    color: var(--accent-orange);
    font-weight: 400;
    position: relative;
    display: inline-block;
}

.hero-subhead {
    font-size: 22px;
    color: var(--text-medium);
    margin-bottom: 44px;
    line-height: 1.6;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
}

.btn-hero {
    padding: 18px 48px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
}

/* Hero Decorations */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-bar {
    position: absolute;
    height: 3px;
    background: var(--text-dark);
    opacity: 0.15;
}

.bar-1 {
    width: 250px;
    top: 30%;
    left: 5%;
    transform: rotate(-1deg);
}

.bar-2 {
    width: 280px;
    bottom: 35%;
    right: 8%;
    transform: rotate(2deg);
}

.decoration-circle {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    opacity: 0.25;
}

.circle-1 {
    width: 100px;
    height: 100px;
    border-color: var(--accent-blue);
    top: 20%;
    right: 12%;
    animation: float-slow 8s ease-in-out infinite;
}

.circle-2 {
    width: 70px;
    height: 70px;
    border-color: var(--accent-orange);
    bottom: 30%;
    left: 8%;
    animation: float-slow 10s ease-in-out infinite 2s;
}

.decoration-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    opacity: 0.5;
}

.dot-1 {
    background: var(--accent-orange);
    top: 18%;
    right: 28%;
    animation: pulse 3s ease-in-out infinite;
}

.dot-2 {
    background: var(--primary-color);
    top: 50%;
    left: 15%;
    animation: pulse 3s ease-in-out infinite 1s;
}

.dot-3 {
    background: var(--accent-blue);
    bottom: 22%;
    right: 18%;
    animation: pulse 3s ease-in-out infinite 2s;
}

.decoration-chart {
    position: absolute;
    width: 110px;
    height: 70px;
    top: 25%;
    left: 8%;
    opacity: 0.4;
    animation: float-slow 12s ease-in-out infinite;
}

.decoration-code {
    position: absolute;
    width: 90px;
    bottom: 32%;
    right: 10%;
    opacity: 0.35;
}

.code-line {
    height: 3px;
    background: var(--secondary-color);
    margin-bottom: 5px;
    border-radius: 2px;
}

.code-line.short {
    width: 65%;
}

.decoration-curve {
    position: absolute;
    width: 180px;
    height: 90px;
    bottom: 25%;
    right: 15%;
    opacity: 0.25;
}

@keyframes float-slow {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(5deg); 
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: scale(1.3);
        opacity: 0.7;
    }
}

@keyframes float-bounce {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) translateX(5px) rotate(5deg);
    }
    50% {
        transform: translateY(-25px) translateX(-5px) rotate(-3deg);
    }
    75% {
        transform: translateY(-15px) translateX(3px) rotate(2deg);
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg);
    }
    75% {
        transform: rotate(-5deg);
    }
}

@keyframes float-diagonal {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, -20px) rotate(10deg);
    }
}

/* Floating Tech Icons */
.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    opacity: 0.15;
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary-color);
}

.floating-icon:hover {
    opacity: 0.4;
    transform: scale(1.2);
}

.icon-1 {
    top: 15%;
    left: 8%;
    animation: float-bounce 8s ease-in-out infinite;
    color: var(--accent-blue);
}

.icon-1 svg {
    color: var(--accent-blue);
}

.icon-2 {
    top: 25%;
    right: 10%;
    animation: spin-slow 20s linear infinite;
}

.icon-2 svg {
    color: var(--primary-color);
}

.icon-3 {
    top: 55%;
    left: 5%;
    animation: wiggle 4s ease-in-out infinite;
}

.icon-3 svg {
    color: var(--accent-orange);
}

.icon-4 {
    bottom: 35%;
    right: 8%;
    animation: float-diagonal 10s ease-in-out infinite;
}

.icon-4 svg {
    color: var(--accent-purple);
}

.icon-5 {
    top: 40%;
    right: 20%;
    animation: float-bounce 12s ease-in-out infinite 2s;
}

.icon-5 svg {
    color: var(--secondary-color);
}

.icon-6 {
    bottom: 25%;
    left: 15%;
    animation: pulse 5s ease-in-out infinite;
    width: 40px;
    height: 40px;
}

.icon-6 svg {
    color: var(--primary-light);
}

/* Subject Categories */
.subject-categories {
    padding: 40px 0 60px;
    background: #FFFFFF;
    position: relative;
    z-index: 3;
    margin-top: auto;
}

.categories-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-width: 100px;
    animation: fade-in-up 0.6s ease forwards;
    opacity: 0;
}

.category-item:nth-child(1) { animation-delay: 0.1s; }
.category-item:nth-child(2) { animation-delay: 0.2s; }
.category-item:nth-child(3) { animation-delay: 0.3s; }
.category-item:nth-child(4) { animation-delay: 0.4s; }
.category-item:nth-child(5) { animation-delay: 0.5s; }

.category-item:hover {
    transform: translateY(-8px) scale(1.05);
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.category-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-color);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.category-icon svg {
    width: 28px;
    height: 28px;
    color: var(--text-dark);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.category-item:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.35);
}

.category-item:hover .category-icon::before {
    width: 100%;
    height: 100%;
}

.category-item:hover .category-icon svg {
    color: white;
    transform: scale(1.1);
}

.category-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-medium);
    text-align: center;
    max-width: 110px;
    line-height: 1.3;
}

/* Value Proposition */
.value-prop {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF9F0 0%, #FFF5E8 100%);
    position: relative;
}

.value-prop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 107, 53, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.value-prop-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.value-prop-header {
    text-align: center;
    margin-bottom: 60px;
}

.value-prop h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    color: var(--text-dark);
}

.value-prop .highlight {
    color: var(--primary-color);
    position: relative;
}

.value-prop-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.value-prop-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-prop .lead {
    font-size: 21px;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

.value-prop-highlight {
    position: sticky;
    top: 100px;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 40px;
    border-radius: 24px;
    color: white;
    box-shadow: 0 20px 60px rgba(5, 150, 105, 0.3);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: white;
}

.highlight-box p {
    font-size: 19px;
    line-height: 1.6;
    margin: 0;
    color: white;
}

.highlight-box strong {
    font-weight: 700;
    color: white;
}

/* Value Stats */
.value-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 60px 0 0;
    border-top: 2px solid var(--border-color);
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--text-medium);
    font-weight: 600;
}

/* Why Works Section */
.why-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    position: relative;
    overflow: hidden;
}

.why-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(74, 144, 226, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(74, 144, 226, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.section-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.float-element {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.08;
}

.float-element svg {
    width: 100%;
    height: 100%;
    color: var(--primary-color);
}

.element-1 {
    top: 10%;
    left: 5%;
    animation: float-bounce 15s ease-in-out infinite;
}

.element-2 {
    top: 60%;
    right: 8%;
    animation: spin-slow 25s linear infinite;
}

.element-3 {
    bottom: 15%;
    left: 10%;
    animation: float-diagonal 18s ease-in-out infinite;
}

.why-works h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(5, 150, 105, 0.15);
    border-color: var(--primary-color);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    animation: wiggle 0.5s ease;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    color: var(--primary-dark);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Programs Section */
.programs {
    padding: 80px 0;
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    position: relative;
}

.programs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(5, 150, 105, 0.02) 10px, rgba(5, 150, 105, 0.02) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(5, 150, 105, 0.02) 10px, rgba(5, 150, 105, 0.02) 20px);
    pointer-events: none;
}

.programs h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.program-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.program-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.program-card-link .btn-primary {
    display: inline-block;
    text-decoration: none;
}

.program-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.program-card:hover::after {
    opacity: 1;
}

.program-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(5, 150, 105, 0.2);
    transform: scale(1.05);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(5, 150, 105, 0.2);
    }
    50% {
        box-shadow: 0 25px 70px rgba(5, 150, 105, 0.3);
    }
}

.program-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.program-card.featured:hover {
    transform: scale(1.08) translateY(-12px);
}

.program-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.program-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.program-duration {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 16px;
}

.program-card > p {
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.6;
}

.program-features {
    list-style: none;
    margin-bottom: 24px;
}

.program-features li {
    padding: 8px 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 24px;
}

.program-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.program-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #FEF3F2 0%, #FEE2E2 100%);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 107, 53, 0.06) 1px, transparent 0);
    background-size: 25px 25px;
    pointer-events: none;
}

.how-it-works h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.step {
    text-align: center;
}

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

.step h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Curriculum Timeline */
.curriculum {
    padding: 80px 0;
    background: linear-gradient(135deg, #FAF5FF 0%, #F3E8FF 100%);
    position: relative;
}

.curriculum::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, rgba(168, 85, 247, 0.04) 1px, transparent 1px),
        radial-gradient(circle, rgba(168, 85, 247, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    pointer-events: none;
}

.curriculum h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border-color);
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-content {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 16px;
    flex: 1;
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-medium);
}

/* Outcomes */
.outcomes {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
    position: relative;
}

.outcomes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, rgba(234, 179, 8, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(234, 179, 8, 0.02) 87.5%, rgba(234, 179, 8, 0.02)),
        linear-gradient(150deg, rgba(234, 179, 8, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(234, 179, 8, 0.02) 87.5%, rgba(234, 179, 8, 0.02)),
        linear-gradient(30deg, rgba(234, 179, 8, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(234, 179, 8, 0.02) 87.5%, rgba(234, 179, 8, 0.02)),
        linear-gradient(150deg, rgba(234, 179, 8, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(234, 179, 8, 0.02) 87.5%, rgba(234, 179, 8, 0.02));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    pointer-events: none;
}

.outcomes h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.outcome-item {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.outcome-item:hover {
    transform: translateY(-4px);
}

.outcome-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outcome-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
}

.outcome-item p {
    color: var(--text-medium);
    font-weight: 500;
}

.promises {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.promises h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.promises ul {
    list-style: none;
}

.promises li {
    padding: 12px 0;
    color: var(--text-medium);
    font-size: 18px;
    position: relative;
    padding-left: 32px;
}

.promises li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
}



/* FAQ */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #F0FDFA 0%, #CCFBF1 100%);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 0% 0%, rgba(20, 184, 166, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(20, 184, 166, 0.03) 0%, transparent 50%);
    background-size: 200px 200px, 150px 150px, 180px 180px;
    background-position: center, top left, bottom right;
    pointer-events: none;
}

.faq h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateX(8px);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.cta-float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.15;
}

.cta-float-icon svg {
    width: 100%;
    height: 100%;
    color: white;
}

.cta-float-icon.icon-1 {
    top: 15%;
    left: 10%;
    animation: float-bounce 10s ease-in-out infinite;
}

.cta-float-icon.icon-2 {
    top: 60%;
    right: 12%;
    animation: spin-slow 20s linear infinite;
}

.cta-float-icon.icon-3 {
    bottom: 20%;
    left: 15%;
    animation: pulse 5s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtext {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.cta-feature svg {
    width: 20px;
    height: 20px;
    color: white;
    flex-shrink: 0;
}

.btn-cta-main {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-cta-main:hover {
    background: var(--bg-light);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.cta-note {
    margin-top: 24px;
    font-size: 14px;
    opacity: 0.8;
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 40px;
}

.footer-top {
    margin-bottom: 80px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 800px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin-bottom: 14px;
    font-size: 16px;
    transition: color 0.2s;
}

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

/* Footer Brand Section */
.footer-brand-section {
    margin: 80px 0 60px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: nowrap;
}

.footer-logo-img {
    height: 140px;
    width: auto;
    flex-shrink: 0;
}

.footer-brand-text {
    font-size: 180px;
    font-weight: 700;
    color: white;
    letter-spacing: -6px;
    line-height: 1;
    white-space: nowrap;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin: 0;
}

.footer-legal {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 20px;
    }
    
    /* Navigation */
    .nav {
        padding: 12px 0;
    }
    
    .nav-container {
        padding: 0 20px;
        justify-content: center;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    /* Hero */
    .hero {
        min-height: 95vh;
        padding-top: 70px;
    }
    
    .hero-content {
        padding: 70px 0 40px;
    }
    
    .hero-title {
        font-size: 64px;
        letter-spacing: -2.5px;
        line-height: 1.12;
        margin-bottom: 28px;
    }
    
    .hero-subhead {
        font-size: 20px;
        max-width: 85%;
        line-height: 1.65;
        margin-bottom: 36px;
    }
    
    .btn-hero {
        padding: 16px 44px;
        font-size: 17px;
    }
    
    .subject-categories {
        padding: 40px 0 60px;
    }
    
    .decoration-bar,
    .decoration-circle,
    .decoration-chart,
    .decoration-code,
    .decoration-curve,
    .floating-icon {
        display: none;
    }
    
    .decoration-dot {
        width: 8px;
        height: 8px;
    }
    
    .float-element {
        display: none;
    }
    
    .categories-grid {
        gap: 24px;
    }
    
    /* Value Prop */
    .value-prop {
        padding: 60px 0;
    }
    
    .value-prop h2 {
        font-size: 36px;
    }
    
    .value-prop-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .value-prop-highlight {
        position: static;
    }
    
    .value-stats {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 0 0;
    }
    
    /* Features */
    .why-works {
        padding: 60px 0;
    }
    
    .why-works h2 {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Programs */
    .programs {
        padding: 60px 0;
    }
    
    .programs h2 {
        font-size: 36px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .program-card.featured {
        transform: scale(1);
    }
    
    .program-card {
        padding: 32px;
    }
    
    /* How It Works */
    .how-it-works {
        padding: 60px 0;
    }
    
    .how-it-works h2 {
        font-size: 36px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    /* Curriculum */
    .curriculum {
        padding: 60px 0;
    }
    
    .curriculum h2 {
        font-size: 36px;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-marker {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    /* Outcomes */
    .outcomes {
        padding: 60px 0;
    }
    
    .outcomes h2 {
        font-size: 36px;
    }
    
    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* FAQ */
    .faq {
        padding: 60px 0;
    }
    
    .faq h2 {
        font-size: 36px;
    }
    
    /* CTA */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .cta-subtext {
        font-size: 18px;
        margin-bottom: 32px;
        padding: 0 20px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .cta-feature {
        font-size: 15px;
        justify-content: center;
    }
    
    .btn-cta-main {
        width: 90%;
        max-width: 400px;
    }
    
    .cta-note {
        font-size: 13px;
        padding: 0 20px;
    }
    
    .cta-float-icon {
        display: none;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-top {
        margin-bottom: 60px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand-section {
        margin: 60px 0 40px;
    }
    
    .footer-brand-logo {
        gap: 24px;
    }
    
    .footer-logo-img {
        height: 100px;
    }
    
    .footer-brand-text {
        font-size: 120px;
        letter-spacing: -5px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
    
    .nav {
        padding: 10px 0;
    }
    
    .nav-container {
        padding: 0 16px;
        justify-content: center;
    }
    
    .logo {
        gap: 8px;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .nav-links {
        display: none;
    }
    
    /* Hero */
    .hero {
        min-height: 100vh;
        padding-top: 60px;
    }
    
    .hero-content {
        padding: 50px 0 30px;
    }
    
    .hero-title {
        font-size: 44px;
        letter-spacing: -1.8px;
        line-height: 1.1;
        margin-bottom: 24px;
    }
    
    .hero-highlight {
        display: inline-block;
    }
    
    .hero-subhead {
        font-size: 17px;
        max-width: 100%;
        line-height: 1.6;
        margin-bottom: 32px;
        padding: 0 8px;
    }
    
    .btn-hero {
        padding: 16px 48px;
        font-size: 16px;
        font-weight: 600;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .hero-cta button {
        width: 100%;
        max-width: 320px;
    }
    
    .subject-categories {
        padding: 30px 0 50px;
    }
    
    .categories-grid {
        gap: 24px;
        justify-content: center;
    }
    
    .category-item {
        min-width: 90px;
    }
    
    .category-icon {
        width: 56px;
        height: 56px;
    }
    
    .category-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .category-item span {
        font-size: 13px;
        line-height: 1.3;
    }
    
    /* Value Prop */
    .value-prop {
        padding: 50px 0;
    }
    
    .value-prop h2 {
        font-size: 28px;
    }
    
    .value-prop .lead {
        font-size: 18px;
    }
    
    .highlight-box {
        padding: 32px;
    }
    
    .highlight-box p {
        font-size: 17px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 24px;
    }
    
    .footer-top {
        margin-bottom: 50px;
    }
    
    .footer-links {
        gap: 32px;
    }
    
    .footer-column h4 {
        font-size: 13px;
    }
    
    .footer-column a {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .footer-brand-section {
        margin: 50px 0 30px;
    }
    
    .footer-brand-logo {
        gap: 16px;
        overflow-x: auto;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .footer-brand-text {
        font-size: 48px;
        letter-spacing: -2px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        padding-top: 24px;
    }
    
    .footer-tagline {
        font-size: 15px;
    }
    
    .footer-legal {
        font-size: 13px;
    }
}

/* Program Pages */
.program-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    text-align: center;
    position: relative;
}

.program-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(74, 144, 226, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.program-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.program-badge-large {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
}

.program-hero h1 {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.program-tagline {
    font-size: 24px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.5;
}

.program-meta {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.program-meta span {
    font-size: 18px;
    color: var(--text-medium);
    font-weight: 500;
}

.program-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Program Sections */
.program-section {
    padding: 80px 0;
    background: white;
}

.program-section.alt-bg {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

.program-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.program-section .lead {
    font-size: 20px;
    color: var(--text-medium);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Pricing Box */
.program-pricing-box {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.program-pricing-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.pricing-option {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
}

.pricing-option.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.price-tag {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-option.featured .price-tag {
    color: white;
}

.price-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-option.featured .price-label {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-option p {
    font-size: 15px;
    line-height: 1.5;
}

.pricing-option.featured p {
    color: rgba(255, 255, 255, 0.95);
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
}

/* Outcomes Timeline */
.outcomes-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.outcome-week {
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.outcome-week:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.week-number {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.outcome-week h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.outcome-week p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Curriculum */
.curriculum-week {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 32px;
}

.curriculum-week h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
}

.week-deliverable {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.session-list {
    list-style: none;
    margin-bottom: 20px;
}

.session-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.session-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.why-converts {
    color: var(--text-light);
    font-size: 15px;
    margin-top: 16px;
}

/* Session Breakdown */
.session-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.session-part {
    background: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.session-part .time {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.session-part p {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.5;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.requirement-item {
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.requirement-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.requirement-item ul {
    list-style: none;
}

.requirement-item li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.5;
}

.requirement-item li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

/* Deliverable Box */
.deliverable-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 40px;
    border-radius: 24px;
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
    box-shadow: 0 20px 60px rgba(5, 150, 105, 0.3);
}

.deliverable-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.deliverable-box p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.info-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 12px;
}

.info-card strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Program Page Decorations */
.program-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.program-section.alt-bg {
    position: relative;
}

.program-section.alt-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(5, 150, 105, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* Program Meta with SVG Icons */
.program-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.program-meta svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Requirement Highlight Box */
.requirement-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 60px 40px;
    border-radius: 24px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 20px 60px rgba(5, 150, 105, 0.3);
    position: relative;
    overflow: hidden;
}

.requirement-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float-slow 15s ease-in-out infinite;
}

.requirement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.requirement-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.requirement-highlight h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.requirement-main {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
    position: relative;
    z-index: 1;
}

.requirement-sub {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.session-list {
    list-style: none;
    margin-bottom: 16px;
}

.session-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.session-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.why-converts {
    color: var(--text-light);
    font-size: 15px;
}

/* Session Breakdown */
.session-breakdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.session-part {
    background: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.session-part .time {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.session-part p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.4;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.requirement-item {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
}

.requirement-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.requirement-item ul {
    list-style: none;
}

.requirement-item li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-medium);
}

.requirement-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Responsive Program Pages */
@media (max-width: 968px) {
    .program-hero {
        padding: 120px 0 70px;
    }
    
    .program-hero h1 {
        font-size: 48px;
        line-height: 1.15;
    }
    
    .program-tagline {
        font-size: 20px;
        line-height: 1.5;
        padding: 0 20px;
    }
    
    .program-badge-large {
        font-size: 15px;
        padding: 9px 22px;
    }
    
    .program-meta {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .program-meta span {
        font-size: 16px;
    }
    
    .program-cta {
        gap: 12px;
    }
    
    .program-section {
        padding: 70px 0;
    }
    
    .program-section h2 {
        font-size: 36px;
    }
    
    .program-section .lead {
        font-size: 19px;
    }
    
    .program-pricing-box {
        padding: 40px 32px;
    }
    
    .pricing-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .outcomes-timeline {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .session-breakdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .curriculum-week {
        padding: 32px 28px;
    }
    
    .deliverable-box {
        padding: 36px 32px;
    }
    
    /* Reduce floating icon visibility on tablets */
    .program-hero .floating-icon {
        opacity: 0.08;
    }
}

@media (max-width: 640px) {
    .program-hero {
        padding: 100px 0 60px;
    }
    
    .program-hero h1 {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .program-tagline {
        font-size: 18px;
        line-height: 1.5;
    }
    
    .program-badge-large {
        font-size: 14px;
        padding: 8px 20px;
    }
    
    .program-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .program-meta span {
        font-size: 15px;
        justify-content: center;
    }
    
    .program-meta svg {
        width: 18px;
        height: 18px;
    }
    
    .program-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .program-cta .btn-large {
        width: 100%;
        padding: 14px 32px;
        font-size: 16px;
    }
    
    .program-section {
        padding: 60px 0;
    }
    
    .program-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .program-section .lead {
        font-size: 18px;
        padding: 0 10px;
    }
    
    .program-pricing-box {
        padding: 32px 20px;
        border-radius: 20px;
    }
    
    .program-pricing-box h3 {
        font-size: 24px;
    }
    
    .pricing-option {
        padding: 24px 20px;
    }
    
    .price-tag {
        font-size: 28px;
    }
    
    .price-label {
        font-size: 14px;
    }
    
    .pricing-option p {
        font-size: 14px;
    }
    
    .pricing-note {
        font-size: 13px;
    }
    
    .outcomes-timeline {
        gap: 20px;
    }
    
    .outcome-week {
        padding: 24px 20px;
    }
    
    .outcome-week h3 {
        font-size: 20px;
    }
    
    .outcome-week p {
        font-size: 15px;
    }
    
    .week-number {
        font-size: 13px;
        padding: 6px 16px;
    }
    
    .session-breakdown {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .session-part {
        padding: 20px;
    }
    
    .session-part .time {
        font-size: 28px;
    }
    
    .session-part p {
        font-size: 14px;
    }
    
    .curriculum-week {
        padding: 24px 20px;
        border-radius: 16px;
        margin-bottom: 24px;
    }
    
    .curriculum-week h3 {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .week-deliverable {
        font-size: 16px;
    }
    
    .session-list li {
        font-size: 15px;
        padding: 10px 0;
        padding-left: 28px;
    }
    
    .session-list li::before {
        font-size: 18px;
    }
    
    .why-converts {
        font-size: 14px;
    }
    
    .requirement-highlight {
        padding: 40px 24px;
        border-radius: 20px;
    }
    
    .requirement-highlight h3 {
        font-size: 16px;
    }
    
    .requirement-main {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .requirement-sub {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .requirement-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .requirement-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .deliverable-box {
        padding: 32px 24px;
        border-radius: 20px;
        margin-top: 40px;
    }
    
    .deliverable-box h3 {
        font-size: 24px;
    }
    
    .deliverable-box p {
        font-size: 16px;
    }
    
    .info-grid {
        gap: 20px;
    }
    
    .info-card {
        padding: 28px 24px;
        border-radius: 16px;
    }
    
    .info-card h3 {
        font-size: 20px;
    }
    
    .info-card p {
        font-size: 15px;
    }
    
    /* Hide decorative elements on mobile */
    .program-hero .floating-icon {
        display: none;
    }
    
    .program-hero .hero-decoration {
        opacity: 0.3;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .program-hero {
        padding: 90px 0 50px;
    }
    
    .program-hero h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .program-tagline {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 24px;
    }
    
    .program-badge-large {
        font-size: 13px;
        padding: 7px 18px;
        margin-bottom: 20px;
    }
    
    .program-meta {
        gap: 10px;
    }
    
    .program-meta span {
        font-size: 14px;
    }
    
    .program-meta svg {
        width: 16px;
        height: 16px;
    }
    
    .program-cta .btn-large {
        padding: 12px 28px;
        font-size: 15px;
    }
    
    .program-section {
        padding: 50px 0;
    }
    
    .program-section h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .program-section .lead {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .program-pricing-box {
        padding: 24px 16px;
        border-radius: 16px;
    }
    
    .program-pricing-box h3 {
        font-size: 22px;
        margin-bottom: 24px;
    }
    
    .pricing-option {
        padding: 20px 16px;
        border-radius: 12px;
    }
    
    .price-tag {
        font-size: 24px;
    }
    
    .price-label {
        font-size: 13px;
    }
    
    .pricing-option p {
        font-size: 13px;
    }
    
    .outcome-week {
        padding: 20px 16px;
        border-radius: 16px;
    }
    
    .outcome-week h3 {
        font-size: 18px;
    }
    
    .outcome-week p {
        font-size: 14px;
    }
    
    .week-number {
        font-size: 12px;
        padding: 5px 14px;
    }
    
    .curriculum-week {
        padding: 20px 16px;
        border-radius: 12px;
        margin-bottom: 20px;
    }
    
    .curriculum-week h3 {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .week-deliverable {
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    .session-list li {
        font-size: 14px;
        padding: 8px 0;
        padding-left: 24px;
        line-height: 1.5;
    }
    
    .session-list li::before {
        font-size: 16px;
    }
    
    .session-part {
        padding: 16px;
    }
    
    .session-part .time {
        font-size: 24px;
    }
    
    .session-part p {
        font-size: 13px;
    }
    
    .requirement-highlight {
        padding: 32px 20px;
        border-radius: 16px;
    }
    
    .requirement-highlight h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .requirement-main {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .requirement-sub {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .requirement-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }
    
    .requirement-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .deliverable-box {
        padding: 28px 20px;
        border-radius: 16px;
        margin-top: 32px;
    }
    
    .deliverable-box h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .deliverable-box p {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .info-card {
        padding: 24px 20px;
        border-radius: 12px;
    }
    
    .info-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .info-card p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-section h2 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .cta-subtext {
        font-size: 16px;
        margin-bottom: 28px;
        padding: 0 16px;
    }
    
    .cta-features {
        gap: 12px;
        margin-bottom: 28px;
    }
    
    .cta-feature {
        font-size: 14px;
    }
    
    .cta-feature svg {
        width: 18px;
        height: 18px;
    }
    
    .btn-cta-main {
        width: 100%;
        padding: 14px 32px;
        font-size: 15px;
    }
    
    .cta-note {
        font-size: 12px;
        padding: 0 16px;
        margin-top: 20px;
    }
}

/* Additional Program Page Styles */
.deliverable-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin-top: 48px;
    text-align: center;
}

.deliverable-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.deliverable-box p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.info-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 12px;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-card strong {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 968px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}
