:root {
    --primary: #FF6B00;
    --primary-dark: #cc5600;
    --secondary: #2D5A27;
    --accent: #FFD700;
    --text-dark: #1A1A1A;
    --text-light: #4A4A4A;
    --white: #FFFFFF;
    --bg-light: #FDFDFD;
    --bg-accent: #FFF5EE;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), #FF2E00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

/* Helper Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #FF4D00);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
}

/* Header / Sticky Bar */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Hero Section */
.hero {
    padding: 60px 0 100px;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('HXsvsj9TK7fHa9SM3ToRQ (1)-min.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.2));
    animation: float 6s ease-in-out infinite;
}

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

/* Problem Section */
.problem-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('mgGm5OZ2YV6Ptpm1IPOgV (1)-min.png');
    background-size: cover;
    background-position: center;
    color: white;
}

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Benefits */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

/* Modules / Content */
.content-list {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: left;
}

.content-item {
    background: white;
    margin-bottom: 15px;
    padding: 20px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border-left: 5px solid var(--primary);
}

.content-item span {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    background-color: #f8f9fa;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-img:hover {
    transform: scale(1.02);
}

/* Bonuses */
.bonuses {
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-accent) 100%);
}

.bonus-box {
    background: white;
    border: 2px dashed var(--primary);
    padding: 30px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.bonus-badge {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 0 0 15px 15px;
    position: absolute;
    top: 0;
    right: 20px;
    font-weight: 900;
}

/* Pricing */
.pricing {
    background: #111;
    color: white;
    text-align: center;
}

.price-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 30px;
    border: 2px solid var(--primary);
    max-width: 600px;
    margin: 40px auto;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.5rem;
}

.new-price {
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.new-price span {
    font-size: 2rem;
}

/* Guarantee */
.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.guarantee i {
    font-size: 3rem;
    color: var(--accent);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.faq-question {
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding-top: 15px;
    color: var(--text-light);
    display: none;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .pricing .new-price {
        font-size: 4rem;
    }
}

@media (max-width: 600px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .btn {
        width: 100%;
        padding: 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Notification Popup */
.notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2000;
    transform: translateY(150%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification.active {
    transform: translateY(0);
}

.notification img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.notification-text {
    font-size: 0.85rem;
    line-height: 1.2;
}

.notification-text b {
    color: var(--primary);
    display: block;
}
