:root {
    --bg-dark: #0B0F19;
    --bg-card: rgba(30, 41, 59, 0.5);
    --primary-green: #00FF66;
    --primary-green-dim: rgba(0, 255, 102, 0.2);
    --primary-blue: #38b6ff;
    --text-main: #E2E8F0;
    --text-muted: #94A3B8;
    --white: #FFFFFF;
}

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

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

/* Background Glows & Grid */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
    pointer-events: none;
}

/* Background Glows */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-green-dim) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
}

.top-glow {
    top: -200px;
    left: -200px;
}

.bottom-glow {
    bottom: 20%;
    right: -200px;
    background: radial-gradient(circle, rgba(56, 182, 255, 0.15) 0%, transparent 70%);
}

/* Typography */
h1, h2, h3 {
    color: var(--white);
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(to right, #00FF66, #00CC52);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 40px; /* Offset for top bar */
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary-green);
}

/* Buttons */
.btn-outline {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-green-dim);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-green);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--primary-green-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 255, 102, 0.4);
}

.btn-buy {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-green);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.btn-buy:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px var(--primary-green-dim);
}

.btn-crypto {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #FCD535;
    background: rgba(30, 41, 59, 0.8);
    border: 2px solid #FCD535;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-crypto:hover {
    background: rgba(252, 213, 53, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(252, 213, 53, 0.2);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 5%;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(56, 182, 255, 0.1);
    color: var(--primary-blue);
    border: 1px solid rgba(56, 182, 255, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #FFFFFF, #B0BEC5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero p strong {
    color: var(--white);
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Glass Cards */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 102, 0.3);
}

/* Benefits Section */
.benefits {
    padding: 3rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits h2, .social-proof h2, .faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card .icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 102, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Certificates */
.certificates {
    padding: 3rem 5%;
    text-align: center;
}

.certificates h2 {
    margin-bottom: 1.5rem;
}

.certificates-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 3rem;
}

.cert-img {
    width: 280px;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: rgba(30, 41, 59, 0.5);
    padding: 0.5rem;
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 102, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.cert-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 102, 0.4);
    z-index: 10;
    position: relative;
}

/* Social Proof */
.social-proof {
    padding: 3rem 5%;
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.subtitle {
    color: var(--text-muted);
    margin-bottom: 3rem;
    margin-top: -2rem;
}

.testimonials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.stars {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.author {
    font-weight: 600;
    color: var(--primary-blue);
}

/* Who Is It For Section */
.who-is-it-for {
    padding: 3rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.who-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.for-you h3 {
    color: var(--primary-green);
}

.not-for-you h3 {
    color: #FF3B30;
}

.who-card ul {
    list-style: none;
}

.who-card ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-main);
    font-size: 1.05rem;
}

.for-you ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 800;
}

.not-for-you ul li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #FF3B30;
    font-weight: 800;
}

/* Pricing Section */
.pricing {
    padding: 4rem 5%;
    display: flex;
    justify-content: center;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 0 rgba(0, 255, 102, 0.4); }
    70% { box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 15px rgba(0, 255, 102, 0); }
    100% { box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 0 rgba(0, 255, 102, 0); }
}

.pricing-card {
    background: linear-gradient(145deg, rgba(30,41,59,0.8) 0%, rgba(15,23,42,0.9) 100%);
    border: 1px solid rgba(0,255,102,0.4);
    border-radius: 24px;
    padding: 3rem;
    max-width: 450px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    text-align: center;
    animation: pulse-glow 3s infinite;
}

