/* ===== Reset & Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #4F46E5;
    --primary-dark: #3730A3;
    --primary-light: #EEF2FF;
    --secondary: #7C3AED;
    --accent-orange: #F97316;
    --accent-orange-light: #FFF7ED;
    --accent-green: #10B981;
    --accent-green-light: #ECFDF5;
    --accent-purple: #8B5CF6;
    --accent-purple-light: #F5F3FF;
    --text-dark: #0F172A;
    --text-body: #475569;
    --text-light: #94A3B8;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-gray: #F1F5F9;
    --border: #E2E8F0;
    --footer-dark: #0B1739;
    --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 -1px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 40px -10px rgba(79, 70, 229, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-body);
    line-height: 1.6;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

h1, h2, h3, h4 { color: var(--text-dark); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4); }

.btn-outline {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary-light); transform: translateY(-2px); }

.btn-light {
    background: white;
    color: var(--primary);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-green { background: var(--accent-green); color: white; }
.btn-green:hover { background: #059669; transform: translateY(-2px); }

.btn-orange { background: var(--accent-orange); color: white; }
.btn-orange:hover { background: #EA580C; transform: translateY(-2px); }

.btn-arrow::after { content: "→"; transition: transform 0.3s; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ===== Header / Navbar ===== */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 16px 0;
}

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

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}
.logo-name span { color: var(--primary); }
.logo-tag {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 2px;
    letter-spacing: 0.3px;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}
.nav-menu a {
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.2s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }
.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}
.nav-cta .btn { padding: 10px 22px; font-size: 0.9rem; }

.hamburger { display: none; background: none; border: none; cursor: pointer; font-size: 1.5rem; color: var(--text-dark); }

/* ===== Hero Section ===== */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #FAFBFF 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--primary); }

.hero p {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stats-mini {
    display: flex;
    align-items: center;
    gap: 16px;
}
.avatar-group {
    display: flex;
}
.avatar-group img, .avatar-group .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 600; font-size: 0.9rem;
    object-fit: cover;
}
.avatar-group .avatar:first-child { margin-left: 0; }
.avatar-group .avatar:nth-child(2) { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.avatar-group .avatar:nth-child(3) { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }

.mini-stat strong {
    display: block;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.05rem;
}
.mini-stat small { color: var(--text-light); font-size: 0.85rem; }

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 520px;
}
.hero-img-container {
    width: 100%;
    height: 100%;
    background: transparent;
    position: relative;
    overflow: visible;
}
.hero-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    display: block;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%),
                        linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-composite: destination-in;
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%),
                linear-gradient(to bottom, black 85%, transparent 100%);
    mask-composite: intersect;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 18px;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    animation: float 4s ease-in-out infinite;
}
.floating-card .icon-circle {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
}
.float-1 { top: 10%; left: -5%; }
.float-1 .icon-circle { background: var(--primary-light); color: var(--primary); }
.float-2 { top: 45%; right: -5%; }
.float-2 .icon-circle { background: var(--accent-green-light); color: var(--accent-green); }
.float-3 { bottom: 15%; left: 10%; animation-delay: 1s; }
.float-3 .icon-circle { background: var(--accent-orange-light); color: var(--accent-orange); }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== Sections base ===== */
section { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { color: var(--text-dark); margin-bottom: 12px; position: relative; display: inline-block; }
.section-head h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 12px auto 0;
    border-radius: 3px;
}
.section-head p { color: var(--text-body); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ===== Programs Section ===== */
.programs { background: white; }
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.program-card {
    background: var(--accent-green-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.program-card.python { background: var(--primary-light); }
.program-card.fullstack { background: var(--accent-orange-light); }

.program-image {
    width: 100%;
    height: 160px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.5);
    position: relative;
}
.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.program-card:hover .program-image img { transform: scale(1.05); }
.program-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.8rem;
}
.program-card.digital .program-icon { background: rgba(16, 185, 129, 0.12); color: var(--accent-green); }
.program-card.python .program-icon { background: rgba(79, 70, 229, 0.12); color: var(--primary); }
.program-card.fullstack .program-icon { background: rgba(249, 115, 22, 0.12); color: var(--accent-orange); }

.program-card h3 { margin-bottom: 20px; }
.program-card.digital h3 { color: var(--accent-green); }
.program-card.python h3 { color: var(--primary); }
.program-card.fullstack h3 { color: var(--accent-orange); }

.program-card ul { margin-bottom: 28px; }
.program-card ul li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-body);
    font-size: 0.95rem;
}
.program-card ul li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}
.program-card.digital ul li::before { color: var(--accent-green); }
.program-card.python ul li::before { color: var(--primary); }
.program-card.fullstack ul li::before { color: var(--accent-orange); }

