body {
    font-family: 'Vazirmatn', sans-serif;
    background: linear-gradient(
        180deg,
        #FFE8ED 0%,      /* Light pink at top */
        #FFFFFF 20%,     /* White */
        #FFF5F7 40%,     /* Very light pink */
        #FFFFFF 60%,     /* White */
        #FFD6DF 80%,     /* Medium pink */
        #FFE8ED 100%     /* Light pink at bottom */
    );
    background-attachment: fixed;
    background-size: 100% 200vh;
    color: #1F2937;
    scroll-behavior: smooth;
}

.section-spacing {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (min-width: 768px) {
    .section-spacing {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* ===== ENHANCED HERO SECTION WITH BACKGROUND IMAGE ===== */

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Background Image Container */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hero.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    
    /* Animated zoom effect */
    animation: heroZoom 20s ease-in-out infinite alternate;
}

/* Zoom animation for background */
@keyframes heroZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Gradient Overlay for text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg, 
        rgba(17, 24, 39, 0.85) 0%, 
        rgba(31, 41, 55, 0.75) 50%, 
        rgba(17, 24, 39, 0.85) 100%
    );
    z-index: 1;
}

/* Animated gradient overlay */
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(211, 15, 70, 0.2) 0%,
        transparent 70%
    );
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Particles background */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particle-float 15s linear infinite;
    z-index: 2;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Responsive cropping - crops from top and bottom on smaller screens */
@media (max-width: 768px) {
    .hero-background {
        background-position: center 40%;
        animation: heroZoomMobile 15s ease-in-out infinite alternate;
    }
    
    @keyframes heroZoomMobile {
        0% {
            transform: scale(1.15);
        }
        100% {
            transform: scale(1.25);
        }
    }
}

@media (max-width: 640px) {
    .hero-background {
        background-position: center 35%;
    }
    
    .hero-section {
        min-height: 90vh;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-background {
        background-position: center 45%;
    }
}

/* Large screens - show more of the image */
@media (min-width: 1920px) {
    .hero-background {
        background-position: center 50%;
        animation: heroZoomLarge 25s ease-in-out infinite alternate;
    }
    
    @keyframes heroZoomLarge {
        0% {
            transform: scale(1);
        }
        100% {
            transform: scale(1.08);
        }
    }
}

/* Ensure content stays above background */
.hero-section .container {
    position: relative;
    z-index: 10;
}

/* Hero badge */
.hero-badge {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.3) 100%);
    border: 2px solid rgba(16, 185, 129, 0.6);
    color: #10B981;
    padding: 0.75rem 1.5rem;
    border-radius: 3rem;
    font-size: 0.875rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
    }
}

/* Headline gradient text */
.hero-headline {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #F43F70 50%, #D30F46 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(243, 63, 112, 0.5));
}

/* Subheadline */
.hero-subheadline {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.7;
    color: #E5E7EB;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-subheadline strong {
    color: #F43F70;
    font-weight: 700;
}

/* CTA Buttons */
.cta-primary {
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-size: 1.25rem;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(211, 15, 70, 0.5);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(211, 15, 70, 0.7);
}

/* Trust indicators */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #E5E7EB;
}

.trust-item i {
    color: #10B981;
}

/* Live activity indicator */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(16, 185, 129, 0.4);
    padding: 0.75rem 1.5rem;
    border-radius: 3rem;
    font-size: 0.875rem;
    color: #6EE7B7;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #10B981;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #10B981;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Stats preview cards */
.stats-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.stat-card-hero {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card-hero:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(211, 15, 70, 0.6);
    transform: translateY(-4px);
}

.stat-number-hero {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label-hero {
    color: #D1D5DB;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Responsive hero adjustments */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2rem;
    }

    .cta-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .stats-preview {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== trust-bar-enhanced ===== */

.trust-bar {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 50%, #FFF5F7 100%);
    position: relative;
    overflow: hidden;
}

.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D30F46, transparent);
}

.trust-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D30F46, transparent);
}

.stat-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(211, 15, 70, 0.1), 0 2px 4px -1px rgba(211, 15, 70, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D30F46, #F43F70);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(211, 15, 70, 0.15), 0 10px 10px -5px rgba(211, 15, 70, 0.1);
    border-color: #FFE8ED;
}

.icon-wrapper {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
    border: 2px solid #FFD6DF;
    transition: all 0.3s ease;
}

