@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Roboto:wght@400;700;900&display=swap');

:root {
    --h0t-primary: #059669;
    --h0t-secondary: #047857;
    --h0t-accent: #f97316;
    --h0t-background: #fafaf9;
    --h0t-text: #1c1917;
    --h0t-muted: #78716c;
    --h0t-light-grey: #e7e5e4;
    --h0t-dark-grey: #a8a29e;
    --h0t-success: #10b981;
    --h0t-error: #ef4444;
    --h0t-border-radius: 12px;
    --h0t-transition-fast: 0.2s ease-out;
    --h0t-transition-medium: 0.3s ease;
}

/* Base Reset & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    color: var(--h0t-text);
    line-height: 1.2;
    margin-bottom: 0.6em;
}

h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h3 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

h5 {
    font-size: 1.25rem;
    font-weight: 500;
}

h6 {
    font-size: 1rem;
    font-weight: 400;
}

p {
    margin-bottom: 1em;
    font-size: 1.125rem;
    color: var(--h0t-text);
}

a {
    color: var(--h0t-primary);
    text-decoration: none;
    transition: color var(--h0t-transition-fast), opacity var(--h0t-transition-fast);
}

a:hover {
    color: var(--h0t-accent);
    opacity: 0.9;
}

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

ul {
    list-style: none;
}

/* Utility Classes */
.mx-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.mx-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mx-flex-col {
    flex-direction: column;
}

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

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

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

.mx-bg-primary {
    background-color: var(--h0t-primary);
    color: var(--h0t-background);
}

.mx-bg-secondary {
    background-color: var(--h0t-secondary);
    color: var(--h0t-background);
}

.mx-bg-light {
    background-color: var(--h0t-light-grey);
    color: var(--h0t-text);
}

.mx-p-section {
    padding: 6rem 0;
}

/* Buttons */
.mx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--h0t-border-radius);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--h0t-transition-medium);
    gap: 0.75rem;
}

.mx-btn-primary {
    background-color: var(--h0t-primary);
    color: var(--h0t-background);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

.mx-btn-primary:hover {
    background-color: var(--h0t-secondary);
    box-shadow: 0 12px 30px rgba(4, 120, 87, 0.4);
    transform: translateY(-2px);
}

.mx-btn-secondary {
    background-color: var(--h0t-accent);
    color: var(--h0t-background);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.mx-btn-secondary:hover {
    background-color: var(--h0t-primary);
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.4);
    transform: translateY(-2px);
}

.mx-btn-outline {
    background: none;
    color: var(--h0t-primary);
    border: 2px solid var(--h0t-primary);
}

.mx-btn-outline:hover {
    background-color: var(--h0t-primary);
    color: var(--h0t-background);
    transform: translateY(-2px);
}

.mx-btn:focus {
    outline: 3px solid var(--h0t-accent);
    outline-offset: 2px;
}

/* Header & Navigation */
.mx-header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.mx-header .mx-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mx-logo {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--h0t-primary);
    text-decoration: none;
    letter-spacing: -0.05em;
}

.mx-logo span {
    color: var(--h0t-accent);
}

.mx-nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}

.mx-nav-menu a {
    color: var(--h0t-text);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
}

.mx-nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 3px;
    background-color: var(--h0t-accent);
    transition: width var(--h0t-transition-fast);
}

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

.mx-nav-cta {
    margin-left: auto;
}

.mx-hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.mx-hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--h0t-primary);
    border-radius: 2px;
    transition: all var(--h0t-transition-fast);
}

.mx-nav-mobile {
    display: none;
}

/* Mobile Nav Open State */
.mx-hamburger.mx-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mx-hamburger.mx-active span:nth-child(2) {
    opacity: 0;
}

.mx-hamburger.mx-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.mx-hero {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.95), rgba(4, 120, 87, 0.9)), url('https://loremflickr.com/1400/800/tech%2Csoftware%2Csaas/all?lock=116696966') no-repeat center center/cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--h0t-background);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mx-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--h0t-primary);
    opacity: 0.8;
    z-index: 1;
}

.mx-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.mx-hero h1 {
    color: var(--h0t-background);
    margin-bottom: 0.5em;
    animation: mx-bouncy-text 1s ease-out both;
}

@keyframes mx-bouncy-text {
    0% { transform: translateY(-50px); opacity: 0; }
    60% { transform: translateY(10px); opacity: 1; }
    80% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

.mx-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--h0t-light-grey);
}

.mx-hero .mx-btn {
    margin-top: 1.5rem;
}

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

.mx-section:nth-child(even) {
    background-color: var(--h0t-light-grey);
}

.mx-section-title {
    margin-bottom: 3rem;
    position: relative;
    text-align: center;
}

.mx-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--h0t-accent);
    margin: 1rem auto 0 auto;
    border-radius: 2px;
}

