:root {
    --bg-dark: #0d0d0d;
    --bg-card: #161616;
    --bg-card-2: #1e1e1e;
    --accent-green: #00e676;
    --accent-gold: #ffd600;
    --accent-orange: #ff6f00;
    --text-light: #e8e8e8;
    --text-muted: #888;
    --border-dim: rgba(255, 255, 255, 0.08);
    --gradient-hero: linear-gradient(135deg, #0d0d0d 0%, #141a10 60%, #0d0d0d 100%);
    --gradient-cta: linear-gradient(90deg, #00c853, #64dd17);
    --font-main: "Poppins", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-main);
    overflow-x: hidden;
    padding-bottom: 70px; /* space for sticky mobile CTA */
}

/* ===== WARNING BAR ===== */
.warning-bar {
    background: #1a0000;
    border-bottom: 2px solid #ff1744;
    color: #ff6e6e;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* ===== HIGHLIGHT ===== */
.highlight {
    color: var(--accent-green);
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
}
.section-eyebrow {
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* ===== CTA BUTTON ===== */
.btn-cta {
    background: var(--gradient-cta);
    border: none;
    border-radius: 50px;
    color: #000 !important;
    font-weight: 800;
    font-size: 15px;
    line-height: 1.1;
    letter-spacing: 0.02em;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(0, 200, 83, 0.35);
    text-decoration: none;
    display: inline-block;
    padding: 10px 15px !important;
}
.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 200, 83, 0.55);
    color: #000;
}
.btn-cta del {
    color: #555;
    font-weight: 400;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--gradient-hero);
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    border-bottom: 1px solid var(--border-dim);
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 230, 118, 0.07) 0%, transparent 70%);
    pointer-events: none;
}
.attention-tag {
    background: radial-gradient(55.41% 227.78% at 50% 277.78%, #00E3BB 40%, rgba(0, 227, 187, 0) 100%), linear-gradient(180deg, rgba(243, 238, 255, 0) 0%, rgba(243, 238, 255, 0.04) 100%), linear-gradient(0deg, rgba(0, 227, 187, 0.01), rgba(0, 227, 187, 0.01)), #000000;
    box-shadow: 0px 10px 11px rgba(0, 71, 59, 0.2), inset 0px 0px 0px 1px rgba(42, 101, 91, 0.8), inset 0px 0px 12px rgba(255, 255, 255, 0.08), inset 0px -8px 20px #00473B;
    color: #ffffffe6;
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.hero-title {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
}
.hero-sub {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
}
.hero-img {
    max-width: 420px;
    width: 100%;
    filter: drop-shadow(0 10px 40px rgba(0, 230, 118, 0.2));
}

.radius-10 {
    border-radius: 10px !important;
}
.bg-color-white {
    background: #fff;
}
.bg-color-white {
    background-color: #fff !important;
}

/* ===== DETAIL CARDS ===== */
.detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: border-color 0.2s;
}
.detail-card:hover {
    border-color: var(--accent-green);
}
.detail-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.detail-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}
.detail-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-green);
}

/* ===== MARQUEE ===== */
.marquee-wrapper {
    overflow: hidden;
    position: relative;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}
.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.marquee-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: marquee 25s linear infinite;
}
.marquee-track-slow {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: marquee 40s linear infinite;
}
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.media-logo {
    height: 50px;
    object-fit: contain;
    filter: brightness(0.6) grayscale(1);
    transition: filter 0.3s;
}
.media-logo:hover {
    filter: brightness(1) grayscale(0);
}

.testimonial-img {
    height: 220px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid var(--border-dim);
}

.workshop-photo {
    height: 200px;
    width: 280px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid var(--border-dim);
}

.community-photo {
    height: 200px;
    width: 280px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid var(--border-dim);
}

/* ===== FEATURED / STATS ===== */
.featured-section {
    background: #111;
    border-top: 1px solid var(--border-dim);
    border-bottom: 1px solid var(--border-dim);
}
.stats-section {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-dim);
}
.stat-number {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--accent-green);
    line-height: 1;
}
.stat-label {
    font-size: 0.85rem;
    color: #fff;
    margin-top: 0.4rem;
}

