@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --wll-primary: #334155;
    --wll-secondary: #1e293b;
    --wll-accent: #22d3ee;
    --wll-background: #f8fafc;
    --wll-text: #0f172a;
    --wll-muted: #cbd5e1;
    --wll-white: #ffffff;
    --wll-dark: #0f172a;
    --wll-border-radius: 8px;
    --wll-transition-speed: 0.3s ease;
}

/* Base Reset & Globals */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--wll-text);
    background-color: var(--wll-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--wll-accent);
    color: var(--wll-dark);
}

a {
    color: var(--wll-primary);
    text-decoration: none;
    transition: color var(--wll-transition-speed);
}

a:hover {
    color: var(--wll-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--wll-dark);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 700;
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h3 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

h4 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 600;
}

h5 {
    font-size: clamp(1.25rem, 2.2vw, 1.6rem);
    font-weight: 600;
}

h6 {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 600;
    color: var(--wll-primary);
}

p {
    margin-bottom: 1em;
}

/* Utility Classes */
.mx-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

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

.mx-flex {
    display: flex;
    gap: 1rem;
    align-items: center;
}

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

.mx-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Section Spacing */
.mx-section {
    padding: 6rem 0;
    position: relative;
}

.mx-section:nth-child(even) {
    background-color: var(--wll-white);
}

.mx-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.mx-section-header h2 {
    margin-bottom: 1rem;
}

.mx-section-header p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--wll-primary);
    font-size: 1.15rem;
}

/* Buttons */
.mx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--wll-border-radius);
    cursor: pointer;
    transition: all var(--wll-transition-speed);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 2px solid transparent;
}

.mx-btn-primary {
    background-color: var(--wll-accent);
    color: var(--wll-dark);
    border-color: var(--wll-accent);
}

.mx-btn-primary:hover {
    background-color: var(--wll-dark);
    color: var(--wll-accent);
    border-color: var(--wll-dark);
}

.mx-btn-secondary {
    background-color: var(--wll-primary);
    color: var(--wll-white);
    border-color: var(--wll-primary);
}

.mx-btn-secondary:hover {
    background-color: var(--wll-secondary);
    border-color: var(--wll-secondary);
}

.mx-btn-outline {
    background-color: transparent;
    color: var(--wll-primary);
    border-color: var(--wll-primary);
}

.mx-btn-outline:hover {
    background-color: var(--wll-primary);
    color: var(--wll-white);
}

/* Header & Navigation */
.mx-header {
    background-color: var(--wll-white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--wll-muted);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mx-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.mx-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--wll-dark);
    white-space: nowrap;
    transition: color var(--wll-transition-speed);
}

.mx-logo:hover {
    color: var(--wll-primary);
}

.mx-nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-grow: 1;
    justify-content: center;
}

.mx-nav-menu a {
    color: var(--wll-primary);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
}

.mx-nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--wll-accent);
    transition: width var(--wll-transition-speed);
}

.mx-nav-menu a:hover::after {
    width: 100%;
}

.mx-nav-cta {
    margin-left: 2rem;
}

.mx-hamburger {
    display: none;
    cursor: pointer;
    font-size: 2rem;
    color: var(--wll-primary);
}

/* Hero Section */
.mx-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('https://loremflickr.com/1400/800/arctic%2Csleep%2Cgadgets/all?lock=678004471') center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wll-white);
    text-align: center;
    padding: 4rem 0;
}

.mx-hero-content {
    max-width: 800px;
}

.mx-hero-content h1 {
    color: var(--wll-white);
    margin-bottom: 1rem;
}

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

/* Trust Badges */
.mx-trust-badges {
    background-color: var(--wll-secondary);
    color: var(--wll-white);
    padding: 2.5rem 0;
    text-align: center;
    overflow: hidden;
}

.mx-trust-badges h3 {
    color: var(--wll-white);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.mx-badge-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.mx-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--wll-muted);
}

.mx-badge-item svg {
    width: 30px;
    height: 30px;
    fill: var(--wll-accent);
}

/* Feature Highlights (Cards) */
.mx-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mx-card {
    background-color: var(--wll-white);
    border-radius: var(--wll-border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    text-align: center;
    transition: transform var(--wll-transition-speed), box-shadow var(--wll-transition-speed);
    position: relative;
    overflow: hidden;
}

.mx-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mx-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--wll-border-radius);
    margin-bottom: 1.5rem;
    border: 1px solid var(--wll-muted);
}

