:root {
    --bg-dark: #090B10;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    --meta-blue: #0668E1;
    --meta-purple: #B33CF7;
    --text-main: #FFFFFF;
    --text-muted: #A0ABC0;
    --highlight-cyan: #00F0FF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    text-align: center;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(6, 104, 225, 0.15), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(179, 60, 247, 0.15), transparent 25%);
    background-attachment: fixed;
}

.top-banner {
    background: linear-gradient(90deg, var(--meta-blue), var(--meta-purple));
    color: white;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-container {
    position: absolute;
    top: 60px;
    left: 30px;
    z-index: 10;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 220px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-container img {
    height: 250px;
    width: auto;
    max-width: none;
    display: block;
}

.container {
    max-width: 950px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.subtitle {
    color: var(--highlight-cyan);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-heading {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--text-main);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.highlight {
    background: linear-gradient(90deg, var(--highlight-cyan), var(--meta-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--highlight-cyan);
    /* Fallback */
}

.underline {
    text-decoration: none;
    /* Removing text-decoration because of background clip */
    border-bottom: 3px solid var(--highlight-cyan);
}

.description {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.video-container {
    width: 100%;
    max-width: 780px;
    margin: 0 auto 30px;
    background-color: #000;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 40px rgba(6, 104, 225, 0.3);
    border: 1px solid var(--border-glass);
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: radial-gradient(circle at center, rgba(179, 60, 247, 0.2) 0%, #050505 100%);
    position: relative;
    display: flex;
    flex-direction: column;
}

.video-top-text {
    background: linear-gradient(90deg, var(--meta-blue), var(--meta-purple));
    color: white;
    font-weight: 900;
    font-size: 20px;
    padding: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.video-inner {
    flex: 1;
    display: flex;
    position: relative;
}

.video-content-left {
    flex: 6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    text-align: left;
    z-index: 2;
}

.launch-text-wrapper {
    background-color: #111;
    padding: 6px 15px;
    margin-bottom: 15px;
    transform: skewX(-10deg);
}

.launch-text {
    color: white;
    font-weight: 800;
    font-size: 20px;
    font-style: italic;
    display: block;
    transform: skewX(10deg);
}

.join-text {
    color: #fade34;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.05;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    transform: skew(-5deg, -2deg);
    text-transform: uppercase;
    font-style: italic;
}

.video-content-right {
    flex: 4;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.presenter-image-overlay {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 250px;
    height: 300px;
    background-image: url('https://ui-avatars.com/api/?name=Darshan+Joshi&background=random');
    /* Using avatar as a placeholder. In real use-case, this would be presenter image with transparent bg */
    background-size: cover;
    background-position: center;
    border-radius: 10px 10px 0 0;
    opacity: 0.8;
}

.presenter-name-tag {
    background-color: #000;
    color: white;
    padding: 6px 25px;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 15px;
    z-index: 2;
    font-style: italic;
}

.info-cards {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background-color: white;
    padding: 12px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    flex: 1;
    min-width: 180px;
    text-align: left;
}

.card>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--meta-blue), var(--meta-purple));
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icon i {
    color: white;
    font-size: 18px;
}

.card-title {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #8D99AE;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-value {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #2B2D42;
}

.presenter-card-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.presenter-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    padding: 20px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.presenter-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--highlight-cyan);
    flex-shrink: 0;
}

.presenter-info {
    text-align: left;
}

.presenter-info h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 2px;
}

.presenter-info p {
    font-size: 13px;
    font-weight: 600;
    color: var(--highlight-cyan);
    margin-bottom: 8px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
}

.stars {
    color: #FFD700;
    font-size: 14px;
}

.rating-text {
    color: var(--text-muted);
}

.cta-button {
    background: linear-gradient(90deg, #B33CF7, #0668E1, #00F0FF);
    background-size: 200% auto;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    width: 90%;
    max-width: 650px;
    box-shadow: 0 10px 30px rgba(6, 104, 225, 0.4);
    transition: all 0.3s ease;
    animation: gradientShift 3s ease infinite, pulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(179, 60, 247, 0.6);
}

.cta-button:active {
    transform: translateY(1px);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(6, 104, 225, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(6, 104, 225, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(6, 104, 225, 0);
    }
}

.cta-main {
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-sub {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
}

.bonus-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--highlight-cyan);
    margin-bottom: 30px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.time-box {
    background-color: #2b5555;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.time-box .number {
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
}

.time-box .label {
    font-size: 10px;
    font-weight: 600;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

@media (max-width: 768px) {
    .logo-container {
        position: relative;
        top: auto;
        left: auto;
        margin: 20px auto 0;
        width: 180px;
        height: 50px;
    }

    .logo-container img {
        height: 200px;
    }

    .main-heading {
        font-size: 28px;
    }

    .video-placeholder {
        aspect-ratio: auto;
        min-height: 400px;
    }

    .video-inner {
        flex-direction: column;
    }

    .video-content-left {
        padding: 30px 20px 0;
        align-items: center;
        text-align: center;
    }

    .video-content-right {
        margin-top: 30px;
        justify-content: center;
    }

    .presenter-image-overlay {
        position: relative;
        right: auto;
        opacity: 0.8;
        width: 80%;
        max-width: 250px;
    }

    .presenter-name-tag {
        position: absolute;
        bottom: 20px;
        right: 10px;
        margin-bottom: 0;
        font-size: 16px;
        padding: 6px 15px;
        z-index: 10;
        text-align: right;
    }

    .join-text {
        font-size: 26px;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    /* Removed animation: none to align with PC animation */

    .info-cards {
        flex-direction: column;
        align-items: stretch;
    }

    .card {
        width: 100%;
        justify-content: flex-start;
    }
}

/* --- NEW SECTIONS STYLES --- */

.inner-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--meta-blue);
    margin-bottom: 40px;
    line-height: 1.3;
}

.section-title strong {
    font-weight: 900;
}

.text-green {
    color: var(--highlight-cyan);
    font-weight: 800;
}

/* Challenges Section */
.challenges-section {
    background-color: transparent;
    border-top: 1px solid var(--border-glass);
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.challenge-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.challenge-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(179, 60, 247, 0.2);
    border-color: rgba(179, 60, 247, 0.5);
}

.challenge-checkbox {
    display: none;
}

.custom-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid var(--text-muted);
    border-radius: 4px;
    margin-right: 15px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s;
}

.challenge-checkbox:checked+.custom-checkbox {
    background: linear-gradient(135deg, var(--meta-blue), var(--meta-purple));
    border-color: var(--highlight-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.challenge-checkbox:checked+.custom-checkbox::after {
    content: '\2714';
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
}

.challenge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.challenges-subtitle {
    font-size: 18px;
    margin: 40px 0;
    color: var(--highlight-cyan);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

/* Curriculum Section */
.curriculum-section {
    background-color: transparent;
    border-top: 1px solid var(--border-glass);
}

.curriculum-layout {
    display: flex;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.curriculum-list {
    flex: 6;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.day-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(6, 104, 225, 0.3);
    border-radius: 12px;
    padding: 25px;
    box-shadow: inset 0 0 20px rgba(6, 104, 225, 0.05);
}

.day-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.text-green-icon {
    background: linear-gradient(90deg, var(--highlight-cyan), var(--meta-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    color: var(--highlight-cyan);
}

.day-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
}

.day-goal {
    font-size: 15px;
    font-weight: 700;
    color: var(--highlight-cyan);
    margin-bottom: 15px;
}

.day-points {
    list-style: none;
}

.day-points li {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.text-green-check {
    color: var(--meta-purple);
    margin-top: 3px;
    font-size: 14px;
    text-shadow: 0 0 5px rgba(179, 60, 247, 0.5);
}

.curriculum-image {
    flex: 4;
    position: sticky;
    top: 40px;
    align-self: flex-start;
}

@media (max-width: 768px) {
    .curriculum-image {
        position: static;
    }
}

.curriculum-image img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 30px rgba(6, 104, 225, 0.2));
}

/* Infographic Section */
.infographic-section {
    background-color: rgba(6, 104, 225, 0.05);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    color: white;
}

.infographic-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(179, 60, 247, 0.3);
}

.infographic-note {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.infographic-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #d1dfdb;
    margin-bottom: 50px;
}

.infographic-diagram {
    position: relative;
    max-width: 600px;
    height: 400px;
    margin: 0 auto 50px;
}

.diagram-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    z-index: 1;
}

.diagram-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.center-circle {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 3px solid var(--meta-blue);
    color: var(--text-main);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    padding: 10px;
    box-shadow: 0 0 30px rgba(6, 104, 225, 0.4);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.diagram-node {
    position: absolute;
    text-align: center;
    z-index: 3;
    width: 120px;
}

.node-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.node-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.node-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.node-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.node-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: white;
    box-shadow: 0 0 20px rgba(179, 60, 247, 0.4);
}

.bg-purple {
    background: linear-gradient(135deg, #a4508b, #5f0a87);
}

.bg-pink {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

.bg-green {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.bg-red {
    background: linear-gradient(135deg, #cb2d3e, #ef473a);
}

.node-title {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: var(--text-main);
}

.node-text {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}

@media (max-width: 768px) {
    .challenges-grid {
        grid-template-columns: 1fr;
    }

    .curriculum-layout {
        flex-direction: column-reverse;
    }

    .infographic-diagram {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding-bottom: 40px;
    }

    .diagram-node,
    .diagram-center {
        position: static;
        transform: none;
    }

    .diagram-lines {
        display: none;
    }
}

/* --- NEWER SECTIONS STYLES --- */

/* Who Can Attend */
.who-can-attend {
    background-color: transparent;
    border-bottom: 1px solid var(--border-glass);
}

.attendee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.attendee-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-main);
    box-shadow: inset 0 0 15px rgba(6, 104, 225, 0.05);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.attendee-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(179, 60, 247, 0.2);
    border-color: rgba(179, 60, 247, 0.4);
}

.attendee-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(6, 104, 225, 0.2), rgba(179, 60, 247, 0.2));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.attendee-card span {
    font-size: 14px;
    font-weight: 700;
}

.attendee-note {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 20px;
}

/* Results Section */
.results-section {
    background-color: transparent;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 30px;
}

.video-testimonial {
    position: relative;
    width: calc(33.333% - 20px);
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
    aspect-ratio: 9/16;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-glass);
}

.video-testimonial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.video-testimonial:hover img {
    opacity: 0.5;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(6, 104, 225, 0.8), rgba(179, 60, 247, 0.8));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 2px solid var(--highlight-cyan);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    z-index: 2;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.video-testimonial:hover .video-overlay {
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Coach Section */
.coach-section {
    background-color: var(--bg-dark);
    color: white;
    border-top: 1px solid var(--border-glass);
    position: relative;
    overflow: hidden;
}

.coach-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(6, 104, 225, 0.05) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.coach-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.coach-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--highlight-cyan);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.coach-layout {
    display: flex;
    gap: 40px;
    align-items: center;
    text-align: left;
    position: relative;
    z-index: 2;
}

.coach-image-wrapper {
    flex: 4;
    display: flex;
    justify-content: center;
}

.coach-photo {
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
    object-fit: cover;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    filter: drop-shadow(0 0 20px rgba(179, 60, 247, 0.3));
}

.coach-content {
    flex: 6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(6, 104, 225, 0.3);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: var(--text-main);
    box-shadow: inset 0 0 15px rgba(0, 240, 255, 0.05);
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 5px;
    background: linear-gradient(90deg, var(--highlight-cyan), var(--meta-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.coach-bullets {
    list-style: none;
    padding-left: 0;
}

.coach-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-muted);
}

.text-gray-arrow {
    color: var(--highlight-cyan);
    margin-top: 3px;
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.4);
}

/* Outcomes Section */
.outcomes-section {
    background-color: transparent;
    border-top: 1px solid var(--border-glass);
}

.outcomes-subtitle {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}

.outcome-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.outcome-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 104, 225, 0.15);
    border-color: rgba(6, 104, 225, 0.4);
}

.outcome-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(6, 104, 225, 0.2), rgba(179, 60, 247, 0.2));
    border: 1px solid rgba(179, 60, 247, 0.3);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.outcome-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 10px;
}

.outcome-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 500;
}

/* Responsive updates for new sections */
@media (max-width: 768px) {
    .attendee-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }

    .video-testimonial {
        width: 100%;
        max-width: 350px;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .coach-layout {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* --- FINAL SECTIONS STYLES --- */

/* Chats Section */
.chats-section {
    background-color: transparent;
    padding-bottom: 20px;
}

.chats-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: var(--highlight-cyan);
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.chats-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto 20px;
}

.carousel-btn {
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 10px;
    transition: color 0.2s, text-shadow 0.2s;
}

.carousel-btn:hover {
    color: var(--highlight-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.chats-slider-viewport {
    overflow: hidden;
    width: 100%;
    padding: 10px;
}

.chats-slider {
    display: flex;
    gap: 15px;
    transition: transform 0.4s ease-in-out;
}

.chat-img {
    flex: 0 0 calc(25% - 11.25px);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(6, 104, 225, 0.6);
    transition: transform 0.2s, border-color 0.2s;
    box-sizing: border-box;
}

.chat-img:hover {
    transform: translateY(-5px);
    border-color: var(--highlight-cyan);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: #333;
}


/* Bonuses Section */
.bonuses-section {
    background-color: #f4f8f8;
    padding-bottom: 20px;
}

.bonus-alert {
    color: #ff0000;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
}

.bonus-tagline {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    margin-bottom: 15px;
}

.bonus-main-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--meta-blue);
    line-height: 1.4;
    margin-bottom: 20px;
}

.bonus-urgency {
    font-size: 14px;
    font-weight: 800;
    color: #333;
    margin-bottom: 40px;
}

.bonus-card {
    background-color: white;
    border: 2px dashed #336655;
    border-radius: 12px;
    padding: 30px;
    max-width: 700px;
    margin: 0 auto 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.bonus-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffaa00;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(255, 170, 0, 0.4);
}

.bonus-content-flex {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 15px;
    text-align: left;
}

.bonus-image-side {
    flex: 4;
}

.bonus-image-side img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.bonus-text-side {
    flex: 6;
}

.bonus-number {
    font-size: 14px;
    font-weight: 800;
    color: var(--meta-blue);
    margin-bottom: 5px;
}

.bonus-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--meta-blue);
    margin-bottom: 15px;
    line-height: 1.3;
}

.bonus-bullets {
    padding-left: 20px;
    margin-bottom: 20px;
}

.bonus-bullets li {
    font-size: 13px;
    color: #555;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.5;
}

.bonus-value {
    display: inline-block;
    background-color: #ff3333;
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 800;
}

@media (max-width: 768px) {
    .chats-slider {
        flex-direction: column;
        align-items: center;
    }

    .chat-img {
        width: 100%;
        max-width: 300px;
    }

    .carousel-btn {
        display: none;
    }

    .bonus-content-flex {
        flex-direction: column;
    }

    .bonus-image-side {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .bonus-text-side {
        text-align: center;
    }

    .bonus-bullets {
        text-align: left;
    }
}

/* Summary Section */
.summary-section {
    background-color: rgba(6, 104, 225, 0.03);
    border-top: 1px solid var(--border-glass);
}

.summary-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-main);
}