/* How It Works Section */
.mx-how-it-works .mx-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    counter-reset: step-counter;
}

.mx-step-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: var(--h0t-border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    transition: transform var(--h0t-transition-medium), box-shadow var(--h0t-transition-medium);
}

.mx-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.mx-step-card::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--h0t-primary);
    color: var(--h0t-background);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    border: 5px solid var(--h0t-background);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mx-step-card h3 {
    margin-top: 1.5rem;
    color: var(--h0t-primary);
}

.mx-step-card p {
    font-size: 1rem;
    color: var(--h0t-muted);
}

/* CTA Colorful Section */
.mx-cta-colorful {
    background: linear-gradient(145deg, var(--h0t-primary), var(--h0t-secondary));
    color: var(--h0t-background);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 50% 50% / 0 0 10% 10%; /* Playful curve */
    transform: scaleX(1.05);
    margin-bottom: -3rem; /* Overlap with next section slightly */
}

.mx-cta-colorful h2 {
    color: var(--h0t-background);
    margin-bottom: 1rem;
}

.mx-cta-colorful p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--h0t-light-grey);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mx-cta-colorful .mx-btn {
    font-size: 1.25rem;
    padding: 1.2rem 2.5rem;
    animation: mx-pulse-btn 2s infinite;
}

@keyframes mx-pulse-btn {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 20px rgba(249, 115, 22, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

/* Testimonials Section */
.mx-testimonial-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: var(--h0t-border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    transition: transform var(--h0t-transition-medium), box-shadow var(--h0t-transition-medium);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mx-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.mx-testimonial-card blockquote {
    font-style: italic;
    color: var(--h0t-text);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.mx-testimonial-card .mx-author {
    font-weight: 600;
    color: var(--h0t-primary);
    font-size: 1.05rem;
}

.mx-testimonial-card .mx-author span {
    font-weight: 400;
    color: var(--h0t-muted);
    font-size: 0.9rem;
    display: block;
    margin-top: 0.2rem;
}

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

.mx-benefit-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--h0t-border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform var(--h0t-transition-medium), box-shadow var(--h0t-transition-medium);
}

.mx-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.mx-benefit-card .mx-icon {
    font-size: 2.5rem;
    color: var(--h0t-accent);
    flex-shrink: 0;
}

.mx-benefit-card h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--h0t-secondary);
}

.mx-benefit-card p {
    font-size: 0.95rem;
    color: var(--h0t-muted);
    margin-bottom: 0;
}

/* Feature Bubbles Section */
.mx-feature-bubbles {
    position: relative;
    padding: 6rem 0 8rem; /* Extra padding for bubbles */
    overflow: hidden;
}

.mx-feature-bubble-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.mx-bubble-item {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: all var(--h0t-transition-medium);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(5, 150, 105, 0.1);
}

.mx-bubble-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--h0t-primary);
}

.mx-bubble-item .mx-icon {
    font-size: 3.5rem;
    color: var(--h0t-accent);
    margin-bottom: 1rem;
    display: inline-block;
    background: var(--h0t-light-grey);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mx-bubble-item h3 {
    color: var(--h0t-primary);
    margin-bottom: 0.75rem;
}

.mx-bubble-item p {
    font-size: 1rem;
    color: var(--h0t-muted);
}

.mx-bubble-bg-shape {
    position: absolute;
    background: rgba(5, 150, 105, 0.05);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

.mx-bubble-bg-shape:nth-child(1) { width: 150px; height: 150px; top: 10%; left: 5%; }
.mx-bubble-bg-shape:nth-child(2) { width: 200px; height: 200px; top: 70%; left: 90%; }
.mx-bubble-bg-shape:nth-child(3) { width: 100px; height: 100px; top: 40%; left: 30%; }

/* Trust Indicators Section */
.mx-trust-indicators {
    background-color: var(--h0t-secondary);
    color: var(--h0t-background);
    padding: 4rem 0;
    text-align: center;
}

.mx-trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.mx-trust-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem 2rem;
    border-radius: var(--h0t-border-radius);
    min-width: 180px;
    flex: 1;
    max-width: 250px;
}

.mx-trust-item .mx-icon {
    font-size: 3rem;
    color: var(--h0t-accent);
    margin-bottom: 0.5rem;
}

.mx-trust-item h3 {
    color: var(--h0t-background);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.mx-trust-item p {
    color: var(--h0t-light-grey);
    font-size: 1rem;
    margin-bottom: 0;
}

/* FAQ Section */
.mx-faq-item {
    background-color: #fff;
    border-radius: var(--h0t-border-radius);
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all var(--h0t-transition-medium);
}

.mx-faq-q {
    padding: 1.5rem 2rem;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--h0t-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.mx-faq-q::after {
    content: '+';
    font-size: 1.8rem;
    line-height: 1;
    color: var(--h0t-accent);
    transition: transform var(--h0t-transition-fast);
}

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

.mx-faq-item.active {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.mx-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 2rem;
}

.mx-faq-item.active .mx-faq-a {
    max-height: 500px; /* Sufficiently large value */
    padding: 0 2rem 1.5rem;
}

.mx-faq-a p {
    color: var(--h0t-text);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Contact Form Section */
.mx-contact-form-section {
    padding: 6rem 0;
    background-color: var(--h0t-light-grey);
}

.mx-contact-form-wrapper {
    background-color: #fff;
    border-radius: var(--h0t-border-radius);
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    padding: 3rem 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.mx-contact-form-wrapper h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--h0t-primary);
}

.mx-form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.mx-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--h0t-text);
}

.mx-form-group input, .mx-form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--h0t-dark-grey);
    border-radius: var(--h0t-border-radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--h0t-text);
    background-color: var(--h0t-background);
    transition: border-color var(--h0t-transition-fast), box-shadow var(--h0t-transition-fast);
}