.mx-card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--wll-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mx-card-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--wll-dark);
}

.mx-card h3 {
    margin-bottom: 0.8rem;
    color: var(--wll-dark);
}

.mx-card p {
    color: var(--wll-primary);
    font-size: 0.95rem;
}

/* Pain Points */
.mx-pain-points .mx-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: start;
}

.mx-pain-point-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: var(--wll-white);
    padding: 1.5rem;
    border-radius: var(--wll-border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform var(--wll-transition-speed), box-shadow var(--wll-transition-speed);
}

.mx-pain-point-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mx-pain-point-item svg {
    min-width: 40px;
    height: 40px;
    fill: var(--wll-accent);
}

.mx-pain-point-item h4 {
    margin-bottom: 0.5rem;
    color: var(--wll-dark);
}

.mx-pain-point-item p {
    font-size: 0.95rem;
    color: var(--wll-primary);
    margin-bottom: 0;
}

/* Call to Action Urgent */
.mx-cta-urgent {
    background: var(--wll-secondary);
    color: var(--wll-white);
    padding: 5rem 0;
    text-align: center;
}

.mx-cta-urgent .mx-section-header h2, .mx-cta-urgent .mx-section-header p {
    color: var(--wll-white);
}

.mx-cta-urgent .mx-btn-primary {
    margin-top: 2rem;
}

/* Benefits Checkmarks */
.mx-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.mx-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.mx-benefit-item svg {
    min-width: 28px;
    height: 28px;
    fill: var(--wll-accent);
    margin-top: 0.2rem;
}

.mx-benefit-item h4 {
    margin-bottom: 0.4rem;
    color: var(--wll-dark);
}

.mx-benefit-item p {
    color: var(--wll-primary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Testimonials */
.mx-testimonials {
    background-color: var(--wll-white);
    padding: 6rem 0;
}

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

.mx-testimonial-card {
    background-color: var(--wll-background);
    padding: 2.5rem;
    border-radius: var(--wll-border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border-left: 5px solid var(--wll-accent);
}

.mx-testimonial-card p {
    font-style: italic;
    color: var(--wll-dark);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.mx-testimonial-author {
    font-weight: 700;
    color: var(--wll-primary);
}

.mx-testimonial-author span {
    font-weight: 400;
    color: var(--wll-muted);
    font-size: 0.9rem;
}

/* FAQ Section */
.mx-faq {
    padding: 6rem 0;
}

.mx-faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.mx-faq-item {
    background-color: var(--wll-white);
    border: 1px solid var(--wll-muted);
    border-radius: var(--wll-border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color var(--wll-transition-speed);
}

.mx-faq-item.active {
    border-color: var(--wll-accent);
}

.mx-faq-q {
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--wll-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--wll-transition-speed);
}

.mx-faq-q:hover {
    background-color: var(--wll-background);
}

.mx-faq-q::after {
    content: '+';
    font-size: 1.5rem;
    line-height: 1;
    transition: transform var(--wll-transition-speed);
}

.mx-faq-item.active .mx-faq-q::after {
    content: '-';
    transform: rotate(0deg);
}

.mx-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--wll-transition-speed);
    padding: 0 1.5rem;
}

.mx-faq-item.active .mx-faq-a {
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
    max-height: 500px; /* Sufficient height for content */
}

.mx-faq-a p {
    color: var(--wll-primary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Lead Form Section */
.mx-lead-form-section {
    background-color: var(--wll-secondary);
    color: var(--wll-white);
    padding: 6rem 0;
    text-align: center;
}

.mx-lead-form-section h2, .mx-lead-form-section p {
    color: var(--wll-white);
}

.mx-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--wll-primary);
    padding: 3rem;
    border-radius: var(--wll-border-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    margin-top: 2rem;
}

.mx-form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.mx-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--wll-white);
    font-weight: 600;
}

.mx-form-group input[type="text"],
.mx-form-group input[type="email"],
.mx-form-group input[type="tel"],
.mx-form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--wll-muted);
    border-radius: var(--wll-border-radius);
    background-color: var(--wll-white);
    color: var(--wll-dark);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color var(--wll-transition-speed), box-shadow var(--wll-transition-speed);
}

