/* ============================================
   O NOVO YOUTUBE — Sales Page Styles
   ============================================ */

/* RESET & BASE */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cyan: #00D4FF;
    --cyan-dark: #00A8CC;
    --cyan-glow: rgba(0, 212, 255, 0.3);
    --cyan-soft: rgba(0, 212, 255, 0.08);
    --red-accent: #FF3355;
    --dark: #060D1A;
    --dark-2: #0A1628;
    --dark-3: #0F1D32;
    --dark-4: #142640;
    --dark-5: #1A304D;
    --gray: #6B7FA0;
    --gray-light: #9BB0CC;
    --white: #FFFFFF;
    --white-soft: #E8F0FF;
    --green: #00CC66;
    --yellow: #FFD700;
    --blue: #3B82F6;
    --neon-border: rgba(0, 212, 255, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    line-height: 1.2;
}

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

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: linear-gradient(90deg, var(--dark-2) 0%, var(--dark-4) 50%, var(--dark-2) 100%);
    border-bottom: 1px solid var(--neon-border);
    color: var(--white);
    text-align: center;
    padding: 12px 24px;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar p {
    margin: 0;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.4;
}

.hero-badge {
    display: inline-block;
    background: var(--cyan-soft);
    color: var(--cyan);
    border: 1px solid var(--neon-border);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    max-width: 850px;
    margin: 0 auto 24px;
    letter-spacing: -1px;
}

.strikethrough {
    text-decoration: line-through;
    color: var(--red-accent);
    text-decoration-color: var(--red-accent);
}

.highlight {
    color: var(--cyan);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--gray-light);
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--white);
}

.hero-cta {
    margin-bottom: 50px;
}

.hero-micro {
    font-size: 13px;
    color: var(--gray);
    margin-top: 12px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-item strong {
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
}

.stat-item span {
    font-size: 13px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--dark-5);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    color: var(--dark);
    font-weight: 800;
    box-shadow: 0 4px 20px var(--cyan-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #33DDFF 0%, var(--cyan) 100%);
    box-shadow: 0 6px 30px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 48px;
    font-size: 17px;
}

.pulse {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px var(--cyan-glow); }
    50% { box-shadow: 0 4px 40px rgba(0, 212, 255, 0.5); }
    100% { box-shadow: 0 4px 20px var(--cyan-glow); }
}

/* ============================================
   CONTEXT / TIMELINE SECTION
   ============================================ */
.context-section {
    padding: 80px 0;
    background: var(--dark);
}

.context-box h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 800;
}

.timeline {
    position: relative;
    padding-left: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--dark-5);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 24px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -34px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid;
}

.timeline-marker.red { border-color: var(--red-accent); background: rgba(255, 51, 85, 0.2); }
.timeline-marker.yellow { border-color: var(--yellow); background: rgba(255, 215, 0, 0.2); }
.timeline-marker.green { border-color: var(--green); background: rgba(0, 204, 102, 0.2); }
.timeline-marker.blue { border-color: var(--cyan); background: rgba(0, 212, 255, 0.2); }

.timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.7;
}

.timeline-content p strong {
    color: var(--white);
}

/* ============================================
   PAIN SECTION
   ============================================ */
.pain-section {
    padding: 80px 0;
    background: var(--dark-2);
}

.pain-section h2 {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    margin-bottom: 50px;
}

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

.pain-card {
    background: var(--dark-3);
    border: 1px solid var(--dark-5);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

.pain-card:hover {
    border-color: var(--neon-border);
}

.pain-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.pain-card p {
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.6;
}

.pain-card p strong {
    color: var(--white);
}

.pain-closing {
    text-align: center;
    font-size: 18px;
    color: var(--gray-light);
}

.pain-closing strong {
    color: var(--cyan);
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution-section {
    padding: 80px 0;
    background: var(--dark);
}

.solution-section h2 {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    margin-bottom: 40px;
}

.solution-box {
    max-width: 800px;
    margin: 0 auto;
}

.solution-lead {
    font-size: 20px;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 16px;
}

.solution-box > p {
    font-size: 17px;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.solution-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.sol-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-light);
}

.sol-item strong {
    color: var(--white);
}

.sol-check {
    color: var(--cyan);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

/* ============================================
   RESULT SECTION
   ============================================ */
.result-section {
    padding: 60px 0;
    background: var(--dark);
}

.result-box {
    background: linear-gradient(135deg, var(--cyan-soft) 0%, rgba(0, 212, 255, 0.03) 100%);
    border: 1px solid var(--neon-border);
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.08);
    padding: 50px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.result-number {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

.result-number span {
    color: var(--cyan);
    margin: 0 8px;
}

.result-text {
    font-size: 18px;
    color: var(--gray-light);
    line-height: 1.7;
}

.result-text strong {
    color: var(--white);
}

/* ============================================
   OCEAN SECTION
   ============================================ */
.ocean-section {
    padding: 80px 0;
    background: var(--dark-2);
}

.ocean-section h2 {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    margin-bottom: 40px;
}

.ocean-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 850px;
    margin: 0 auto 40px;
}

.ocean-card {
    background: var(--dark-3);
    border: 1px solid var(--dark-5);
    border-radius: 12px;
    padding: 32px 28px;
    width: 100%;
}

.ocean-card.active {
    border-color: var(--neon-border);
    background: linear-gradient(135deg, var(--cyan-soft) 0%, var(--dark-3) 100%);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.08);
}

.ocean-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 16px;
    padding: 4px 12px;
    border-radius: 50px;
    background: var(--dark-4);
}

