/* ========================================
   Landing Page - Crypto Course
   Modern Gradient Design with Glassmorphism
   ======================================== */

/* Variables */
:root {
    /* Primary Background Colors - Light Theme */
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    /* Accent Colors */
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-tertiary: #a855f7;
    --accent-gold: #f59e0b;
    --accent-cyan: #06b6d4;
    --accent-pink: #ec4899;
    --accent-orange: #f97316;

    /* Status Colors */
    --success: #10b981;
    --success-glow: rgba(16, 185, 129, 0.3);
    --danger: #ef4444;
    --danger-glow: rgba(239, 68, 68, 0.3);
    --warning: #f59e0b;

    /* Text Colors - Dark text on light background */
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-light: #ffffff;

    /* Card Effect */
    --card-bg: #ffffff;
    --card-border: rgba(0, 0, 0, 0.08);
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-primary: 'Cairo', sans-serif;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.25s ease;
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.8;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    direction: rtl;
    background: var(--bg-primary);
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Subtle Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

/* Decorative Shape */
body::after {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.1); }
}

/* Selection Color */
::selection {
    background: var(--accent-primary);
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Container */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* Text Colors */
.highlight {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.red-text {
    color: var(--danger);
    font-weight: 700;
}

.green-text {
    color: var(--success);
    font-size: 3.5rem;
    font-weight: 900;
}

.gold-text {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Responsive Visibility */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
}

/* Image Styles */
.img-round-corners {
    border-radius: 20px;
}

.image-white-border {
    border: 3px solid var(--glass-border);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

/* Button Animations */
.btn-rocking {
    animation: rocking 3s ease-in-out infinite, glow-pulse 2s ease-in-out infinite;
}

@keyframes rocking {
    0%, 100% { transform: rotate(-1deg) scale(1); }
    50% { transform: rotate(1deg) scale(1.02); }
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4); }
    50% { box-shadow: 0 15px 60px rgba(102, 126, 234, 0.6), 0 0 30px rgba(102, 126, 234, 0.3); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    color: var(--text-light);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.badge-container {
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out;
}

.top-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--text-primary);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.top-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.main-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
    color: var(--text-light);
}

.main-title em {
    font-style: normal;
}

/* Hero Content Grid */
.hero-content-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 50px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.video-column {
    width: 100%;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 24px;
    overflow: hidden;
    background: var(--card-bg);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.video-container:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

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

.hero-image {
    max-width: 300px;
    margin-bottom: 30px;
    border-radius: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.hero-image:hover {
    transform: scale(1.05) rotate(2deg);
}

.offer-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.offer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 4s infinite;
}

.offer-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.offer-text {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

.counter-box {
    display: inline-block;
}

.counter-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    color: var(--accent-primary);
    font-size: 2.5rem;
    font-weight: 900;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(255, 255, 255, 0.5);
    animation: pulse-counter 2s ease-in-out infinite;
}

@keyframes pulse-counter {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* Guarantee Image */
.guarantee-image {
    margin-top: 60px;
    text-align: center;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.img-guarantee {
    max-width: 420px;
    width: 100%;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
}

.img-guarantee:hover {
    transform: scale(1.05);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
    margin-top: 60px;
    padding: 30px 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.6s ease-out 0.5s backwards;
}

.payment-methods img {
    height: 35px;
    width: auto;
    transition: var(--transition);
    opacity: 0.8;
    filter: grayscale(20%);
}

.payment-methods img:hover {
    transform: scale(1.2);
    opacity: 1;
    filter: grayscale(0%);
}

.price-text {
    font-size: 1.1rem;
    line-height: 2;
}

.price-text strong {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.3rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--card-bg);
    color: var(--accent-primary);
    padding: 24px 60px;
    border-radius: 20px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    margin: 30px 0;
    box-shadow: var(--shadow-xl);
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: var(--accent-primary);
    color: var(--text-light);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.01);
}

.btn-main {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 800;
}

.btn-sub {
    display: block;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Description Section */
.description-section {
    max-width: 850px;
    margin: 60px auto 0;
    text-align: center;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.description-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 2.1;
}

.note-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 25px 30px;
    border-radius: 16px;
    border-right: 5px solid rgba(255, 255, 255, 0.5);
    border-left: none;
    box-shadow: var(--shadow-sm);
}

/* ========================================
   Mistakes Section
   ======================================== */
.mistakes-section {
    background: var(--bg-secondary);
    padding: 100px 0;
    position: relative;
}

.mistakes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.03) 0%, transparent 30%);
    pointer-events: none;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a2e;
}

