/* =========================================
   GLOBAL VARIABLES & RESET
   ========================================= */
:root {
    --brand-purple: #bb86fc;
    --dark-bg: #0f021e;
    --white: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(187, 134, 252, 0.2);
    --soft-purple: #7c3aed;
}

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

/* =========================================
   COMMON UTILITIES
   ========================================= */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.section-intro h2 {
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 10px;
}

.section-intro p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* =========================================
   SECTION 1: BENEFITS (White)
   ========================================= */
.benefits-section {
    background: var(--white);
    padding: 80px 0;
    color: var(--dark-bg);
}

.benefits-section .section-intro p { color: var(--soft-purple); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px;
}

.feature-item {
    background: #f9f7ff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
}

.feature-item i { font-size: 2.5rem; color: var(--soft-purple); margin-bottom: 20px; }
.feature-item h4 { font-weight: 700; margin-bottom: 12px; }
.feature-item p { 
    font-size: 0.9rem; 
    color: #555; 
    line-height: 1.6; 
    font-family: 'Montserrat', sans-serif;
}

/* =========================================
   SECTION 2: PRICING (Dark)
   ========================================= */
.pricing-section {
    background-color: var(--dark-bg);
    padding: 100px 0;
    color: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.plan-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    position: relative;
    transition: 0.3s;
}

.plan-card:hover { transform: translateY(-10px); border-color: var(--brand-purple); }
.plan-card.featured { background: rgba(187, 134, 252, 0.06); border: 2px solid var(--brand-purple); }

.badge {
    position: absolute; top: 15px; right: 15px;
    background: var(--brand-purple); color: #000;
    padding: 4px 12px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
}

.price-wrapper { margin: 25px 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
.price-amount { font-size: 2.8rem; font-weight: 800; }
.price-currency { font-size: 1.2rem; vertical-align: super; }
.price-subtext { display: block; color: #aaa; font-size: 0.85rem; }

.plan-features { list-style: none; padding: 0; margin: 20px 0 30px; flex-grow: 1; }
.plan-features li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #ccc; }
.plan-features li i { color: var(--brand-purple); }

.subscribe-btn {
    background: transparent; border: 2px solid var(--brand-purple);
    color: #fff; padding: 14px 20px; border-radius: 12px;
    font-weight: 700; text-align: center; text-decoration: none; transition: 0.3s;
}

.plan-card:hover .subscribe-btn { background: var(--brand-purple); color: #000; }

.guarantee-box { text-align: center; margin-top: 50px; }
.guarantee-text { 
    color: #4ade80; font-weight: 600; font-family: 'Montserrat', sans-serif;
    display: inline-flex; align-items: center; gap: 10px;
}

/* =========================================
   SECTION 3: ABOUT (White)
   ========================================= */
.about-white-section {
    background: var(--white);
    color: var(--dark-bg);
    padding: 100px 0;
    text-align: center;
}

.about-container { max-width: 900px; margin: 0 auto; }
.about-white-section h2 { font-weight: 800; margin-bottom: 25px; text-transform: uppercase; }
.about-white-section p { font-size: 1.1rem; line-height: 1.8; color: #333; font-family: 'Montserrat', sans-serif; }
.highlight-text { color: var(--soft-purple); font-weight: 700; }

/* =========================================
   SECTION 4: HOW IT WORKS (Dark)
   ========================================= */
.how-it-works-section {
    background-color: var(--dark-bg);
    padding: 100px 0;
    color: #fff;
}

.how-it-works-section .section-intro h2 { color: #fff; }
.how-it-works-section .section-intro p { color: var(--brand-purple); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.step-card:hover { border-color: var(--brand-purple); transform: translateY(-5px); }

.step-number {
    position: absolute; top: 20px; right: 25px;
    font-size: 2.5rem; font-weight: 800; color: rgba(187, 134, 252, 0.05);
}

.step-card i { font-size: 2.5rem; color: var(--brand-purple); margin-bottom: 20px; }
.step-card h4 { font-size: 1.3rem; font-weight: 700; margin-bottom: 15px; }
.step-card p { 
    font-size: 0.9rem; 
    color: #ccc; 
    line-height: 1.6; 
    font-family: 'Montserrat', sans-serif;
    min-height: 3.2em;
}

/* =========================================
   SECTION 5: STATS BAR (White)
   ========================================= */
.stats-bar-section {
    background: var(--white);
    padding: 60px 0;
    border-top: 1px solid #f0f0f0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--soft-purple);
    line-height: 1;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: #888;
    margin-top: 8px;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .features-grid, .pricing-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
    .features-grid, .pricing-grid, .steps-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
}