.total-value {
    font-size: 20px;
    color: rgba(255, 65, 108, 0.9);
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(255, 65, 108, 0.2);
}

.strikethrough {
    text-decoration: line-through;
    color: rgba(255, 65, 108, 0.7);
}

.buy-today {
    font-size: 36px;
    font-weight: 900;
    color: var(--highlight-cyan);
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.old-price {
    font-size: 24px;
    color: rgba(255, 65, 108, 0.8);
    text-decoration: line-through;
    font-weight: 700;
}

.summary-urgency {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.time-box-small {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(6, 104, 225, 0.2), rgba(179, 60, 247, 0.2));
    border: 1px solid var(--border-glass);
    box-shadow: inset 0 0 10px rgba(6, 104, 225, 0.1);
}

/* Guarantee Section */
.guarantee-section {
    background-color: transparent;
    padding-bottom: 60px;
}

.guarantee-box {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 240, 255, 0.4);
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.15), inset 0 0 20px rgba(0, 240, 255, 0.05);
}

.guarantee-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.guarantee-badge {
    margin: 20px 0;
    filter: drop-shadow(0 0 15px rgba(64, 192, 87, 0.5));
}

.guarantee-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    background-color: rgba(179, 60, 247, 0.03);
    border-top: 1px solid var(--border-glass);
    padding-bottom: 80px;
}

.faq-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 40px;
    text-shadow: 0 0 15px rgba(179, 60, 247, 0.3);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.active {
    border-color: rgba(179, 60, 247, 0.5);
    box-shadow: 0 4px 15px rgba(179, 60, 247, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 18px;
    color: var(--highlight-cyan);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--meta-purple);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 300px;
    border-top: 1px solid var(--border-glass);
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 768px) {
    .summary-title {
        font-size: 24px;
    }

    .buy-today {
        font-size: 28px;
    }

    .guarantee-box {
        padding: 30px 20px;
    }

    .guarantee-title {
        font-size: 24px;
    }

    .faq-title {
        font-size: 24px;
    }

    .faq-question {
        font-size: 14px;
    }
}