/* =========================================
   VARIABLES & BASE STYLES
   ========================================= */
   :root {
    --bg-dark: #05050A;
    --bg-dark-alt: #0A0A10;
    --card-bg: #111116;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --accent-primary: #FFB000;
    --accent-primary-hover: #FF9900;
    --accent-secondary: #FF6600;
    --accent-purple: #FF9900;
    --danger-red: #EF4444;
    --success-green: #10B981;
    --font-sans: 'Poppins', sans-serif;
    --font-heading: 'Sora', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-glow: 0 0 20px rgba(255, 176, 0, 0.2);
    --shadow-blue: 0 0 20px rgba(255, 102, 0, 0.2);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}

.dark-alt-bg {
    background-color: var(--bg-dark-alt);
}

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

.text-left {
    text-align: left;
}

.highlight-accent {
    color: var(--accent-primary);
}

.highlight-secondary {
    color: var(--accent-secondary);
}

.highlight-purple {
    color: var(--accent-purple);
}

.highlight-red {
    color: var(--danger-red);
}

.mt-4 {
    margin-top: 2rem;
}

.mt-2 {
    margin-top: 1rem;
}

.max-w-700 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.strike {
    text-decoration: line-through;
    color: var(--danger-red);
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 800px;
    margin: -1.5rem auto 3rem auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* =========================================
   BUTTONS
   ========================================= */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-primary), #FFF2B2);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 176, 0, 0.4);
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 176, 0, 0.6);
}

.primary-cta {
    font-size: 1.25rem;
    padding: 20px 40px;
    width: 100%;
    max-width: 450px;
}

.cta-subtext {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 12px;
    text-align: center;
}

.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 176, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 176, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 176, 0, 0);
    }
}

/* =========================================
   1. HERO SECTION
   ========================================= */
.hero-section {
    padding: 60px 0 80px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 0%, rgba(75, 0, 130, 0.2) 0%, var(--bg-dark) 70%);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.preheadline {
    display: inline-block;
    background: rgba(255, 176, 0, 0.1);
    color: var(--accent-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 176, 0, 0.3);
}

.hero-content .headline {
    font-size: 3rem;
    margin-bottom: 24px;
}

.hero-content .subheadline {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pain-curiosity {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 24px;
    border-left: 4px solid var(--accent-purple);
    padding-left: 16px;
}

.reassurance-box {
    background: var(--card-bg);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.reassurance-box ul li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.reassurance-box ul li.check-item {
    color: var(--text-main);
    font-weight: 600;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mentor-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    z-index: 2;
}

.mentor-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 163, 255, 0.2) 0%, transparent 70%);
    z-index: -1;
}

.trust-badge {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: -30px;
    z-index: 3;
    position: relative;
    box-shadow: var(--shadow-card);
}

.badge-icon {
    font-size: 2rem;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
    }
    .hero-content .headline {
        font-size: 2.5rem;
    }
    .trust-badge {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .hero-content .headline {
        font-size: 2rem;
    }
    .primary-cta {
        padding: 16px 24px;
        font-size: 1rem;
    }
}

/* =========================================
   2. PROBLEM SECTION
   ========================================= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.pain-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pain-card:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.pain-card .icon {
    font-size: 2.5rem;
}

.pain-card p {
    font-size: 1.125rem;
    font-weight: 500;
}

.problem-conclusion {
    text-align: center;
    font-size: 1.25rem;
    padding: 30px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-md);
    max-width: 800px;
    margin: 0 auto;
}

/* =========================================
   3. BELIEF SHIFT SECTION
   ========================================= */
.flow-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.flow-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 30px;
    border-radius: var(--radius-lg);
    background: var(--card-bg);
}

.old-flow {
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.new-flow {
    border: 1px solid rgba(16, 185, 129, 0.2);
    background: linear-gradient(90deg, rgba(26,26,26,1) 0%, rgba(16,185,129,0.05) 100%);
}

.flow-step {
    flex: 1;
    text-align: center;
    font-weight: 600;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
}

.flow-step.danger {
    color: var(--danger-red);
    background: rgba(239, 68, 68, 0.1);
}

.flow-step.success {
    color: var(--success-green);
    background: rgba(16, 185, 129, 0.1);
}

.arrow {
    color: var(--text-muted);
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .flow-row {
        flex-direction: column;
    }
    .arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

/* =========================================
   4. INTRO MASTERCLASS
   ========================================= */
.large-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* =========================================
   5. WHAT YOU LEARN
   ========================================= */
.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.learn-card {
    background: var(--bg-dark);
    padding: 30px;
    border-radius: var(--radius-md);
    border-top: 4px solid var(--accent-secondary);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
}

.learn-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-blue);
}

