/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #0a0a0a;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    min-height: 56px;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.4);
    font-weight: 700;
}

.btn-secondary {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    border: 2px solid #FFD700;
}

@media (hover: hover) {
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 48px rgba(255, 215, 0, 0.6);
    }

    .btn-secondary:hover {
        background: rgba(255, 215, 0, 0.2);
        border-color: #FFA500;
        transform: translateY(-2px);
    }
}

.btn-primary.large, .btn-secondary.large {
    padding: 20px 40px;
    font-size: 18px;
    min-height: 64px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    z-index: 1000;
    padding: 16px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo h2 {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FFD700;
}

.nav-cta {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000 !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-mobile span {
    width: 24px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-description {
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #FFD700;
}

.stat-label {
    font-size: 14px;
    color: #cccccc;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-note {
    font-size: 14px;
    color: #cccccc;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.hero-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    transform: perspective(1000px) rotateY(-5deg);
}

.card-header {
    background: #333;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.card-dots {
    display: flex;
    gap: 6px;
}

.card-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dee2e6;
}

.card-dots span:first-child {
    background: #ff5f56;
}

.card-dots span:nth-child(2) {
    background: #ffbd2e;
}

.card-dots span:last-child {
    background: #27ca3f;
}

.card-title {
    font-weight: 600;
    font-size: 14px;
    color: #FFD700;
}

.card-content {
    padding: 24px;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    color: #fff;
}

.progress-item:last-child {
    border-bottom: none;
}

.progress-icon {
    width: 24px;
    text-align: center;
}

.progress-item.completed {
    opacity: 0.7;
}

.progress-item.completed .progress-icon {
    color: #FFD700;
}

.progress-item.active {
    background: rgba(255, 215, 0, 0.1);
    margin: 0 -12px;
    padding: 12px;
    border-radius: 8px;
    border: none;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #0f0f0f;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.section-header p {
    font-size: 18px;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.section-header p.urgency {
    color: #FFD700;
    font-weight: 600;
    font-size: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    background: #2a2a2a;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@media (hover: hover) {
    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2);
        border-color: #FFD700;
    }
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.gradient-bg {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #fff;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-text h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
}

.benefits-text p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    color: #cccccc;
}

.certification-highlights {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 32px 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.highlight-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #FFD700;
}

.highlight-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
}

.certification-cta {
    margin-top: 32px;
}

/* Testimonial Video */
.benefits-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-video {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #0f0f0f;
}

.pricing-single {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card {
    background: #2a2a2a;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
    overflow: hidden;
    border: 2px solid #FFD700;
    position: relative;
    width: 100%;
}

.pricing-card.premium {
    border-color: #FFD700;
    box-shadow: 0 25px 80px rgba(255, 215, 0, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
}

.pricing-header {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 40px 32px 32px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
}

.price-amount {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
}

.price-period {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.7);
}

.price-note {
    opacity: 0.8;
    font-size: 14px;
}

.pricing-features {
    padding: 32px;
    background: #2a2a2a;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    color: #fff;
}

.feature:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-cta {
    width: calc(100% - 64px);
    margin: 32px 32px 32px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.6);
}

.pricing-guarantee {
    text-align: center;
    font-size: 14px;
    color: #ccc;
    margin-bottom: 32px;
}

.value-comparison {
    margin-top: 60px;
    text-align: center;
}

.value-comparison .value-heading {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 32px;
    color: #fff;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #1a1a1a;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    color: #fff;
}

.comparison-item.highlight {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border-color: #FFD700;
}

.comparison-label {
    font-weight: 600;
}

.comparison-price {
    font-weight: 700;
}

/* Weekly Workshops Section */
.weekly-workshops {
    padding: 100px 0;
    background: #0f0f0f;
}

.workshop-schedule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.workshop-day {
    background: #2a2a2a;
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

@media (hover: hover) {
    .workshop-day:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2);
        border-color: #FFD700;
    }
}

.day-header {
    margin-bottom: 16px;
}

.day-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
}

.workshop-day h3 {
    font-size: 20px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 8px;
}

.workshop-day h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.workshop-day p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
}

.workshop-cta {
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #0a0a0a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: #2a2a2a;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    will-change: auto;
}

.testimonial-content {
    margin-bottom: 24px;
}

.stars {
    font-size: 16px;
    margin-bottom: 16px;
}

.testimonial-content p {
    color: #fff;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

.author-info span {
    font-size: 14px;
    color: #ccc;
}

.social-proof {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.proof-item {
    text-align: center;
}

.proof-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #FFD700;
}

.proof-label {
    font-size: 14px;
    color: #ccc;
    font-weight: 500;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.urgency-text {
    color: #FFD700;
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0;
    text-align: center;
}

.cta-features {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 14px;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: #999;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 215, 0, 0.2);
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column a {
    color: #999;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #FFD700;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: #999;
}

.footer-disclaimer {
    color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .pricing-single {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
        border-radius: 0 0 12px 12px;
        border: 1px solid rgba(255, 215, 0, 0.2);
        z-index: 999;
    }
    
    .nav-links.active a {
        color: #fff;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    }
    
    .nav-links.active a:last-child {
        border-bottom: none;
    }
    
    .nav-links.active .nav-cta {
        margin-top: 10px;
        text-align: center;
    }
    
    .nav-mobile {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .workshop-schedule {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-single {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .social-proof {
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
}