/* Theme Colors */
:root {
    --purple-dark: #8b56be;
    --purple-light: #ccb3e2;
    --purple-bg-light: #f6f2fa;
    --purple-text: #492e64;
    --btn-color: #ccb3e2;
    --btn-hover: #a87cce;
}

/* Section Backgrounds - Alternating */
.section-white { background-color: #ffffff; }
.section-light { background-color: #f8f9fa; }
.section-purple-light { background-color: var(--purple-bg-light); }

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-text) 100%);
    padding: 100px 0 80px 0;
}

.hero-bg-layer { opacity: 0.12; }
.hero-shapes-layer { opacity: 0.06; }
.hero-dots {
    opacity: 0.04;
    background-image: radial-gradient(circle, var(--purple-light) 2px, transparent 2px);
    background-size: 40px 40px;
}
.hero-waves { opacity: 0.08; }
.hero-icons { opacity: 0.08; }
.hero-grid {
    opacity: 0.03;
    background-image: linear-gradient(var(--purple-light) 1px, transparent 1px),
                      linear-gradient(90deg, var(--purple-light) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-circle-1 {
    top: -5%; left: -5%; width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(204, 179, 226, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-circle-2 {
    bottom: -10%; right: -5%; width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(168, 124, 206, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-circle-3 {
    top: 40%; right: 10%; width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(204, 179, 226, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 7s ease-in-out infinite 1s;
}

.hero-shape-1 {
    top: 15%; left: 8%; width: 80px; height: 80px;
    border: 3px solid var(--purple-light);
    border-radius: 20px;
    transform: rotate(15deg);
    animation: rotate 20s linear infinite;
}

.hero-shape-2 {
    bottom: 20%; left: 15%; width: 60px; height: 60px;
    border: 3px solid var(--btn-hover);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.hero-shape-3 {
    top: 25%; right: 12%; width: 100px; height: 100px;
    border: 3px solid var(--purple-light);
    transform: rotate(45deg);
    animation: rotate 15s linear infinite reverse;
}

.hero-shape-4 {
    bottom: 30%; right: 20%; width: 70px; height: 70px;
    border: 3px solid var(--btn-hover);
    border-radius: 20px;
    transform: rotate(-20deg);
    animation: float 6s ease-in-out infinite;
}

.hero-icon-1 { top: 20%; left: 10%; font-size: 2.5rem; color: var(--purple-light); animation: float 5s ease-in-out infinite; }
.hero-icon-2 { top: 60%; left: 5%; font-size: 2rem; color: var(--btn-hover); animation: float 7s ease-in-out infinite 2s; }
.hero-icon-3 { top: 35%; right: 8%; font-size: 2rem; color: var(--purple-light); animation: float 6s ease-in-out infinite 1s; }
.hero-icon-4 { bottom: 25%; right: 15%; font-size: 2.2rem; color: var(--btn-hover); animation: float 8s ease-in-out infinite 3s; }
.hero-icon-5 { bottom: 40%; left: 12%; font-size: 1.8rem; color: var(--purple-light); animation: pulse 4s ease-in-out infinite 1.5s; }

.hero-badge {
    background: rgba(204, 179, 226, 0.25);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(204, 179, 226, 0.3);
}

.hero-badge .bi-star-fill { color: #ffd700; }

.hero-icon-glow {
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(204, 179, 226, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(25px);
}

.hero-icon-pulse {
    width: 90px; height: 90px;
    background: rgba(204, 179, 226, 0.2);
    animation: pulse 3s ease-in-out infinite;
}

.hero-youtube-icon {
    font-size: 4.5rem;
    color: #ffffff;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.4));
}

.hero-title {
    text-shadow: 2px 4px 12px rgba(0,0,0,0.3);
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-title-gradient {
    background: linear-gradient(90deg, #ffffff 0%, var(--purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    max-width: 650px;
    opacity: 0.95;
    text-shadow: 1px 2px 6px rgba(0,0,0,0.2);
    font-size: 1.05rem;
    line-height: 1.7;
}

.hero-price-tag {
    background: rgba(204, 179, 226, 0.3);
    font-weight: 700;
    border: 1px solid rgba(204, 179, 226, 0.4);
}

.hero-btn-primary {
    font-weight: 700;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    color: var(--purple-text);
}

.hero-btn-primary-bg {
    background: linear-gradient(135deg, #ffffff 0%, var(--purple-bg-light) 100%);
}

.hero-btn-secondary {
    font-weight: 700;
    border-width: 2px;
    color: #ffffff;
    border-color: rgba(204, 179, 226, 0.8);
    background: rgba(204, 179, 226, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

/* Stat Cards */
.stat-card {
    border: none;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 40px rgba(139, 86, 190, 0.25) !important;
}

.stat-card-bg-1 { background: linear-gradient(135deg, rgba(139, 86, 190, 0.05) 0%, transparent 100%); }
.stat-card-bg-2 { background: linear-gradient(135deg, rgba(168, 124, 206, 0.05) 0%, transparent 100%); }
.stat-card-bg-3 { background: linear-gradient(135deg, rgba(204, 179, 226, 0.05) 0%, transparent 100%); }

.stat-icon-circle {
    width: 60px; height: 60px;
}

.stat-icon-gradient-1 {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-text) 100%);
    box-shadow: 0 4px 15px rgba(139, 86, 190, 0.4);
}

.stat-icon-gradient-2 {
    background: linear-gradient(135deg, var(--btn-hover) 0%, var(--purple-dark) 100%);
    box-shadow: 0 4px 15px rgba(168, 124, 206, 0.4);
}

.stat-icon-gradient-3 {
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--btn-hover) 100%);
    box-shadow: 0 4px 15px rgba(204, 179, 226, 0.4);
}

.stat-number {
    font-size: 1.75rem;
}

.stat-number-gradient-1 {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-text) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number-gradient-2 {
    background: linear-gradient(135deg, var(--btn-hover) 0%, var(--purple-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number-gradient-3 {
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--btn-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Feature Illustration */
.feature-illustration-glow {
    width: 280px; height: 280px;
    background: linear-gradient(135deg, rgba(139, 86, 190, 0.1) 0%, rgba(204, 179, 226, 0.1) 100%);
    filter: blur(30px);
}

.feature-illustration-main {
    width: 250px; height: 250px;
    background: linear-gradient(135deg, var(--purple-bg-light) 0%, #ffffff 100%);
    box-shadow: 0 15px 40px rgba(139, 86, 190, 0.15);
}

.feature-illustration-youtube {
    font-size: 6rem;
    color: var(--purple-dark);
    filter: drop-shadow(0 4px 12px rgba(139, 86, 190, 0.3));
}

.feature-illustration-badge {
    top: -20px; right: -25px;
    width: 55px; height: 55px;
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--btn-hover) 100%);
    box-shadow: 0 4px 15px rgba(139, 86, 190, 0.4);
}

.feature-float-icon-1 {
    top: 10%; left: 5%;
    width: 45px; height: 45px;
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--btn-hover) 100%);
    box-shadow: 0 4px 12px rgba(204, 179, 226, 0.3);
    animation: float 4s ease-in-out infinite;
}

.feature-float-icon-2 {
    bottom: 15%; left: 8%;
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-text) 100%);
    box-shadow: 0 4px 12px rgba(139, 86, 190, 0.3);
    animation: float 5s ease-in-out infinite 1s;
}

.feature-float-icon-3 {
    top: 20%; right: 5%;
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--btn-hover) 0%, var(--purple-light) 100%);
    box-shadow: 0 4px 12px rgba(168, 124, 206, 0.3);
    animation: float 4.5s ease-in-out infinite 0.5s;
}

/* Final CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-text) 100%);
}

.cta-decorative { opacity: 0.1; }

.cta-circle-1 {
    top: 10%; left: 5%;
    width: 100px; height: 100px;
    background: white;
    border-radius: 50%;
}

.cta-circle-2 {
    bottom: 15%; right: 10%;
    width: 150px; height: 150px;
    background: white;
    border-radius: 50%;
}

.cta-circle-3 {
    top: 50%; left: 50%;
    width: 80px; height: 80px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cta-icon {
    font-size: 4rem;
    color: #ffffff;
    opacity: 0.9;
}

.cta-title {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-desc {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.cta-btn-primary {
    font-weight: 600;
    padding: 15px 40px;
}

.cta-btn-secondary {
    font-weight: 600;
    border-width: 2px;
    color: #ffffff;
    border-color: #ffffff;
    background: rgba(255,255,255,0.1);
    padding: 15px 40px;
    backdrop-filter: blur(10px);
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3) !important;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-25px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3) !important;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .hero-section { padding: 60px 0 50px 0 !important; }
}