/* SUPER STRIKING HIGH-CONVERTING CSS */
:root {
    --primary: #FF0062;
    /* Electric Bright Pink/Magenta */
    --primary-dark: #D40050;
    --secondary: #FFEA00;
    /* Neon Yellow/Gold */
    --secondary-hover: #EBC300;
    --bg-light: #FFFFFF;
    --bg-dark: #000B18;
    /* Near-black Deep Blue for crazy contrast */
    --bg-card: #0F1A2A;
    --text-main: #333333;
    --text-muted: #666666;
    --text-light: #F1F5F9;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Check */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    /* Extra bold */
    line-height: 1.2;
}

.text-center {
    text-align: center;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0px 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: bounceSlow 3s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

@keyframes bounceSlow {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Header Navbar - Dark & striking */
header {
    background: #000B18;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -1px;
}

.logo i {
    color: var(--primary);
}

nav a {
    text-decoration: none;
    color: #CBD5E1;
    font-weight: 600;
    margin: 0 15px;
    transition: color 0.3s;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover {
    color: var(--secondary);
}

.cta-nav {
    background: var(--secondary);
    color: #000;
    padding: 8px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(255, 234, 0, 0.4);
}

.cta-nav:hover {
    background: #FFF;
    transform: scale(1.05);
}

/* HERO SECTION - Very Dark with Neon Pink/Yellow contrast */
.hero {
    padding: 140px 0 80px;
    background: var(--bg-dark);
    /* Extremely dark */
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1.1;
}

.badge-discount {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(255, 0, 98, 0.5);
    border: 2px solid #FFA3C2;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
    color: #FFFFFF;
}

.hero-text h1 span {
    color: var(--secondary);
    text-shadow: 0 0 20px rgba(255, 234, 0, 0.3);
}

.hero-text .subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: #E2E8F0;
    margin-bottom: 15px;
}

.trust-indicators {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #94A3B8;
    font-weight: 600;
}

.trust-indicators i {
    color: var(--secondary);
}

.price-hero {
    display: inline-block;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.price-old {
    display: block;
    text-decoration: line-through;
    color: #F87171;
    font-size: 1.1rem;
    font-weight: 700;
}

.price-new {
    display: block;
    color: var(--secondary);
    font-size: 2.8rem;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255, 234, 0, 0.3);
    margin-top: 5px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #00D06C;
    /* Bright Convert Green */
    color: #FFF;
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 208, 108, 0.4);
    border: 3px solid #73FFB9;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 208, 108, 0.6);
    background: #00E978;
}

.btn-massive {
    width: 100%;
    padding: 22px 30px;
    font-size: 1.3rem;
}

.guarantee {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #94A3B8;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.guarantee i {
    color: var(--primary);
    margin-right: 5px;
    font-size: 1.2rem;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    flex: 1;
    position: relative;
    z-index: 2;
    text-align: right;
}

.hero-img-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: var(--primary);
    filter: blur(80px);
    opacity: 0.5;
    z-index: 1;
}

.hero-img {
    max-width: 100%;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    border: 5px solid #FFF;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.discount-sticker {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--secondary);
    color: #000;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.8rem;
    transform: rotate(15deg);
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border: 3px solid #FFF;
}

/* Split Showcase */
.split-showcase {
    background: #F8FAFC;
    padding: 100px 0;
}

.step-tag {
    display: inline-block;
    background: #000B18;
    color: var(--secondary);
    padding: 5px 15px;
    font-size: 0.9rem;
    font-weight: 800;
    border-radius: 5px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.showcase-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 60px;
}

.showcase-item.reverse {
    flex-direction: row-reverse;
}

.showcase-img-box {
    flex: 1;
    position: relative;
}

.showcase-img-box img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid #E2E8F0;
}

.showcase-text {
    flex: 1;
}

.showcase-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0F172A;
    line-height: 1.2;
}

.showcase-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

.check-list {
    list-style: none;
}

.check-list li {
    font-size: 1.1rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-list li i {
    background: var(--primary);
    color: #FFF;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

/* Banner Info */
.info-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 50px 0;
    color: #FFF;
    border-top: 5px solid var(--secondary);
    border-bottom: 5px solid var(--secondary);
}

.banner-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.banner-text h2 {
    color: #FFF;
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.banner-text p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.banner-icon {
    font-size: 6rem;
    color: var(--secondary);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #FFF;
}

.badge-red {
    display: inline-block;
    background: #EF4444;
    color: #FFF;
    padding: 5px 15px;
    font-weight: 800;
    border-radius: 5px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.testimonials .section-header {
    margin-bottom: 60px;
}

.testimonials .section-header h2 {
    font-size: 2.8rem;
    color: #0F172A;
}

.testimonials-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-img-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s;
    border: 2px solid #F1F5F9;
}

.testimonial-img-wrapper:hover {
    transform: scale(1.03);
    border-color: var(--primary);
}

.testimonial-img-wrapper img {
    width: 100%;
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.cta-box {
    background: #0F1A2A;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary);
    position: relative;
}

.glow-text {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: #FFF;
    text-transform: uppercase;
}

.cta-content p {
    font-size: 1.25rem;
    color: #CBD5E1;
    margin-bottom: 30px;
    font-weight: 500;
}

.price-box-giant {
    background: #000B18;
    display: inline-block;
    padding: 30px 60px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 2px dashed rgba(255, 234, 0, 0.5);
    box-shadow: 0 0 40px rgba(255, 0, 98, 0.2);
}

.price-box-giant .prev-price {
    text-decoration: line-through;
    color: #EF4444;
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-weight: 800;
}

.price-box-giant .current-price {
    font-size: 1.5rem;
    color: #FFF;
    margin-bottom: 0;
    font-weight: 800;
}

.price-box-giant .current-price strong {
    display: block;
    font-size: 4.5rem;
    color: var(--secondary);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 234, 0, 0.4);
    margin-top: 5px;
}

.hurry-text {
    font-size: 1.2rem !important;
    color: var(--secondary) !important;
    font-weight: 800 !important;
    margin-bottom: 40px !important;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    color: #94A3B8;
    font-weight: 600;
}

.mt-4 {
    margin-top: 30px;
}

/* Footer */
footer {
    background: #000000;
    padding: 40px 0;
    color: #64748B;
    font-size: 0.9rem;
}

.footer-disclaimer {
    font-size: 0.8rem;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #1E293B;
}

/* Animations & Utilities */
.animate-pulse {
    animation: pulseBtnGreen 2s infinite;
}

@keyframes pulseBtnGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 208, 108, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 208, 108, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 208, 108, 0);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-image-wrapper {
        margin-top: 40px;
        text-align: center;
    }

    .guarantee {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .trust-indicators {
        justify-content: center;
    }

    .showcase-item,
    .showcase-item.reverse {
        flex-direction: column;
        text-align: center;
    }

    .banner-flex {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .price-box-giant .current-price strong {
        font-size: 3.5rem;
    }

    .testimonials .section-header h2 {
        font-size: 2.2rem;
    }

    .showcase-text h2 {
        font-size: 2rem;
    }

    .btn-massive {
        font-size: 1.1rem;
        padding: 20px 10px;
    }
}