/* ==========================================================================
   MOSQINUX KILLAMP LANDING PAGE STYLING - DEFINITIVE STYLESHEET (2026)
   Theme Color: rgb(163, 96, 216) / #a360d8
   ========================================================================== */

/* --- 1. RESET & BASE SETTINGS --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333333;
    background-color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
}

body {
    overflow-x: hidden;
}

/* --- 2. LAYOUT UTILITIES --- */
.section-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* --- 3. TYPOGRAPHY & HEADINGS --- */
h1, h2, h3, h4 {
    color: rgb(163, 96, 216); /* Updated Main Theme Color */
    font-weight: 700;
    line-height: 1.3;
}

.section-main-heading {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.section-main-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: rgb(163, 96, 216); /* Updated */
    border-radius: 2px;
}

/* --- 4. BUTTONS & ACTIONS --- */
.cta-button {
    display: inline-block;
    background-color: #ff9f43; /* Keeping CTA orange for high conversion contrast */
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 159, 67, 0.4);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    background-color: #f39c12;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 159, 67, 0.6);
}

.cta-button:active {
    transform: translateY(1px);
}

/* Pulse Animation for Banners */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite ease-in-out;
}

/* --- 5. HEADER & NAVIGATION --- */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.logo h2 {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    color: rgb(163, 96, 216); /* Updated */
}

.logo span {
    font-size: 1.3rem;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #555555;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: rgb(163, 96, 216); /* Updated */
}

.order-button {
    background-color: rgb(163, 96, 216); /* Updated */
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}

.order-button:hover {
    background-color: rgb(139, 81, 185); /* Slightly darker shade for hover */
}

.mobile-menu-icon {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: rgb(163, 96, 216); /* Updated */
    cursor: pointer;
}

/* Mobile Sidebar Drawer */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background-color: #ffffff;
    z-index: 2000;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 30px 20px;
}

