:root {
    --bg-dark: #0a0a0c;
    --bg-card: #15151a;
    --primary-green: #4ade80;
    --primary-green-hover: #22c55e;
    --accent-orange: #f59e0b;
    --accent-red: #ef4444;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --font-heading: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

.highlight-orange { color: var(--accent-orange); }
.text-green { color: var(--primary-green); }
.text-orange { color: var(--accent-orange); }
.bg-red { background-color: var(--accent-red); }
.bg-green { background-color: var(--primary-green); }

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--primary-green);
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.4);
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--primary-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.6);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Typography elements */
h1 { font-size: 3rem; font-weight: 900; line-height: 1.1; margin-bottom: 5px; color: var(--accent-orange); }
h2 { font-size: 2rem; font-weight: 800; margin-bottom: 15px; }

/* Hero */
.hero {
    padding: 80px 0;
    position: relative;
    background: radial-gradient(circle at top right, rgba(74, 222, 128, 0.1), transparent 50%);
}
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.hero-content {
    flex: 1;
}
.badgetxt {
    font-style: italic;
    color: #ccc;
    font-weight: 600;
    letter-spacing: 1px;
}
.hero-price {
    font-size: 1.2rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 30px;
}
.hero-image {
    flex: 1;
    text-align: center;
    perspective: 1000px;
}
.hero-image img {
    max-width: 100%;
    width: 450px;
    border-radius: 20px;
    box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(74, 222, 128, 0.3);
    transform: rotateY(-15deg) rotateX(10deg);
    transition: transform 0.5s ease;
}
.hero-image img:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

/* Comparison */
.comparison {
    padding: 60px 0;
}
.comparison-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}
.card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    flex: 1;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}
.card-red { border-top: 4px solid var(--accent-red); }
.card-green { border-top: 4px solid var(--primary-green); }
.icon-bubble {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -20px;
    left: 40px;
    color: white;
}
.card h3 {
    margin-top: 10px;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Features */
.features { padding: 40px 0; }
.feature-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.feature-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
    flex: 1;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature-card .feat-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.feature-card .feat-icon {
    width: 80px;
    height: 80px;
    color: var(--accent-orange);
    margin: 20px 0;
}
.feature-card p {
    font-weight: 600;
}

/* Banner */
.banner { padding: 30px 0; }
.banner-box {
    background: linear-gradient(90deg, #1a1a1a, #2a2a2a);
    border-left: 4px solid var(--primary-green);
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    font-style: italic;
    font-size: 1.1rem;
}

/* Essential Section */
.essential { padding: 80px 0; }
.essential-container {
    display: flex;
    align-items: center;
    gap: 50px;
}
.essential-image-wrapper {
    flex: 1;
    position: relative;
}
.glow-bg {
    position: absolute;
    width: 80%;
    height: 80%;
    background: var(--primary-green);
    filter: blur(100px);
    opacity: 0.15;
    top: 10%;
    left: 10%;
    z-index: -1;
}
.essential-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.essential-content {
    flex: 1;
}
.benefit-list {
    list-style: none;
    margin: 20px 0;
}
.benefit-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}
.essential-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 15px;
}
.essential-price {
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 30px;
}

/* Testimonials */
.testimonials {
    background: #111;
    padding: 80px 0;
    text-align: center;
}
.testimonials h2 { margin-bottom: 40px; }
.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}
.testimonial-card {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    max-width: 400px;
}
.testimonial-card .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.center-btn { text-align: center; }

/* Pricing */
.pricing {
    padding: 80px 0;
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.05), var(--bg-dark));
}
.pricing-card {
    background: var(--bg-card);
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(74, 222, 128, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.price {
    font-size: 5rem;
    font-weight: 900;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 30px;
}
.badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}
.badges span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.guarantees {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
    font-weight: 600;
}
.guarantees p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.old-price {
    text-decoration: line-through;
    color: var(--accent-red);
    margin-right: 5px;
}
.time-limit {
    color: var(--accent-red);
    font-weight: bold;
    margin-top: -20px;
    margin-bottom: 25px;
    font-size: 0.95rem;
}
.old-price-big {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: -15px;
    font-weight: 600;
}
.old-price-big s {
    color: var(--accent-red);
}
.social-proof {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.social-proof i { width: 18px; color: var(--accent-orange); }
.social-proof-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 15px 0 25px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.social-proof-center i { width: 18px; }

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container, .essential-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content h1 { font-size: 2.5rem; }
    .comparison-grid, .feature-grid {
        flex-direction: column;
    }
    .testimonial-grid {
        flex-direction: column;
        align-items: center;
    }
    .benefit-list li {
        text-align: left;
    }
    .social-proof { justify-content: center; text-align: center; flex-wrap: wrap; }
}
@media (max-width: 500px) {
    .price { font-size: 3.2rem; }
    .badges, .guarantees { flex-direction: column; gap: 10px; align-items: center; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    .cta-button { padding: 14px 20px; font-size: 1rem; width: 100%; white-space: normal; }
    .hero-image img { transform: none; box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3); }
    .card { padding: 30px 20px; }
    .pricing-card { padding: 30px 20px; }
    .icon-bubble { left: 20px; }
    .social-proof, .social-proof-center { font-size: 0.88rem; gap: 6px; flex-wrap: wrap; text-align: center; justify-content: center; }
}
