.elementor-22 .elementor-element.elementor-element-fc423ea > .elementor-container{max-width:1200px;}.elementor-22 .elementor-element.elementor-element-202081f > .elementor-container{max-width:1200px;}.elementor-22 .elementor-element.elementor-element-27329ae > .elementor-container{max-width:1200px;}.elementor-22 .elementor-element.elementor-element-e248f71 > .elementor-container{max-width:1200px;}/* Start custom CSS for html, class: .elementor-element-00b40be *//* --- Page Hero - Ultra Modern Style --- */

.page-hero {
    position: relative;
    padding: 150px 20px; /* Thoda zyada padding taake hero "breathe" kar sake */
    text-align: center;
    background: radial-gradient(circle at center, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

/* Background Animated Glows (Moving) */
.page-hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 650px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.1) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    filter: blur(100px);
    animation: floatingGlow 10s ease-in-out infinite alternate;
}

.page-hero h1 {
    font-size: clamp(3rem, 8vw, 5rem); /* Responsive size jo mobile par khud chota ho jaye */
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -2px; /* Professional tight letter spacing */
    line-height: 1;
    
    /* Premium Animated Gradient */
    background: linear-gradient(135deg, #00c853 0%, #009624 25%, #1a1a1a 50%, #009624 75%, #00c853 100%);
    background-size: 400% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s linear infinite;
    
    position: relative;
    z-index: 2;
}

.page-hero p {
    font-size: 1.25rem;
    color: #475569; /* Slate grey for modern look */
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.5s; /* Smooth entry for description */
}

/* --- KEYFRAMES FOR ANIMATIONS --- */

/* Gradient Shine Effect */
@keyframes shine {
    to {
        background-position: 400% center;
    }
}

/* Background Glow Movement */
@keyframes floatingGlow {
    from { transform: translate(0, 0); }
    to { transform: translate(50px, 100px); }
}

/* Smooth Fade In for Paragraph */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Fix */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 20px;
    }
    .page-hero h1 {
        letter-spacing: -1px;
    }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-fc423ea */.page-hero {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1) 0%, rgba(0, 150, 36, 0.05) 50%, rgba(0, 200, 83, 0.1) 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 200, 83, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 150, 36, 0.08) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b3c43a0 *//* --- High-End Responsive Pricing --- */