.mistakes-section .section-title {
    color: #1a1a2e;
}

/* Section Images */
.section-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.section-images img,
.section-banner {
    max-width: 500px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.section-images img:hover,
.section-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.testimonials-banner {
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 40px;
}

.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.mistake-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px 35px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.mistake-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

.mistake-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-primary);
}

.mistake-card:hover::before {
    transform: scaleX(1);
}

.mistake-card h3 {
    color: var(--accent-primary);
    font-size: 1.3rem;
    margin-bottom: 18px;
    font-weight: 700;
}

.mistake-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.9;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.testimonials-section .section-title {
    color: var(--text-light);
    margin-bottom: 20px;
}

.arrow-icon-center {
    text-align: center;
    margin-bottom: 50px;
}

.arrow-down {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--card-bg);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--accent-primary);
    animation: bounce 2s infinite;
    box-shadow: var(--shadow-xl);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(15px); }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    background: var(--card-bg);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.testimonial-video:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

/* ========================================
   Why Section
   ======================================== */
.why-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    background: var(--bg-primary);
}

.why-section .section-title {
    color: var(--text-primary);
}

.why-image {
    max-width: 100%;
    border-radius: 24px;
    margin-top: 50px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.why-image:hover {
    transform: scale(1.02);
}

/* ========================================
   Benefits Section
   ======================================== */
.benefits-section {
    padding: 100px 0;
    position: relative;
    background: var(--bg-secondary);
}

.benefits-section .section-title {
    color: var(--text-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-xl);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card img {
    max-width: 100%;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.benefit-card:hover img {
    transform: scale(1.05);
}

.benefit-card h3 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.7;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
}

.pricing-section .section-title {
    color: var(--text-light);
}

.pricing-box {
    max-width: 750px;
    margin: 0 auto;
    background: var(--card-bg);
    border: none;
    border-radius: 32px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
}

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

.pricing-box img {
    max-width: 100%;
    border-radius: 16px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.bonus-intro {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--text-primary);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.bonus-list {
    text-align: right;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.bonus-list li {
    padding: 20px 55px 20px 15px;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.05rem;
    border-bottom: 1px solid var(--card-border);
    transition: var(--transition);
    border-radius: 12px;
    margin-bottom: 8px;
}

.bonus-list li:hover {
    background: rgba(16, 185, 129, 0.08);
    padding-right: 60px;
}

.bonus-list li::before {
    content: '✓';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--success);
    font-weight: 700;
    font-size: 1.1rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    transition: var(--transition);
}

.bonus-list li:hover::before {
    background: rgba(16, 185, 129, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.total-value {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.total-value s {
    color: var(--danger);
}

.today-price {
    font-size: 1.7rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.final-price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--success);
    position: relative;
    z-index: 1;
}

/* ========================================
   Arrow Section
   ======================================== */
.arrow-section {
    padding: 60px 0;
    text-align: center;
}

.arrow-gif {
    max-width: 100px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.5));
    animation: arrow-bounce 1.5s ease-in-out infinite;
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(20px); }
}

/* ========================================
   Target Section
   ======================================== */
.target-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.target-section .section-title {
    color: var(--text-primary);
}

.target-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.target-card {
    border-radius: 28px;
    padding: 45px 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: var(--shadow-md);
}

.target-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    transition: var(--transition);
}

.target-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.target-card h3 {
    font-size: 1.5rem;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 700;
}

.target-card ul {
    padding: 0;
}

.target-card li {
    padding: 20px 50px 20px 0;
    position: relative;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--card-border);
    transition: var(--transition);
}

.target-card li:hover {
    padding-right: 55px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
}

