:root {
    --mz-teal: #046878;
    --mz-teal-2: #087d8f;
    --mz-dark: #071f2a;
    --mz-muted: #60717a;
    --mz-line: rgba(4,104,120,.12);
    --mz-soft: #f8fcfd;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Manrope, Arial, sans-serif;
    color: var(--mz-dark);
    background: #fff;
}

img {
    max-width: 100%;
    display: block;
}

.mz-case-container {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

/* HEADER */

.mz-case-header {
    height: 82px;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid rgba(4,104,120,.08);
}

.mz-case-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--mz-dark);
    text-decoration: none;
    font-size: 24px;
    font-weight: 900;
}

.mz-case-logo {
    width: 38px;
    height: 38px;
    border: 2px solid var(--mz-teal);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--mz-teal);
    font-weight: 900;
}

.mz-case-header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.mz-case-nav-link {
    color: var(--mz-dark);
    text-decoration: none;
    font-weight: 800;
}

.mz-case-nav-link:hover {
    color: #7fe6f1;
}

.mz-case-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    background: var(--mz-teal);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    transition: .2s ease;
}

.mz-case-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(4,104,120,.20);
}

/* HERO */

.mz-case-hero {
    padding: 78px 0 72px;
    overflow: hidden;

    background:
            radial-gradient(circle at 80% 35%, rgba(4,104,120,.10), transparent 35%),
            linear-gradient(
                    180deg,
                    #ffffff 0%,
                    #f5fafb 45%,
                    #eef7f8 100%
            );
}

.mz-case-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 72px;
    align-items: center;
}

.mz-case-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--mz-teal);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .1em;
}

.mz-case-content h1 {
    max-width: 700px;
    margin: 0 0 22px;
    color: var(--mz-dark);
    font-size: clamp(46px, 5vw, 76px);
    line-height: 1.02;
    letter-spacing: -2px;
}

.mz-case-content h1 span {
    display: inline;
    color: var(--mz-teal);
}

.mz-case-content > p {
    max-width: 650px;
    margin: 0 0 32px;
    color: var(--mz-muted);
    font-size: 19px;
    line-height: 1.7;
}

/* QR CARD */

.mz-case-qr-card {
    max-width: 650px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 34px;
    background: #fff;
    border: 1px solid rgba(4,104,120,.10);
    border-radius: 28px;
    box-shadow: 0 22px 60px rgba(4,104,120,.08);
}

.mz-case-qr-card > img {
    width: 180px;
    flex: 0 0 180px;
    border-radius: 16px;
}

.mz-case-qr-info {
    display: flex;
    align-items: center;
    gap: 26px;
}

.mz-case-qr-phone-icon {
    width: 112px;
    height: 112px;
    flex: 0 0 112px;
    display: grid;
    place-items: center;
    border-radius: 26px;
    background: rgba(4,104,120,.06);
}

.mz-case-qr-phone-icon svg {
    width: 72px;
    height: 72px;
    stroke: var(--mz-teal);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mz-case-qr-info strong {
    display: block;
    max-width: 240px;
    margin-bottom: 10px;
    color: var(--mz-dark);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.15;
}

.mz-case-qr-info p {
    max-width: 260px;
    margin: 0;
    color: var(--mz-muted);
    font-size: 17px;
    line-height: 1.45;
}

.mz-case-mobile-btn {
    display: none;
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 14px;
    background: var(--mz-teal);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
}

/* FEATURES */

.mz-case-feature-row {
    margin-top: 34px;
    max-width: 700px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.mz-case-feature-mini {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-height: 54px;
}

.mz-case-feature-mini + .mz-case-feature-mini {
    padding-left: 28px;
    border-left: 1px solid rgba(4,104,120,.14);
}

.mz-case-feature-mini-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(4,104,120,.08);
    box-shadow: 0 12px 28px rgba(4,104,120,.08);
}

.mz-case-feature-mini-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--mz-teal);
    fill: none;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mz-case-feature-mini strong {
    color: var(--mz-dark);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.08;
    white-space: normal;
    text-align: center;
}

/* VISUAL */