.pricing-comparison {
    padding: clamp(60px, 10vw, 120px) 20px;
    background: #020617; /* Ensure background is dark */
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Background Glow */
.pricing-comparison::before {
    content: "";
    position: absolute;
    width: clamp(300px, 50vw, 600px);
    height: clamp(300px, 50vw, 600px);
    background: radial-gradient(circle, rgba(0, 200, 83, 0.15), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.pricing-header {
    text-align: center;
    margin-bottom: clamp(40px, 8vw, 80px);
    z-index: 2;
}

.pricing-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(to bottom, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-header span { color: #00c853; -webkit-text-fill-color: initial; }

/* Grid System */
.comparison-grid {
    display: grid;
    /* Mobile standard: 1 col | Tablet/PC: 2 cols */
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: clamp(20px, 4vw, 40px);
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

/* Card Styling */
.card {
    background: rgba(255, 255, 255, 0.03);
    padding: clamp(30px, 5vw, 50px) clamp(20px, 4vw, 40px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    position: relative;
    transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card h3 { 
    font-size: 1.8rem; 
    margin-bottom: 20px; 
    font-family: 'Oswald', sans-serif;
}

/* Problem Card - Subtle Look */
.problem-card {
    opacity: 0.6;
    transform: scale(0.95);
}
.problem-card:hover { opacity: 1; transform: scale(0.98); }

.card-status {
    font-size: 12px;
    color: #f43f5e;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Solution Card - Standout Look */
.solution-card {
    background: rgba(0, 200, 83, 0.04);
    border: 1px solid rgba(0, 200, 83, 0.4);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
    z-index: 5;
}

/* Spotlight Effect */
.spotlight {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(0, 200, 83, 0.15) 0%, transparent 60%);
    pointer-events: none;
    border-radius: 32px;
}

.plan-badge {
    background: #00c853;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 15px;
}

/* Lists */
.comparison-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #cbd5e1;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.cross { color: #f43f5e; }
.check { color: #00c853; }

/* Profit Tag */
.profit-tag {
    background: rgba(0, 200, 83, 0.1);
    border-left: 4px solid #00c853;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    color: #00c853;
    margin-bottom: 30px;
}

/* Button */
.btn-start {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #00c853, #009624);
    color: #fff;
    text-decoration: none;
    padding: 18px;
    border-radius: 16px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-start:hover {
    filter: brightness(1.1);
    gap: 15px;
}

/* Tablet & Mobile Tweaks */
@media (max-width: 1024px) {
    .problem-card { transform: scale(1); opacity: 0.8; }
    .solution-card { transform: scale(1); }
}

@media (max-width: 480px) {
    .card { padding: 30px 20px; }
    .pricing-header h2 { font-size: 2.2rem; }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-202081f */.who-sectio {
    background: linear-gradient(135deg, #020617, #0f172a);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a180928 *//* --- Light Background Income System --- */
.income-system-light {
    padding: clamp(60px, 10vw, 120px) 20px; /* Very light subtle gray */
    color: #1e293b;
    text-align: center;
}

.system-header {
    margin-bottom: 50px;
}

.system-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #0f172a;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.header-line {
    width: 60px;
    height: 4px;
    background: #00c853;
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* Formula Styling */
.formula-wrapper {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.formula-box-light {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.f-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.f-title {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 800;
    color: #334155;
}

.f-sub {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    margin-top: 5px;
}

.profit-card .f-title {
    color: #00c853;
}

.f-operator {
    font-size: 20px;
    color: #cbd5e1;
    padding: 0 20px;
}

.f-operator.highlight {
    color: #00c853;
}

.formula-note {
    margin-top: 25px;
    color: #64748b;
    font-size: 1.1rem;
}

/* Operations Grid */
.ops-container-light {
    background: #ffffff;
    padding: clamp(40px, 8vw, 70px);
    border-radius: 40px;
    max-width: 1150px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
}

.ops-container-light h3 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #0f172a;
    margin-bottom: 15px;
}

.ops-subtitle {
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 50px;
}

.ops-grid-light {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.ops-item-light {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    text-align: left;
}

.ops-item-light:hover {
    background: #ffffff;
    border-color: #00c853;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 200, 83, 0.08);
}

.icon-box {
    width: 45px;
    height: 45px;
    background: rgba(0, 200, 83, 0.1);
    color: #00c853;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
    flex-shrink: 0;
}

.ops-item-light span {
    font-weight: 600;
    color: #334155;
    font-size: 0.95rem;
}

/* --- Responsive Layout --- */
@media (max-width: 850px) {
    .formula-box-light {
        flex-direction: column;
        gap: 20px;
    }
    .f-operator {
        transform: rotate(90deg);
        padding: 10px 0;
    }
}

@media (max-width: 600px) {
    .ops-grid-light {
        grid-template-columns: 1fr;
    }
    .ops-item-light {
        justify-content: flex-start;
    }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-27329ae */.ss-grow {
     background: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 50%, #f8f9fa 100%);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0f0e48b *//* --- Audience & Risk-Free Section --- */
.audience-section {
    padding: clamp(60px, 10vw, 120px) 20px;
    color: #1e293b;
    text-align: center;
}

.audience-header {
    margin-bottom: 50px;
}

.audience-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 10px;
    color: #0f172a;
}

/* Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.audience-card {
    background: #f8fafc;
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.audience-card:hover {
    background: #ffffff;
    border-color: #00c853;
    box-shadow: 0 15px 30px rgba(0, 200, 83, 0.08);
    transform: translateY(-5px);
}

.audience-card i {
    font-size: 32px;
    color: #00c853;
}

.audience-card span {
    font-weight: 600;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.4;
}

/* Risk Free Box */
.risk-free-box {
    background: #0f172a;
    color: #fff;
    padding: clamp(40px, 6vw, 60px);
    border-radius: 40px;
    max-width: 1000px;
    margin: 0 auto 100px;
    position: relative;
    overflow: hidden;
}

.risk-free-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.risk-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.risk-tags span {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.risk-tags i { color: #f43f5e; }

.potential-badge {
    color: #00c853;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Final CTA Card */
.final-intake {
    max-width: 800px;
    margin: 0 auto;
}

.intake-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    border: 2px dashed #00c853;
    padding: 50px 40px;
    border-radius: 30px;
}

.limit-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #f43f5e;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #f43f5e;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.main-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #00c853;
    color: #fff;
    padding: 20px 40px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    margin: 30px 0 15px;
    transition: 0.3s;
}

.main-cta-btn:hover {
    background: #009624;
    transform: scale(1.05);
}

.sub-text {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
}

/* Responsive */
@media (max-width: 600px) {
    .audience-grid { grid-template-columns: 1fr; }
    .risk-tags { flex-direction: column; align-items: center; }
    .intake-card { padding: 40px 20px; }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-e248f71 */.ss-grow {
     background: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 50%, #f8f9fa 100%);
}/* End custom CSS */