/* ═══════════════════════════════════════════════════════
   TFT Landing Page — Figma node 5085-283
═══════════════════════════════════════════════════════ */
:root {
    --bg:        #060606;
    --card-bg:   #101113;
    --btn-dark:  #282828;
    --btn-hover: #383838;
    --white:     #ffffff;
    --grey:      #aaaaaa;
    --red:       #C00000;
    --blue:      #003BFF;
}

/* ─── Reset ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
}

/* ─── Scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: #444; border-radius: 4px; }

/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
.navbar {
    background: #070707 !important;
    padding: 14px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}
.navbar.scrolled {
    background: rgba(7,7,7,0.97) !important;
    backdrop-filter: blur(10px);
    padding: 10px 0;
}

.logo-main { height: 38px; width: auto; }

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap: 36px;
}
.navbar-nav .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 13px;
    padding: 0 !important;
    color: var(--white) !important;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.navbar-nav .nav-link:hover { opacity: 0.65; }
.navbar-nav .nav-link.nav-active {
    opacity: 1;
    position: relative;
}
.navbar-nav .nav-link.nav-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--white);
    border-radius: 2px;
}
.nav-link-bold { font-weight: 700 !important; }

.btn-enroll {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--btn-dark);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.25s;
}
.btn-enroll:hover { background: var(--btn-hover); color: var(--white); }

.navbar-toggler { border: none; padding: 0; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon { filter: brightness(0) invert(1); }

.nav-social-icon { color: var(--white); font-size: 1rem; opacity: 0.8; transition: opacity 0.2s; }
.nav-social-icon:hover { opacity: 1; color: var(--white); }

/* ═══════════════════════════════════════════════════════
   SHARED BUTTONS
═══════════════════════════════════════════════════════ */
.btn-roadmap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--btn-dark);
    color: var(--white);
    border: none;
    border-radius: 30px;
    padding: 12px 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.25s;
    white-space: nowrap;
}
.btn-roadmap:hover { background: var(--btn-hover); color: var(--white); }

.btn-pill-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: #000;
    border: none;
    border-radius: 30px;
    padding: 12px 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s;
    white-space: nowrap;
}
.btn-pill-white:hover { background: #e8e8e8; color: #000; }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero-section {
    background: var(--bg);
    padding-top: 80px;
}
.hero-content {
    padding: 60px 0 28px;
}
.hero-title {
    font-family: 'Disket Mono', 'Courier New', monospace;
    font-size: 48px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}
.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 44px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* CTA row */
.hero-cta-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

/* Social proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 10px;
}
.social-proof-avatars { display: flex; }
.social-proof-avatars .avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    margin-left: -8px;
    object-fit: cover;
    background: var(--card-bg);
    display: block;
}
.social-proof-avatars .avatar:first-child { margin-left: 0; }
.social-proof-text { display: flex; flex-direction: column; gap: 2px; }
.social-proof-stars { display: flex; gap: 1px; font-size: 10px; color: var(--white); }
.join-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--white);
    margin: 0;
}

/* Video intro text */
.video-intro { margin-bottom: 12px; }
.video-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
}

/* ═══════════════════════════════════════════════════════
   VIDEO
═══════════════════════════════════════════════════════ */
.video-section { padding: 0 0 80px; background: var(--bg); }
.video-wrapper {
    cursor: pointer;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-width: 820px;
    margin: 0 auto;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 0 40px 6px rgba(255,255,255,0.07);
}
.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.1rem;
    pointer-events: none;
    transition: transform 0.3s;
}
.play-button i { margin-left: 3px; }
.video-wrapper:hover .play-button { transform: translate(-50%, -50%) scale(1.08); }

/* ═══════════════════════════════════════════════════════
   EVENTS
═══════════════════════════════════════════════════════ */
.events-section { padding: 70px 0; background: var(--bg); }

.display-heading {
    font-family: 'Disket Mono', 'Courier New', monospace;
    font-size: 52px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
}

/* Header: EVENTS left | description right */
.events-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}
.events-desc {
    max-width: 300px;
    text-align: right;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.5;
    align-self: flex-end;
}

/* 3 event photo cards */
.event-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    margin-bottom: 70px;
}
.event-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
.event-card-center {
    aspect-ratio: 1 / 1;
}
.event-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.event-card-label {
    position: absolute;
    bottom: 14px;
    left: 14px;
    font-family: 'Disket Mono', 'Courier New', monospace;
    font-size: 13px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.05em;
}