.mx-form-group input:focus, .mx-form-group textarea:focus {
    border-color: var(--h0t-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.3);
}

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

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

.mx-form-group.has-error input, .mx-form-group.has-error textarea {
    border-color: var(--h0t-error);
}

#sc38o1w, #rc6bznp {
    padding: 1rem;
    border-radius: var(--h0t-border-radius);
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 600;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#sc38o1w {
    background-color: var(--h0t-success);
    color: var(--h0t-background);
}

#rc6bznp {
    background-color: var(--h0t-error);
    color: var(--h0t-background);
}

#f87autm button {
    width: 100%;
}

/* Footer */
.mx-footer {
    background-color: var(--h0t-text);
    color: var(--h0t-light-grey);
    padding: 4rem 0 2rem;
}

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

.mx-footer-col h5 {
    color: var(--h0t-background);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.mx-footer-col p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--h0t-dark-grey);
}

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

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

.mx-footer-col a {
    color: var(--h0t-light-grey);
    font-size: 0.95rem;
    transition: color var(--h0t-transition-fast);
}

.mx-footer-col a:hover {
    color: var(--h0t-primary);
}

.mx-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--h0t-dark-grey);
    font-size: 0.9rem;
    color: var(--h0t-dark-grey);
}

.mx-social-links a {
    font-size: 1.5rem;
    color: var(--h0t-light-grey);
    margin-right: 1rem;
}

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

/* Animations */
.mx-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.mx-animate.mx-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mx-nav-menu {
        gap: 1.5rem;
    }

    .mx-hero h1 {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }

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

    .mx-p-section {
        padding: 5rem 0;
    }

    .mx-benefit-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mx-benefit-card .mx-icon {
        margin-bottom: 1rem;
    }

    .mx-contact-form-wrapper {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .mx-nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 1.5rem 0;
        text-align: center;
        animation: mx-slideDown 0.3s ease-out forwards;
    }

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

    .mx-nav-menu a {
        padding: 0.8rem 0;
        width: 100%;
        border-bottom: 1px solid var(--h0t-light-grey);
    }

    .mx-nav-cta {
        margin-left: 0;
        width: 100%;
        padding: 1rem;
    }

    .mx-hamburger {
        display: flex;
    }

    .mx-header .mx-container {
        justify-content: space-between;
    }

    .mx-cta-colorful {
        border-radius: 0 0 30% 30% / 0 0 8% 8%;
        transform: scaleX(1.02);
    }

    .mx-trust-grid {
        flex-direction: column;
        align-items: center;
    }

    .mx-trust-item {
        width: 100%;
        max-width: 300px;
    }

    .mx-p-section {
        padding: 4rem 0;
    }

    .mx-section-title h2 {
        font-size: 2rem;
    }

    .mx-faq-q {
        font-size: 1rem;
        padding: 1.2rem 1.5rem;
    }

    .mx-faq-a {
        padding: 0 1.5rem;
    }

    .mx-faq-item.active .mx-faq-a {
        padding: 0 1.5rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .mx-container {
        padding: 0 1rem;
    }

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

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

    .mx-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .mx-section-title h2 {
        font-size: 1.8rem;
    }

    .mx-step-card {
        padding: 2rem;
    }

    .mx-cta-colorful h2 {
        font-size: 1.8rem;
    }

    .mx-cta-colorful p {
        font-size: 1rem;
    }

    .mx-testimonial-card {
        padding: 2rem;
    }

    .mx-benefit-card {
        padding: 1.5rem;
    }

    .mx-bubble-item {
        padding: 2rem;
    }

    .mx-contact-form-wrapper {
        padding: 1.5rem;
    }

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

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

@keyframes mx-slideDown {
    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); }

@keyframes mxFadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.mx-animate { opacity: 0; }
.mx-animate.mx-visible { animation: mxFadeInUp 0.6s ease forwards; }