.ocean-card-tag.active-tag {
    color: var(--cyan);
    background: var(--cyan-soft);
    border: 1px solid var(--neon-border);
}

.ocean-card p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.7;
}

.ocean-card p strong {
    color: var(--white);
}

.ocean-bottom {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.ocean-bottom p {
    font-size: 17px;
    color: var(--gray-light);
    line-height: 1.7;
}

.ocean-bottom p strong {
    color: var(--white);
}

/* ============================================
   SCARCITY SECTION
   ============================================ */
.scarcity-section {
    padding: 60px 0;
    background: var(--dark);
}

.scarcity-box {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    padding: 48px 40px;
}

.scarcity-box h2 {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    margin-bottom: 16px;
    text-align: center !important;
}

.scarcity-box p {
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 28px;
    text-align: center !important;
}

.scarcity-box p strong {
    color: var(--white);
}

.scarcity-box .btn {
    display: inline-block;
}

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

    .scarcity-box {
        padding: 32px 20px;
    }
}

/* ============================================
   MODULES SECTION
   ============================================ */
.modules-section {
    padding: 80px 0;
    background: var(--dark-2);
}

.modules-section h2 {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    margin-bottom: 50px;
}

.section-subtitle {
    text-align: center;
    font-size: 17px;
    color: var(--gray);
    margin-top: -30px;
    margin-bottom: 50px;
}

.module-group {
    margin-bottom: 50px;
}

.module-group:last-child {
    margin-bottom: 0;
}

.module-group-header {
    margin-bottom: 24px;
}

.module-group-tag {
    display: inline-block;
    background: var(--cyan-soft);
    color: var(--cyan);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.bonus-tag {
    background: rgba(0, 212, 255, 0.12);
    color: var(--cyan);
    border: 1px solid var(--neon-border);
}

.module-group-header h3 {
    font-size: 24px;
    font-weight: 700;
}

.module-card {
    background: var(--dark-3);
    border: 1px solid var(--dark-5);
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: all 0.3s ease;
}

.module-card:hover {
    border-color: var(--neon-border);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.06);
}

.module-card.featured {
    border-color: var(--neon-border);
    background: linear-gradient(135deg, var(--cyan-soft) 0%, var(--dark-3) 100%);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.06);
}

.module-card.bonus {
    border-color: var(--neon-border);
}

.module-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--cyan);
    flex-shrink: 0;
    width: 50px;
}

.module-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.module-content h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
}

.module-content p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.7;
}

.module-highlight-badge {
    display: inline-block;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 0.5px;
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */
.community-section {
    padding: 80px 0;
    background: var(--dark);
}

.community-section h2 {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    margin-bottom: 50px;
}

.community-box {
    max-width: 900px;
    margin: 0 auto;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.comm-item {
    background: var(--dark-3);
    border: 1px solid var(--dark-5);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.comm-item:hover {
    border-color: var(--neon-border);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.06);
}

.comm-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.comm-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.comm-item p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.6;
}

/* ============================================
   UPDATES SECTION
   ============================================ */
.updates-section {
    padding: 80px 0;
}

.updates-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 40px;
}

.updates-box {
    background: var(--dark-2);
    border: 1px solid var(--neon-border);
    border-radius: 20px;
    padding: 48px 40px;
}

.updates-lead {
    text-align: center;
    font-size: 1.1rem;
    color: var(--white-soft);
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 40px;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 36px;
}

.update-item {
    background: var(--dark-3);
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.update-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.12);
}

.update-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.update-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.update-item p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.6;
}