.mx-form-group input:focus,
.mx-form-group textarea:focus {
    outline: none;
    border-color: var(--wll-accent);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.2);
}

.mx-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.mx-form-group .mx-error-message {
    color: var(--wll-accent);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

#su6ce1o {
    background-color: #28a745;
    color: var(--wll-white);
    padding: 1rem;
    border-radius: var(--wll-border-radius);
    margin-top: 1.5rem;
    display: none;
}

#r0nk686 {
    background-color: #dc3545;
    color: var(--wll-white);
    padding: 1rem;
    border-radius: var(--wll-border-radius);
    margin-top: 1.5rem;
    display: none;
}

/* Footer */
.mx-footer {
    background-color: var(--wll-dark);
    color: var(--wll-muted);
    padding: 4rem 0;
    font-size: 0.95rem;
}

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

.mx-footer-col h5 {
    color: var(--wll-white);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.mx-footer-col ul {
    list-style: none;
}

.mx-footer-col ul li {
    margin-bottom: 0.8rem;
}

.mx-footer-col ul li a {
    color: var(--wll-muted);
}

.mx-footer-col ul li a:hover {
    color: var(--wll-accent);
}

.mx-footer-info p {
    margin-bottom: 0.8rem;
}

.mx-footer-info a {
    display: block;
    margin-bottom: 0.5rem;
}

.mx-newsletter-form input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--wll-primary);
    border-radius: var(--wll-border-radius);
    background-color: var(--wll-secondary);
    color: var(--wll-white);
    margin-bottom: 1rem;
}

.mx-newsletter-form input[type="email"]::placeholder {
    color: var(--wll-muted);
}

.mx-newsletter-form .mx-btn {
    width: 100%;
    padding: 0.75rem;
}

.mx-footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid var(--wll-primary);
    color: var(--wll-muted);
}

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

.mx-animate {
    opacity: 0;
    transform: translateY(20px);
}

.mx-animate.mx-animated {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mx-nav-menu {
        gap: 1.5rem;
    }
    .mx-section {
        padding: 5rem 0;
    }
    .mx-hero-content h1 {
        font-size: clamp(2.2rem, 5vw, 3.8rem);
    }
}

@media (max-width: 768px) {
    .mx-hamburger {
        display: block;
    }

    .mx-nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--wll-white);
        border-top: 1px solid var(--wll-muted);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        padding: 1rem 1.5rem;
        gap: 1rem;
        animation: slideInDown 0.3s ease-out forwards;
    }

    .mx-nav-menu.mx-active {
        display: flex;
    }

    .mx-nav-menu li {
        width: 100%;
    }

    .mx-nav-menu a {
        display: block;
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--wll-background);
    }

    .mx-nav-menu a::after {
        display: none;
    }

    .mx-nav-cta {
        margin-left: 0;
        margin-top: 1rem;
        text-align: center;
    }

    .mx-navbar {
        padding: 0 1rem;
    }

    .mx-logo {
        font-size: 1.6rem;
    }

    .mx-hero {
        min-height: 70vh;
    }

    .mx-hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .mx-hero-content p {
        font-size: 1.1rem;
    }

    .mx-section {
        padding: 3rem 0;
    }

    .mx-section-header {
        margin-bottom: 2.5rem;
    }

    .mx-badge-grid {
        gap: 2rem;
    }

    .mx-card, .mx-pain-point-item, .mx-testimonial-card {
        padding: 1.5rem;
    }

    .mx-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mx-footer-col ul {
        padding-left: 0;
    }

    .mx-footer-col h5 {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .mx-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    h1 {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }
    h2 {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }
    .mx-hero-content p {
        font-size: 1rem;
    }
    .mx-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    .mx-form-wrapper {
        padding: 2rem 1.5rem;
    }
    .mx-faq-q {
        font-size: 1rem;
        padding: 1rem;
    }
    .mx-faq-item.active .mx-faq-a {
        padding-bottom: 1rem;
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* === Quality polish === */
button, [class*="btn"], [class*="cta"] { transition: all 0.3s ease; cursor: pointer; }
button:hover, [class*="btn"]:hover, [class*="cta"]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); filter: brightness(1.05); }