/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-gradient: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
    --success-gradient: linear-gradient(135deg, #00C853 0%, #00E676 100%);
    --danger-gradient: linear-gradient(135deg, #FF1744 0%, #FF5252 100%);
    --dark-bg: #0a0e27;
    --dark-card: #1a1f3a;
    --purple-accent: #6C63FF;
    --gold-accent: #FFD700;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 80px 20px;
    --card-padding: 30px;

    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.4);
}

body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   SECTION I: HERO
   ============================================ */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
    position: relative;
    padding: 40px 20px 80px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.15;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.25;
    }
}

/* Scarcity Alert */
.scarcity-alert {
    background: var(--danger-gradient);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(255, 23, 68, 0.3);
    animation: slideDown 0.6s ease-out, glow 2s ease-in-out infinite;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(255, 23, 68, 0.3);
    }

    50% {
        box-shadow: 0 10px 40px rgba(255, 23, 68, 0.5);
    }
}

.alert-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.alert-icon {
    font-size: 24px;
    animation: shake 3s ease-in-out infinite;
}

@keyframes shake {

    0%,
    90%,
    100% {
        transform: rotate(0deg);
    }

    92%,
    96% {
        transform: rotate(-10deg);
    }

    94%,
    98% {
        transform: rotate(10deg);
    }
}

.alert-text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.alert-text strong {
    font-weight: 700;
    color: #FFD700;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #d0d0d0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.subtitle-emphasis {
    color: #a0a0a0;
    font-style: italic;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Video Container */
.video-container {
    margin: 50px 0;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.video-placeholder {
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 80px 40px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 53, 0.5);
}

.play-icon {
    font-size: 72px;
    color: #FF6B35;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.video-placeholder:hover .play-icon {
    transform: scale(1.1);
}

.video-text {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.video-subtext {
    font-size: 16px;
    color: #a0a0a0;
    max-width: 500px;
    margin: 0 auto;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.cta-primary {
    background: var(--success-gradient);
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.4);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-primary:hover::before {
    width: 300px;
    height: 300px;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 200, 83, 0.6);
}

.cta-icon {
    font-size: 24px;
    position: relative;
    z-index: 1;
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.payment-note {
    text-align: center;
    margin-top: 15px;
    font-size: 15px;
    color: #d0d0d0;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.payment-note strong {
    color: #00E676;
}

/* ============================================
   SECTION II: BENEFITS
   ============================================ */
.benefits-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #1a1f3a 0%, #0f1229 100%);
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.section-subtitle {
    display: block;
    font-size: clamp(20px, 3vw, 32px);
    color: #a0a0a0;
    font-weight: 600;
    margin-top: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: var(--card-padding);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(108, 99, 255, 0.5);
    box-shadow: var(--shadow-lg);
}

.danger-card {
    border-color: rgba(255, 23, 68, 0.5);
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.1) 0%, rgba(255, 82, 82, 0.05) 100%);
}

.danger-card:hover {
    border-color: rgba(255, 23, 68, 0.8);
    box-shadow: 0 20px 60px rgba(255, 23, 68, 0.3);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.benefit-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.benefit-text {
    font-size: 16px;
    line-height: 1.7;
    color: #d0d0d0;
}

.benefit-text strong {
    color: #FF6B35;
    font-weight: 600;
}

/* ============================================
   SECTION III: VALUE STACK
   ============================================ */
.value-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #0f1229 0%, #1a1f3a 100%);
}

.value-stack {
    max-width: 800px;
    margin: 0 auto;
}

.value-item {
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
}

.value-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.value-item:hover {
    transform: translateX(5px);
    border-color: rgba(108, 99, 255, 0.5);
}

.main-value {
    border-color: rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.vip-value {
    border-color: rgba(108, 99, 255, 0.8);
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.15) 0%, rgba(108, 99, 255, 0.05) 100%);
    box-shadow: 0 15px 40px rgba(108, 99, 255, 0.2);
}