.learn-card .num {
    background: rgba(0, 163, 255, 0.1);
    color: var(--accent-secondary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.learn-card p {
    font-size: 1.125rem;
    font-weight: 500;
}

/* =========================================
   6. SCHEDULE
   ========================================= */
.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.day-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.day-header {
    background: var(--accent-purple);
    color: #fff;
    padding: 16px 24px;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.day-card:nth-child(2) .day-header {
    background: var(--accent-secondary);
}

.day-theme {
    padding: 24px 24px 0 24px;
    font-size: 1.25rem;
    color: var(--accent-primary);
}

.day-list {
    padding: 20px 24px 30px 24px;
}

.day-list li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: var(--text-muted);
}

.day-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

@media (max-width: 768px) {
    .schedule-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   7 & 8. CHECKLIST & WARNINGS
   ========================================= */
.checklist-grid, .warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.check-card, .warning-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 500;
}

.check-card {
    border-left: 4px solid var(--success-green);
}

.warning-card {
    border-left: 4px solid var(--danger-red);
}

/* =========================================
   9. BONUSES
   ========================================= */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.bonus-item {
    background: var(--bg-dark);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px dashed var(--accent-primary);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.bonus-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: #000;
    padding: 4px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.bonus-title {
    font-size: 1.125rem;
    margin: 20px 0 10px 0;
}

.bonus-value {
    color: var(--accent-primary);
    font-weight: 600;
}

.bonus-summary {
    background: rgba(255, 176, 0, 0.05);
    border: 1px solid rgba(255, 176, 0, 0.2);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.today-pay {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--success-green);
    margin-bottom: 24px;
}

/* =========================================
   10. MENTOR
   ========================================= */
.mentor-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.mentor-visual {
    flex: 1;
    position: relative;
}

.mentor-img-large {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.stat-box {
    background: var(--card-bg);
    padding: 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-primary);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mentor-content {
    flex: 1;
}

.mentor-content p {
    margin-bottom: 20px;
    font-size: 1.125rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .mentor-container {
        flex-direction: column-reverse;
    }
}

/* =========================================
   11. TESTIMONIALS
   ========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-dark);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stars {
    color: var(--accent-primary);
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 24px;
    color: var(--text-main);
}

.reviewer .name {
    font-weight: 700;
    font-family: var(--font-heading);
}

.reviewer .result {
    font-size: 0.875rem;
    color: var(--accent-secondary);
}

/* =========================================
   12. VALUE STACK
   ========================================= */
.value-stack-box {
    background: var(--card-bg);
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 176, 0, 0.3);
    box-shadow: var(--shadow-glow);
}

.value-list {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.value-list li {
    font-size: 1.125rem;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.value-list li:last-child {
    border-bottom: none;
}

.today-pay-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--success-green);
    font-family: var(--font-heading);
}

@media (max-width: 576px) {
    .value-stack-box {
        padding: 30px 20px;
    }
    .today-pay-large {
        font-size: 2rem;
    }
}

/* =========================================
   13. FAQ
   ========================================= */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-dark);
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    position: relative;
    padding-right: 40px;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-primary);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 500px;
}

/* =========================================
   14. FINAL CTA & PAYMENT
   ========================================= */
.payment-anchor {
    scroll-margin-top: 100px; /* Offset for smooth scrolling */
}

.payment-placeholder-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: var(--radius-md);
    max-width: 600px;
    margin: 0 auto;
}

.footer {
    padding: 40px 0 100px 0; /* extra bottom padding for sticky mobile cta */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
    margin-top: 16px;
}

.footer-links a {
    color: var(--text-muted);
    margin: 0 10px;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

/* =========================================
   STICKY MOBILE CTA
   ========================================= */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

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

.sticky-text {
    display: flex;
    flex-direction: column;
}

.sticky-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--success-green);
}

