/* ===================================
   SOCIAL MEDIA MASTERCLASS — STYLES
   Premium Dark Theme + Glassmorphism
   =================================== */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #8B5CF6;
    --primary-light: #A78BFA;
    --primary-dark: #7C3AED;
    --accent: #06B6D4;
    --accent-light: #22D3EE;
    --gradient-1: linear-gradient(135deg, #8B5CF6, #06B6D4);
    --gradient-2: linear-gradient(135deg, #7C3AED, #2563EB);
    --gradient-hero: linear-gradient(180deg, #0a0015 0%, #1a0a2e 30%, #0f172a 100%);
    --gradient-section: linear-gradient(180deg, #0f172a 0%, #1a0a2e 50%, #0f172a 100%);
    --bg-dark: #050012;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-glass: rgba(255, 255, 255, 0.06);
    --border-glass: rgba(255, 255, 255, 0.1);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --gold: #F59E0B;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --shadow-glow: 0 0 30px rgba(139, 92, 246, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --font-primary: 'Outfit', 'Inter', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-secondary);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

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

/* ---------- Glass Card ---------- */
.glass-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

/* ---------- Typography ---------- */
.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.section-tag {
    display: inline-block;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--primary-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-glass);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-3px);
}

.btn-glow {
    animation: btnGlow 2s ease-in-out infinite alternate;
}

@keyframes btnGlow {
    0% { box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4); }
    100% { box-shadow: 0 4px 40px rgba(139, 92, 246, 0.7), 0 0 60px rgba(6, 182, 212, 0.3); }
}

.btn-full {
    width: 100%;
}

.btn-lg {
    padding: 20px 48px;
    font-size: 1.3rem;
}

/* ---------- Animations ---------- */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.7s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll-triggered animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Announcement Bar ---------- */
.announcement-bar {
    background: var(--gradient-1);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 100;
}

.marquee {
    display: flex;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.marquee span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    padding: 0 60px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 28px;
    color: #fff;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #25D366;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- Sticky CTA ---------- */
.sticky-cta {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 0, 21, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 12px 20px;
    z-index: 1001; /* Above announcement bar */
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.sticky-cta.hidden {
    transform: translateY(-100%);
}

.sticky-cta.visible {
    transform: translateY(0);
}

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

.sticky-cta-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-price {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sticky-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.sticky-cta-btn {
    padding: 12px 28px;
    background: var(--gradient-1);
    color: #fff;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: var(--transition);
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.5);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    background: var(--gradient-hero);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--danger);
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.35rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Video */
.hero-video-wrapper {
    max-width: 720px;
    margin: 0 auto 40px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(139, 92, 246, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
}

.play-btn i {
    font-size: 28px;
    color: #fff;
    margin-left: 4px;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--primary);
}

.video-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
}

.video-speaker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    justify-content: center;
}

.speaker-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

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

.speaker-info strong {
    display: block;
    font-size: 0.95rem;
}

.insta-link {
    color: var(--primary-light);
    font-size: 0.85rem;
    transition: var(--transition);
}

.insta-link:hover {
    color: #E1306C;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* Urgency Strip */
.urgency-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.urgency-item i {
    color: var(--warning);
}

.urgency-divider {
    color: var(--text-muted);
}

#live-counter {
    color: var(--accent-light);
    font-weight: 700;
}

/* Countdown */
.countdown-wrapper {
    margin-bottom: 30px;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.countdown-item {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    text-align: center;
    min-width: 80px;
}

.countdown-value {
    display: block;
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.countdown-unit {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-sep {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.trust-badge i {
    color: var(--success);
}

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

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

.about-card {
    padding: 32px 24px;
    text-align: center;
}

.about-icon {
    width: 64px;
    height: 64px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary-light);
}

.about-card h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* =========================================
   TRAINERS SECTION
   ========================================= */
.trainers-section {
    background: var(--gradient-section);
    padding: 100px 0;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.trainer-card {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.trainer-card .day-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gradient-1);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}

.trainer-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.trainer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trainer-card:hover .trainer-image {
    transform: scale(1.08);
}

.income-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
}

.income-badge i {
    color: var(--gold);
}

.trainer-info {
    padding: 24px;
}

.trainer-info h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.trainer-insta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
    transition: var(--transition);
}

.trainer-insta:hover {
    color: #E1306C;
}

.trainer-insta.no-link {
    color: var(--gold);
    cursor: default;
}

.trainer-topics {
    margin-top: 8px;
}

.trainer-topics li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.trainer-topics li i {
    color: var(--success);
    font-size: 0.85rem;
}

.featured-card {
    border: 2px solid rgba(139, 92, 246, 0.4) !important;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.15);
}

/* =========================================
   WHAT YOU'LL LEARN SECTION
   ========================================= */
.learn-section {
    background: var(--gradient-section);
    padding: 100px 0;
}

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

.learn-item {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.learn-icon {
    width: 56px;
    height: 56px;
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent-light);
}

.learn-item h3 {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
}

.learn-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* =========================================
   BONUSES SECTION
   ========================================= */
.bonuses-section {
    background: var(--gradient-section);
    padding: 100px 0;
}

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

.bonus-card {
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-value {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.bonus-icon {
    width: 64px;
    height: 64px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--gold);
}

.bonus-card h3 {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.bonus-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.bonus-tag {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
    background: var(--gradient-section);
    padding: 100px 0;
}

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

.testimonial-card {
    padding: 28px;
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =========================================
   PRICING SECTION
   ========================================= */
.pricing-section {
    background: var(--gradient-section);
    padding: 100px 0;
}

.pricing-card {
    max-width: 560px;
    margin: 0 auto;
    padding: 48px 40px;
    text-align: center;
    border: 2px solid rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
}

.pricing-popular {
    display: inline-block;
    background: var(--gradient-1);
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.pricing-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
}

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

.pricing-original {
    font-size: 1.4rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.pricing-current {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-label {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.pricing-save {
    color: var(--success);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 28px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li i {
    color: var(--success);
    min-width: 16px;
}

.pricing-seats {
    margin-top: 16px;
    color: var(--danger);
    font-size: 0.95rem;
    font-weight: 600;
    animation: urgencyPulse 1.5s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.pricing-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pricing-trust span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pricing-trust span i {
    color: var(--success);
}

/* =========================================
   PAYMENT SECTION
   ========================================= */
.payment-section {
    background: var(--gradient-section);
    padding: 100px 0;
}

.payment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.payment-form-card {
    padding: 40px 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group label i {
    color: var(--primary-light);
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
    background: rgba(139, 92, 246, 0.05);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-trust {
    text-align: center;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-trust i {
    color: var(--success);
    margin-right: 6px;
}

.payment-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    padding: 28px;
}

.info-card h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.info-card ul li {
    padding: 6px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.payment-methods {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-methods span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.payment-methods span i {
    color: var(--primary-light);
}

/* =========================================
   SUCCESS MODAL
   ========================================= */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    max-width: 480px;
    width: 100%;
    padding: 48px 32px;
    text-align: center;
    border: 2px solid rgba(16, 185, 129, 0.3);
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

/* Payment Modal Specific Styles */
.payment-modal-content {
    border: 2px solid rgba(139, 92, 246, 0.3);
    padding: 36px 28px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.close-modal:hover {
    color: var(--danger);
    transform: scale(1.1);
}

.modal-header {
    margin-bottom: 24px;
}

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

.payment-methods-modal {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.payment-methods-modal span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.payment-methods-modal span i {
    color: var(--primary-light);
}

.modal-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.modal-content h2 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.modal-sub {
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
    margin-bottom: 24px !important;
}

.modal-content .btn {
    margin-top: 16px;
}

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

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

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

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-light);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* =========================================
   FINAL CTA SECTION
   ========================================= */
.final-cta-section {
    background: linear-gradient(180deg, #0f172a 0%, #1a0a2e 50%, #0a0015 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.final-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
}

.final-cta-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.final-cta-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.footer-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-sub {
    color: var(--text-muted) !important;
    font-size: 0.8rem !important;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition);
}

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

/* =========================================
   PARTICLES
   ========================================= */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .hero-section {
        padding: 40px 0 60px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .urgency-strip {
        flex-direction: column;
        gap: 8px;
    }

    .urgency-divider {
        display: none;
    }

    .countdown-item {
        padding: 10px 14px;
        min-width: 65px;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .trust-badges {
        gap: 12px;
    }

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

    .payment-wrapper {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 36px 24px;
    }

    .pricing-current {
        font-size: 3rem;
    }

    .final-cta-stats {
        gap: 24px;
    }

    .sticky-cta-text .sticky-label {
        display: none;
    }

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

    section {
        padding: 80px 0;
    }

    .about-section,
    .trainers-section,
    .learn-section,
    .bonuses-section,
    .testimonials-section,
    .pricing-section,
    .payment-section,
    .faq-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .play-btn {
        width: 60px;
        height: 60px;
    }

    .play-btn i {
        font-size: 20px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .btn-lg {
        padding: 16px 36px;
        font-size: 1.15rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .payment-form-card {
        padding: 28px 20px;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float i {
        font-size: 24px;
    }
}