.stat-card:hover .icon-wrapper {
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    border-color: #D30F46;
    transform: scale(1.1) rotate(5deg);
}

.stat-card:hover .icon-wrapper svg {
    color: white !important;
}

.counter {
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #6B7280;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
    color: #374151;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(211, 15, 70, 0.4);
    }
    50% { 
        box-shadow: 0 0 20px 10px rgba(211, 15, 70, 0);
    }
}

.stat-card:hover .icon-wrapper {
    animation: pulse-glow 2s infinite;
}

.pattern-dots {
    background-image: radial-gradient(circle, rgba(211, 15, 70, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}
/* ===== problem-section-enhanced ===== */

.problem-section {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(211, 15, 70, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.problem-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(211, 15, 70, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

/* ===== PROBLEM LIST BACKGROUND ===== */

.problem-list-box {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #f3f4f6;
}

.problem-list-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('list.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 1;
    animation: problemListZoom 15s ease-in-out infinite alternate;
}

@keyframes problemListZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

.problem-list-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(249, 250, 251, 0.65) 100%
    );
    z-index: 1;
}

.problem-list-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
}

@media (min-width: 768px) {
    .problem-list-content {
        padding: 3rem;
    }
}

/* Make text more readable over background */
.problem-list-content h3 {
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.problem-list-content .problem-list li {
   /* background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);*/
}


.pain-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f3f4f6;
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #D30F46, #F43F70);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.pain-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.pain-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(211, 15, 70, 0.1), 0 10px 10px -5px rgba(211, 15, 70, 0.04);
    border-color: #FFE8ED;
}

.pain-icon {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
    border: 3px solid #FFD6DF;
    transition: all 0.4s ease;
    position: relative;
}

.pain-card:hover .pain-icon {
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    border-color: #D30F46;
    transform: scale(1.15) rotate(-5deg);
}

.pain-card:hover .pain-icon svg {
    color: white !important;
}

.pain-card:hover .pain-icon {
    animation: pulse-ring 1.5s infinite;
}

.problem-badge {
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(211, 15, 70, 0.3);
}

.pain-quote {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
    border-radius: 1rem;
    border-right: 4px solid #D30F46;
    margin-top: 2rem;
}

.pain-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 4rem;
    color: #D30F46;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.problem-list li {
    position: relative;
    padding-right: 2rem;
    margin-bottom: 1rem;
}

.problem-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
    border-radius: 50%;
    opacity: 0.1;
}