/* ===== Journey Section ===== */
.journey {
    background: linear-gradient(180deg, #F8FAFC 0%, #EEF2FF 100%);
}
.journey-wrap {
    background: white;
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    box-shadow: var(--shadow-md);
}
.journey-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    margin-top: 40px;
}
.journey-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12%;
    right: 12%;
    height: 2px;
    border-top: 2px dashed #CBD5E1;
    z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2rem;
    border: 2px solid var(--border);
    position: relative;
}
.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    border: 3px solid white;
}
.step:nth-child(1) .step-number { background: var(--primary); }
.step:nth-child(2) .step-number { background: var(--accent-purple); }
.step:nth-child(3) .step-number { background: var(--accent-orange); }
.step:nth-child(4) .step-number { background: var(--accent-green); }

.step:nth-child(1) .step-circle { color: var(--primary); }
.step:nth-child(2) .step-circle { color: var(--accent-purple); }
.step:nth-child(3) .step-circle { color: var(--accent-orange); }
.step:nth-child(4) .step-circle { color: var(--accent-green); }

.step h4 { margin-bottom: 10px; font-size: 1.1rem; }
.step p { font-size: 0.9rem; color: var(--text-body); }

/* ===== Why Choose Section ===== */
.why-choose { background: white; }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.why-content h2 { margin-bottom: 12px; position: relative; padding-bottom: 16px; }
.why-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}
.why-content > p { margin-bottom: 28px; }
.why-list { margin-bottom: 32px; }
.why-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-body);
}
.why-list li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    background: var(--accent-green);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.why-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-image-bg {
    width: 360px;
    height: 360px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-purple-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.why-image-bg img {
    width: 95%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.why-image-bg svg { width: 70%; height: 70%; }

.why-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.feature-card {
    background: white;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: var(--transition);
    border: 1px solid var(--border);
}
.feature-card:hover { transform: translateX(5px); box-shadow: var(--shadow-lg); }
.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.feature-card:nth-child(1) .feature-icon { background: var(--accent-green-light); color: var(--accent-green); }
.feature-card:nth-child(2) .feature-icon { background: var(--primary-light); color: var(--primary); }
.feature-card:nth-child(3) .feature-icon { background: var(--accent-orange-light); color: var(--accent-orange); }
.feature-card h4 { margin-bottom: 4px; font-size: 1rem; }
.feature-card p { font-size: 0.88rem; color: var(--text-body); margin: 0; }

/* ===== Stats Banner ===== */
.stats {
    padding: 50px 0;
}
.stats-banner {
    background: linear-gradient(135deg, #4F46E5 0%, #6D28D9 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: white;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    box-shadow: var(--shadow-xl);
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
    border-right: 1px solid rgba(255,255,255,0.2);
    padding-right: 20px;
}
.stat-item:last-child { border-right: none; }
.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    display: block;
}
.stat-label { font-size: 0.9rem; opacity: 0.85; }

/* ===== Companies Section ===== */
.companies { background: var(--bg-light); }
.companies-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 40px;
    position: relative;
}
.company-logo {
    background: white;
    padding: 24px 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    min-height: 80px;
}
.company-logo:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.company-icon {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.company-name { font-weight: 700; color: var(--text-dark); font-size: 0.95rem; }
.c1 .company-icon { color: var(--accent-green); }
.c2 .company-icon { color: var(--accent-orange); }
.c3 .company-icon { color: var(--primary); }
.c4 .company-icon { color: #06B6D4; }
.c5 .company-icon { color: #3B82F6; }
.c6 .company-icon { color: var(--accent-purple); }

.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.dot {
    width: 8px;
    height: 8px;
    background: #CBD5E1;
    border-radius: 50%;
}
.dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ===== Testimonials ===== */
.testimonials { background: white; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.quote-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 18px;
    font-family: Georgia, serif;
}
.testimonial-text {
    color: var(--text-body);
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.6;
}
.stars { color: #FBBF24; margin-bottom: 18px; font-size: 1rem; }
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
.author-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700;
    overflow: hidden;
    flex-shrink: 0;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card:nth-child(2) .author-avatar { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.testimonial-card:nth-child(3) .author-avatar { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.author-info strong { display: block; color: var(--text-dark); font-size: 0.95rem; }
.author-info small { color: var(--text-light); font-size: 0.82rem; }

/* ===== CTA Banner ===== */
.cta-banner {
    padding: 30px 0 80px;
}
.cta-wrap {
    background-color: #080C2E;
    background-image: url('images/cta-rocket.jpg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 55% auto;
    border-radius: var(--radius-lg);
    padding: 70px 64px;
    color: white;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 0;
    overflow: hidden;
    position: relative;
    min-height: 340px;
}
.cta-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #080C2E 35%, rgba(8,12,46,0.5) 55%, transparent 75%);
    border-radius: var(--radius-lg);
    z-index: 0;
}
.cta-content {
    position: relative;
    z-index: 1;
    max-width: 540px;
}
.cta-content h2 { color: white; margin-bottom: 12px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-content p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 1.05rem; }
.cta-illustration { display: none; }

/* ===== Footer ===== */
.footer {
    background: var(--footer-dark);
    color: rgba(255,255,255,0.7);
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}
.footer-brand .logo-name { color: white; }
.footer-brand .logo-tag { color: rgba(255,255,255,0.5); }
.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin: 20px 0;
    font-size: 0.92rem;
    line-height: 1.7;
}
.social-links {
    display: flex;
    gap: 12px;
}
.social-links a {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 0.95rem;
    transition: var(--transition);
}
.social-links a:hover { background: var(--primary); transform: translateY(-2px); }

.footer h4 {
    color: white;
    font-size: 1.05rem;
    margin-bottom: 22px;
    font-weight: 600;
}
.footer ul li { margin-bottom: 12px; }
.footer ul li a {
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
    transition: color 0.2s;
}
.footer ul li a:hover { color: white; }

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
}
.footer-contact .icon-wrap {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
}

/* ===== Page Hero (for other pages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-purple-light) 100%);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79,70,229,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--text-body); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--text-light);
}
.breadcrumb a { color: var(--primary); }

/* ===== Forms ===== */
.form-section { padding: 80px 0; background: var(--bg-light); }
.form-wrap {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 22px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Form validation states */
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #DC2626;
    background: #FEF2F2;
}
.form-group input.invalid:focus,
.form-group select.invalid:focus,
.form-group textarea.invalid:focus {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border-color: #10B981;
}
.form-group .error-msg {
    display: none;
    color: #DC2626;
    font-size: 0.85rem;
    margin-top: 6px;
    font-weight: 500;
}
.form-group .error-msg::before {
    content: "⚠ ";
}
.form-group.has-error .error-msg { display: block; }
.form-group .char-count {
    display: block;
    text-align: right;
    color: var(--text-light);
    font-size: 0.8rem;
    margin-top: 4px;
}
.form-group .char-count.warn { color: var(--accent-orange); }
.form-group .char-count.over { color: #DC2626; }

.success-banner, .error-banner {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 22px;
    display: none;
    align-items: center;
    gap: 14px;
}
.success-banner.show, .error-banner.show { display: flex; }
.success-banner {
    background: var(--accent-green-light);
    color: #065F46;
    border-left: 4px solid var(--accent-green);
}
.success-banner i { color: var(--accent-green); font-size: 1.5rem; }
.error-banner {
    background: #FEF2F2;
    color: #991B1B;
    border-left: 4px solid #DC2626;
}
.error-banner i { color: #DC2626; font-size: 1.5rem; }
.success-banner strong, .error-banner strong { display:block; margin-bottom: 2px; }
.success-banner p, .error-banner p { font-size: 0.9rem; margin: 0; }

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 14px;
    text-align: center;
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ===== Mentors page ===== */
.mentors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.mentor-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
    padding: 32px 24px;
}
.mentor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mentor-avatar {
    width: 130px; height: 130px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-purple-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.15);
}
.mentor-avatar img { width: 100%; height: 100%; object-fit: cover; }
.mentor-card h4 { margin-bottom: 4px; }
.mentor-role { color: var(--primary); font-size: 0.9rem; font-weight: 600; margin-bottom: 14px; }
.mentor-card p { font-size: 0.9rem; }

/* ===== Responsive ===== */
@media (max-width: 968px) {
    .hero-grid, .why-grid, .cta-wrap, .footer-grid { grid-template-columns: 1fr; }
    .programs-grid, .journey-steps, .testimonials-grid, .mentors-grid { grid-template-columns: 1fr; }
    .stats-banner { grid-template-columns: repeat(2, 1fr); }
    .companies-track { grid-template-columns: repeat(3, 1fr); }
    .journey-steps::before { display: none; }
    .stat-item { border-right: none; }
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 20px; box-shadow: var(--shadow-md); gap: 16px; }
    .nav-menu.open { display: flex; }
    .hamburger { display: block; }
    .hero-visual { height: 380px; }
    .cta-wrap { padding: 40px 30px; text-align: center; }
    .form-wrap { padding: 30px 24px; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .programs-grid, .testimonials-grid, .mentors-grid { grid-template-columns: 1fr; }
    .stats-banner { grid-template-columns: 1fr; padding: 30px; }
    .companies-track { grid-template-columns: repeat(2, 1fr); }
    .journey-wrap { padding: 30px 20px; }
    .hero { padding: 40px 0; }
    section { padding: 60px 0; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }
}