/* Upcoming events row */
.upcoming-events-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.upcoming-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.6;
    max-width: 380px;
}

/* Africa map — wrapper with right padding for right-side labels */
.africa-map-wrapper {
    position: relative;
    width: 100%;
    padding-right: 130px; /* space for right labels */
    box-sizing: border-box;
}

.africa-map-img {
    width: 100%;
    height: auto;
    display: block;
}

/* All absolute labels */
.africa-label {
    position: absolute;
    font-family: 'Disket Mono', 'Courier New', monospace;
    font-size: 11px;
    font-weight: 400;
    color: var(--white);
    white-space: nowrap;
    line-height: 1;
}

/* Right-side labels: flex row so line sits left of text */
.africa-label-right {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Connector line */
.africa-line {
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--white);
    flex-shrink: 0;
}

/* South Africa — regular text centered below the image */
.africa-label-south {
    font-family: 'Disket Mono', 'Courier New', monospace;
    font-size: 11px;
    font-weight: 400;
    color: var(--white);
    text-align: center;
    margin-top: 10px;
    padding-right: 130px; /* match wrapper padding so it centres over image */
}

/* ═══════════════════════════════════════════════════════
   UPCOMING EVENTS LIST
═══════════════════════════════════════════════════════ */
.upcoming-list-section { padding: 70px 0; background: var(--bg); }

.upcoming-list-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}
.upcoming-list-desc {
    max-width: 420px;
    text-align: right;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.6;
    align-self: flex-end;
}

.upcoming-list { display: flex; flex-direction: column; gap: 10px; }

.upcoming-row {
    display: flex;
    align-items: center;
    gap: 28px;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 20px 28px;
}

.upcoming-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 52px;
    flex-shrink: 0;
}
.upcoming-day {
    font-family: 'Disket Mono', 'Courier New', monospace;
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
}
.upcoming-month {
    font-family: 'Disket Mono', 'Courier New', monospace;
    font-size: 13px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.upcoming-flag {
    width: 66px;
    height: 44px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.upcoming-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 160px;
    flex-shrink: 0;
}
.upcoming-country {
    font-family: 'Disket Mono', 'Courier New', monospace;
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: 0.02em;
}
.upcoming-city {
    font-family: 'Disket Mono', 'Courier New', monospace;
    font-size: 11px;
    font-weight: 400;
    color: var(--white);
    opacity: 0.7;
    letter-spacing: 0.05em;
}

.upcoming-venue {
    flex: 1;
    font-family: 'Disket Mono', 'Courier New', monospace;
    font-size: 13px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.5;
    letter-spacing: 0.03em;
}

.btn-ticket {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--btn-dark);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.25s;
}
.btn-ticket:hover { background: var(--btn-hover); color: var(--white); }

@media (max-width: 768px) {
    .upcoming-list-header { flex-direction: column; gap: 12px; }
    .upcoming-list-desc { text-align: left; max-width: 100%; }
    .upcoming-row { flex-wrap: wrap; gap: 16px; padding: 16px 20px; }
    .upcoming-venue { min-width: 100%; }
    .btn-ticket { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════
   CHECKLIST
═══════════════════════════════════════════════════════ */
.checklist-section { padding: 70px 0; background: var(--bg); }

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.checklist-img-col { display: flex; align-items: center; justify-content: center; }
.checklist-main-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    display: block;
    object-fit: cover;
}
.checklist-heading {
    font-family: 'Disket Mono', 'Courier New', monospace;
    font-size: 36px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
}
.checklist-body {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.6;
    margin: 0;
}
.checklist-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}
.checklist-bullets li {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    padding-left: 18px;
    position: relative;
    margin-bottom: 8px;
    line-height: 1.5;
}
.checklist-bullets li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--white);
}
.checklist-pricing {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.checklist-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #4d8ff5;
    line-height: 1;
}
.checklist-price-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.5;
}
@keyframes spots-flash-glow {
    0%, 100% { color: #ff2020; text-shadow: 0 0 8px #ff2020, 0 0 20px #ff2020, 0 0 40px #ff0000; opacity: 1; }
    50%       { color: #ff6060; text-shadow: 0 0 4px #ff2020; opacity: 0.5; }
}
.spots-left {
    color: #ff2020 !important;
    font-weight: 700 !important;
    animation: spots-flash-glow 1s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════
   BOOTCAMP
═══════════════════════════════════════════════════════ */
.bootcamp-section { padding: 70px 0; background: var(--bg); }

.bootcamp-heading {
    font-family: 'Disket Mono', 'Courier New', monospace;
    font-size: 36px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
}

.bootcamp-grid {
    display: grid;
    grid-template-columns: 1fr 300px 1fr;
    gap: 36px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.bootcamp-col-left {
    display: flex;
    flex-direction: column;
    gap: 44px;
    align-items: flex-end;
}
.bootcamp-col-center { display: flex; justify-content: center; align-items: center; }
.bootcamp-col-right {
    display: flex;
    flex-direction: column;
    gap: 44px;
    align-items: flex-start;
}

.bootcamp-img {
    width: 300px;
    height: auto;
    display: block;
    border-radius: 14px;
    object-fit: cover;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    max-width: 180px;
}
.bootcamp-col-left .feature-item { align-items: flex-end; text-align: right; }
.bootcamp-col-right .feature-item { align-items: flex-start; text-align: left; }

.feature-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}
.feature-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    margin: 0;
    line-height: 1.4;
}
.bootcamp-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.bootcamp-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #4d8ff5;
    line-height: 1;
}

/* ═══════════════════════════════════════════════════════
   E-BOOKS
═══════════════════════════════════════════════════════ */
.ebooks-section { padding: 70px 0; background: var(--bg); }

.ebooks-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}
.ebooks-desc {
    max-width: 340px;
    text-align: right;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.6;
}

