/* ===================================
   Skilliest.org - Global Styles
   Dark Theme with Orange Branding
   =================================== */

/* ===== CSS Variables ===== */
:root {
    --primary-orange: #f28705;
    --secondary-orange-1: #f25c05;
    --secondary-orange-2: #f24405;
    --black: #000000;
    --white: #ffffff;

    --bg-dark: #0a0a0a;
    --bg-card: #121212;
    --bg-card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #808080;
    --border-color: #252525;

    --gradient-orange: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange-1));
    --gradient-dark: linear-gradient(180deg, rgba(242, 135, 5, 0.1) 0%, transparent 100%);
    --glow-orange: 0 0 40px rgba(242, 135, 5, 0.3);
    --glow-orange-strong: 0 0 60px rgba(242, 135, 5, 0.5);

    --container-max: 1200px;
    --section-padding: 100px 0;
    --section-padding-mobile: 60px 0;

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== Reset & Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
p { line-height: 1.8; color: var(--text-secondary); margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }

/* ===== Container ===== */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 2rem; }

/* ===== Buttons ===== */
.btn-primary, .btn-secondary, .btn-nav {
    display: inline-block; padding: 14px 32px; border-radius: 8px; font-weight: 700;
    font-size: 1rem; transition: all 0.3s ease; cursor: pointer; border: none; text-align: center;
}
.btn-primary {
    background: var(--gradient-orange); color: #000000; box-shadow: 0 4px 20px rgba(242, 135, 5, 0.5);
    font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-primary:hover {
    transform: translateY(-3px); box-shadow: 0 6px 30px rgba(242, 135, 5, 0.8);
    background: linear-gradient(135deg, #ff9500, #f28705);
}
.btn-secondary { background: transparent; color: var(--primary-orange); border: 3px solid var(--primary-orange); font-weight: 700; }
.btn-secondary:hover { background: var(--primary-orange); color: #000000; box-shadow: var(--glow-orange); border-color: var(--primary-orange); }
.btn-large { padding: 20px 48px; font-size: 1.15rem; font-weight: 800; }

.btn-nav {
    padding: 12px 28px; background: var(--gradient-orange); color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8); font-weight: 900; box-shadow: 0 2px 15px rgba(242, 135, 5, 0.4);
}
.btn-nav:hover { box-shadow: 0 4px 25px rgba(242, 135, 5, 0.7); transform: translateY(-2px); color: #ffffff; }

/* ===== Navigation ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px); z-index: 1000; border-bottom: 1px solid var(--border-color);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; }
.logo-link { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon { height: 40px; width: auto; }
.logo-text { font-size: 1.5rem; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.logo-highlight { color: var(--primary-orange); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a:not(.btn-nav) { color: var(--text-secondary); font-weight: 500; transition: color 0.3s ease; }
.nav-links a:not(.btn-nav):hover { color: var(--primary-orange); }

.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.mobile-menu-btn span { width: 25px; height: 3px; background: var(--primary-orange); border-radius: 3px; transition: all 0.3s ease; }
.mobile-menu {
    display: none; position: fixed; top: 70px; left: 0; right: 0; background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px); padding: 2rem; flex-direction: column; gap: 1.5rem;
    border-bottom: 1px solid var(--border-color); z-index: 999;
}
.mobile-menu.active { display: flex; }
.mobile-menu a { color: var(--text-secondary); font-weight: 500; font-size: 1.1rem; }

/* ===== Floating Contact Buttons ===== */
.floating-btn {
    position: fixed; bottom: 30px; width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-btn:hover { transform: scale(1.1) translateY(-5px); box-shadow: 0 6px 20px rgba(0,0,0,0.7); }
.whatsapp-btn { right: 30px; background-color: #25D366; color: white; }
.messenger-btn { left: 30px; background-color: #0084FF; color: white; }
.floating-btn svg { width: 32px; height: 32px; fill: currentColor; }

/* ===== Hero Section ===== */
.hero, .bootcamp-hero { position: relative; padding: 180px 0 100px; overflow: hidden; }
.hero-gradient {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(242, 135, 5, 0.15) 0%, transparent 70%); pointer-events: none; z-index: 0;
}
.hero-content, .bootcamp-hero-content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; text-align: center; }
.hero-badge {
    display: inline-block; padding: 8px 20px; background: rgba(242, 135, 5, 0.1);
    border: 1px solid var(--primary-orange); border-radius: 50px; color: var(--primary-orange);
    font-size: 0.9rem; font-weight: 600; margin-bottom: 2rem;
}
.hero-title { font-size: 4rem; font-weight: 800; margin-bottom: 1.5rem; line-height: 1.1; }
.highlight-gradient { background: var(--gradient-orange); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.3rem; color: var(--text-secondary); margin-bottom: 3rem; line-height: 1.7; }
.hero-cta { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 4rem; flex-wrap: wrap; }
.hero-stats { display: flex; justify-content: center; gap: 4rem; margin-top: 4rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { font-size: 3rem; font-weight: 800; color: var(--primary-orange); margin-bottom: 0.5rem; }
.stat-label { color: var(--text-muted); font-size: 0.95rem; }

/* ===== Section Styles ===== */
section { padding: var(--section-padding); }
.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; margin-bottom: 4rem; }
.section-tag {
    display: inline-block; padding: 6px 16px; background: rgba(242, 135, 5, 0.1); border: 1px solid var(--primary-orange);
    border-radius: 50px; color: var(--primary-orange); font-size: 0.85rem; font-weight: 600; margin-bottom: 1rem;
    text-transform: uppercase; letter-spacing: 1px;
}
.section-header h2 { font-size: 3rem; margin-bottom: 1rem; }
.section-header p { font-size: 1.2rem; color: var(--text-secondary); }

/* Problem & Solution */
.problem-section { background: linear-gradient(180deg, transparent, rgba(242, 135, 5, 0.03), transparent); }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.problem-card { background: var(--bg-card); padding: 2.5rem; border-radius: 12px; border: 1px solid var(--border-color); transition: all 0.3s ease; }
.problem-card:hover { border-color: rgba(242, 135, 5, 0.3); transform: translateY(-5px); }
.problem-icon { font-size: 3rem; margin-bottom: 1.5rem; }
.problem-card h3 { color: var(--white); margin-bottom: 1rem; }

.solution-section { background: var(--bg-dark); }
.solution-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.solution-card { background: var(--bg-card); padding: 3rem; border-radius: 16px; border: 1px solid var(--border-color); transition: all 0.3s ease; position: relative; }
.glow-card:hover { border-color: var(--primary-orange); box-shadow: var(--glow-orange); transform: translateY(-5px); }
.solution-number { font-size: 1rem; font-weight: 700; color: var(--primary-orange); margin-bottom: 1rem; }
.solution-card h3 { color: var(--white); margin-bottom: 1rem; }
.feature-list { margin-top: 1.5rem; }
.feature-list li { padding-left: 1.5rem; position: relative; margin-bottom: 0.8rem; color: var(--text-secondary); }
.feature-list li:before { content: "→"; position: absolute; left: 0; color: var(--primary-orange); font-weight: 700; }

/* Features Grid */
.features-section { background: linear-gradient(180deg, transparent, rgba(242, 135, 5, 0.02)); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.feature-item { background: var(--bg-card); padding: 2rem; border-radius: 12px; border: 1px solid var(--border-color); transition: all 0.3s ease; }
.feature-item:hover { border-color: rgba(242, 135, 5, 0.3); background: var(--bg-card-hover); }
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-item h4 { color: var(--white); margin-bottom: 0.8rem; }

/* ===== SUCCESS STORIES GALLERY (JSON Driven) ===== */
.stories-grid {
    display: grid;
    gap: 1.5rem;
}
.featured-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.bootcamp-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.full-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.success-card {
    /* Significantly lighter background to stand out against the #0a0a0a body */
    background: #858585; 
    border-radius: 12px;
    /* A crisp, semi-transparent white border for a definitive edge */
    border: 1px solid rgba(255, 255, 255, 0.25); 
    /* Deep shadow to create physical distance from the background */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8); 
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
}

.success-card:hover {
    transform: translateY(-6px);
    /* Lightens up even more on hover for interactivity */
    background: #2a2a2a; 
    /* Snaps to your brand orange on hover */
    border-color: var(--primary-orange);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.9), 0 0 20px rgba(242, 135, 5, 0.2);
}
.success-card.theme-orange { border-top: 4px solid var(--primary-orange); }
.success-card.theme-green { border-top: 4px solid #00ff88; }
.success-card.theme-blue { border-top: 4px solid #0084FF; }
.success-card.theme-yellow { border-top: 4px solid #FFD700; }

.theme-orange-text { color: var(--primary-orange); }
.theme-green-text { color: #00ff88; }
.theme-blue-text { color: #0084FF; }
.theme-yellow-text { color: #FFD700; }

.card-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3; /* Enforce uniform thumbnail sizes */
    overflow: hidden;
    background: #000;
    flex-grow: 1;
}
.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* crop for thumbnail */
    transition: transform 0.5s ease;
}
.success-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}
.card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.success-card:hover .card-overlay {
    opacity: 1;
}
.card-overlay span {
    color: #fff;
    font-weight: 600;
    padding: 8px 16px;
    border: 1px solid #fff;
    border-radius: 20px;
    font-size: 0.9rem;
}
.success-card h4 {
    padding: 1.2rem 1rem; /* Added slightly more breathing room */
    margin: 0;
    font-size: 1.05rem; 
    font-weight: 700; /* Makes the text slightly bolder for better readability */
    color: var(--white); 
    background: #000000; /* Deep black grounds the card and contrasts perfectly with the white images */
    flex-grow: 1;
    border-top: 1px solid var(--border-color);
}
.gallery-category {
    margin-bottom: 4rem;
}
.category-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

/* ===== LIGHTBOX VIEWER ===== */
.lightbox-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}
.lightbox-close {
    position: absolute;
    top: 20px; right: 30px;
    color: white; font-size: 40px; font-weight: bold;
    cursor: pointer; z-index: 10000;
}
.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
#lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain; /* ensures whole image fits regardless of aspect ratio */
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    font-weight: bold;
    padding: 20px;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    user-select: none;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px; height: 60px;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 5%; }
.lightbox-next { right: 5%; }
.lightbox-dots {
    position: absolute;
    bottom: 30px;
    display: flex;
    gap: 10px;
}
.lightbox-dots .dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}
.lightbox-dots .dot.active { background: var(--primary-orange); }

/* About Me / Founder Section */
.founder-section { background: linear-gradient(180deg, rgba(242, 135, 5, 0.03), transparent, rgba(242, 135, 5, 0.03)); padding: 100px 0; }
.founder-intro { display: grid; grid-template-columns: 300px 1fr; gap: 4rem; align-items: start; margin-bottom: 4rem; max-width: 1000px; margin-left: auto; margin-right: auto; }
.founder-photo-container { position: relative; width: 280px; height: 280px; margin: 0 auto; }
.founder-photo { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 6px solid var(--primary-orange); box-shadow: 0 0 40px rgba(242, 135, 5, 0.5), 0 0 80px rgba(242, 135, 5, 0.3); }
.founder-intro-text { display: flex; flex-direction: column; justify-content: center; }
.highlight-box { background: linear-gradient(135deg, rgba(242, 135, 5, 0.1), transparent); border-left: 4px solid var(--primary-orange); padding: 1.5rem; border-radius: 8px; margin-top: 1.5rem; color: var(--white) !important; }
.founder-journey { max-width: 900px; margin: 0 auto; }
.lead-text { font-size: 1.3rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.5rem; }

/* Timeline */
.timeline { position: relative; padding-left: 3rem; margin: 4rem 0; }
.timeline:before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--primary-orange), transparent); }
.timeline-item { position: relative; margin-bottom: 3rem; padding-bottom: 2rem; }
.timeline-item:before { content: ""; position: absolute; left: -3.5rem; top: 0; width: 15px; height: 15px; border-radius: 50%; background: var(--primary-orange); border: 3px solid var(--bg-dark); box-shadow: var(--glow-orange); }
.timeline-item.current:before { width: 20px; height: 20px; left: -3.75rem; }
.timeline-year { display: inline-block; padding: 6px 16px; background: var(--primary-orange); color: #000000; border-radius: 6px; font-weight: 700; font-size: 0.9rem; margin-bottom: 1rem; }
.timeline-content h4 { color: var(--white); font-size: 1.5rem; margin-bottom: 1rem; }
.achievement-badge { display: inline-block; padding: 6px 12px; background: rgba(242, 135, 5, 0.1); border: 1px solid rgba(242, 135, 5, 0.3); border-radius: 6px; color: var(--primary-orange); font-size: 0.85rem; margin: 0.3rem; }
.timeline-insight { margin-top: 1rem; padding: 1rem; background: rgba(242, 135, 5, 0.05); border-left: 3px solid var(--primary-orange); border-radius: 4px; }
.stats-list { list-style: none; margin: 1rem 0; }
.stats-list li { padding: 0.5rem 0; color: var(--text-secondary); }
.stats-list strong { color: var(--primary-orange); }

.founder-lessons { margin: 4rem 0; }
.founder-lessons h3 { font-size: 2rem; text-align: center; margin-bottom: 2rem; }
.lesson-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.lesson-card { background: var(--bg-card); padding: 2rem; border-radius: 12px; border: 2px solid #ff4444; }
.lesson-card.success { border-color: #00ff88; }
.lesson-card h4 { color: var(--white); margin-bottom: 1rem; }
.lesson-card ul { list-style: none; }
.lesson-card li { padding: 0.5rem 0; color: var(--text-secondary); padding-left: 1.5rem; position: relative; }
.lesson-card li:before { content: "•"; position: absolute; left: 0; color: var(--primary-orange); font-size: 1.5rem; }

.founder-investment { margin: 3rem 0; }
.investment-box { background: var(--bg-card); padding: 2.5rem; border-radius: 12px; border: 2px solid var(--primary-orange); text-align: center; }
.investment-box h4 { color: var(--white); margin-bottom: 1rem; }
.investment-amount { font-size: 3rem; font-weight: 800; color: var(--primary-orange); margin: 1rem 0; }

.founder-cta-box { background: linear-gradient(135deg, rgba(242, 135, 5, 0.1), var(--bg-card)); padding: 3rem; border-radius: 16px; border: 2px solid var(--primary-orange); text-align: center; margin-top: 4rem; }
.founder-cta-box h3 { color: var(--white); font-size: 2rem; margin-bottom: 1rem; }
.founder-cta-box p { font-size: 1.1rem; margin-bottom: 2rem; }

/* Lead Magnets */
.lead-magnets-section { background: var(--bg-dark); }
.lead-magnets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.magnet-card { background: var(--bg-card); padding: 3rem; border-radius: 16px; border: 2px solid var(--border-color); text-align: center; transition: all 0.3s ease; }
.magnet-card:hover { border-color: rgba(242, 135, 5, 0.3); transform: translateY(-5px); }
.highlight-card { border-color: var(--primary-orange); background: linear-gradient(135deg, rgba(242, 135, 5, 0.05), var(--bg-card)); }
.magnet-icon { font-size: 4rem; margin-bottom: 1.5rem; }
.magnet-card h3 { color: var(--white); margin-bottom: 1rem; }
.magnet-card p { margin-bottom: 2rem; }

/* Bootcamp specific */
.bootcamp-includes { padding: 100px 0; }
.includes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.include-card { background: var(--bg-card); padding: 2.5rem; border-radius: 12px; border: 1px solid var(--border-color); transition: all 0.3s ease; }
.include-card:hover { border-color: rgba(242, 135, 5, 0.3); transform: translateY(-5px); }
.spotlight { border: 2px solid var(--primary-orange); background: linear-gradient(135deg, rgba(242, 135, 5, 0.05), var(--bg-card)); }
.include-icon { font-size: 3rem; margin-bottom: 1rem; }

.bootcamp-process { padding: 100px 0; }
.process-timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.process-step { background: var(--bg-card); padding: 2.5rem; border-radius: 12px; border: 2px solid var(--border-color); text-align: center; transition: all 0.3s ease; position: relative; }
.process-step:hover { border-color: var(--primary-orange); transform: translateY(-5px); }
.step-number { width: 50px; height: 50px; border-radius: 50%; background: var(--gradient-orange); color: #000000; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; margin: 0 auto 1.5rem; }

.bootcamp-details { background: rgba(242, 135, 5, 0.02); padding: 100px 0; }
.details-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.detail-card { background: var(--bg-card); padding: 2.5rem; border-radius: 12px; border: 1px solid var(--border-color); transition: all 0.3s ease; }
.detail-card:hover { border-color: rgba(242, 135, 5, 0.3); }
.detail-card h3 { color: var(--primary-orange); font-size: 1.1rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; }

.target-audience { padding: 100px 0; }
.audience-split { display: grid; grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); gap: 3rem; max-width: 1100px; margin: 0 auto; }
.audience-for, .audience-not { background: var(--bg-card); padding: 3rem; border-radius: 16px; }
.audience-for { border: 2px solid #00ff88; }
.audience-not { border: 2px solid #ff4444; }
.audience-for h3, .audience-not h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 1.5rem; }
.audience-for li, .audience-not li { padding: 0.8rem 0; color: var(--text-secondary); padding-left: 2rem; position: relative; line-height: 1.6; }
.audience-for li:before { content: "✓"; position: absolute; left: 0; color: #00ff88; font-weight: 800; font-size: 1.3rem; }
.audience-not li:before { content: "✗"; position: absolute; left: 0; color: #ff4444; font-weight: 800; font-size: 1.3rem; }

.founder-led-section { background: linear-gradient(135deg, rgba(242, 135, 5, 0.05), transparent); padding: 100px 0; }
.founder-led-content { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; align-items: center; }
.check-list { list-style: none; margin: 2rem 0; }
.check-list li { padding: 0.8rem 0; padding-left: 2rem; position: relative; color: var(--text-secondary); }
.check-list li:before { content: "✓"; position: absolute; left: 0; color: var(--primary-orange); font-weight: 800; font-size: 1.2rem; }
.founder-led-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.stat-box { background: var(--bg-card); padding: 2rem; border-radius: 12px; border: 2px solid var(--border-color); text-align: center; }
.stat-big { font-size: 2.5rem; font-weight: 800; color: var(--primary-orange); margin-bottom: 0.5rem; }

/* FAQ */
.faq-section { padding: 100px 0; background: var(--bg-dark); }
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--bg-card); border-radius: 12px; margin-bottom: 1.5rem; border: 1px solid var(--border-color); overflow: hidden; transition: all 0.3s ease; }
.faq-item:hover { border-color: rgba(242, 135, 5, 0.3); }
.faq-question { padding: 1.5rem 2rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; }
.faq-question h4 { color: var(--white); font-size: 1.1rem; margin: 0; }
.faq-toggle { font-size: 2rem; color: var(--primary-orange); font-weight: 300; transition: transform 0.3s ease; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 800px; }
.faq-answer p { padding: 0 2rem 1.5rem; color: var(--text-secondary); line-height: 1.8; }

/* Final CTA */
.final-cta { padding: 100px 0; background: linear-gradient(135deg, rgba(242, 135, 5, 0.1), transparent, rgba(242, 135, 5, 0.1)); }
.cta-box-large { max-width: 800px; margin: 0 auto; text-align: center; background: var(--bg-card); padding: 4rem; border-radius: 20px; border: 2px solid var(--primary-orange); box-shadow: var(--glow-orange); }
.cta-box-large h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 1rem; }
.cta-buttons-center { margin: 2rem 0; }
.cta-subtext { font-size: 1rem; color: var(--text-muted); margin: 2rem 0 1rem; }

/* ===== Footer ===== */
.footer { background: var(--bg-card); border-top: 1px solid var(--border-color); padding: 4rem 0 2rem; }
.footer-content { display: grid; grid-template-columns: 1fr 2.5fr; gap: 4rem; margin-bottom: 3rem; }
.footer-brand { max-width: 400px; }
.footer-logo-icon { width: 60px; height: 60px; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }

.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer-column h4 { color: var(--white); margin-bottom: 1rem; font-size: 1rem; }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 0.7rem; }
.footer-column a { color: var(--text-muted); font-size: 0.95rem; transition: color 0.3s ease; }
.footer-column a:hover { color: var(--primary-orange); }

/* Updated Social text links */
.social-text-links a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid var(--border-color); }
.footer-bottom p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    h1 { font-size: 2.5rem; } h2 { font-size: 2rem; } .hero-title { font-size: 3rem; }
    .nav-links { display: none; } .mobile-menu-btn { display: flex; }
    .whatsapp-btn { right: 15px; bottom: 15px; } .messenger-btn { left: 15px; bottom: 15px; }
    .hero, .bootcamp-hero { padding: 140px 0 80px; }
    .hero-stats { flex-direction: column; gap: 2rem; } .hero-cta { flex-direction: column; }
    .founder-intro { grid-template-columns: 1fr; text-align: center; }
    .founder-photo-container { margin: 0 auto 2rem; }
    .solution-grid, .features-grid, .includes-grid, .lead-magnets-grid, .details-grid, .audience-split { grid-template-columns: 1fr; }
    .founder-led-content { grid-template-columns: 1fr; }
    .founder-led-stats { grid-template-columns: 1fr 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 3rem; }
    .footer-links { grid-template-columns: 1fr 1fr; gap: 2rem; }
    section { padding: var(--section-padding-mobile); }
    .lightbox-nav { display: none !important; } /* rely on swipe on mobile */
}

@media (max-width: 640px) {
    .container { padding: 0 1.5rem; }
    .hero-title { font-size: 2.2rem; } .hero-subtitle { font-size: 1.1rem; }
    .section-header h2 { font-size: 1.8rem; }
    .btn-large { padding: 16px 32px; font-size: 1rem; width: 100%; }
    .stat-number { font-size: 2.5rem; } .hero-stats { gap: 1.5rem; }
    .solution-card, .include-card, .magnet-card { padding: 2rem; }
    .timeline { padding-left: 2rem; }
    .founder-photo-container { width: 220px; height: 220px; }
    .cta-box-large { padding: 2.5rem 1.5rem; } .cta-box-large h2 { font-size: 1.8rem; }
    .floating-btn { width: 50px; height: 50px; } .floating-btn svg { width: 25px; height: 25px; }
    .founder-led-stats { grid-template-columns: 1fr; }
    .full-grid { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr; }
}