.updates-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.updates-bottom p {
    font-size: 1rem;
    color: var(--white-soft);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .updates-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .updates-box {
        padding: 32px 24px;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 80px 0;
    background: var(--dark);
}

.about-section h2 {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    margin-bottom: 50px;
}

.about-box {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-photo {
    width: 200px;
    flex-shrink: 0;
}

.about-photo img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 2px solid var(--neon-border);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.15);
}

.about-content p {
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-content p strong {
    color: var(--white);
}

.about-lead {
    font-size: 20px !important;
    color: var(--white) !important;
    font-weight: 700;
}

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

.about-stat {
    background: var(--dark-3);
    border: 1px solid var(--neon-border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.05);
}

.about-stat strong {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: var(--cyan);
    margin-bottom: 6px;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.about-stat span {
    font-size: 13px;
    color: var(--gray-light);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .about-box {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .about-photo {
        width: 160px;
        margin: 0 auto;
    }
    .floating-ig {
        bottom: 18px;
        right: 18px;
        padding: 12px 18px;
        font-size: 13px;
    }
}

/* ============================================
   DIFFERENTIATOR SECTION
   ============================================ */
.differentiator-section {
    padding: 80px 0;
    background: var(--dark-2);
}

.differentiator-section h2 {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    margin-bottom: 50px;
}

.diff-table {
    max-width: 850px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--dark-5);
}

.diff-row {
    display: grid;
    grid-template-columns: 180px 1fr 1fr;
    border-bottom: 1px solid var(--dark-5);
}

.diff-row:last-child {
    border-bottom: none;
}

.diff-row.diff-header {
    background: var(--dark-4);
}

.diff-col {
    padding: 16px 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.diff-col.label {
    font-weight: 700;
    color: var(--gray-light);
    background: var(--dark-3);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.diff-col.old {
    color: var(--gray);
    font-weight: 600;
}

.diff-col.new {
    color: var(--white);
    font-weight: 600;
}

.diff-header .diff-col.old {
    color: var(--gray);
    font-size: 13px;
    font-weight: 700;
}

.diff-header .diff-col.new {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 700;
}

/* ============================================
   OFFER SECTION
   ============================================ */
.offer-section {
    padding: 80px 0;
    background: var(--dark);
}

.offer-section h2 {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    margin-bottom: 50px;
}

.offer-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--dark-2);
    border: 2px solid var(--cyan);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.12);
}

.offer-header {
    background: linear-gradient(135deg, var(--dark-4) 0%, var(--dark-3) 100%);
    border-bottom: 1px solid var(--neon-border);
    padding: 32px;
    text-align: center;
}

.offer-tag {
    display: inline-block;
    background: var(--cyan-soft);
    border: 1px solid var(--neon-border);
    color: var(--cyan);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.offer-header h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 4px;
}

.offer-header p {
    font-size: 15px;
    opacity: 0.9;
}

.offer-body {
    padding: 40px 32px;
}

.offer-includes {
    margin-bottom: 32px;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--gray-light);
    border-bottom: 1px solid var(--dark-4);
}

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

