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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo h2 {
    color: #ff6600;
    font-weight: 700;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

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

.cta-nav {
    background: #ff6600;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-nav:hover {
    background: #e55a00;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    width: 100%;
    max-width: 1000px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    background: linear-gradient(45deg, #ff6600, #ff8533);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-primary {
    background: #ff6600;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.cta-primary:hover {
    background: #e55a00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

.guarantee {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Hero Visual */
.video-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: #000;
    margin: 2rem auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.demo-card {
    display: none;
}

.card-header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1rem;
}

.dots {
    display: flex;
    gap: 0.5rem;
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.demo-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1rem;
}

.demo-item:nth-child(2) {
    animation-delay: 0.5s;
}

.demo-item:nth-child(3) {
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
    width: 120px;
}

.progress-fill {
    height: 100%;
    background: #ff6600;
    border-radius: 2px;
    animation: progress 2s ease-in-out infinite;
}

.demo-item:nth-child(2) .progress-fill {
    animation-delay: 0.5s;
}

.demo-item:nth-child(3) .progress-fill {
    animation-delay: 1s;
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

/* Content Section */
.content {
    padding: 5rem 0;
    background: #f8fafc;
}

.content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.module-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.module-video {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    margin-bottom: 1.5rem;
}

.module-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.module-icon {
    display: none;
}

.module-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.module-card ul {
    list-style: none;
}

.module-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.module-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6600;
    font-weight: bold;
}

.module-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    display: none;
}

.feature-icon svg {
    color: #ff6600;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature p {
    color: #64748b;
    line-height: 1.6;
}

.feature-video {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    margin-bottom: 1.5rem;
}

.feature-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Pricing Section */
.pricing {
    padding: 3rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 102, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 102, 0, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #fff, #ff6600);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card {
    max-width: 650px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    text-align: center;
    border: 2px solid rgba(255, 102, 0, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6600, transparent);
}

.pricing-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.price-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.price {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.old-price {
    font-size: 2rem;
    text-decoration: line-through;
    opacity: 0.6;
    color: #999;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    color: #ff6600;
    text-shadow: 0 0 30px rgba(255, 102, 0, 0.3);
}

.discount {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 12px 30px rgba(255, 102, 0, 0.5);
        transform: scale(1.02);
    }
}

.price-features {
    margin: 1rem 0 2rem 0;
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
    padding: 0.7rem 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item::before {
    content: '✓';
    color: #ff6600;
    font-weight: bold;
    font-size: 1.3rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 102, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-pricing {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-pricing:hover {
    background: linear-gradient(135deg, #e55a00, #ff6600);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
}

.secure {
    font-size: 1rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: #000000;
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-final {
    background: #ff6600;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background: #e55a00;
    transform: translateY(-3px);
}

.final-cta .video-container {
    margin: 2rem auto;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
    padding: 3rem 0 2rem;
    border-top: 2px solid rgba(255, 102, 0, 0.2);
}

.footer p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 102, 0, 0.2);
    border-color: #ff6600;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

.social-link i {
    font-size: 1.2rem;
}

/* Exit Modal */
.exit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.exit-modal.show {
    display: flex;
}

.exit-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    width: 90%;
    border: 2px solid rgba(255, 102, 0, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.exit-modal-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ff6600;
}

.exit-modal-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.exit-video-container {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    margin-bottom: 2rem;
}

.exit-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.exit-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.visit-market-btn {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

.visit-market-btn:hover {
    background: linear-gradient(135deg, #e55a00, #ff6600);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 102, 0, 0.4);
}

.close-modal-x {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    color: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-modal-x:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.free-course-btn {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.free-course-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.close-modal-btn {
    display: none;
}

.close-modal-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (min-width: 1400px) {
    .features-grid {
        grid-template-columns:
    }
}

.open-course-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 102, 0, 0.1);
}

.open-course-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.open-course-btn:hover {
    background: linear-gradient(135deg, #e55a00, #ff6600);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}