.ebooks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ebook-card {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
}
.ebook-card:hover { transform: translateY(-4px); }

.ebook-cover {
    width: auto;
    max-width: 60%;
    height: 220px;
    border-radius: 6px;
    object-fit: contain;
    margin-bottom: 16px;
}
.ebook-title {
    font-family: 'Disket Mono', 'Courier New', monospace;
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
}
.ebook-body {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    text-align: center;
}
.ebook-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.ebook-price-free {
    font-family: 'Disket Mono', 'Courier New', monospace;
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
}
.ebook-price-paid {
    font-family: 'Disket Mono', 'Courier New', monospace;
    font-size: 18px;
    font-weight: 400;
    color: #4d8ff5;
}
.btn-pill-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--btn-dark);
    color: var(--white);
    border: none;
    border-radius: 30px;
    padding: 12px 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s;
    white-space: nowrap;
}
.btn-pill-dark:hover { background: var(--btn-hover); color: var(--white); }

/* ═══════════════════════════════════════════════════════
   REGULATION
═══════════════════════════════════════════════════════ */
.regulation-section { padding: 70px 0; background: var(--bg); }

.reg-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card-bg);
    border-radius: 14px;
    padding: 28px 36px;
    margin-bottom: 10px;
    gap: 40px;
}
.reg-left { flex: 1; }
.reg-title {
    font-family: 'Disket Mono', 'Courier New', monospace;
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.reg-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--grey);
    margin: 0;
    max-width: 420px;
    line-height: 1.5;
}
.reg-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}
.reg-logo {
    height: 52px;
    width: auto;
    max-width: 200px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.reg-card-skills {
    position: relative;
    overflow: hidden;
    background-image: url('../img/linegraphfull.png');
    background-size: cover;
    background-position: center;
}
.reg-card-skills::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(16, 17, 19, 0.82);
    z-index: 0;
}
.reg-card-skills .reg-left,
.reg-card-skills .reg-skills-grid {
    position: relative;
    z-index: 1;
}

.reg-skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    align-self: center;
}
.reg-skill {
    font-family: 'Disket Mono', 'Courier New', monospace;
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
    letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
.testimonials-section { padding: 70px 0; background: var(--bg); }
.testimonials-swiper { padding-bottom: 56px !important; }
.testimonials-swiper .swiper-slide { height: auto; }
.testimonials-swiper .testimonial-card { height: 100%; }
.testimonials-prev, .testimonials-next {
    color: var(--white) !important;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    width: 44px !important;
    height: 44px !important;
    top: 50% !important;
}
.testimonials-prev::after, .testimonials-next::after { font-size: 16px !important; }
.testimonials-prev:hover, .testimonials-next:hover { background: rgba(255,255,255,0.18); }
.testimonials-pagination .swiper-pagination-bullet { background: var(--white); opacity: 0.3; }
.testimonials-pagination .swiper-pagination-bullet-active { opacity: 1; }

.testimonials-heading {
    font-family: 'Disket Mono', 'Courier New', monospace;
    font-size: 34px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 8px 40px rgba(255,255,255,0.04);
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.14), 0 12px 48px rgba(255,255,255,0.08);
}