.include-item span:first-child {
    color: var(--cyan);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

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

.price-label {
    font-size: 15px;
    color: var(--gray);
    display: block;
    margin-bottom: 8px;
}

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

.price-currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.price-value {
    font-size: 60px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.price-period {
    font-size: 18px;
    color: var(--gray);
    font-weight: 500;
}

.installments {
    font-size: 15px;
    color: var(--gray-light);
    display: block;
    margin-bottom: 8px;
}

.price-daily {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 28px;
}

.price-daily strong {
    color: var(--cyan);
}

.offer-pricing .btn {
    width: 100%;
    margin-bottom: 20px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 13px;
    color: var(--gray);
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */
.guarantee-section {
    padding: 60px 0;
    background: var(--dark);
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    background: var(--dark-3);
    border: 1px solid var(--neon-border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.06);
}

.guarantee-icon {
    font-size: 64px;
    flex-shrink: 0;
}

.guarantee-content h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.guarantee-content p {
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.7;
}

.guarantee-content p strong {
    color: var(--white);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: var(--dark-2);
}

.faq-section h2 {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--dark-5);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--cyan);
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: var(--gray);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.7;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.3;
}

.final-cta h2 {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    max-width: 750px;
    margin: 0 auto 20px;
}

.final-cta p {
    font-size: 17px;
    color: var(--gray-light);
    max-width: 650px;
    margin: 0 auto 32px;
}

.final-micro {
    font-size: 13px !important;
    color: var(--gray) !important;
    margin-top: 16px !important;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 40px 0;
    text-align: center;
    background: var(--dark-2);
    border-top: 1px solid var(--dark-5);
}

.footer-brand {
    font-size: 18px;
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.footer p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 11px !important;
    color: var(--gray) !important;
    max-width: 600px;
    margin: 16px auto 0 !important;
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 50px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item strong {
        font-size: 22px;
    }

    .timeline {
        padding-left: 32px;
    }

    .timeline::before {
        left: 8px;
    }

    .timeline-marker {
        left: -30px;
        width: 12px;
        height: 12px;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .solution-highlights {
        grid-template-columns: 1fr;
    }

    .result-box {
        padding: 32px 24px;
    }

    .module-card {
        flex-direction: column;
        gap: 12px;
        padding: 24px;
    }

    .module-number, .module-icon {
        width: auto;
    }

    .community-grid {
        grid-template-columns: 1fr;
    }

    .diff-table {
        overflow-x: auto;
    }

    .diff-row {
        grid-template-columns: 120px 1fr 1fr;
    }

    .diff-col {
        padding: 12px;
        font-size: 12px;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .offer-body {
        padding: 32px 20px;
    }

    .price-value {
        font-size: 48px;
    }

    .payment-methods {
        flex-direction: column;
        gap: 8px;
    }

    .btn-large {
        padding: 18px 32px;
        font-size: 15px;
    }

    .top-bar {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .diff-row {
        grid-template-columns: 90px 1fr 1fr;
    }

    .diff-col {
        padding: 10px 8px;
        font-size: 11px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   COURSE CONTENT CAROUSEL
   ============================================ */
.course-carousel-section {
    padding: 80px 0 60px;
    overflow: hidden;
}

.course-carousel-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 40px;
}

.course-carousel-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.course-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.course-carousel-track {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 0 20px;
}

.course-carousel-track img {
    height: 280px;
    width: auto;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 212, 255, 0.1);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .course-carousel-track img {
        height: 180px;
    }
    .course-carousel-track {
        gap: 14px;
    }
    .course-carousel-section h2 {
        font-size: 1.5rem;
        margin-bottom: 28px;
    }
    .course-carousel-section {
        padding: 50px 0 40px;
    }
}

@media (max-width: 480px) {
    .course-carousel-track img {
        height: 140px;
        border-radius: 10px;
    }
    .course-carousel-track {
        gap: 10px;
    }
    .course-carousel-section {
        padding: 40px 0 30px;
    }
    .course-carousel-section h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
}

/* ============================================
   FLOATING INSTAGRAM BUTTON
   ============================================ */
.floating-ig {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(131, 58, 180, 0.45), 0 0 30px rgba(253, 29, 29, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: floatBounce 3s ease-in-out infinite;
}

.floating-ig:hover {
    animation: none;
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(131, 58, 180, 0.6), 0 0 40px rgba(253, 29, 29, 0.35);
}

.floating-ig svg {
    flex-shrink: 0;
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ============================================
   VIDEO CAROUSEL
   ============================================ */
.videos-section {
    padding: 80px 0 60px;
    overflow: hidden;
}

.videos-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 40px;
}

.video-carousel-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.video-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.video-carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 0 20px;
}

.video-thumb {
    position: relative;
    flex-shrink: 0;
    width: 320px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(0, 212, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-thumb:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.2);
}

.video-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.3s ease;
}

.video-thumb:hover .play-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.play-overlay svg {
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-thumb:hover .play-overlay svg {
    opacity: 1;
    transform: scale(1.1);
}

/* Video scroll handled by JS */

/* ============================================
   VIDEO MODAL
   ============================================ */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    z-index: 1;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.video-modal-close:hover {
    opacity: 1;
}

.video-modal-iframe {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.2);
}

.video-modal-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 480px) {
    .video-modal-content {
        width: 95%;
    }
    .video-modal-iframe {
        border-radius: 10px;
    }
    .video-modal-close {
        top: -35px;
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .video-thumb {
        width: 260px;
    }
    .video-thumb img {
        height: 146px;
    }
    .videos-section h2 {
        font-size: 1.5rem;
        margin-bottom: 28px;
    }
    .videos-section {
        padding: 50px 0 40px;
    }
    .video-carousel-track {
        gap: 14px;
    }
    .play-overlay svg {
        width: 50px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .video-thumb {
        width: 220px;
        border-radius: 10px;
    }
    .video-thumb img {
        height: 124px;
    }
    .videos-section {
        padding: 40px 0 30px;
    }
    .videos-section h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    .video-carousel-track {
        gap: 10px;
    }
    .play-overlay svg {
        width: 42px;
        height: 30px;
    }
}
