:root {
    --primary-blue: #1461B7;
    --primary-hover: #0d4685;
    --text-dark: #1F2937;
    --text-muted: #4B5563;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --border-color: #E2E8F0;
    --transition-speed: 0.3s;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    background-color: #f0f9ff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0 0 16px 16px;
    margin: 0 1rem;
}

.header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
}

.header__logo img {
    height: 48px;
    object-fit: contain;
}

.header__nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav__link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-speed);
}

.nav__link:hover {
    color: var(--primary-blue);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-speed);
    border: 2px solid transparent;
}

.btn--primary {
    background-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(20, 97, 183, 0.3);
}

.btn--primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(20, 97, 183, 0.4);
}

.btn--outline {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--primary-blue);
}

.btn--outline:hover {
    background-color: #eff6ff;
    transform: translateY(-2px);
}

.profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.profile-icon:hover {
    background-color: #e2e8f0;
}

/* Main Layout */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Top Layer Background (Behind Header & Hero) */
.top-bg {
    background: linear-gradient(to right, #f0f9ff 50%, #eceaef 50%);
}

/* Hero Section */
.hero-wrapper {
    width: 100%;
    background-image: url('/images/banner2.png'), url('/images/banner_1.png');
    background-position: right center, left center;
    background-repeat: no-repeat, no-repeat;
    background-size: auto 100%, auto 100%;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 6rem 0;
    min-height: 500px;
}

.hero__content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero__title span {
    color: var(--primary-blue);
}

.hero__description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    gap: 1rem;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding-bottom: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 10px 30px rgba(20, 97, 183, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: box-shadow var(--transition-speed), border-color var(--transition-speed);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1461B7, #3b82f6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-speed);
}

.feature-card:hover {
    box-shadow: 0 20px 50px rgba(20, 97, 183, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

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

.feature-card__icon, .feature-card__content {
    transform: translateZ(30px);
    pointer-events: none;
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    object-fit: contain;
}

.feature-card__content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    text-transform: uppercase;
}

.feature-card__content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__actions {
        justify-content: center;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        margin: 0;
        border-radius: 0;
    }

    .header__nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

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

/* --- PREMIUM JS EFFECTS & ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(20,97,183,0.1), rgba(59,130,246,0.1));
    color: var(--primary-blue);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(20,97,183,0.15);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--primary-blue);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Statistics Section */
.stats {
    padding: 2rem 0 6rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2.5rem 1.5rem;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(20,97,183,0.06);
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    line-height: 1;
    background: linear-gradient(135deg, #1461B7, #3b82f6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ========== WHY US — BENTO GRID ========== */
.why-us {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #e8f4fd 100%);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bento-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(20,97,183,0.12);
    border-color: rgba(59,130,246,0.25);
}

.bento-card--large {
    grid-column: span 2;
}

.bento-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.bento-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.bento-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

.bento-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -60px;
    right: -60px;
    pointer-events: none;
}

/* ========== PROGRAMS TABS ========== */
.programs-section {
    padding: 6rem 0;
}

.program-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.program-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: 2px solid var(--border-color);
    background: var(--white);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.program-tab:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.program-tab.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(20,97,183,0.3);
}

.program-tab.active svg {
    stroke: var(--white);
}

.program-panel {
    display: none;
}

.program-panel.active {
    display: block;
    animation: fadeSlideUp 0.5s ease forwards;
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.program-panel__info {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid var(--border-color);
}

.program-panel__info h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.program-panel__desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
}

.program-modules {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.program-modules li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
}

.module-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.program-meta {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-item strong {
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.meta-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========== TIMELINE ========== */
.timeline-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #e8f4fd 50%, #f0f9ff 100%);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-blue), #93c5fd, transparent);
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(20,97,183,0.15);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
}

.timeline-content {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 6px 24px rgba(0,0,0,0.04);
    border: 1px solid var(--border-color);
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(20,97,183,0.08);
}

.timeline-step {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    padding: 6rem 0;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}

.testimonial-card {
    min-width: 100%;
    padding: 3rem;
    background: var(--white);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1461B7, #3b82f6);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 1.05rem;
}

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

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.slider-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: #eff6ff;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-blue);
    transform: scale(1.3);
}

/* ========== FAQ ACCORDION ========== */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #e8f4fd 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item.open {
    border-color: rgba(20,97,183,0.2);
    box-shadow: 0 8px 30px rgba(20,97,183,0.08);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 4rem 0 6rem;
}

.cta-card {
    background: linear-gradient(135deg, #0B1120 0%, #1e293b 100%);
    border-radius: 32px;
    padding: 5rem;
    position: relative;
    overflow: hidden;
    color: #f1f5f9;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-phone:hover {
    color: #3b82f6;
}

.cta-decoration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(59,130,246,0.15);
}

.cta-circle--1 {
    width: 300px; height: 300px;
    top: -60px; right: -60px;
    animation: float 6s ease-in-out infinite;
}

.cta-circle--2 {
    width: 200px; height: 200px;
    bottom: -40px; right: 100px;
    border-color: rgba(59,130,246,0.1);
    animation: float 8s ease-in-out infinite reverse;
}

.cta-circle--3 {
    width: 120px; height: 120px;
    top: 40%; right: 30%;
    background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
    animation: float 5s ease-in-out infinite;
}

/* ========== FOOTER SOCIALS ========== */
.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(59,130,246,0.15);
    border-color: rgba(59,130,246,0.3);
    color: #3b82f6;
    transform: translateY(-2px);
}

/* Modern Footer */
.footer {
    background-color: #0B1120;
    color: #f1f5f9;
    padding: 6rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.3), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-logo img {
    height: 48px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-desc {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 400px;
}

.footer h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    color: #64748b;
    font-size: 0.9rem;
}

.footer-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}
.footer-form input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
    transition: border-color var(--transition-speed);
}
.footer-form input:focus {
    border-color: #3b82f6;
}
.footer-form button {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s;
}
.footer-form button:hover {
    background: #2563eb;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-card--large {
        grid-column: span 2;
    }
    .program-tabs {
        flex-wrap: wrap;
    }
    .cta-card {
        padding: 3rem;
    }
    .cta-content h2 {
        font-size: 2rem;
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .stats {
        grid-template-columns: 1fr;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card--large {
        grid-column: span 1;
    }
    .program-tabs {
        flex-direction: column;
    }
    .program-tab {
        width: 100%;
        justify-content: center;
    }
    .program-panel__info {
        padding: 2rem;
    }
    .program-meta {
        flex-direction: column;
        gap: 1rem;
    }
    .timeline {
        padding-left: 2rem;
    }
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    .cta-card {
        padding: 2.5rem 1.5rem;
    }
    .cta-content h2 {
        font-size: 1.75rem;
    }
    .cta-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }
}