.mz-case-visual {
    position: relative;
    min-height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mz-case-bg-shape {
    position:absolute;

    width:560px;
    height:560px;

    border-radius:50% 50% 0 0;

    background:
            linear-gradient(
                    180deg,
                    #035765 0%,
                    #046878 55%,
                    #0b8697 100%
            );

    box-shadow:
            0 40px 80px rgba(4,104,120,.20);
}

.mz-case-phone {
    position: relative;
    z-index: 2;
    max-height: 660px;
    width: auto;
    filter: drop-shadow(0 28px 54px rgba(0,0,0,.22));
}

/* GALLERY */

.mz-case-gallery {
    padding: 90px 0;
    background: #fff;
}

.mz-case-section-head {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.mz-case-section-head span {
    color: var(--mz-teal);
    font-weight: 900;
    letter-spacing: .1em;
    font-size: 13px;
}

.mz-case-section-head h2 {
    margin: 12px 0;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
}

.mz-case-section-head p {
    margin: 0;
    color: var(--mz-muted);
    font-size: 18px;
    line-height: 1.7;
}

.mz-case-screens {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.mz-case-screen-card {
    padding: 26px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid var(--mz-line);
    text-align: center;
    box-shadow: 0 18px 45px rgba(4,104,120,.06);
}

.mz-case-screen-card img {
    max-height: 520px;
    width: auto;
    margin: 0 auto 20px;
    filter: drop-shadow(0 18px 34px rgba(0,0,0,.12));
}

.mz-case-screen-card h3 {
    margin: 0;
    font-size: 20px;
}

/* CTA */

.mz-case-cta {
    padding: 80px 0;
    text-align: center;
    background: #f3f5f6;
}

.mz-case-cta h2 {
    max-width: 760px;
    margin: 0 auto 14px;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.1;
}

.mz-case-cta p {
    margin: 0 auto 28px;
    max-width: 640px;
    color: var(--mz-muted);
    font-size: 18px;
}

.mz-case-cta a {
    display: inline-flex;
    padding: 16px 28px;
    border-radius: 999px;
    background: var(--mz-teal);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
}

/* RESPONSIVE */

@media (max-width: 991px) {
    .mz-case-header {
        padding: 0 20px;
    }

    .mz-case-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .mz-case-content h1,
    .mz-case-content > p,
    .mz-case-qr-card,
    .mz-case-feature-row {
        margin-left: auto;
        margin-right: auto;
    }

    .mz-case-feature-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .mz-case-feature-mini + .mz-case-feature-mini {
        border-left: 0;
        padding-left: 0;
    }

    .mz-case-visual {
        min-height: 520px;
    }

    .mz-case-bg-shape {
        width: 420px;
        height: 420px;
    }

    .mz-case-phone {
        max-height: 520px;
    }

    .mz-case-screens {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .mz-case-header {
        height: auto;
        padding: 18px 16px;
    }

    .mz-case-brand {
        font-size: 21px;
    }

    .mz-case-header-actions {
        gap: 14px;
    }

    .mz-case-nav-link {
        display: none;
    }

    .mz-case-cta-btn {
        padding: 12px 18px;
    }

    .mz-case-hero {
        padding: 54px 0;
    }

    .mz-case-content h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .mz-case-qr-card {
        display: block;
        text-align: center;
        padding: 24px;
    }

    .mz-case-qr-card > img {
        width: 190px;
        margin: 0 auto 22px;
    }

    .mz-case-qr-info {
        display: block;
    }

    .mz-case-qr-phone-icon {
        display: none;
    }

    .mz-case-qr-info strong,
    .mz-case-qr-info p {
        max-width: none;
    }

    .mz-case-mobile-btn {
        display: inline-flex;
    }

    .mz-case-feature-row {
        flex-direction: column;
        align-items: flex-start;
        max-width: 280px;
        gap: 16px;
    }

    .mz-case-feature-mini {
        width: 100%;
    }

    .mz-case-feature-mini strong {
        text-align: left;
    }

    .mz-case-visual {
        min-height: 430px;
    }

    .mz-case-bg-shape {
        width: 320px;
        height: 320px;
    }

    .mz-case-phone {
        max-height: 440px;
    }
}
.mz-case-header {
    height: 86px;
    padding: 0 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #022b35 0%, #034b58 100%);
}

.mz-case-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    text-decoration: none;
    font-size: 26px;
    font-weight: 900;
}

.mz-case-logo {
    width: 42px;
    height: 42px;
    border: 2px solid rgba(255,255,255,.75);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
}

.mz-case-header-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.mz-case-nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

.mz-case-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 14px;
    background: #046878;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(0,0,0,.16);
}

.mz-case-cta-btn:hover {
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .mz-case-header {
        padding: 0 18px;
    }

    .mz-case-nav-link {
        display: none;
    }

    .mz-case-brand {
        font-size: 22px;
    }

    .mz-case-cta-btn {
        padding: 12px 18px;
    }
}
.mz-case-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.mz-case-brand-logo {
    height: 44px;
    width: auto;
    display: block;
}
/* ===== FOOTER ===== */

.footer {
    background: #ffffff;
    color: #1a1a1a;
    padding: 60px 0 0;
    border-top: 1px solid #eaeaea;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand img {
    max-width: 180px;
    margin-bottom: 10px;
}

.footer h5 {
    font-size: 16px;
    margin: 0 0 12px;
    color: #046878;
    font-weight: 800;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: all .2s ease;
}

.footer-links a:hover {
    color: #046878;
    transform: translateX(2px);
}

.footer-links .fab {
    font-size: 18px;
    width: 20px;
    text-align: center;
    color: #046878;
    transition: transform .2s ease;
}

.footer-links a:hover .fab {
    transform: scale(1.08);
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    color: #60717a;
    font-size: 14px;
}

.footer-row a {
    color: #046878;
    text-decoration: none;
    font-weight: 700;
}

.footer-row a:hover {
    text-decoration: underline;
}

/* Font Awesome Brands */
@font-face {
    font-family: "Font Awesome 5 Brands";
    src: url("/webfonts/fa-brands-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.fab {
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
    font-style: normal;
}

.fa-facebook-f:before { content: "\f39e"; }
.fa-instagram:before { content: "\f16d"; }
.fa-tiktok:before { content: "\e07b"; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-row {
        flex-direction: column;
        text-align: center;
    }
}