.dots-pattern {
    background-image: radial-gradient(circle, rgba(211, 15, 70, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.float-animation {
    animation: float-slow 4s ease-in-out infinite;
}

.problem-stat {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 2px solid #f3f4f6;
}

.problem-stat-number {
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== 4t-system-enhanced ===== */

.system-section {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 50%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.system-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(211, 15, 70, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.step-card {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(211, 15, 70, 0.03) 0%, rgba(243, 63, 112, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(211, 15, 70, 0.25);
    border-color: #FFE8ED;
}

.step-card.primary {
    border-top: 6px solid #D30F46;
}

.step-card.primary:hover {
    background: linear-gradient(135deg, #FFF5F7 0%, #ffffff 100%);
}

.step-card.secondary {
    border-top: 6px solid #9CA3AF;
}

.step-card.secondary:hover {
    background: linear-gradient(135deg, #F9FAFB 0%, #ffffff 100%);
}

.step-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 8px 16px rgba(211, 15, 70, 0.3);
    border: 4px solid white;
    z-index: 10;
}

.step-card.secondary .step-number {
    background: linear-gradient(135deg, #6B7280 0%, #9CA3AF 100%);
    box-shadow: 0 8px 16px rgba(107, 114, 128, 0.3);
}

@media (max-width: 767px) {
    .step-number {
        top: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    border: 3px solid #FFD6DF;
    position: relative;
}

.step-card.secondary .step-icon-wrapper {
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    border-color: #D1D5DB;
}

.step-card:hover .step-icon-wrapper {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 0 30px rgba(211, 15, 70, 0.3);
}

.step-card.primary:hover .step-icon-wrapper {
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    border-color: #D30F46;
}

.step-card.primary:hover .step-icon-wrapper svg {
    color: white !important;
}

.step-card.secondary:hover .step-icon-wrapper {
    background: linear-gradient(135deg, #6B7280 0%, #9CA3AF 100%);
    border-color: #6B7280;
}

.step-card.secondary:hover .step-icon-wrapper svg {
    color: white !important;
}

.step-connector {
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    bottom: -4rem;
    right: 50%;
    transform: translateX(50%);
    width: 3px;
    height: 4rem;
    background: linear-gradient(180deg, #D30F46 0%, #F43F70 100%);
    opacity: 0.3;
}

@media (min-width: 1024px) {
    .step-connector::after {
        display: none;
    }
}

.section-badge {
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 3rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(211, 15, 70, 0.3);
    position: relative;
    overflow: hidden;
}

.section-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);
    transition: left 0.5s;
}

.section-badge:hover::before {
    left: 100%;
}

.decorative-divider {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #D30F46, #F43F70);
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
}

.decorative-divider::before,
.decorative-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #D30F46;
    border-radius: 50%;
}

.decorative-divider::before {
    right: 100%;
    margin-right: 10px;
}

.decorative-divider::after {
    left: 100%;
    margin-left: 10px;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float-gentle 3s ease-in-out infinite;
}

.feature-list li {
    position: relative;
    padding-right: 2rem;
    margin-bottom: 1rem;
}

.outcome-tag {
    display: inline-block;
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
    border: 2px solid #FFD6DF;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #D30F46;
    margin: 0.25rem;
    transition: all 0.3s ease;
}

.outcome-tag:hover {
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    color: white;
    transform: scale(1.05);
}

.progress-indicator {
    position: relative;
    height: 4px;
    background: #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1.5rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #D30F46, #F43F70);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.text-brand {
    color: #D30F46;
}

.brand-bg {
    background-color: #FFF5F7;
}

.brand-light {
    color: #F43F70;
}

/* ===== before-after-comparison-enhanced ===== */

.comparison-section {
    background: linear-gradient(180deg, #FFF5F7 0%, #FFE8ED 50%, #FFF5F7 100%);
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(211, 15, 70, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.comparison-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(211, 15, 70, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid white;
}

.comparison-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.comparison-side {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
}

.comparison-before {
    left: 0;
    background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
    clip-path: inset(0 50% 0 0);
}

.comparison-after {
    right: 0;
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
    clip-path: inset(0 0 0 50%);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #D30F46 0%, #F43F70 100%);
    cursor: ew-resize;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 0 20px rgba(211, 15, 70, 0.5);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    border: 5px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(211, 15, 70, 0.4);
    cursor: ew-resize;
    transition: all 0.3s ease;
}

.slider-button:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 12px 30px rgba(211, 15, 70, 0.6);
}

.slider-button svg {
    width: 28px;
    height: 28px;
    color: white;
}

.comparison-label {
    position: absolute;
    top: 2rem;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.75rem 1.5rem;
    border-radius: 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid;
    z-index: 5;
}

.comparison-before .comparison-label {
    left: 2rem;
    color: #6B7280;
    border-color: #9CA3AF;
}

.comparison-after .comparison-label {
    right: 2rem;
    color: #D30F46;
    border-color: #D30F46;
}

.comparison-content {
    position: relative;
    z-index: 1;
    max-width: 400px;
}

.comparison-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    padding: 1.25rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.comparison-before .comparison-icon {
    background: rgba(255, 255, 255, 0.5);
    border: 3px solid #9CA3AF;
}

.comparison-after .comparison-icon {
    background: rgba(255, 255, 255, 0.7);
    border: 3px solid #D30F46;
}

.comparison-title {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comparison-list {
    text-align: right;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.comparison-before .comparison-list li {
    border-right: 3px solid #EF4444;
}

.comparison-after .comparison-list li {
    border-right: 3px solid #10B981;
}

.comparison-list li:hover {
    transform: translateX(-5px);
    background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .comparison-container {
        aspect-ratio: 9/16;
    }

    .comparison-side {
        padding: 2rem 1.5rem;
    }

    .comparison-label {
        top: 1rem;
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .comparison-before .comparison-label {
        left: 1rem;
    }

    .comparison-after .comparison-label {
        right: 1rem;
    }

    .comparison-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .comparison-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .comparison-list li {
        font-size: 0.875rem;
        padding: 0.5rem;
    }
}

/* ===== social-proof-enhanced ===== */

.social-proof-section {
    background: linear-gradient(180deg, #111827 0%, #1F2937 50%, #111827 100%);
    position: relative;
    overflow: hidden;
}

.social-proof-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(211, 15, 70, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

.social-proof-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(211, 15, 70, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite 2s;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.trust-badge {
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 3rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(211, 15, 70, 0.4);
    position: relative;
    overflow: hidden;
}

.trust-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);
    transition: left 0.5s;
}

.trust-badge:hover::before {
    left: 100%;
}

.stat-card.primary {
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card.primary::before {
    transform: scaleX(1);
}

.stat-card.secondary {
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(211, 15, 70, 0.2);
    border-color: rgba(211, 15, 70, 0.3);
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.stat-card.primary .stat-icon {
    background: linear-gradient(135deg, rgba(211, 15, 70, 0.2) 0%, rgba(243, 63, 112, 0.2) 100%);
    border: 2px solid rgba(211, 15, 70, 0.5);
}

.stat-card.secondary .stat-icon {
    background: linear-gradient(135deg, rgba(156, 163, 175, 0.2) 0%, rgba(107, 114, 128, 0.2) 100%);
    border: 2px solid rgba(156, 163, 175, 0.3);
}

.stat-card:hover .stat-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 0 30px rgba(211, 15, 70, 0.4);
}

.stat-card.primary:hover .stat-icon {
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    border-color: #D30F46;
}

.stat-card.primary:hover .stat-icon svg {
    color: white !important;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-card.primary .stat-number {
    background: linear-gradient(135deg, #ffffff 0%, #F43F70 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== comparison-table-enhanced ===== */

.comparison-badge {
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 3rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(211, 15, 70, 0.3);
}

.comparison-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .comparison-cards {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.comparison-card {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #EF4444, #DC2626);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.comparison-card.after::before {
    background: linear-gradient(90deg, #D30F46, #F43F70);
    opacity: 1;
}

.comparison-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.comparison-card.before:hover {
    border-color: #FEE2E2;
}

.comparison-card.after:hover {
    border-color: #FFE8ED;
}

.card-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f3f4f6;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.comparison-card.before .card-icon {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    border: 3px solid #FCA5A5;
}

.comparison-card.after .card-icon {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
    border: 3px solid #FFD6DF;
}

.comparison-card:hover .card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.card-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.comparison-card.before .card-title {
    color: #DC2626;
}

.comparison-card.after .card-title {
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.comparison-card.before .feature-item {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    border-right: 4px solid #EF4444;
}

.comparison-card.after .feature-item {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
    border-right: 4px solid #10B981;
}

.feature-item:hover {
    transform: translateX(-5px);
}

.feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.comparison-card.before .feature-icon {
    background: #FEE2E2;
}

.comparison-card.after .feature-icon {
    background: #D1FAE5;
}

.feature-text {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.6;
    color: #374151;
}

.vs-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(211, 15, 70, 0.4);
    border: 5px solid white;
    z-index: 10;
}

.vs-badge svg {
    width: 36px;
    height: 36px;
    color: white;
}

@media (max-width: 1024px) {
    .vs-badge {
        position: relative;
        top: auto;
        left: 50%;
        margin: -2rem 0;
        transform: translateX(-50%);
    }
}

/* ===== video-testimonials-enhanced ===== */

.testimonials-section {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(211, 15, 70, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(211, 15, 70, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonial-badge {
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 3rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(211, 15, 70, 0.3);
}

.video-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    border: 3px solid transparent;
}

.video-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(211, 15, 70, 0.3);
    border-color: rgba(211, 15, 70, 0.3);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.video-card:hover .video-thumbnail {
    opacity: 0.5 !important;
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(211, 15, 70, 0.95) 0%, rgba(243, 63, 112, 0.95) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(211, 15, 70, 0.5);
    border: 4px solid white;
    z-index: 10;
}

.play-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(211, 15, 70, 0.5);
    animation: pulse-ring 2s infinite;
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.2);
    background: white;
    box-shadow: 0 12px 35px rgba(211, 15, 70, 0.6);
}

.video-card:hover .play-button svg {
    color: #D30F46;
}

.play-button svg {
    width: 32px;
    height: 32px;
    margin-right: 4px;
    position: relative;
    z-index: 1;
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
    color: white;
    transition: all 0.4s ease;
}

.video-card:hover .video-info {
    padding-bottom: 2.5rem;
}

.result-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(211, 15, 70, 0.9) 0%, rgba(243, 63, 112, 0.9) 100%);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.stat-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.metric-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
    text-align: center;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(211, 15, 70, 0.15);
    border-color: #FFE8ED;
}

.metric-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFD6DF;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button svg {
        width: 24px;
        height: 24px;
    }

    .video-info {
        padding: 1.5rem;
    }
}

/* ===== audience-filter-enhanced ===== */

.audience-section {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.audience-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(211, 15, 70, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.audience-badge {
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 3rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(211, 15, 70, 0.3);
}

.filter-card {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.filter-card.not-for-you {
    background: linear-gradient(135deg, #ffffff 0%, #FEF2F2 100%);
    border-color: #FCA5A5;
}

.filter-card.not-for-you::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #EF4444, #DC2626);
}

.filter-card.not-for-you:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.2);
    border-color: #F87171;
}

.filter-card.for-you {
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F7 100%);
    border-color: #FFD6DF;
}

.filter-card.for-you::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #D30F46, #F43F70);
}

.filter-card.for-you:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(211, 15, 70, 0.25);
    border-color: #FFB3C6;
}

.filter-card.for-you::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #D30F46, #F43F70);
    border-radius: 2rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.filter-card.for-you:hover::after {
    opacity: 0.2;
}

.filter-card.not-for-you .card-header {
    border-color: #FCA5A5;
}

.filter-card.for-you .card-header {
    border-color: #FFD6DF;
}

.card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.filter-card.not-for-you .card-icon {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    border: 3px solid #F87171;
}

.filter-card.for-you .card-icon {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
    border: 3px solid #FFB3C6;
}

.filter-card:hover .card-icon {
    transform: scale(1.15) rotate(-5deg);
}

.filter-card.not-for-you:hover .card-icon {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    border-color: #EF4444;
}

.filter-card.for-you:hover .card-icon {
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    border-color: #D30F46;
}

.filter-card:hover .card-icon svg {
    color: white !important;
}

.filter-card.for-you:hover .card-icon {
    animation: pulse-glow 2s infinite;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.filter-card.not-for-you .card-title {
    color: #DC2626;
}

.filter-card.for-you .card-title {
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.0625rem;
    line-height: 1.6;
}

.filter-card.not-for-you .filter-item {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    border-right: 4px solid #EF4444;
}

.filter-card.for-you .filter-item {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
    border-right: 4px solid #10B981;
}

.filter-item:hover {
    transform: translateX(-5px);
}

.filter-card.not-for-you .filter-item:hover {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
}

.filter-card.for-you .filter-item:hover {
    background: linear-gradient(135deg, #FFE8ED 0%, #FFD6DF 100%);
}

.item-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.filter-card.not-for-you .item-icon {
    background: #FEE2E2;
}

.filter-card.for-you .item-icon {
    background: #D1FAE5;
}

.highlight-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-box {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
    border: 3px solid #FFD6DF;
    border-radius: 2rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(211, 15, 70, 0.15);
    margin-top: 3rem;
}

.cta-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(211, 15, 70, 0.3);
}

@media (max-width: 768px) {
    .filter-card {
        padding: 2rem;
    }

    .card-icon {
        width: 70px;
        height: 70px;
    }

    .highlight-badge {
        top: 1.5rem;
        left: 1.5rem;
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
    }
}

/* ===== instructor-section-enhanced ===== */

.instructor-section {
    background: linear-gradient(180deg, #111827 0%, #1F2937 50%, #111827 100%);
    position: relative;
    overflow: hidden;
}

.instructor-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(211, 15, 70, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 6s ease-in-out infinite;
}

.instructor-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(211, 15, 70, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 6s ease-in-out infinite 3s;
}

.instructor-badge {
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 3rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(211, 15, 70, 0.4);
}

.instructor-card {
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(211, 15, 70, 0.3);
    transition: all 0.4s ease;
}

.instructor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(211, 15, 70, 0.4);
    border-color: rgba(211, 15, 70, 0.5);
}

.image-section {
    position: relative;
    background: linear-gradient(135deg, #A60B36 0%, #D30F46 100%);
    overflow: hidden;
}

.image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(211, 15, 70, 0.3) 0%, rgba(166, 11, 54, 0.5) 100%);
    z-index: 1;
}

.instructor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 0;
}

.instructor-card:hover .instructor-image {
    transform: scale(1.05);
}

.verification-badge {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 3rem;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    border: 3px solid white;
    z-index: 2;
}

.content-section {
    padding: 3rem;
}

.instructor-role {
    display: inline-block;
    background: linear-gradient(135deg, rgba(211, 15, 70, 0.2) 0%, rgba(243, 63, 112, 0.2) 100%);
    color: #F43F70;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid rgba(211, 15, 70, 0.3);
    margin-bottom: 1rem;
}

.instructor-name {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #F43F70 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.instructor-bio {
    color: #D1D5DB;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.quote-box {
    background: linear-gradient(135deg, #374151 0%, #1F2937 100%);
    border-right: 5px solid #D30F46;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    margin-top: 2rem;
}

.quote-icon {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(211, 15, 70, 0.4);
}

.quote-text {
    color: #E5E7EB;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.7;
    padding-top: 0.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(211, 15, 70, 0.1) 0%, rgba(243, 63, 112, 0.1) 100%);
    border-radius: 1rem;
    border: 2px solid rgba(211, 15, 70, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: rgba(211, 15, 70, 0.4);
    background: linear-gradient(135deg, rgba(211, 15, 70, 0.2) 0%, rgba(243, 63, 112, 0.2) 100%);
}

.stat-item .stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    color: #9CA3AF;
    font-size: 0.875rem;
    font-weight: 600;
}

.expertise-section {
    margin-top: 2.5rem;
}

.expertise-title {
    color: #F3F4F6;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.expertise-tag {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: #E5E7EB;
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.expertise-tag:hover {
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    border-color: #D30F46;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .content-section {
        padding: 2rem;
    }

    .instructor-name {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== faq-section-enhanced ===== */

.faq-section {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(211, 15, 70, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(211, 15, 70, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-badge {
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 3rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(211, 15, 70, 0.3);
}

.faq-item {
    background: white;
    border-radius: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 2px solid #f3f4f6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.faq-item:hover {
    box-shadow: 0 12px 24px rgba(211, 15, 70, 0.12);
    border-color: #FFE8ED;
}

.faq-item.active {
    border-color: #FFD6DF;
    box-shadow: 0 12px 30px rgba(211, 15, 70, 0.15);
}

.faq-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #D30F46, #F43F70);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
}

.faq-question:hover .question-text {
    color: #D30F46;
}

.question-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFD6DF;
    transition: all 0.4s ease;
}

.faq-item.active .question-icon {
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    border-color: #D30F46;
    transform: scale(1.1);
}

.faq-item.active .question-icon svg {
    color: white !important;
}

.question-text {
    flex: 1;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    transition: color 0.3s ease;
}

.toggle-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.faq-item.active .toggle-icon {
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    transform: rotate(180deg);
}

.faq-item.active .toggle-icon svg {
    color: white !important;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

.faq-answer-content {
    padding: 0 2rem 2rem 2rem;
    color: #4B5563;
    font-size: 1.0625rem;
    line-height: 1.8;
    border-top: 2px solid #F3F4F6;
    margin: 0 2rem;
    padding-top: 2rem;
}

.faq-answer-content strong {
    color: #1F2937;
    font-weight: 700;
}

.faq-category {
    margin-bottom: 3rem;
}

.category-title {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 1.5rem;
    border: 2px solid #E5E7EB;
}

.help-cta {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
    border: 3px solid #FFD6DF;
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(211, 15, 70, 0.15);
    margin-top: 3rem;
}

.help-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(211, 15, 70, 0.3);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.5rem;
    }

    .question-text {
        font-size: 1.0625rem;
    }

    .question-icon {
        width: 40px;
        height: 40px;
    }

    .faq-answer-content {
        font-size: 1rem;
    }

    .help-cta {
        padding: 2rem;
    }
}

/* ===== final-cta-footer-enhanced ===== */

.cta-footer {
    background: linear-gradient(180deg, #D30F46 0%, #A60B36 100%);
    position: relative;
    overflow: hidden;
}

.cta-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    animation: pulse-pattern 8s ease-in-out infinite;
}

@keyframes pulse-pattern {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

.pricing-card {
    background: white;
    border-radius: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #10B981, #059669);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
}

.scarcity-badge {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 3rem;
    font-size: 0.875rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse-scale 2s ease-in-out infinite;
}

@keyframes pulse-scale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.original-price {
    position: relative;
    display: inline-block;
}

.original-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -5%;
    right: -5%;
    height: 3px;
    background: #EF4444;
    transform: rotate(-5deg);
}

.discount-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.cta-button {
    background: linear-gradient(135deg, #D30F46 0%, #F43F70 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-size: 1.25rem;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(211, 15, 70, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(211, 15, 70, 0.6);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timer-box {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
}