.bridge-box {
    background: rgba(0, 229, 255, 0.06);
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 16px;
    padding: 1.8rem 2.5rem;
    max-width: 700px;
}

/* ===== LEARN SECTION ===== */
.learn-section {
    background: #0f0f0f;
}

.learn-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 16px;
    padding: 1.5rem;
    transition:
        border-color 0.25s,
        transform 0.25s;
}
.learn-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-3px);
}
.learn-card h5 {
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}
.learn-card p {
    font-size: 0.95rem;
    color: #ccc;
    margin: 0;
}
.learn-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(0, 230, 118, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-green);
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    background: #0d0d0d;
}
.testimonial-badge {
    background: var(--bg-card);
    border: 1px solid rgba(255, 214, 0, 0.25);
    border-radius: 12px;
    padding: 1rem;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== AUDIENCE SECTION ===== */
.audience-section {
    background: #111;
}
.audience-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 16px;
    padding: 10px;
    transition: border-color 0.25s, transform 0.25s;
}
.audience-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-4px);
}
.audience-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}
.audience-card h5 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}
.audience-card p {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}
.audience-icon {
    display: none;
}
.detail-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 20px;
    padding: 2rem;
}
.detail-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-dim);
    font-size: 0.95rem;
    color: #ccc;
}
.register-card {
    background: var(--bg-card);
    border: 1px solid rgba(79, 142, 247, 0.3);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 0 40px rgba(79, 142, 247, 0.06);
}
.custom-input {
    background: #0a0a0f !important;
    border: solid 1px #6d6d6d !important;
    color: #e2e2f0 !important;
    border-radius: 10px !important;
    padding: 0.75rem 1rem !important;
    font-family: system-ui !important;
    font-size: 0.95rem !important;
    transition: border-color 0.2s !important;
}
.custom-input::placeholder {
  color: #fff;
  opacity: 1;
}