.testimonial-quote {
    font-family: Georgia, serif;
    font-size: 120px;
    font-weight: 700;
    color: var(--white);
    line-height: 0.75;
    margin-bottom: 24px;
    display: block;
}
.testimonial-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.7;
    flex: 1;
    margin: 0;
}
.testimonial-name {
    font-family: 'Disket Mono', 'Courier New', monospace;
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    margin-top: 32px;
    letter-spacing: 0.08em;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════ */
.faq-section { padding: 70px 0; background: var(--bg); }

.faq-main-heading {
    font-family: 'Disket Mono', 'Courier New', monospace;
    font-size: 34px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.faq-container { max-width: 100%; margin: 0 auto; }

.faq-item {
    background: var(--card-bg);
    border-radius: 40px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-question {
    padding: 24px 36px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Disket Mono', 'Courier New', monospace;
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    user-select: none;
    letter-spacing: 0.03em;
    transition: background 0.2s;
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-question i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    font-size: 14px;
    transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-answer { border-top: 1px solid rgba(255,255,255,0.08); }
.faq-content { padding: 20px 36px 28px; }
.faq-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin: 0;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
    background: var(--bg);
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-logo-row {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}
.footer-logo {
    height: 60px;
    width: auto;
    display: block;
}

.footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}
.footer-col-heading {
    font-family: 'Disket Mono', 'Courier New', monospace;
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-link {
    font-family: 'Disket Mono', 'Courier New', monospace;
    font-size: 13px;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.03em;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.footer-link:hover { opacity: 1; color: var(--white); }
.footer-link-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-link-icon i { font-size: 16px; }

.footer-disclaimer {
    font-family: 'Disket Mono', 'Courier New', monospace;
    font-size: 11px;
    font-weight: 400;
    color: var(--white);
    opacity: 0.75;
    line-height: 1.7;
    letter-spacing: 0.03em;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    text-align: center;
}
.footer-copyright {
    font-family: 'Disket Mono', 'Courier New', monospace;
    font-size: 11px;
    font-weight: 400;
    color: var(--white);
    opacity: 0.6;
    letter-spacing: 0.05em;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-cols { grid-template-columns: 1fr; gap: 36px; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 992px) {
    .nav-center { position: static; transform: none; flex-direction: column; gap: 8px; }
    .checklist-grid { grid-template-columns: 1fr; gap: 36px; }
    .bootcamp-grid { grid-template-columns: 1fr; gap: 28px; }
    .bootcamp-col-left, .bootcamp-col-right { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 20px; }
    .bootcamp-col-left .feature-item, .bootcamp-col-right .feature-item { align-items: center; text-align: center; }
    .ebooks-grid { grid-template-columns: 1fr 1fr; }
    .ebooks-header { flex-direction: column; gap: 12px; }
    .ebooks-desc { text-align: left; max-width: 100%; }
    .event-cards { grid-template-columns: 1fr; }
    .event-card-center { height: 250px; margin-top: 0; }
    .upcoming-events-row { grid-template-columns: 1fr; gap: 36px; }
    .events-header { flex-direction: column; gap: 12px; }
    .events-desc { text-align: left; max-width: 100%; }
    .reg-card { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 32px; }
    .display-heading { font-size: 36px; }
    .testimonials-heading { font-size: 24px; }
    .faq-main-heading { font-size: 24px; }
    .hero-cta-section { flex-direction: column; }
    .checklist-price, .bootcamp-price { font-size: 40px; }
    .checklist-heading, .bootcamp-heading { font-size: 28px; }
    .checklist-pricing, .bootcamp-pricing { flex-direction: column; align-items: flex-start; gap: 14px; }
    .faq-question { padding: 16px 20px; font-size: 12px; }
    .faq-content { padding: 14px 20px 18px; }
    .ebooks-grid { grid-template-columns: 1fr; }
    .ebook-title { font-size: 16px; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 26px; }
    .display-heading { font-size: 28px; }
    .social-proof { flex-direction: column; }
    .checklist-grid { gap: 20px; }
    .bootcamp-heading { font-size: 24px; }
}

/* ═══════════════════════════════════════════════════
   PRELOADER
═══════════════════════════════════════════════════ */
#tft-preloader {
    position: fixed;
    inset: 0;
    background: #060606;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1),
                visibility 0.6s cubic-bezier(0.4,0,0.2,1);
}
#tft-preloader.preloader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
body.preloader-active { overflow: hidden; }

.preloader-inner {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.07);
    border-top-color: rgba(255,255,255,0.85);
    border-right-color: rgba(255,255,255,0.35);
    animation: ring-spin 1.1s linear infinite;
}
.preloader-ring-outer {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.04);
    border-bottom-color: rgba(255,255,255,0.2);
    animation: ring-spin 2.4s linear infinite reverse;
}
@keyframes ring-spin { to { transform: rotate(360deg); } }

.preloader-logo {
    width: 140px;
    height: auto;
    opacity: 0;
    animation: preloader-logo-reveal 0.8s 0.3s cubic-bezier(0.22,1,0.36,1) forwards;
    position: relative;
    z-index: 1;
}
@keyframes preloader-logo-reveal {
    0%   { opacity: 0; transform: scale(0.85); }
    100% { opacity: 1; transform: scale(1); }
}

/* ═══════════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════════ */
[data-animate] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(0.22,1,0.36,1);
    transition-duration: 0.7s;
}
[data-animate].anim-visible { opacity: 1; transform: none; }
[data-animate="fade-up"]    { transform: translateY(36px); }
[data-animate="fade-left"]  { transform: translateX(-48px); }
[data-animate="fade-right"] { transform: translateX(48px); }
[data-animate="scale-in"]   { transform: scale(0.88); }
[data-animate="fade"]       { transform: none; }

/* ═══════════════════════════════════════════════════
   HERO TYPED TEXT
═══════════════════════════════════════════════════ */
.hero-subtitle {
    min-height: 2.4em;
}
#hero-typed-text {
    display: inline-block;
    transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1);
}
#hero-typed-text.typed-fade-out { opacity: 0; }