.value-badge {
    display: inline-block;
    background: var(--primary-gradient);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.value-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 12px;
}

.value-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    flex: 1;
}

.value-price {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #00E676;
    white-space: nowrap;
}

.value-description {
    font-size: 15px;
    line-height: 1.6;
    color: #d0d0d0;
}

.value-description strong {
    color: #FFD700;
}

/* Total Value */
.total-value {
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #FF6B35 0%, #6C63FF 100%);
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.total-label {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.total-amount {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ============================================
   SECTION IV: PRICING
   ============================================ */
.pricing-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
}

.pricing-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-xl);
}

.price-comparison {
    text-align: center;
    margin-bottom: 40px;
}

.original-price {
    font-size: 24px;
    color: #a0a0a0;
    margin-bottom: 20px;
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.6;
}

.final-price {
    margin-top: 20px;
}

.price-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFD700;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 900;
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-note {
    font-size: 14px;
    color: #808080;
    margin-top: 10px;
}

.pricing-justification {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 40px;
}

.justification-text {
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
}

.justification-text strong {
    color: #FFD700;
}

/* Guarantee Badge */
.guarantee-badge {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(108, 99, 255, 0.05) 100%);
    border: 2px solid rgba(108, 99, 255, 0.5);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
}

.guarantee-icon {
    font-size: 48px;
}

.guarantee-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #00E676;
    letter-spacing: 0.5px;
}

.guarantee-text {
    font-size: 15px;
    line-height: 1.6;
    color: #d0d0d0;
}

.guarantee-text strong {
    color: #FFD700;
}

.cta-large {
    width: 100%;
    font-size: 20px;
    padding: 24px 40px;
}

/* ============================================
   SECTION V: FAQ
   ============================================ */
.faq-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 99, 255, 0.5);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFD700;
}

.faq-answer {
    font-size: 15px;
    line-height: 1.7;
    color: #d0d0d0;
}

.faq-answer strong {
    color: #00E676;
    font-weight: 600;
}

/* ============================================
   SECTION: INSTRUCTOR
   ============================================ */
.instructor-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
    position: relative;
}

.instructor-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 2px solid rgba(108, 99, 255, 0.5);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(108, 99, 255, 0.2);
}

.instructor-image {
    flex-shrink: 0;
    width: 250px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--purple-accent);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.3);
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-info {
    flex: 1;
}

.instructor-badge {
    display: inline-block;
    background: var(--purple-accent);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.instructor-name {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #FFD700;
}

.instructor-bio {
    font-size: 16px;
    line-height: 1.8;
    color: #d0d0d0;
}

.instructor-bio strong {
    color: #ffffff;
}

/* ============================================
   SECTION: TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 230, 118, 0.5);
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.2);
}

.stars {
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.bg-blue { background: #3b82f6; }
.bg-green { background: #10b981; }
.bg-orange { background: #f59e0b; }

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
}

.author-job {
    font-size: 13px;
    color: #00E676;
}

/* Animations added */
.pulse-effect {
    animation: bigPulse 2s infinite;
}

@keyframes bigPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); text-shadow: 0 0 20px rgba(0,230,118,0.5); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .instructor-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #050711;
    padding: 40px 20px;
    text-align: center;
    color: #808080;
    font-size: 14px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
        --card-padding: 20px;
    }

    .scarcity-alert {
        padding: 12px 15px;
    }

    .alert-text {
        font-size: 14px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .value-header {
        flex-direction: column;
        gap: 10px;
    }

    .value-price {
        font-size: 20px;
    }

    .total-amount {
        font-size: 48px;
    }

    .pricing-box {
        padding: 30px 20px;
    }

    .price-amount {
        font-size: 56px;
    }

    .guarantee-badge {
        flex-direction: column;
        text-align: center;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        font-size: 16px;
        padding: 18px 30px;
    }

    .cta-large {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .video-placeholder {
        padding: 60px 20px;
    }
}