.target-card li::before {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    font-weight: bold;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.target-card.not-for {
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.target-card.not-for::before {
    background: linear-gradient(90deg, var(--danger), rgba(239, 68, 68, 0.5));
}

.target-card.not-for:hover {
    border-color: var(--danger);
}

.target-card.not-for h3 {
    color: var(--danger);
}

.target-card.not-for li::before {
    content: '✗';
    color: var(--danger);
    background: rgba(239, 68, 68, 0.15);
}

.target-card.for-you {
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.target-card.for-you::before {
    background: linear-gradient(90deg, var(--success), rgba(16, 185, 129, 0.5));
}

.target-card.for-you:hover {
    border-color: var(--success);
}

.target-card.for-you h3 {
    color: var(--success);
}

.target-card.for-you li::before {
    content: '✓';
    color: var(--success);
    background: rgba(16, 185, 129, 0.15);
}

/* ========================================
   Trainer Section
   ======================================== */
.trainer-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.trainer-section .section-title {
    color: var(--accent-primary);
}

.trainer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 70px;
    align-items: center;
}

.trainer-content h3 {
    color: var(--accent-gold);
    font-size: 1.6rem;
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
}

.trainer-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    border-radius: 4px;
}

.trainer-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 2.1;
    margin-bottom: 25px;
}

.trainer-content strong {
    color: var(--accent-primary);
}

.trainer-image {
    text-align: center;
    position: relative;
}

.trainer-image img {
    max-width: 100%;
    border-radius: 32px;
    border: 4px solid var(--accent-primary);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    position: relative;
}

.trainer-image img:hover {
    transform: scale(1.05) rotate(2deg);
}

/* ========================================
   Final CTA Section
   ======================================== */
.final-cta-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.final-cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

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

.faq-section .section-title {
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: -35px;
    margin-bottom: 60px;
}

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

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.faq-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent-primary);
    transform: translateX(-5px);
    box-shadow: var(--shadow-md);
}

.faq-item:hover::before {
    opacity: 0.5;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 35px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(99, 102, 241, 0.03);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    transition: var(--transition);
}

.faq-item:hover .faq-question h4 {
    color: var(--accent-primary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-primary);
    font-weight: 300;
    transition: var(--transition-bounce);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 35px 28px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 2;
    border-top: 1px solid var(--card-border);
    padding-top: 25px;
    margin-top: 5px;
}

.faq-item.active {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-lg);
}

.faq-item.active::before {
    opacity: 1;
}

.faq-item.active .faq-question {
    background: rgba(99, 102, 241, 0.05);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
}

.final-heading {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-top: 70px;
    position: relative;
    display: inline-block;
}

.final-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    border-radius: 4px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--card-border);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 3px;
}

.footer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

/* ========================================
   Scrollbar
   ======================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 6px;
    border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-tertiary);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trainer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .trainer-image {
        order: -1;
    }

    .trainer-image img {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 45px;
    }

    .section-images {
        flex-direction: column;
        gap: 20px;
    }

    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-side {
        order: -1;
    }

    .hero-image {
        max-width: 240px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 450px;
    }

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

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

    .cta-button {
        padding: 20px 40px;
    }

    .btn-main {
        font-size: 1.2rem;
    }

    .pricing-box {
        padding: 40px 30px;
    }

    .final-price {
        font-size: 3rem;
    }

    .hero-section,
    .mistakes-section,
    .testimonials-section,
    .why-section,
    .benefits-section,
    .pricing-section,
    .target-section,
    .trainer-section,
    .faq-section {
        padding: 70px 0;
    }

    .payment-methods {
        gap: 25px;
        padding: 25px 30px;
    }

    .payment-methods img {
        height: 28px;
    }
}

@media (max-width: 480px) {
    .top-badge {
        font-size: 0.95rem;
        padding: 14px 28px;
    }

    .main-title {
        font-size: 1.35rem;
    }

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

    .counter-number {
        font-size: 2.2rem;
        width: 75px;
        height: 75px;
    }

    .cta-button {
        padding: 18px 30px;
        width: 100%;
    }

    .btn-main {
        font-size: 1.1rem;
    }

    .btn-sub {
        font-size: 0.85rem;
    }

    .mistake-card,
    .benefit-card {
        padding: 30px 25px;
    }

    .target-card {
        padding: 35px 28px;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .final-heading {
        font-size: 1.8rem;
    }

    .green-text {
        font-size: 3rem;
    }

    .final-price {
        font-size: 2.8rem;
    }
}

/* ========================================
   Accessibility & Focus States
   ======================================== */
a:focus,
button:focus,
.cta-button:focus {
    outline: 3px solid var(--accent-primary);
    outline-offset: 3px;
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }
    .cta-button,
    .video-container,
    .testimonial-video {
        display: none;
    }
}