.discount-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF3B30;
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.price-container {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.old-price {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.new-price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

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

.pricing-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
}
.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    min-width: 85px;
}
.time-block span {
    font-size: 2.2rem;
    font-weight: 800;
    color: #FF3B30;
    line-height: 1;
}
.time-block small {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 0.4rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-extend {
    display: block;
    margin: -1rem auto 2rem auto;
    padding: 0.6rem 1.5rem;
    background: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-extend:hover {
    background: rgba(56, 182, 255, 0.1);
    transform: translateY(-2px);
}

.hidden {
    display: none !important;
}

.secure-payment {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq {
    padding: 3rem 5%;
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: rgba(30,41,59,0.3);
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background: rgba(30,41,59,0.6);
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(15,23,42,0.4);
}

.accordion-content p {
    padding: 1.5rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 4rem;
}

.social-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-blue);
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-wa:hover {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries */
@media (max-width: 768px) {
    .hero {
        padding-top: 6rem;
    }
    .pricing-card {
        padding: 2rem;
    }
    .new-price {
        font-size: 3.5rem;
    }
}

/* Mockup */
.hero-mockup {
    margin-top: 4rem;
    animation: floating 5s ease-in-out infinite;
    display: flex;
    justify-content: center;
}

.mockup-img {
    max-width: 100%;
    width: 700px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 255, 102, 0.15);
    border: 1px solid rgba(255,255,255,0.05);
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Sales Popup Styles */
.sales-popup {
    position: fixed;
    bottom: 30px;
    left: -400px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 102, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 999;
    transition: left 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 320px;
}

.sales-popup.show {
    left: 30px;
}

.popup-img {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(0, 255, 102, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-text p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.3;
    color: var(--text-main);
}

.popup-text .popup-desc {
    color: var(--primary-green);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 3px;
}

.popup-text small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Exit Intent Popup */
.exit-popup-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.exit-popup-overlay.show-exit {
    opacity: 1;
    pointer-events: all;
}

.exit-popup-content {
    background: linear-gradient(145deg, rgba(30,41,59,0.95) 0%, rgba(15,23,42,1) 100%);
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    padding: 3rem;
    max-width: 650px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 255, 102, 0.2);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.exit-popup-overlay.show-exit .exit-popup-content {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #FF3B30;
}

.exit-popup-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

.exit-popup-content p {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.exit-price {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.exit-price .old-price {
    font-size: 1.8rem;
    color: #FF3B30;
    text-decoration: line-through;
}

.exit-price .new-price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}
.exit-price .new-price span {
    font-size: 1.5rem;
}

.no-thanks {
    margin-top: 1.5rem !important;
}

.no-thanks a {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.no-thanks a:hover {
    color: var(--white);
}

/* Custom Elements Added */
.top-offer-bar {
    background: linear-gradient(90deg, #FF9500, #FF2D55);
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.top-offer-bar a {
    color: white;
    text-decoration: underline;
    font-weight: 800;
    margin-left: 5px;
}

body {
    padding-top: 40px; /* Offset for top bar */
}

.floating-buy-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    left: auto;
    transform: none;
    background: linear-gradient(90deg, #FF3B30, #FF9500);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(255, 59, 48, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-buy-red 1.5s infinite;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.floating-buy-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 59, 48, 0.7);
}

@keyframes pulse-buy-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.8);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 59, 48, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
    }
}

/* Rating Widget */
.rating-widget {
    max-width: 650px;
    margin: 0 auto 3rem auto;
    text-align: center;
    padding: 2rem;
}

.rating-info {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-right: 15px;
    vertical-align: middle;
}

.rating-stars-static {
    font-size: 2.2rem;
    color: #FFD700;
    letter-spacing: 3px;
    vertical-align: middle;
}

.rating-count {
    display: block;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 10px;
}

.rating-interactive p {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: 600;
}

.interactive-stars {
    font-size: 2.8rem;
    color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: inline-flex;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 10px;
}

.interactive-stars span {
    transition: color 0.2s ease, transform 0.2s ease;
}

.interactive-stars span:hover,
.interactive-stars span.hovered,
.interactive-stars span.selected {
    color: #FFD700;
    transform: scale(1.1);
}

.rating-feedback {
    color: var(--primary-green) !important;
    font-weight: 800;
    margin-top: 10px;
    animation: fadeInUp 0.5s ease;
}