.sticky-timer {
    font-size: 0.875rem;
    color: var(--accent-primary);
    font-weight: 600;
}

.sticky-btn {
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    margin: 0;
}

@media (min-width: 769px) {
    .footer {
        padding: 40px 0;
    }
}

/* =========================================
   NEW REDESIGN STYLES (ADDED)
   ========================================= */

.top-banner {
    background-color: var(--accent-primary);
    color: #000;
    text-align: center;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 1rem;
}

.hero-section {
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    background-color: #080811;
    padding-top: 40px;
}

.hero-bullet-points {
    margin: 20px 0;
    font-size: 1.1rem;
}

.hero-bullet-points .no-list {
    margin-top: 10px;
    color: #ef4444;
    font-weight: 600;
}

.hero-divider {
    border: none;
    border-top: 2px solid #fff;
    width: 60px;
    margin: 30px auto;
}

.hero-split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    text-align: left;
}

.hero-image-col {
    position: relative;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mentor-avatar-glow {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    padding: 10px;
    background: linear-gradient(180deg, var(--accent-primary) 0%, rgba(255, 176, 0, 0) 100%);
    box-shadow: 0 0 40px rgba(255, 176, 0, 0.4);
}

.mentor-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #1a1a1a;
}

.mentor-title-box {
    margin-top: -20px;
    background: #000;
    border: 1px solid var(--accent-primary);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    width: 110%;
}