/* ═══════════════════════════════════════════════════
   HERO GRID BACKGROUND
═══════════════════════════════════════════════════ */
.hero-section { position: relative; overflow: hidden; }
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
    animation: hero-grid-drift 20s linear infinite;
}
@keyframes hero-grid-drift {
    0%   { transform: translateY(0); }
    100% { transform: translateY(60px); }
}
.hero-content { position: relative; z-index: 1; }
.video-section { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════
   BUTTON RIPPLE
═══════════════════════════════════════════════════ */
.btn-roadmap,
.btn-pill-white,
.btn-pill-dark,
.btn-ticket,
.btn-enroll { overflow: hidden; position: relative; }

.btn-ripple-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.22);
    transform: scale(0);
    animation: ripple-expand 0.55s cubic-bezier(0.4,0,0.2,1) forwards;
    pointer-events: none;
}
@keyframes ripple-expand { to { transform: scale(4); opacity: 0; } }

/* ═══════════════════════════════════════════════════
   SECTION SEPARATORS
═══════════════════════════════════════════════════ */
.section-divider {
    width: 100%;
    height: 1px;
    border: none;
    margin: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.08) 30%,
        rgba(255,255,255,0.12) 50%,
        rgba(255,255,255,0.08) 70%,
        transparent 100%
    );
}

/* ═══════════════════════════════════════════════════
   NAVBAR ENTRANCE
═══════════════════════════════════════════════════ */
.navbar-brand.nav-entrance-ready,
.navbar-nav .nav-item.nav-entrance-ready {
    opacity: 0;
    transform: translateY(-16px);
}
.navbar-brand.nav-entrance-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.navbar-nav .nav-item.nav-entrance-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

/* ═══════════════════════════════════════════════════
   CARD GLOW HOVERS
═══════════════════════════════════════════════════ */
.ebook-card { position: relative; overflow: hidden; }
.ebook-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--blue), var(--red));
    transition: width 0.4s cubic-bezier(0.22,1,0.36,1);
    border-radius: 18px 18px 0 0;
}
.ebook-card:hover::before { width: 100%; }
.ebook-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 8px 32px rgba(255,255,255,0.05);
}

.reg-card { transition: box-shadow 0.3s ease, transform 0.3s ease; }
.reg-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 8px 32px rgba(255,255,255,0.04);
}

/* ═══════════════════════════════════════════════════
   REDUCED MOTION OVERRIDES
═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    .preloader-logo { animation: none; opacity: 1; }
    .preloader-ring, .preloader-ring-outer { animation: none; }
    #tft-preloader { transition: opacity 0.2s linear, visibility 0.2s linear; }
    [data-animate] { transition-duration: 0.2s; transform: none !important; }
    .hero-section::before { animation: none; }
    .ebook-card::before { transition: none; }
    .reg-card { transition: none; }
    .navbar-brand.nav-entrance-ready,
    .navbar-nav .nav-item.nav-entrance-ready { opacity: 1; transform: none; }
}
