/* ==========================================================================
   IGNITE - Premium Educational Transformations
   Style variables & resets
   ========================================================================== */

   :root {
    /* Colors */
    --primary: #FF6B00;
    --primary-glow: rgba(255, 107, 0, 0.3);
    --primary-dark: #cc5600;
    
    --bg-dark: #070709;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    
    --text-main: #FFFFFF;
    --text-muted: #A0A0A5;
    
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(7, 7, 9, 0.7);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.section-padding {
    padding: 100px 0;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.relative { position: relative; }
.z-index-1 { z-index: 1; }
.max-width-p { max-width: 800px; }

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

.highlight-text {
    background: linear-gradient(90deg, #FFFFFF 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-color: var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: var(--glass-border);
}

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

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

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

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

/* ==========================================================================
   Navigation
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition-smooth);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

.nav-link:hover {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7,7,9,0.95) 0%, rgba(7,7,9,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 650px;
}

.hero-stats-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-family: var(--font-heading);
    font-weight: 500;
}

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

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   Transformation (Before/After)
   ========================================================================== */

.comparison-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.comparison-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    flex: 1;
    max-width: 450px;
    backdrop-filter: blur(10px);
}

.before-card .card-header i { color: #ff4757; }
.after-card { border-color: rgba(255, 107, 0, 0.3); background: rgba(255, 107, 0, 0.02); }
.after-card .card-header i { color: var(--primary); }

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
}

.list-negative i { color: #ff4757; opacity: 0.7; }
.list-positive li { color: white; }
.list-positive i { color: var(--primary); }

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 20px var(--primary-glow);
}

.transform-statement {
    margin-top: 4rem;
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.quote-box {
    margin-top: 2rem;
    padding: 1.5rem;
    border-left: 4px solid var(--primary);
    background: var(--bg-card);
    border-radius: 0 10px 10px 0;
    position: relative;
}

.quote-icon {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.quote-box p {
    margin: 0;
    font-style: italic;
    color: white;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.visual-accent {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.8);
}

.objectives-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

.objective-box {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: transform var(--transition-smooth);
}

.objective-box:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 0, 0.3);
}

.objective-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.objective-box h4 {
    margin-bottom: 0.5rem;
}

.objective-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   Experience Section
   ========================================================================== */

.experience {
    position: relative;
    padding: 150px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.experience-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.experience-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 7, 9, 0.85);
    backdrop-filter: blur(3px);
}

.big-statement {
    margin-top: 3rem;
    font-size: 1.5rem;
}

.big-statement h3 {
    font-size: 2.5rem;
    margin-top: 0.5rem;
}

/* ==========================================================================
   Programs / What We Do
   ========================================================================== */

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.program-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.program-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
}

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

.card-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.program-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.card-list {
    margin-top: auto;
}

.card-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.card-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.card-list.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.md-span-2 {
    grid-column: span 2;
}

/* ==========================================================================
   Differentiator Section
   ========================================================================== */

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.accordion-item {
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.accordion-item:first-child {
    border-top: 1px solid var(--glass-border);
}

.accordion-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
}

.accordion-item p {
    color: var(--text-muted);
}

.feature-rows {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.f-row {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.f-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.f-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.f-content p {
    color: var(--text-muted);
}

/* ==========================================================================
   Impact & Testimonials
   ========================================================================== */

.logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.logo-box {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 2rem 1rem;
    text-align: center;
    font-weight: 500;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.logo-box:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.highlight-logo {
    border-color: rgba(255, 107, 0, 0.3);
    color: white;
}

.testimonial-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.bg-quote {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 8rem;
    color: rgba(255, 107, 0, 0.05);
}

.quote-text {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.quote-author {
    color: var(--primary);
    font-weight: 600;
    font-family: var(--font-heading);
}

/* ==========================================================================
   Founders
   ========================================================================== */

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

.founder-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.founder-img {
    height: 350px;
    width: 100%;
}

.founder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.founder-info {
    padding: 2rem;
}

.founder-info h3 {
    font-size: 1.5rem;
}

.founder-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.founder-achievements {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.founder-achievements li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.founder-achievements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.media-spotlight {
    max-width: 800px;
    margin: 4rem auto 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Vision & Mission
   ========================================================================== */

.vision-mission-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vm-card {
    padding: 3rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.vm-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.vm-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.vm-card p {
    color: var(--text-muted);
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.tag {
    padding: 0.5rem 1.5rem;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
}

.emphasis-text {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: white;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    position: relative;
    border-top: 1px solid var(--glass-border);
    overflow: hidden;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, rgba(7,7,9,0) 70%);
    z-index: 0;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
    background: #040405;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 2rem;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--text-muted);
    max-width: 400px;
}

.footer-links h3, .footer-contact h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact li {
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   Animations & Micro-interactions
   ========================================================================== */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .about-grid, .split-layout, .comparison-container, .testimonial-container, .vision-mission-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .founders-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .md-span-2 { grid-column: span 1; }
    .objectives-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 2rem 0;
        border-bottom: 1px solid var(--glass-border);
    }
    .nav-links.active { display: flex; }
    .mobile-menu-btn { display: block; }
    
    .hero-title { font-size: 2.5rem; }
    .hero-stats-row { flex-direction: column; gap: 1rem; }
    
    .comparison-divider { transform: rotate(90deg); margin: 1rem 0; }
    
    .programs-grid { grid-template-columns: 1fr; }
    .founders-grid { grid-template-columns: 1fr; }
    .logos-grid { grid-template-columns: repeat(2, 1fr); }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