.mentor-title-box h3 {
    color: var(--accent-primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.mentor-title-box p {
    font-size: 0.8rem;
    color: #ccc;
    line-height: 1.3;
}

.recent-purchase-popup {
    position: absolute;
    bottom: 20px;
    left: -60px;
    background: #fff;
    color: #000;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 3;
    display: flex;
    flex-direction: column;
}

.recent-purchase-popup .popup-text {
    font-weight: 700;
}

.recent-purchase-popup .verified {
    color: #10B981;
    font-weight: 600;
}

.hero-cta-col {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.datetime-boxes {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.date-box, .time-box {
    flex: 1;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 176, 0, 0.3);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-box .icon, .time-box .icon {
    font-size: 2rem;
    background: var(--accent-primary);
    border-radius: 8px;
    padding: 5px;
    color: #000;
}

.box-text .label {
    font-size: 0.8rem;
    color: #ccc;
}

.box-text .value {
    font-weight: 700;
    font-size: 1rem;
}

.zoom-btn {
    background: #000;
    border: 1px solid #333;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.zoom-btn .icon {
    color: var(--accent-primary);
}

.massive-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 15px 20px;
    background: linear-gradient(180deg, var(--accent-primary-hover) 0%, var(--accent-primary) 100%);
    border-radius: 8px;
    font-size: 1.3rem;
}

.massive-cta .strike-dark {
    text-decoration: line-through;
    color: #000;
    opacity: 0.6;
    font-size: 1.1rem;
}

.massive-cta .cta-sub {
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 4px;
    color: #000;
    opacity: 0.8;
}

.guarantee-text {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #aaa;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.stat-box-outline {
    border: 1px dashed rgba(255, 176, 0, 0.5);
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 12px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-box-outline .icon {
    font-size: 2rem;
}

.stat-box-outline .stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-primary);
}

/* STICKY FOOTER REDESIGN */
.sticky-footer.light-theme {
    background: linear-gradient(90deg, #05050A 0%, #12121E 100%);
    color: #F8FAFC;
    border-top: 1px solid var(--accent-primary);
    box-shadow: 0 -5px 30px rgba(255, 176, 0, 0.2);
}

.sticky-footer.light-theme .sticky-left {
    font-size: 0.9rem;
    font-weight: 600;
}

.sticky-footer.light-theme .filling-fast {
    color: var(--accent-primary);
    font-size: 1.1rem;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 176, 0, 0.5);
}

.sticky-footer.light-theme .red {
    color: var(--danger-red);
}

.sticky-footer.light-theme .closing {
    font-style: italic;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.sticky-footer.light-theme .massive-cta-orange {
    padding: 10px 20px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .recent-purchase-popup {
        bottom: -90px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
    }
    .sticky-footer {
        padding: 10px 15px;
    }
    .sticky-footer.light-theme .sticky-left {
        display: none; /* Hide urgency text on mobile to save space */
    }
    .sticky-footer.light-theme .sticky-content {
        flex-direction: row;
        gap: 0;
    }
    .sticky-footer.light-theme .massive-cta-orange {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
    }
    .sticky-footer.light-theme .massive-cta-orange .cta-sub {
        font-size: 0.75rem;
    }
}

/* =========================================
   VIDEO TESTIMONIALS (REDESIGN)
   ========================================= */
.video-testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.video-testimonial-card {
    background: #000;
    border: 1px solid rgba(255, 176, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    background: #111;
}

.video-wrapper .video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.video-wrapper .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    padding-left: 5px; /* visual center */
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.video-wrapper .video-duration {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.video-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.divider-small {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    margin: 10px auto;
}

.tag-box {
    border: 1px dashed rgba(255,255,255,0.3);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    background: rgba(255,255,255,0.05);
}

/* =========================================
   MAJESTIC HERO LAYOUT (ORANGE/GOLD THEME)
   ========================================= */
.top-banner-orange {
    background: linear-gradient(90deg, #FF9900 0%, #FFB000 100%);
    color: #000;
    text-align: center;
    padding: 10px 16px;
    font-weight: 800;
    font-size: 1.05rem;
    width: 100%;
}

.hero-section-majestic {
    background-color: #05050A;
    padding: 50px 0 70px 0;
    position: relative;
    overflow: hidden;
}

.hero-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 10%, rgba(255, 176, 0, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 20% 80%, rgba(255, 153, 0, 0.05) 0%, transparent 40%);
    background-size: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-container-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.main-headline-majestic {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #fff;
    text-transform: none;
    max-width: 1000px;
    font-weight: 800;
}

.main-headline-majestic .highlight-orange {
    color: #FFB000;
}

.sub-headline-line {
    font-size: 1.25rem;
    display: block;
    margin: 15px auto 25px auto;
    color: #CBD5E1;
    font-weight: 500;
    max-width: 950px;
}

.pain-line-majestic {
    font-size: 1.1rem;
    color: #F8FAFC;
    background: rgba(255, 176, 0, 0.05);
    border: 1px solid rgba(255, 176, 0, 0.15);
    border-left: 3px solid #FFB000;
    border-radius: 8px;
    padding: 16px 24px;
    margin: 0 auto 24px auto;
    max-width: 750px;
    line-height: 1.6;
    font-weight: 500;
}

.reassurance-lines-majestic {
    margin-bottom: 30px;
}

.no-magic-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.no-magic-tags span {
    font-size: 0.9rem;
    color: #94A3B8;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: 50px;
}

.reassurance-lines-majestic .line-2 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #FFB000;
    background: rgba(255, 176, 0, 0.05);
    padding: 8px 24px;
    border-radius: 50px;
    display: inline-block;
    border: 1px dashed rgba(255, 176, 0, 0.3);
}

.hero-divider-small {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 176, 0, 0.5) 50%, transparent 100%);
    width: 60%;
    margin: 10px auto 40px auto;
}

/* HERO LOWER BLOCK: MENTOR + EVENT */
.hero-lower-block {
    display: flex;
    gap: 30px;
    width: 100%;
    max-width: 900px;
    margin-bottom: 40px;
}

.mentor-majestic-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mentor-image-container {
    position: relative;
    width: 220px;
    height: 220px;
    margin-bottom: -40px;
    z-index: 2;
    padding: 10px;
    background: linear-gradient(135deg, #FFB000 0%, #FF6600 100%);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 176, 0, 0.4);
}

.mentor-image-container::before {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border: 2px solid rgba(255, 176, 0, 0.3);
    border-radius: 50%;
    animation: rotate-slow 10s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.mentor-glow-bg {
    position: absolute;
    top: -20px; left: -20px; right: -20px; bottom: -20px;
    background: radial-gradient(circle, rgba(255, 176, 0, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(10px);
}

.mentor-img-majestic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #05050A;
    background: #111;
    display: block;
}

.mentor-info-card {
    background: rgba(15, 15, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 176, 0, 0.3);
    border-radius: 16px;
    padding: 60px 20px 20px 20px;
    text-align: center;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.mentor-name-majestic {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 5px;
}

.mentor-title-majestic {
    font-size: 0.9rem;
    color: #FFB000;
    font-weight: 600;
    margin-bottom: 10px;
}

.mentor-authority {
    font-size: 0.85rem;
    color: #94A3B8;
    line-height: 1.4;
}

/* RIGHT SIDE: EVENT / OFFER */
.event-majestic-col {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.date-time-row {
    display: flex;
    gap: 15px;
}

.info-card {
    flex: 1;
    background: rgba(15, 15, 20, 0.8);
    border: 1px solid rgba(255, 176, 0, 0.3);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.info-card .icon {
    font-size: 2rem;
}

.info-card .label {
    font-size: 0.8rem;
    color: #94A3B8;
    display: block;
    text-transform: uppercase;
}

.info-card .value {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
}

.zoom-card {
    background: #000;
    border: 1px solid rgba(255, 176, 0, 0.5);
    border-radius: 12px;
    padding: 12px;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
}

.zoom-card .icon {
    color: #FFB000;
    font-size: 1.5rem;
}

.zoom-card .small-text {
    font-size: 0.8rem;
    color: #FFB000;
    font-weight: 600;
}

.price-cta-card {
    background: rgba(15, 15, 20, 0.8);
    border: 1px solid rgba(255, 176, 0, 0.3);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 5px;
}

.join-text {
    font-size: 0.9rem;
    color: #94A3B8;
    font-weight: 600;
}

.current-price {
    font-size: 2.2rem;
    color: #10B981;
    font-weight: 800;
}

.strike-dark {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #EF4444;
    opacity: 0.8;
}

.bonus-text-free {
    font-size: 1rem;
    color: #FFB000;
    font-weight: 700;
    margin-bottom: 15px;
}

.massive-cta-orange {
    font-size: 1.4rem;
    padding: 18px 20px;
    background: linear-gradient(135deg, #FF9900 0%, #FF6600 100%);
    color: #fff;
    border-radius: 8px;
    text-align: center;
    display: block;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(255, 153, 0, 0.4);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.massive-cta-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 153, 0, 0.6);
}

.pulse-anim-orange {
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
    0% { box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(255, 153, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 153, 0, 0); }
}

.below-cta-majestic {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #94A3B8;
    line-height: 1.5;
}

/* SOCIAL PROOF ROW */
.social-proof-majestic {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.social-proof-majestic .proof-card {
    background: rgba(15, 15, 20, 0.6);
    border: 1px solid rgba(255, 176, 0, 0.2);
    padding: 15px 25px;
    border-radius: 12px;
    text-align: center;
    min-width: 180px;
}

.social-proof-majestic .proof-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.orange-text {
    color: #FFB000;
}

.social-proof-majestic .proof-label {
    font-size: 0.85rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* MOBILE RESPONSIVE NEW LAYOUT */
@media (max-width: 768px) {
    .main-headline-majestic { font-size: 2rem; }
    .sub-headline-line { font-size: 1.2rem; }
    .pain-line-majestic { font-size: 1.05rem; }
    
    .hero-lower-block { flex-direction: column; gap: 40px; }
    
    .date-time-row { flex-direction: column; }
    
    .massive-cta-orange { font-size: 1.2rem; padding: 16px; }
    
    .social-proof-majestic { flex-direction: column; gap: 10px; width: 100%; }
    .social-proof-majestic .proof-card { width: 100%; }
}

/* MOBILE TEXT ALIGNMENT OPTIMIZATION */
@media (max-width: 768px) {
    .section-subtitle, 
    .problem-conclusion,
    .body-text {
        text-align: left;
        padding: 0 10px;
    }
    
    .section-title {
        text-align: left;
        padding: 0 10px;
        font-size: 1.8rem;
    }
    
    .intro-masterclass-section .container {
        text-align: left !important;
    }
}

/* NEW HERO LAYOUT: PROGRAM TITLE ABOVE DATE BOXES */
.program-name-box {
    background: linear-gradient(135deg, rgba(255, 176, 0, 0.1) 0%, rgba(255, 102, 0, 0.05) 100%);
    border: 1px solid rgba(255, 176, 0, 0.2);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.program-title {
    font-size: 1.25rem;
    color: #FFB000;
    margin: 0;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
