:root {
    --bg-dark: #050505;
    --bg-panel: rgba(20, 20, 20, 0.6);
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    --text-main: #FAFAFA;
    --text-muted: #A0A0A0;
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background effects */
.glow-background {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vh;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(5, 5, 5, 0) 70%);
    z-index: -1;
    pointer-events: none;
}
body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(5, 5, 5, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism utility */
.glass-panel {
    background: var(--bg-panel);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

/* Header */
header {
    padding: 30px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}
.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}
.logo span {
    color: var(--gold-primary);
    font-weight: 400;
}

/* Hero Section */
.hero {
    padding-top: 150px;
    padding-bottom: 60px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.headline {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-weight: 800;
}
.headline span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.subheadline {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 650px;
    margin-inline: auto;
}

.details-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}
.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.badge svg {
    color: var(--gold-primary);
}
.badge.highlight {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    color: var(--gold-light);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gold-gradient);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
}
.cta-button::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.7s ease;
}
.cta-button:hover::after {
    left: 100%;
}
.cta-button .icon {
    font-size: 1.2rem;
}

/* Video Section */
.video-section {
    padding: 40px 0 80px;
}
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}
.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.video-wrapper:hover .video-thumbnail {
    transform: scale(1.03);
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0,0,0,0.6);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}
.play-button svg {
    width: 30px;
    height: 30px;
    margin-left: 5px;
}
.video-wrapper:hover .play-button {
    background: var(--gold-primary);
    color: #000;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Learning Section */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-main);
}
.learning-section {
    padding: 80px 0;
}
.sessions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.session-card {
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.session-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.6);
}
.session-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    position: absolute;
    top: -10px;
    right: 10px;
    color: rgba(255,255,255,0.03);
    line-height: 1;
}
.session-card h4 {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.session-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
}
.highlight-card {
    background: linear-gradient(180deg, rgba(20,20,20,0.8) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

/* Includes Section */
.includes-section {
    padding: 60px 0;
}
.includes-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
}
.includes-list {
    list-style: none;
    text-align: left;
    margin: 0 auto;
    display: inline-block;
}
.includes-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.15rem;
    margin-bottom: 20px;
}
.includes-list li:last-child {
    margin-bottom: 0;
}
.check-icon {
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-video {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}
.testimonial-video .video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.testimonial-video:hover .video-thumbnail {
    transform: scale(1.05);
}
.play-button.small {
    width: 60px;
    height: 60px;
    border-width: 1px;
}
.play-button.small svg {
    width: 24px;
    height: 24px;
}

/* Final CTA */
.final-cta-section {
    padding: 100px 0;
}
.final-cta-box {
    text-align: center;
    padding: 60px 40px;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, var(--bg-panel) 70%);
    border: 1px solid var(--gold-primary);
}
.final-cta-box h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 30px;
}
.final-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    font-size: 1.2rem;
}
.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.detail-item svg {
    color: var(--gold-primary);
}
.detail-item.price {
    font-weight: 700;
    color: var(--gold-light);
    font-size: 1.5rem;
}

/* Footer */
footer {
    padding: 30px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes pulseAnim {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}
.pulse-anim {
    animation: pulseAnim 2.5s infinite;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .headline { font-size: 2.5rem; }
    .sessions-grid { grid-template-columns: 1fr; }
    .final-details { flex-direction: column; gap: 15px; }
    .includes-box { padding: 30px 20px; }
    .final-cta-box { padding: 40px 20px; }
    
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        margin: 0 -20px;
        padding: 0 20px 20px 20px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }
    .testimonial-video {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
}
