:root {
    --mhd-primary: #1bb0ce;
    --mhd-primary-dark: #1590a8;
    --mhd-accent: #ffa501;
    --mhd-purple: #1f0756;
    --mhd-text: #1e293b;
    --mhd-muted: #64748b;
    --mhd-bg: #f4f7f8;
    --mhd-card: #ffffff;
}

* { box-sizing: border-box; }

.mhd-page {
    margin: 0;
    font-family: 'Nunito', 'Poppins', sans-serif;
    color: var(--mhd-text);
    background: #fff;
    scroll-behavior: smooth;
}

.mhd-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mhd-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
}

.mhd-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #fff;
}

.mhd-brand__logo {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.mhd-brand__name {
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1.2;
}

.mhd-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.mhd-nav a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.mhd-nav a:hover { color: var(--mhd-primary); }

.mhd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    padding: 0.65rem 1.35rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, background 0.15s ease;
}

.mhd-btn:hover { transform: translateY(-1px); }

.mhd-btn--primary {
    background: var(--mhd-primary);
    color: #fff;
}

.mhd-btn--primary:hover { background: var(--mhd-primary-dark); color: #fff; }

.mhd-btn--outline {
    background: transparent;
    border: 2px solid var(--mhd-primary);
    color: var(--mhd-primary);
}

.mhd-btn--login {
    background: var(--mhd-accent);
    color: #1f0756;
}

.mhd-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    padding: 0.35rem;
}

.mhd-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
}

.mhd-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 45%, #1bb0ce 100%);
    color: #fff;
}

.mhd-eyebrow {
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.mhd-hero__title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 0.5rem;
}

.mhd-hero__title span { display: block; }

.mhd-hero__accent { color: var(--mhd-accent); }

.mhd-hero__subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.mhd-hero__lead {
    font-size: 1.05rem;
    opacity: 0.95;
}

.mhd-hero__badges {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
}

.mhd-hero__badges li {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.mhd-form-card,
.mhd-consult-form-block {
    background: var(--mhd-card);
    color: var(--mhd-text);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.mhd-form-card h2,
.mhd-consult-form-block h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--mhd-purple);
    margin-bottom: 0.25rem;
}

.mhd-form-card__sub {
    color: var(--mhd-muted);
    margin-bottom: 1rem;
}

.mhd-form-note {
    font-size: 0.8rem;
    color: var(--mhd-muted);
    margin: 0.75rem 0 0;
}

.mhd-stats {
    padding: 3rem 0;
    background: var(--mhd-bg);
}

.mhd-stat__icon {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.mhd-stat h3 {
    font-size: 1rem;
    font-weight: 800;
}

.mhd-section {
    padding: 3.5rem 0;
}

.mhd-section--alt { background: var(--mhd-bg); }

.mhd-section__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--mhd-purple);
    margin-bottom: 2rem;
}

.mhd-section__subtitle {
    color: var(--mhd-muted);
    margin-top: -1rem;
    margin-bottom: 1rem;
}

.mhd-project-row {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.mhd-project-row:last-child { border-bottom: 0; }

.mhd-project-row h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--mhd-purple);
}

.mhd-project__location { color: var(--mhd-muted); }

.mhd-video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #000;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.mhd-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.mhd-packages-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
}

.mhd-package-card {
    flex: 0 0 min(320px, 88vw);
    scroll-snap-align: start;
    background: #fff;
    border: 2px solid var(--mhd-accent);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.mhd-package-card h3 {
    color: var(--mhd-purple);
    font-weight: 800;
}

.mhd-package__price span { color: var(--mhd-accent); font-weight: 800; }

.mhd-package__per { color: var(--mhd-muted); font-size: 0.9rem; }

.mhd-package-card ul {
    padding-left: 1.1rem;
    margin: 0;
    font-size: 0.95rem;
}

.mhd-handover__title {
    font-size: 1rem;
    font-weight: 700;
    min-height: 3rem;
    color: var(--mhd-purple);
}

.mhd-showcase-swiper img,
.mhd-gallery-swiper img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 0.75rem;
}

.mhd-compare-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.mhd-compare-card--us { border-top: 4px solid var(--mhd-primary); }
.mhd-compare-card--other { border-top: 4px solid #cbd5e1; }

.mhd-compare-card h3 {
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--mhd-purple);
}

.mhd-compare-card ul {
    padding-left: 1.1rem;
    margin: 0;
}

.mhd-compare-card--us li::marker { content: "✔  "; }
.mhd-compare-card--other li::marker { content: "✖  "; }

.mhd-faq {
    max-width: 760px;
    margin: 0 auto;
}

.mhd-faq__item {
    background: #fff;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 0.25rem 1rem;
    border: 1px solid #e2e8f0;
}

.mhd-faq__item summary {
    cursor: pointer;
    font-weight: 700;
    padding: 0.75rem 0;
}

.mhd-faq__item p {
    margin: 0 0 1rem;
    color: var(--mhd-muted);
}

.mhd-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 3rem 0 1.5rem;
}

.mhd-footer h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.mhd-footer__logo { margin-bottom: 0.75rem; }

.mhd-footer__tagline { font-weight: 700; color: #fff; }

.mhd-footer__links,
.mhd-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mhd-footer__links a,
.mhd-footer__contact a { color: #93c5fd; text-decoration: none; }

.mhd-footer__contact li {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.65rem;
}

.mhd-footer__social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    font-size: 1.25rem;
}

.mhd-footer__social a { color: #fff; }

.mhd-footer__copy {
    margin: 2rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    text-align: center;
}

.mhd-whatsapp {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 999;
    text-decoration: none;
}

.mhd-toast {
    position: fixed;
    left: 50%;
    bottom: 5rem;
    transform: translateX(-50%);
    background: #0f172a;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    z-index: 1001;
    max-width: 90vw;
    text-align: center;
}

@media (max-width: 991px) {
    .mhd-nav-toggle { display: flex; }

    .mhd-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: #0f172a;
        padding: 1rem 1.25rem 1.25rem;
        display: none;
    }

    .mhd-nav.is-open { display: flex; }

    .mhd-header__inner { position: relative; flex-wrap: wrap; }
}
