:root {
    --mz-primary: #00b894;
    --mz-primary-dark: #009478;
    --mz-accent: #ff6b6b;
    --mz-accent-2: #4d8cff;
    --mz-yellow: #ffc857;
    --mz-bg: #f7fbf9;
    --mz-bg-2: #ecf7f2;
    --mz-text: #11241f;
    --mz-muted: #5a6a66;
    --mz-card: #ffffff;
    --mz-border: rgba(17, 36, 31, 0.08);
    --mz-shadow: 0 10px 30px rgba(0, 122, 100, .08);
    --mz-shadow-lg: 0 25px 60px rgba(0, 122, 100, .15);
    --mz-radius: 18px;
    --mz-grad: linear-gradient(135deg, #00b894 0%, #0aa1c4 100%);
    --mz-grad-soft: linear-gradient(135deg, rgba(0, 184, 148, .10), rgba(10, 161, 196, .10));
}

[data-theme=\"dark\"] {
    --mz-bg: #0b1512;
    --mz-bg-2: #0f1d19;
    --mz-text: #eaf6f1;
    --mz-muted: #9bb0aa;
    --mz-card: #122520;
    --mz-border: rgba(234, 246, 241, 0.08);
    --mz-shadow: 0 10px 30px rgba(0, 0, 0, .4);
    --mz-shadow-lg: 0 25px 60px rgba(0, 0, 0, .55);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', 'Poppins', system-ui, sans-serif;
    background: var(--mz-bg);
    color: var(--mz-text);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--mz-text);
}

h1 {
    font-size: clamp(2.2rem, 4.6vw, 3.7rem);
    line-height: 1.05;
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

p,
li {
    color: var(--mz-muted);
}

a {
    text-decoration: none;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--mz-grad);
    color: #fff;
    padding: 9px 0;
    font-size: .85rem;
}

.top-bar a {
    color: #fff;
    opacity: .9;
    margin: 0 8px;
}

.top-bar a:hover {
    opacity: 1;
}

.top-bar .separator {
    opacity: .4;
    margin: 0 4px;
}

.top-controls {
    display: flex;
    gap: 14px;
    align-items: center;
}

.theme-switch {
    cursor: pointer;
    background: rgba(255, 255, 255, .18);
    border: 0;
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    transition: background .2s;
}

.theme-switch:hover {
    background: rgba(255, 255, 255, .3);
}

/* ===== NAVBAR ===== */
.mz-navbar {
    background: var(--mz-card);
    border-bottom: 1px solid var(--mz-border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1020;
    backdrop-filter: blur(20px);
}

.brand {
    font-weight: 800;
    font-size: 1.5rem;
    background: var(--mz-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--mz-grad);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: var(--mz-shadow);
    -webkit-text-fill-color: #fff;
}

.nav-link {
    color: var(--mz-text) !important;
    font-weight: 500;
    font-size: .95rem;
}

.nav-link.active,
.nav-link:hover {
    color: var(--mz-primary) !important;
}

.phone-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 8px;
}

.phone-box .icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--mz-grad-soft);
    color: var(--mz-primary);
    display: grid;
    place-items: center;
}

/* ===== BUTTONS ===== */
.btn-mz-primary {
    background: var(--mz-grad);
    border: 0;
    color: #fff;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform .2s, box-shadow .2s;
    font-size: .92rem;
}

.btn-mz-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 184, 148, .28);
    color: #fff;
}

.btn-mz-outline {
    background: transparent;
    border: 2px solid var(--mz-primary);
    color: var(--mz-primary);
    padding: 8px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .92rem;
    transition: all .2s;
}

.btn-mz-outline:hover {
    background: var(--mz-primary);
    color: #fff;
}

/* ===== PAGE HERO (reusable) ===== */
.page-hero {
    position: relative;
    padding: 80px 0 60px;
    background:
        radial-gradient(900px 460px at 80% -10%, rgba(0, 184, 148, .18), transparent 60%),
        radial-gradient(700px 460px at 0% 80%, rgba(10, 161, 196, .15), transparent 55%),
        var(--mz-bg);
    overflow: hidden;
}

.page-hero::before {
    content: \"\";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(0, 184, 148, .18) 1px, transparent 0);
    background-size: 28px 28px;
    mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 70%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mz-grad-soft);
    color: var(--mz-primary);
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .85rem;
    border: 1px solid rgba(0, 184, 148, .2);
    margin-bottom: 18px;
}

.badge-pill .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--mz-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 184, 148, .5);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 184, 148, .6);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(0, 184, 148, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 184, 148, 0);
    }
}

.accent {
    background: var(--mz-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.lead-text {
    font-size: 1.1rem;
    color: var(--mz-muted);
    margin-bottom: 22px;
    max-width: 620px;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section-tight {
    padding: 56px 0;
}

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin-bottom: 12px;
    letter-spacing: -.02em;
}

.section-subtitle {
    color: var(--mz-muted);
    max-width: 620px;
}

.kicker {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    color: var(--mz-primary);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* ===== REUSABLE CARD ===== */
.mz-card {
    background: var(--mz-card);
    border: 1px solid var(--mz-border);
    border-radius: var(--mz-radius);
    padding: 28px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}

.mz-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mz-shadow-lg);
    border-color: rgba(0, 184, 148, .25);
}

.mz-card .icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--mz-grad-soft);
    color: var(--mz-primary);
    display: grid;
    place-items: center;
    margin-bottom: 16px;
}

.mz-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.mz-card p {
    font-size: .92rem;
    line-height: 1.55;
    margin: 0;
}

/* ===== FOOTER ===== */
.mz-footer {
    background: #0b1512;
    color: #cfe7df;
    padding: 60px 0 24px;
    margin-top: 40px;
}

.mz-footer h5 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 1rem;
}

.mz-footer a {
    color: #9bb0aa;
    display: block;
    padding: 4px 0;
    font-size: .9rem;
}

.mz-footer a:hover {
    color: var(--mz-primary);
}

.mz-footer .brand {
    color: #fff;
    -webkit-text-fill-color: #fff;
    background: none;
}

.mz-footer .brand .brand-mark {
    background: var(--mz-grad);
}

.social-icons {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    display: grid;
    place-items: center;
    color: #cfe7df;
}

.social-icons a:hover {
    background: var(--mz-grad);
    color: #fff;
}

.contact-line {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 5px 0;
    font-size: .9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 20px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: .85rem;
    color: #9bb0aa;
}

.scroll-top {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--mz-grad);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
}

/* ===== FLOATING WIDGETS ===== */
.floating-sos,
.floating-chat {
    position: fixed;
    right: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 0;
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: var(--mz-shadow-lg);
    z-index: 100;
    transition: transform .2s;
}

.floating-sos {
    bottom: 96px;
    background: var(--mz-accent);
}

.floating-chat {
    bottom: 24px;
    background: var(--mz-grad);
}

.floating-sos:hover,
.floating-chat:hover {
    transform: scale(1.1) rotate(-6deg);
}

.floating-chat-tip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--mz-card);
    padding: 8px 14px;
    border-radius: 999px;
    box-shadow: var(--mz-shadow);
    font-size: .82rem;
    white-space: nowrap;
    border: 1px solid var(--mz-border);
    color: var(--mz-text);
}

/* ===== LUCIDE ===== */
.lucide {
    width: 22px;
    height: 22px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .page-hero {
        padding: 50px 0 40px;
    }

    .section {
        padding: 50px 0;
    }

    .floating-chat-tip {
        display: none;
    }
}