.mobile-sidebar.open {
    right: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: rgb(163, 96, 216); /* Updated */
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.sidebar-nav a {
    text-decoration: none;
    color: #333333;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid #eeeeee;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1500;
    display: none;
}

.sidebar-overlay.show {
    display: block;
}

/* --- 6. HERO SECTION --- */
.hero-section {
    background-color: #fdfbf7;
    padding: 60px 0;
}

.hero-container-box {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 50px;
    align-items: center;
}

.product-image {
    flex: 1;
    text-align: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(163, 96, 216, 0.15); /* Updated soft shadow */
}

.product-info {
    flex: 1;
}

.badge-top {
    display: inline-block;
    background-color: rgba(163, 96, 216, 0.1); /* Updated */
    color: rgb(163, 96, 216); /* Updated */
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.product-title {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: rgb(163, 96, 216);
}

.product-description {
    font-size: 1.05rem;
    color: #555555;
    margin-bottom: 25px;
}

/* --- HERO SECTION BENEFITS LIST (SIMPLE) --- */
.benefits-lists {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.benefits-lists li {
    margin-bottom: 12px;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #4a5568;
    line-height: 1.5;
}

.benefits-lists li span {
    color: rgb(163, 96, 216); /* Updated to match theme instead of green */
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: -2px;
}

.benefits-lists li strong {
    color: #1a202c; 
}

.hero-cta-box {
    text-align: left;
}

.cta-subtext {
    font-size: 0.85rem;
    color: #777777;
    margin-top: 8px;
    padding-left: 15px;
}

/* --- 7. DISCOUNT BANNER --- */
.discount-banner {
    background-color: rgb(163, 96, 216); /* Updated Main Theme Color */
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

.banner-title {
    color: #ffe045;
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.banner-p1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.banner-price {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.highlight-price {
    color: #ffe045;
    font-size: 1.8rem;
    font-weight: 800;
}

.banner-p2 {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* --- 8. WHY CHOOSE SECTION --- */
.benefits-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.benefits-intro {
    text-align: center;
    max-width: 800px;
    margin: -10px auto 45px auto;
    font-size: 1.1rem;
    color: #666666;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 20px;
    background-color: #fbf9fb;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid rgb(163, 96, 216); /* Updated */
}

.checkmark-icon {
    font-size: 2rem;
    line-height: 1;
}

.benefit-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: rgb(163, 96, 216);
}

.benefit-desc {
    color: #555555;
    font-size: 0.95rem;
}

/* --- 9. SCIENCE SECTION --- */
.science-section {
    background-color: #f9f9f9;
    padding: 70px 0;
}

.science-intro {
    text-align: center;
    max-width: 800px;
    margin: -10px auto 50px auto;
    font-size: 1.1rem;
    color: #555555;
}

.science-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.science-card {
    background-color: #ffffff;
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.science-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    border: 3px solid rgb(163, 96, 216); /* Added colored border to image */
}

.science-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: rgb(163, 96, 216);
}

.science-card p {
    font-size: 0.95rem;
    color: #666666;
}

/* --- 10. HOW IT WORKS SECTION --- */
.how-it-works {
    padding: 70px 0;
    background-color: #ffffff;
}

.how-it-works-intro {
    text-align: center;
    max-width: 700px;
    margin: -10px auto 45px auto;
    color: #666666;
    font-size: 1.1rem;
}

.how-it-works-steps {
    display: flex;
    gap: 30px;
    margin-bottom: 45px;
}

.how-it-works-step {
    flex: 1;
    background-color: #fdfbf7;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.step-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 20px;
}

.step-title {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: rgb(163, 96, 216); /* Updated */
    margin-bottom: 10px;
}

.step-description {
    font-size: 0.95rem;
    color: #555555;
}

.cta-section-center {
    text-align: center;
}

/* --- 11. REVIEWS SECTION --- */
.customer-reviews {
    background-color: #fcf8fc;
    padding: 70px 0;
}

.reviews-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(163, 96, 216, 0.08); /* Updated soft colored shadow */
    position: relative;
    border-top: 3px solid rgb(163, 96, 216); /* Added top border for style */
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgb(163, 96, 216); /* Updated to theme color */
    font-weight: 700;
    margin-bottom: 15px;
}

.avatar-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    color: #333333;
}

.rating {
    color: #f1c40f;
    font-size: 1.1rem;
    margin: 3px 0 12px 0;
}

.review-text {
    font-size: 0.95rem;
    color: #555555;
    font-style: italic;
    line-height: 1.5;
}

/* --- 12. SUCCESS STORY SECTION --- */
.success-story-section {
    background-color: rgb(163, 96, 216); /* Updated */
    color: white;
    padding: 65px 20px;
}

.success-title {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 15px;
}

.success-desc {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* --- 13. FAQ SECTION --- */
.faq-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.faq-heading {
    margin-bottom: 45px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-answer-block {
    background-color: #fdfdfd;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #eaeaea;
    border-left: 3px solid rgb(163, 96, 216); /* Added side border */
}

.faq-answer-block h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: rgb(163, 96, 216); /* Updated */
}

.faq-answer-block p {
    font-size: 0.95rem;
    color: #555555;
}

/* --- 14. TRUST & GUARANTEE --- */
.trust-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.trust-heading {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 30px;
}

.guarantee-content {
    background-color: rgb(163, 96, 216); /* Updated */
    color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(163, 96, 216, 0.3); /* Updated shadow */
}

.guarantee-content h3 {
    color: #ffe045;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.guarantee-content p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* --- 15. FOOTER SECTION --- */
.footer-section {
    background-color: #1a1a1a; /* Changed to dark grey/black for contrast */
    color: #bfaec2;
    padding: 60px 0 30px 0;
    font-size: 0.85rem;
}

.footer-disclaimer {
    border-bottom: 1px solid #333333;
    padding-bottom: 30px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.footer-disclaimer p {
    margin-bottom: 15px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: rgb(163, 96, 216); /* Updated */
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copy {
    opacity: 0.8;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (RESPONSIVE BREAKPOINTS)
   ========================================================================== */

@media (max-width: 992px) {
    .hero-container-box {
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }
    .hero-cta-box {
        text-align: center;
    }
    .science-grid, .how-it-works-steps {
        flex-direction: column;
        align-items: center;
    }
    .science-card, .how-it-works-step {
        width: 100%;
        max-width: 500px;
    }
    .reviews-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html { font-size: 15px; }
    .nav-links, .newHeadBox {
        display: none;
    }
    .mobile-menu-icon {
        display: block;
    }
    .product-title {
        font-size: 1.85rem;
    }
    .banner-p1 {
        font-size: 1.45rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cta-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1.1rem;
    }
    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}