.student-card {
    background: var(--bg-card);
    border: solid 1px #959595;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    transition: border-color 0.25s, transform 0.25s;
    text-align: center;
}
.student-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-cta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: system-ui;
    font-size: 1.2rem;
    color: #000;
    margin: 0 auto 0.75rem;
}
.student-name {
    font-weight: 700;
    font-family: system-ui;
    font-size: 1rem;
    color: #fff;
}
.student-role {
    font-size: 0.8rem;
    color: #00e5ff;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}
.student-quote {
    font-size: 0.88rem;
    color: #fff;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 0.75rem;
}
.star-rating {
    font-size: 0.9rem;
}
.coach-name {
    font-weight: 900;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    background: linear-gradient(90deg, #fff, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.coach-tagline {
    color: #ffd600;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.04em;
}
.coach-avatar-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(90deg, #4f8ef7, #00e5ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-family: system-ui;
    font-size: 3rem;
    color: #000;
    box-shadow: 0 0 60px rgba(79, 142, 247, 0.3);
    border: 3px solid rgba(0, 229, 255, 0.3);
}
.coach-badge {
    display: inline-block;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.25);
    color: #00e5ff;
    border-radius: 50px;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}
/* ===== BONUS SECTION ===== */
.bonus-section {
    background: linear-gradient(135deg, #0d1a05, #0d0d0d, #1a0d00);
    border-top: 1px solid var(--border-dim);
    border-bottom: 1px solid var(--border-dim);
}
.bonus-badge {
    background: rgba(255, 111, 0, 0.15);
    border: 1px solid var(--accent-orange);
    color: var(--accent-orange);
    display: inline-block;
    padding: 0.4rem 1.4rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.bonus-item {
    background: var(--bg-card);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: 12px;
    padding: 1.2rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ddd;
    transition: border-color 0.2s;
}
.bonus-item:hover {
    border-color: var(--accent-green);
}

/* ===== BEFORE / AFTER ===== */
.before-after-section {
    background: #0f0f0f;
}
.ba-card {
    border-radius: 16px;
    padding: 2rem;
}
.before-card {
    background: rgba(255, 23, 68, 0.05);
    border: 1px solid rgba(255, 23, 68, 0.25);
}
.after-card {
    background: rgba(0, 230, 118, 0.05);
    border: 1px solid rgba(0, 230, 118, 0.25);
}
.ba-title {
    font-weight: 800;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}
.before-title {
    color: #ff1744;
}
.after-title {
    color: var(--accent-green);
}
.ba-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ba-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-dim);
    font-size: 0.95rem;
    color: #ccc;
}
.ba-list li:last-child {
    border-bottom: none;
}
.before-card .ba-list li::before {
    content: "✗ ";
    color: #ff1744;
    font-weight: 700;
}
.after-card .ba-list li::before {
    content: "✓ ";
    color: var(--accent-green);
    font-weight: 700;
}

/* ===== COACH SECTION ===== */
.coach-section {
    background: #0d0d0d;
}
.coach-img {
    border-radius: 20px;
    border: 2px solid rgba(0, 230, 118, 0.3);
    box-shadow: 0 0 60px rgba(0, 230, 118, 0.12);
    max-width: 380px;
    width: 100%;
}
.coach-name {
    font-weight: 900;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    background: linear-gradient(90deg, #fff, var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.coach-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.coach-list li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-dim);
    font-size: 1rem;
    font-weight: 500;
    color: #ddd;
}
.coach-list li:last-child {
    border-bottom: none;
}

/* ===== IMAGINE SECTION ===== */
.imagine-section {
    background: linear-gradient(135deg, #080d05, #0d0d0d);
    border-top: 1px solid var(--border-dim);
    border-bottom: 1px solid var(--border-dim);
}
.imagine-item {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 12px;
    padding: 1.1rem 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    transition:
        border-color 0.2s,
        transform 0.2s;
}
.imagine-item:hover {
    border-color: var(--accent-green);
    transform: translateX(6px);
}

/* ===== CROSSROAD ===== */
.crossroad-section {
    background: #111;
}
.path-card {
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: transform 0.25s;
}
.path-card:hover {
    transform: translateY(-4px);
}
.path-bad {
    background: rgba(255, 23, 68, 0.06);
    border: 2px solid rgba(255, 23, 68, 0.3);
}
.path-good {
    background: rgba(0, 230, 118, 0.06);
    border: 2px solid rgba(0, 230, 118, 0.3);
}
.path-number {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}
.path-bad h5 {
    color: #ff6e6e;
    font-size: 1.1rem;
}
.path-good h5 {
    color: #a5d6a7;
    font-size: 1.1rem;
}

/* ===== COMMUNITY SECTION ===== */
.community-section {
    background: #0d0d0d;
}

/* ===== FAQ ===== */
.faq-section {
    background: #111;
}
.faq-item {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-dim) !important;
    border-radius: 12px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.faq-btn {
    background: var(--bg-card) !important;
    color: #e8e8e8 !important;
    font-weight: 600 !important;
    font-size: 0.95rem;
    box-shadow: none !important;
    border: none;
}
.faq-btn::after {
    filter: invert(1) !important;
}
.faq-btn:not(.collapsed) {
    background: rgba(0, 230, 118, 0.07) !important;
    color: var(--accent-green) !important;
}
.faq-body {
    background: rgba(0, 0, 0, 0.3);
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #080808;
    border-top: 1px solid var(--border-dim);
    color: var(--text-muted);
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--accent-green);
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 1rem;
    background: rgba(13, 13, 13, 0.97);
    border-top: 1px solid rgba(0, 230, 118, 0.2);
    backdrop-filter: blur(8px);
}

/* ===== SEPARATOR DIVIDER ===== */
section + section {
    border-top: 1px solid var(--border-dim);
}

/* ===== RESPONSIVE TWEAKS ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.5rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .coach-name {
        font-size: 1.8rem;
    }
    .ba-card {
        padding: 1.5rem 1.2rem;
    }
    .learn-card {
        padding: 1.2rem;
    }
    .testimonial-img {
        height: 160px;
    }
    .workshop-photo,
    .community-photo {
        height: 140px;
        width: 200px;
    }
    body {
        padding-bottom: 90px;
    }
	.bridge-box {
		max-width: 100%;
	}
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.4rem;
    }
    .detail-card {
        padding: 1rem 0.6rem;
    }
    .detail-value {
        font-size: 0.95rem;
    }
}
