/*
 * MakeClouds consolidated stylesheet
 * Generated from the original internal page styles.
 * Shared header/footer rules are loaded once; page rules remain scoped by their existing wrappers.
 */

:root {
    --mc-brand: #00adee;
    --mc-brand-dark: #0086c3;
    --mc-navy: #071a48;
    --mc-text: #182039;
    --mc-muted: #64748b;
    --mc-white: #ffffff;
    --mc-border: #e3edf5;
    --mch-primary: #00adee;
    --mch-primary-dark: #0086c3;
    --mch-sky: #00adee;
    --mch-cyan: #63ddff;
    --mch-navy: #071a48;
    --mch-text: #0c1e46;
    --mch-muted: #5c6b86;
    --mch-soft-blue: #edf8ff;
    --mch-border: #dbe8f6;
    --mch-white: #ffffff;
    --mch-shadow: 0 18px 50px rgba(26, 90, 160, 0.12);
    --co-primary: #00adee;
    --co-primary-2: #1277ff;
    --co-navy: #071b46;
    --co-text: #17233d;
    --co-muted: #5f6f86;
    --co-light: #f4fbff;
    --co-white: #ffffff;
    --co-border: rgba(0, 173, 238, 0.18);
    --co-shadow: 0 18px 42px rgba(7, 27, 70, 0.08);
    --co-radius: 22px;
    --mcs-primary: #00adee;
    --mcs-primary-dark: #0086c3;
    --mcs-primary-2: #1277ff;
    --mcs-navy: #071b46;
    --mcs-text: #17233d;
    --mcs-muted: #5f6f86;
    --mcs-light: #f4fbff;
    --mcs-white: #ffffff;
    --mcs-border: rgba(0, 173, 238, 0.18);
    --mcs-shadow: 0 18px 42px rgba(7, 27, 70, 0.08);
    --mcp-primary: #00adee;
    --mcp-primary-dark: #0086c3;
    --mcp-primary-soft: #eaf9ff;
    --mcp-primary-faint: #f5fcff;
    --mcp-navy: #071a48;
    --mcp-text: #17213b;
    --mcp-muted: #62708a;
    --mcp-border: #dce8f2;
    --mcp-white: #ffffff;
    --mcp-shadow: 0 12px 35px rgba(16, 77, 120, .08);
    --mt-primary: #00adee;
    --mt-primary-dark: #0086c3;
    --mt-primary-2: #1277ff;
    --mt-navy: #071b46;
    --mt-text: #17233d;
    --mt-muted: #5f6f86;
    --mt-light: #f4fbff;
    --mt-white: #ffffff;
    --mt-border: rgba(0, 173, 238, 0.18);
    --mt-shadow: 0 18px 42px rgba(7, 27, 70, 0.08);
    --mc-contact-primary: #00adee;
    --mc-contact-primary-dark: #0086c3;
    --mc-contact-primary-deep: #006d98;
    --mc-contact-navy: #071b46;
    --mc-contact-text: #17233d;
    --mc-contact-muted: #61708a;
    --mc-contact-soft: #eefaff;
    --mc-contact-soft-2: #f8fdff;
    --mc-contact-border: rgba(0, 173, 238, 0.18);
    --mc-contact-white: #ffffff;
    --mc-contact-shadow: 0 18px 45px rgba(7, 27, 70, 0.08);
}

/* ==========================================================================
   GLOBAL / HEADER
   ========================================================================== */
* { box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            margin: 0;
            font-family: 'Poppins', sans-serif;
            color: var(--mc-text);
            background: #fff;
            overflow-x: hidden;
        }
        body.mc-menu-open,
        body.mc-modal-open { overflow: hidden; }

        .mc-skip-link {
            position: fixed;
            top: -60px;
            left: 18px;
            z-index: 99999;
            padding: 10px 16px;
            border-radius: 0 0 8px 8px;
            color: #fff;
            background: var(--mc-brand-dark);
            text-decoration: none;
            transition: top .2s ease;
        }
        .mc-skip-link:focus { top: 0; }

        .mc-site-header {
            position: sticky;
            top: 0;
            z-index: 5000;
            width: 100%;
            background: rgba(255,255,255,.96);
            border-bottom: 1px solid var(--mc-border);
            box-shadow: 0 7px 24px rgba(28,79,122,.08);
            backdrop-filter: blur(14px);
        }
        .mc-header-inner {
            width: min(1460px, calc(100% - 64px));
            min-height: 74px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 28px;
        }
        .mc-brand {
            display: inline-flex;
            align-items: center;
            flex: 0 0 auto;
            color: var(--mc-navy);
            text-decoration: none;
        }
        .mc-brand-logo {
            width: auto;
            max-width: 205px;
            height: 54px;
            object-fit: contain;
        }
        .mc-brand-fallback {
            display: none;
            align-items: center;
            gap: 8px;
            font-size: 24px;
            font-weight: 800;
            letter-spacing: -1px;
        }
        .mc-brand-fallback i { color: var(--mc-brand); }
        .mc-brand-fallback span span { color: var(--mc-brand); }

        .mc-desktop-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 31px;
            margin-left: auto;
        }
        .mc-desktop-nav a {
            position: relative;
            padding: 27px 0 23px;
            color: #242424;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            white-space: nowrap;
            transition: color .2s ease;
        }
        .mc-desktop-nav a::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 17px;
            width: 0;
            height: 2px;
            border-radius: 999px;
            background: var(--mc-brand);
            transform: translateX(-50%);
            transition: width .25s ease;
        }
        .mc-desktop-nav a:hover,
        .mc-desktop-nav a.is-active { color: var(--mc-brand-dark); }
        .mc-desktop-nav a:hover::after,
        .mc-desktop-nav a.is-active::after { width: 100%; }

        .mc-header-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-left: 22px;
        }
        .mc-demo-button {
            min-height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            padding: 0 20px;
            border: 0;
            border-radius: 7px;
            color: #fff;
            background: linear-gradient(135deg, var(--mc-brand-dark), var(--mc-brand));
            box-shadow: 0 10px 24px rgba(0,173,238,.24);
            font: inherit;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: transform .2s ease, box-shadow .2s ease;
        }
        .mc-demo-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 28px rgba(0,173,238,.30);
        }
        .mc-menu-toggle {
            width: 43px;
            height: 43px;
            display: none;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            border: 1px solid var(--mc-border);
            border-radius: 8px;
            background: #fff;
            cursor: pointer;
        }
        .mc-menu-toggle span {
            width: 21px;
            height: 2px;
            border-radius: 99px;
            background: var(--mc-navy);
            transition: transform .25s ease, opacity .25s ease;
        }
        .mc-menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .mc-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
        .mc-menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .mc-mobile-nav {
            display: none;
            padding: 0 24px 22px;
            border-top: 1px solid var(--mc-border);
            background: #fff;
        }
        .mc-mobile-nav.is-open { display: block; }
        .mc-mobile-nav a {
            display: block;
            padding: 14px 2px;
            border-bottom: 1px solid #eef4f8;
            color: var(--mc-text);
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
        }
        .mc-mobile-nav a:hover { color: var(--mc-brand-dark); }
        .mc-mobile-demo {
            width: 100%;
            min-height: 45px;
            margin-top: 17px;
            border: 0;
            border-radius: 7px;
            color: #fff;
            background: linear-gradient(135deg, var(--mc-brand-dark), var(--mc-brand));
            font: inherit;
            font-weight: 600;
            cursor: pointer;
        }

        .mc-modal {
            position: fixed;
            inset: 0;
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }
        .mc-modal.is-open { display: flex; }
        .mc-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(5,25,50,.68);
            backdrop-filter: blur(7px);
        }
        .mc-modal-panel {
            position: relative;
            z-index: 1;
            width: min(540px, 100%);
            max-height: calc(100vh - 48px);
            overflow-y: auto;
            padding: 34px;
            border: 1px solid rgba(0,173,238,.25);
            border-radius: 18px;
            background: #fff;
            box-shadow: 0 30px 80px rgba(0,40,74,.25);
            animation: mcModalIn .25s ease;
        }
        @keyframes mcModalIn {
            from { opacity: 0; transform: translateY(18px) scale(.98); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }
        .mc-modal-close {
            position: absolute;
            top: 17px;
            right: 17px;
            width: 38px;
            height: 38px;
            display: grid;
            place-items: center;
            border: 1px solid var(--mc-border);
            border-radius: 50%;
            color: var(--mc-navy);
            background: #fff;
            cursor: pointer;
        }
        .mc-modal-eyebrow {
            color: var(--mc-brand-dark);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
        }
        .mc-modal-panel h2 {
            margin: 8px 45px 8px 0;
            color: var(--mc-navy);
            font-size: 29px;
            line-height: 1.2;
        }
        .mc-modal-panel > p {
            margin: 0 0 22px;
            color: var(--mc-muted);
            font-size: 14px;
            line-height: 1.7;
        }
        .mc-demo-form { display: grid; gap: 15px; }
        .mc-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 13px;
        }
        .mc-demo-form label { display: grid; gap: 7px; }
        .mc-demo-form label span {
            color: #334155;
            font-size: 12px;
            font-weight: 600;
        }
        .mc-demo-form input,
        .mc-demo-form textarea {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid #d8e4ec;
            border-radius: 8px;
            outline: none;
            background: #fbfdff;
            color: var(--mc-text);
            font: inherit;
            font-size: 13px;
            transition: border-color .2s ease, box-shadow .2s ease;
        }
        .mc-demo-form input:focus,
        .mc-demo-form textarea:focus {
            border-color: var(--mc-brand);
            box-shadow: 0 0 0 3px rgba(0,173,238,.13);
        }
        .mc-demo-form textarea { resize: vertical; min-height: 110px; }
        .mc-form-submit {
            min-height: 47px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border: 0;
            border-radius: 8px;
            color: #fff;
            background: linear-gradient(135deg, var(--mc-brand-dark), var(--mc-brand));
            font: inherit;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
        }

        @media (max-width: 1080px) {
            .mc-header-inner { width: min(100% - 36px, 1460px); }
            .mc-desktop-nav { gap: 20px; }
            .mc-desktop-nav a { font-size: 13px; }
        }
        @media (max-width: 900px) {
            .mc-header-inner { min-height: 68px; }
            .mc-brand-logo { height: 48px; max-width: 185px; }
            .mc-desktop-nav,
            .mc-demo-button { display: none; }
            .mc-header-actions { margin-left: auto; }
            .mc-menu-toggle { display: flex; }
        }
        @media (max-width: 560px) {
            .mc-header-inner { width: calc(100% - 24px); }
            .mc-brand-logo { max-width: 165px; height: 44px; }
            .mc-modal { padding: 12px; }
            .mc-modal-panel { padding: 27px 20px; border-radius: 14px; }
            .mc-modal-panel h2 { font-size: 24px; }
            .mc-form-row { grid-template-columns: 1fr; }
        }

/* ==========================================================================
   SHARED FOOTER
   ========================================================================== */
.mc-footer {
        margin-top: 36px;
        color: #d9f5ff;
        background:
            radial-gradient(circle at 12% 5%, rgba(0,173,238,.17), transparent 25%),
            linear-gradient(135deg, #04283a 0%, #003f58 46%, #005c78 100%);
        border-top: 4px solid #00adee;
    }
    .mc-footer-shell {
        width: min(1460px, calc(100% - 64px));
        margin: 0 auto;
    }
    .mc-footer-main {
        display: grid;
        grid-template-columns: 1.35fr .8fr .8fr 1fr;
        gap: 48px;
        padding: 62px 0 46px;
    }
    .mc-footer-brand-link {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
    }
    .mc-footer-logo {
        width: auto;
        max-width: 205px;
        height: 54px;
        object-fit: contain;
        border-radius: 4px;
    }
    .mc-footer-brand p {
        max-width: 390px;
        margin: 18px 0 22px;
        color: rgba(225,247,255,.76);
        font-size: 13px;
        line-height: 1.8;
    }
    .mc-footer-socials {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .mc-footer-socials a {
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(255,255,255,.18);
        border-radius: 50%;
        color: #fff;
        background: rgba(255,255,255,.06);
        text-decoration: none;
        transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }
    .mc-footer-socials a:hover {
        transform: translateY(-3px);
        border-color: #00adee;
        background: #00adee;
    }
    .mc-footer-column h3,
    .mc-footer-contact h3 {
        margin: 0 0 19px;
        color: #fff;
        font-size: 15px;
        font-weight: 700;
    }
    .mc-footer-column a {
        display: block;
        width: fit-content;
        margin: 10px 0;
        color: rgba(225,247,255,.74);
        font-size: 12px;
        text-decoration: none;
        transition: color .2s ease, transform .2s ease;
    }
    .mc-footer-column a:hover {
        color: #66e0ff;
        transform: translateX(4px);
    }
    .mc-footer-contact a,
    .mc-footer-contact p {
        display: flex;
        align-items: flex-start;
        gap: 11px;
        margin: 11px 0;
        color: rgba(225,247,255,.77);
        font-size: 12px;
        line-height: 1.65;
        text-decoration: none;
    }
    .mc-footer-contact i {
        width: 17px;
        margin-top: 3px;
        color: #58d8fa;
        text-align: center;
    }
    .mc-footer-contact a:hover { color: #fff; }
    .mc-footer-bottom {
        min-height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 18px 0;
        border-top: 1px solid rgba(255,255,255,.12);
    }
    .mc-footer-bottom p {
        margin: 0;
        color: rgba(225,247,255,.68);
        font-size: 11px;
    }
    .mc-footer-bottom-links {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    .mc-footer-bottom-links a {
        color: rgba(225,247,255,.68);
        font-size: 11px;
        text-decoration: none;
    }
    .mc-footer-bottom-links a:hover { color: #66e0ff; }
    .mc-back-to-top {
        width: 36px;
        height: 36px;
        display: grid !important;
        place-items: center;
        border-radius: 7px;
        color: #fff !important;
        background: #00adee;
    }

    @media (max-width: 1050px) {
        .mc-footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
        .mc-footer-contact { grid-column: 1 / -1; }
    }
    @media (max-width: 760px) {
        .mc-footer-shell { width: calc(100% - 36px); }
        .mc-footer-main {
            grid-template-columns: 1fr 1fr;
            gap: 34px 28px;
            padding-top: 48px;
        }
        .mc-footer-brand,
        .mc-footer-contact { grid-column: 1 / -1; }
        .mc-footer-bottom {
            align-items: flex-start;
            flex-direction: column;
        }
    }
    @media (max-width: 480px) {
        .mc-footer-shell { width: calc(100% - 28px); }
        .mc-footer-main { grid-template-columns: 1fr; }
        .mc-footer-brand,
        .mc-footer-contact { grid-column: auto; }
        .mc-footer-bottom-links { gap: 14px; }
    }

/* ==========================================================================
   HOME PAGE
   ========================================================================== */
.mch-home {
    overflow: hidden;
    color: var(--mch-text);
    background: #fff;
}

.mch-home * { box-sizing: border-box; }
.mch-home img { max-width: 100%; display: block; }
.mch-home a { text-decoration: none; }
.mch-container,
.mch-bottom-grid {
    width: min(1460px, calc(100% - 64px));
    margin-inline: auto;
}
.mch-section {
    padding: 82px 0;
}
.mch-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--mch-primary);
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.mch-eyebrow::before {
    content: '';
    width: 22px;
    height: 2px;
    background: linear-gradient(90deg, var(--mch-primary), var(--mch-cyan));
    border-radius: 10px;
}
.mch-section-title {
    margin: 0;
    color: var(--mch-text);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.14;
    letter-spacing: -1.4px;
}
.mch-section-copy {
    max-width: 700px;
    margin: 14px auto 0;
    color: var(--mch-muted);
    font-size: 16px;
    line-height: 1.75;
}
.mch-section-head { text-align: center; margin-bottom: 42px; }

/* HERO */
.mch-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 85%, rgba(130, 216, 255, .22), transparent 23%),
        radial-gradient(circle at 92% 20%, rgba(87, 185, 255, .18), transparent 30%),
        linear-gradient(112deg, #ffffff 0%, #fbfdff 45%, #e9f7ff 100%);
    border-bottom: 1px solid #dbeaf5;
}
.mch-hero::before {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 160px;
    opacity: .32;
    background-image:
        linear-gradient(rgba(0,173,238,.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,173,238,.16) 1px, transparent 1px);
    background-size: 48px 28px;
    transform: perspective(450px) rotateX(64deg) scale(1.35);
    transform-origin: bottom;
    mask-image: linear-gradient(to top, #000, transparent);
}
.mch-hero::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 150px;
    left: -80px;
    bottom: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,.72);
    box-shadow:
        100px -22px 0 20px rgba(255,255,255,.6),
        210px 8px 0 -10px rgba(255,255,255,.48);
    filter: blur(2px);
}
.mch-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1460px, calc(100% - 64px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(460px, .92fr) minmax(680px, 1.28fr);
    align-items: center;
    gap: 36px;
    padding: 70px 0 58px;
}
.mch-hero-copy { padding-left: 8px; }
.mch-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    border: 1px solid #d8ebff;
    border-radius: 999px;
    color: #007da9;
    background: rgba(255,255,255,.78);
    box-shadow: 0 8px 30px rgba(39,118,190,.08);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 18px;
}
.mch-hero-badge i { color: var(--mch-primary); }
.mch-hero h1 {
    max-width: 610px;
    margin: 0;
    color: #0b1d48;
    font-size: clamp(43px, 5.2vw, 68px);
    line-height: 1.04;
    letter-spacing: -3px;
    font-weight: 700;
}
.mch-hero h1 span {
    color: var(--mch-primary);
    display: block;
}
.mch-hero-copy > p {
    max-width: 560px;
    margin: 22px 0 27px;
    color: #465775;
    font-size: 16px;
    line-height: 1.75;
}
.mch-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}
.mch-btn {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.mch-btn:hover { transform: translateY(-3px); }
.mch-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--mch-primary-dark), var(--mch-primary));
    box-shadow: 0 12px 27px rgba(0,173,238,.28);
}
.mch-btn-primary .mch-btn-icon {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--mch-primary);
    background: #fff;
}
.mch-btn-outline {
    color: var(--mch-text);
    border: 1.5px solid #8291aa;
    background: rgba(255,255,255,.7);
}
.mch-btn-outline:hover { border-color: var(--mch-primary); color: var(--mch-primary); }
.mch-trust-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 27px;
}
.mch-avatars { display: flex; }
.mch-avatar {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    margin-left: -8px;
    border: 3px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    background: linear-gradient(135deg, #0086c3, #63ddff);
    box-shadow: 0 5px 15px rgba(0,134,195,.18);
}
.mch-avatar:first-child { margin-left: 0; background: linear-gradient(135deg, #f19545, #ffcb81); }
.mch-avatar:nth-child(2) { background: linear-gradient(135deg, #7d5cff, #af9aff); }
.mch-avatar:nth-child(3) { background: linear-gradient(135deg, #1fa98b, #5fd8bd); }
.mch-trust-text { color: #34435e; font-size: 12px; line-height: 1.5; }
.mch-stars { display: block; color: #ffad00; letter-spacing: 2px; font-size: 14px; }
.mch-hero-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.mch-hero-visual::before {
    content: '';
    position: absolute;
    width: 470px;
    height: 470px;
    border-radius: 50%;
    right: 70px;
    background: radial-gradient(circle, rgba(0,173,238,.20), rgba(0,173,238,0) 68%);
}
.mch-dashboard {
    position: relative;
    z-index: 2;
    width: 820px;
    max-width: none;
    margin-right: -74px;
    filter: drop-shadow(0 28px 34px rgba(0,134,195,.18));
    animation: mchFloat 5.5s ease-in-out infinite;
}
.mch-cloud-chip {
    position: absolute;
    z-index: 1;
    width: 78px;
    height: 47px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #72defd;
    background: rgba(255,255,255,.62);
    box-shadow: 0 10px 30px rgba(0,134,195,.10);
    font-size: 25px;
}
.mch-cloud-chip.one { left: 30px; top: 80px; }
.mch-cloud-chip.two { left: 4px; bottom: 85px; width: 60px; height: 38px; font-size: 20px; }
@keyframes mchFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* SERVICES */
.mch-services { background: #fff; }
.mch-services-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    gap: 20px;
}
.mch-service-card {
    position: relative;
    min-height: 235px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 22px 24px;
    text-align: center;
    border: 1px solid #dde7f1;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 16px rgba(22,68,120,.05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.mch-service-card:hover {
    transform: translateY(-7px);
    border-color: #8de1f7;
    box-shadow: 0 18px 38px rgba(0,134,195,.12);
}
.mch-service-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 50%;
    color: #fff;
    font-size: 21px;
    box-shadow: 0 9px 20px rgba(0,134,195,.17);
}
.mch-service-card:nth-child(5n+1) .mch-service-icon { background: linear-gradient(135deg,#0086c3,#00adee); }
.mch-service-card:nth-child(5n+2) .mch-service-icon { background: linear-gradient(135deg,#1ecf92,#62dfb2); }
.mch-service-card:nth-child(5n+3) .mch-service-icon { background: linear-gradient(135deg,#7155ef,#a67cff); }
.mch-service-card:nth-child(5n+4) .mch-service-icon { background: linear-gradient(135deg,#ff7d1e,#ffad47); }
.mch-service-card:nth-child(5n+5) .mch-service-icon { background: linear-gradient(135deg,#f04c9a,#ff82ba); }
.mch-service-card h3 {
    margin: 0 0 8px;
    color: #111c38;
    font-size: 15px;
    line-height: 1.35;
}
.mch-service-card p {
    margin: 0;
    color: #60708a;
    font-size: 11.5px;
    line-height: 1.65;
}
.mch-service-arrow {
    position: absolute;
    right: 13px;
    bottom: 10px;
    color: var(--mch-primary);
    font-size: 12px;
}

/* STATS */
.mch-stats {
    margin-top: 18px;
    padding: 28px 24px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-radius: 11px;
    background: linear-gradient(115deg, #004c68, #006f94);
    box-shadow: 0 18px 35px rgba(0,93,125,.20);
}
.mch-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    padding: 0 18px;
    color: #fff;
    border-right: 1px solid rgba(255,255,255,.13);
}
.mch-stat:last-child { border-right: 0; }
.mch-stat-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(99,221,255,.42);
    border-radius: 50%;
    color: #7de6ff;
    background: rgba(0,134,195,.34);
}
.mch-stat strong { display: block; color: #7de6ff; font-size: 25px; line-height: 1; }
.mch-stat > div > span { display: block; margin-top: 4px; color: #fff; font-size: 10px; white-space: nowrap; }

/* WHY + INDUSTRIES */
.mch-split-section {
    padding: 0 0 74px;
    background: #fff;
}
.mch-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.mch-panel {
    min-height: 292px;
    padding: 38px;
    border: 1px solid #e1eaf3;
    border-radius: 10px;
    background: linear-gradient(135deg,#fbfdff,#f3f9ff);
    box-shadow: 0 7px 24px rgba(20,70,120,.05);
}
.mch-growth-panel {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: center;
    overflow: hidden;
}
.mch-mini-label { color: var(--mch-primary); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.mch-panel h3 {
    margin: 6px 0 18px;
    color: #0c1c43;
    font-size: 24px;
    line-height: 1.2;
}
.mch-check-list { list-style: none; margin: 0; padding: 0; }
.mch-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 11px 0;
    color: #374862;
    font-size: 13px;
}
.mch-check-list i { color: var(--mch-primary); }
.mch-growth-image {
    width: 310px;
    max-width: none;
    margin-right: -34px;
    filter: drop-shadow(0 18px 20px rgba(0,134,195,.15));
}
.mch-industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 22px;
    margin-top: 22px;
}
.mch-industry {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #34435e;
    font-size: 12px;
}
.mch-industry i { width: 18px; color: var(--mch-primary); font-size: 16px; }

/* PROCESS */
.mch-process {
    padding: 10px 0 72px;
    background: #fff;
}
.mch-process-row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 38px;
    margin-top: 42px;
}
.mch-process-row::before {
    content: '';
    position: absolute;
    left: 8%;
    right: 8%;
    top: 21px;
    border-top: 1px dashed #a9cbef;
}
.mch-step { position: relative; z-index: 1; text-align: left; }
.mch-step-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border: 7px solid #eef7ff;
    border-radius: 50%;
    color: #fff;
    background: var(--mch-primary);
    box-shadow: 0 8px 18px rgba(0,173,238,.20);
}
.mch-step strong { display: block; color: #16223d; font-size: 12px; margin-bottom: 5px; }
.mch-step p { margin: 0; color: #65738b; font-size: 10.5px; line-height: 1.5; }

/* TECHNOLOGIES + CTA */
.mch-bottom-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 24px;
    padding-bottom: 32px;
}
.mch-tech-panel,
.mch-cta-panel {
    min-height: 150px;
    border-radius: 10px;
    overflow: hidden;
}
.mch-tech-panel {
    padding: 23px 28px;
    border: 1px solid #e1eaf3;
    background: linear-gradient(135deg,#fafdff,#eef7ff);
}
.mch-tech-panel h3 { margin: 3px 0 17px; color: #101e42; font-size: 20px; }
.mch-tech-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}
.mch-tech-logo {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #2f3a51;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    background: transparent;
}
.mch-tech-logo i { font-size: 34px; }
.mch-tech-logo.php i { color: #6676a8; }
.mch-tech-logo.laravel i { color: #f04438; }
.mch-tech-logo.html i { color: #e44d26; }
.mch-tech-logo.node i { color: #58a64a; }
.mch-tech-logo.react i { color: #20bce8; }
.mch-tech-logo.flutter { color: #3bb9ea; }
.mch-tech-logo.mysql { color: #22769b; }
.mch-tech-logo.mongo { color: #29994b; }
.mch-tech-logo.aws i { color: #f49a13; }
.mch-cta-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 28px 34px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 100%, rgba(99,221,255,.56), transparent 35%),
        linear-gradient(135deg,#0086c3,#00adee);
}
.mch-cta-panel::after {
    content: '\f135';
    position: absolute;
    right: 33px;
    bottom: 12px;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #a2edff;
    font-size: 64px;
    transform: rotate(-8deg);
    text-shadow: 0 9px 30px rgba(0,0,0,.20);
}
.mch-cta-panel h3 { position: relative; z-index: 1; margin: 0; font-size: 23px; }
.mch-cta-panel p { position: relative; z-index: 1; margin: 5px 0 14px; color: rgba(255,255,255,.78); font-size: 12px; }
.mch-cta-panel .mch-btn {
    position: relative;
    z-index: 1;
    min-height: 40px;
    padding: 0 17px;
    border-radius: 5px;
    color: var(--mch-primary);
    background: #fff;
    font-size: 12px;
}

/* Icon visibility */
.mch-home .fa-solid,
.mch-home .fa-regular,
.mch-home .fa-brands {
    display: inline-block;
    font-style: normal;
    line-height: 1;
}
.mch-service-icon i,
.mch-stat-icon i,
.mch-step-icon i,
.mch-industry i {
    visibility: visible !important;
    opacity: 1 !important;
}

/* reveal */
.mch-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
}
.mch-reveal.mch-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1520px) {
    .mch-container,
    .mch-bottom-grid,
    .mch-hero-inner { width: min(1320px, calc(100% - 48px)); }
    .mch-hero-inner { grid-template-columns: minmax(430px, .95fr) minmax(600px, 1.05fr); }
    .mch-dashboard { width: 760px; margin-right: -92px; }
}

@media (max-width: 1180px) {
    .mch-hero-inner { grid-template-columns: .95fr 1.05fr; }
    .mch-dashboard { width: 730px; margin-right: -120px; }
    .mch-services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .mch-stats { grid-template-columns: repeat(5, 1fr); }
    .mch-stat { padding: 0 8px; gap: 8px; }
}

@media (max-width: 900px) {
    .mch-hero { min-height: auto; }
    .mch-hero-inner {
        grid-template-columns: 1fr;
        padding-top: 68px;
        text-align: center;
    }
    .mch-hero h1, .mch-hero-copy > p { margin-left: auto; margin-right: auto; }
    .mch-hero-actions, .mch-trust-row { justify-content: center; }
    .mch-hero-visual { min-height: 410px; justify-content: center; }
    .mch-dashboard { width: min(850px, 108vw); margin: 0 -10vw; }
    .mch-cloud-chip.one { left: 8%; }
    .mch-cloud-chip.two { left: 12%; }
    .mch-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .mch-stats { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .mch-stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); padding: 14px; }
    .mch-stat:last-child { grid-column: 1 / -1; border-bottom: 0; }
    .mch-split-grid, .mch-bottom-grid { grid-template-columns: 1fr; }
    .mch-process-row { grid-template-columns: repeat(3, 1fr); }
    .mch-process-row::before { display: none; }
}

@media (max-width: 600px) {
    .mch-container, .mch-hero-inner { width: min(100% - 24px, 1180px); }
    .mch-section { padding: 62px 0; }
    .mch-hero-inner { padding-top: 44px; }
    .mch-hero h1 { font-size: 42px; letter-spacing: -2px; }
    .mch-hero-copy > p { font-size: 14px; }
    .mch-hero-actions { align-items: stretch; }
    .mch-btn { width: 100%; }
    .mch-trust-row { align-items: flex-start; }
    .mch-hero-visual { min-height: 300px; }
    .mch-dashboard { width: 690px; margin: 0 -250px 0 -55px; }
    .mch-cloud-chip { display: none; }
    .mch-services-grid { grid-template-columns: 1fr; }
    .mch-service-card { min-height: 200px; }
    .mch-stats { grid-template-columns: 1fr; }
    .mch-stat, .mch-stat:last-child { grid-column: auto; border-bottom: 1px solid rgba(255,255,255,.12); }
    .mch-stat:last-child { border-bottom: 0; }
    .mch-growth-panel { grid-template-columns: 1fr; }
    .mch-growth-image { width: 250px; margin: 8px auto -38px; }
    .mch-panel { padding: 25px 21px; }
    .mch-industries-grid { grid-template-columns: repeat(2, 1fr); }
    .mch-process-row { grid-template-columns: 1fr 1fr; gap: 24px; }
    .mch-tech-logos { justify-content: flex-start; }
    .mch-cta-panel { padding-right: 92px; }
}
@media (max-width: 640px) {
    .mch-container,
    .mch-bottom-grid,
    .mch-hero-inner { width: min(100% - 28px, 1460px); }
}

/* ==========================================================================
   COMPANY PAGE
   ========================================================================== */
/* =====================================================
   MakeClouds Company Page
   Matches the visual system of the shared Our Works page
===================================================== */


.company-page,
.company-page * {
    box-sizing: border-box;
}

.company-page {
    overflow: hidden;
    color: var(--co-text);
    background: #ffffff;
}

.company-page img {
    display: block;
    max-width: 100%;
}

.company-page a {
    text-decoration: none;
}

.company-page svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.co-container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 42px;
}

/* Accent colours */
.co-accent-blue {
    --accent: #00adee;
    --accent-soft: #eaf8ff;
    --accent-border: rgba(0, 173, 238, 0.28);
}

.co-accent-cyan {
    --accent: #19b9d6;
    --accent-soft: #eafcff;
    --accent-border: rgba(25, 185, 214, 0.28);
}

.co-accent-green {
    --accent: #46b97a;
    --accent-soft: #edf9f2;
    --accent-border: rgba(70, 185, 122, 0.28);
}

.co-accent-amber {
    --accent: #f5a900;
    --accent-soft: #fff8e7;
    --accent-border: rgba(245, 169, 0, 0.30);
}

/* Buttons */
.co-btn,
.co-text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 13px 24px;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 850;
    transition: 0.28s ease;
}

.co-btn span,
.co-text-link span {
    width: 18px;
    height: 18px;
    display: inline-flex;
}

.co-btn span svg,
.co-text-link span svg {
    width: 18px;
    height: 18px;
}

.co-btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--co-primary), var(--co-primary-2));
    box-shadow: 0 16px 30px rgba(0, 173, 238, 0.23);
}

.co-btn-outline {
    color: var(--co-primary);
    border: 1.5px solid var(--co-primary);
    background: #ffffff;
}

.co-btn-light {
    color: var(--co-primary);
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(7, 27, 70, 0.12);
}

.co-btn:hover,
.co-text-link:hover {
    transform: translateY(-3px);
}

.co-btn-outline:hover {
    color: #ffffff;
    background: var(--co-primary);
}

.co-text-link {
    min-height: auto;
    padding: 0;
    margin-top: 22px;
    color: var(--co-primary);
}

/* Labels */
.co-eyebrow,
.co-section-heading > span,
.co-mini-label {
    display: inline-flex;
    align-items: center;
    color: var(--co-primary);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.co-mini-label::before {
    content: "";
    width: 34px;
    height: 3px;
    margin-right: 10px;
    border-radius: 10px;
    background: var(--co-primary);
}

.co-centered {
    text-align: center;
}

/* Hero */
.co-hero {
    position: relative;
    padding: 70px 0 45px;
    border-bottom: 1px solid rgba(0, 173, 238, 0.12);
    background:
        radial-gradient(circle at 8% 35%, rgba(0, 173, 238, 0.08), transparent 18%),
        radial-gradient(circle at 88% 20%, rgba(0, 173, 238, 0.10), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.co-hero::before,
.co-hero::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(rgba(0, 173, 238, 0.22) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.75;
}

.co-hero::before {
    left: 0;
    top: 50px;
}

.co-hero::after {
    right: 42px;
    bottom: 36px;
}

.co-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 40px;
    align-items: center;
}

.co-hero-content h1 {
    margin: 14px 0 18px;
    color: var(--co-navy);
    font-size: clamp(3.2rem, 6vw, 6.1rem);
    line-height: 0.96;
    font-weight: 950;
    letter-spacing: -4px;
}

.co-hero-content h1 span {
    display: block;
    color: var(--co-primary);
}

.co-hero-content p {
    max-width: 620px;
    margin: 0;
    color: var(--co-muted);
    font-size: 18px;
    line-height: 1.75;
}

.co-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.co-hero-visual {
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.co-hero-visual img {
    width: min(100%, 760px);
    height: auto;
    object-fit: contain;
    opacity: 0.80; /* add this line — lower value = more transparent */
    filter: drop-shadow(0 25px 35px rgba(7, 27, 70, 0.13));
}

/* General section headings */
.co-section-heading {
    max-width: 760px;
    margin: 0 auto 38px;
}

.co-section-heading h2 {
    margin: 10px 0 12px;
    color: var(--co-navy);
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 950;
    line-height: 1.06;
    letter-spacing: -1.4px;
}

.co-section-heading h2 b {
    color: var(--co-primary);
}

.co-section-heading p {
    margin: 0 auto;
    color: var(--co-muted);
    font-size: 16px;
    line-height: 1.75;
}

/* About */
.co-about-section {
    padding: 70px 0;
    background: #ffffff;
}

.co-about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 55px;
    align-items: center;
}

.co-about-content h2 {
    margin: 14px 0 18px;
    color: var(--co-navy);
    font-size: clamp(2.3rem, 4vw, 4.5rem);
    font-weight: 950;
    line-height: 1.04;
    letter-spacing: -1.8px;
}

.co-about-content h2 b {
    display: block;
    color: var(--co-primary);
}

.co-about-content p {
    margin: 0 0 16px;
    color: #47566f;
    font-size: 16px;
    line-height: 1.8;
}

.co-company-panel {
    min-height: 430px;
    padding: 36px;
    border: 1.5px solid var(--co-border);
    border-radius: 26px;
    background:
        radial-gradient(circle at 50% 44%, rgba(0, 173, 238, 0.10), transparent 25%),
        linear-gradient(135deg, #f4fbff, #ffffff);
    box-shadow: var(--co-shadow);
}

.co-company-logo {
    width: min(560px, 90%);
    margin: 0 auto 38px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
}

.co-capability-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.co-capability {
    min-height: 100px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border: 1.5px solid var(--accent-border);
    border-radius: 18px;
    color: var(--co-navy);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(10, 35, 66, 0.05);
}

.co-capability > span {
    width: 54px;
    height: 54px;
    min-width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--accent);
    background: var(--accent-soft);
}

.co-capability strong {
    font-size: 16px;
}

/* Offerings */
.co-offerings-section {
    padding: 70px 0;
    background: var(--co-light);
}

.co-offering-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.co-offering-card {
    min-height: 280px;
    padding: 32px 28px;
    border: 1.5px solid var(--accent-border);
    border-radius: 22px;
    text-align: center;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(10, 35, 66, 0.06);
    transition: 0.3s ease;
}

.co-offering-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 173, 238, 0.12);
}

.co-offering-icon {
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    color: var(--accent);
    background: var(--accent-soft);
}

.co-offering-icon svg {
    width: 34px;
    height: 34px;
}

.co-offering-card h3 {
    margin: 0;
    color: var(--co-navy);
    font-size: 20px;
    font-weight: 900;
}

.co-card-line {
    width: 42px;
    height: 3px;
    display: block;
    margin: 15px auto 18px;
    border-radius: 20px;
    background: var(--accent);
}

.co-offering-card p {
    margin: 0;
    color: #47566f;
    font-size: 14.5px;
    line-height: 1.72;
}

/* Purpose */
.co-purpose-section {
    padding: 70px 0;
    background: #ffffff;
}

.co-purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.co-purpose-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 20px;
    align-items: start;
    padding: 30px;
    border: 1.5px solid var(--accent-border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(10, 35, 66, 0.06);
}

.co-purpose-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: var(--accent);
    background: var(--accent-soft);
}

.co-purpose-icon svg {
    width: 34px;
    height: 34px;
}

.co-purpose-card span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.co-purpose-card h3 {
    margin: 7px 0 10px;
    color: var(--co-navy);
    font-size: 20px;
    font-weight: 900;
}

.co-purpose-card p {
    margin: 0;
    color: #47566f;
    font-size: 14px;
    line-height: 1.7;
}

/* Journey */
.co-journey-section {
    padding: 70px 0;
    background: var(--co-light);
}

.co-journey-row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.co-journey-row::before {
    content: "";
    position: absolute;
    left: 7%;
    right: 7%;
    top: 32px;
    border-top: 1.5px dashed rgba(0, 173, 238, 0.35);
}

.co-journey-item {
    position: relative;
    z-index: 2;
    padding: 0 18px;
    text-align: center;
}

.co-journey-year {
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border: 8px solid #e7f8ff;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--co-primary), var(--co-primary-2));
    box-shadow: 0 10px 24px rgba(0, 173, 238, 0.22);
    font-size: 13px;
    font-weight: 900;
}

.co-journey-item h3 {
    margin: 0;
    color: var(--co-navy);
    font-size: 18px;
    font-weight: 900;
}

.co-journey-item p {
    margin: 9px 0 0;
    color: #47566f;
    font-size: 13.5px;
    line-height: 1.7;
}

/* Academy */
.co-academy-section {
    padding: 70px 0;
    background: #ffffff;
}

.co-academy-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 45px;
    align-items: center;
    padding: 46px;
    border: 1.5px solid var(--co-border);
    border-radius: 26px;
    background:
        radial-gradient(circle at 92% 15%, rgba(0, 173, 238, 0.10), transparent 22%),
        linear-gradient(135deg, #f4fbff, #ffffff);
    box-shadow: var(--co-shadow);
}

.co-academy-content h2 {
    margin: 13px 0 18px;
    color: var(--co-navy);
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 950;
    line-height: 1.04;
    letter-spacing: -1.5px;
}

.co-academy-content h2 b {
    color: var(--co-primary);
}

.co-academy-content p {
    margin: 0;
    color: #47566f;
    font-size: 16px;
    line-height: 1.8;
}

.co-academy-content ul {
    display: grid;
    gap: 11px;
    margin: 22px 0 25px;
    padding: 0;
    list-style: none;
}

.co-academy-content li {
    position: relative;
    padding-left: 28px;
    color: #47566f;
    font-size: 14px;
}

.co-academy-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--co-primary);
    font-size: 11px;
    font-weight: 900;
}

.co-academy-brand {
    padding: 40px;
    border: 1.5px solid rgba(0, 173, 238, 0.20);
    border-radius: 24px;
    text-align: center;
    background: #ffffff;
    box-shadow: 0 17px 38px rgba(7, 27, 70, 0.07);
}

.co-academy-brand img {
    width: min(100%, 640px);
    margin: 0 auto 28px;
}

.co-academy-note {
    padding: 22px;
    border-radius: 16px;
    color: var(--co-primary);
    background: #eaf8ff;
}

.co-academy-note strong,
.co-academy-note span {
    display: block;
}

.co-academy-note strong {
    font-size: 20px;
}

.co-academy-note span {
    margin-top: 7px;
    color: #4f6078;
    font-size: 13px;
    line-height: 1.6;
}

/* Stats */
.co-stats-section {
    padding: 20px 0 70px;
    background: #ffffff;
}

.co-stats-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1.5px solid var(--co-border);
    border-radius: 24px;
    box-shadow: var(--co-shadow);
}

.co-stat {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px;
    border-right: 1px solid var(--co-border);
    background: #ffffff;
}

.co-stat:last-child {
    border-right: 0;
}

.co-stat-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 50%;
    color: var(--accent);
    background: var(--accent-soft);
}

.co-stat-icon svg {
    width: 28px;
    height: 28px;
}

.co-stat strong {
    display: block;
    color: var(--co-navy);
    font-size: 30px;
    font-weight: 950;
    line-height: 1;
}

.co-stat span {
    display: block;
    margin-top: 5px;
    color: var(--co-muted);
    font-size: 13px;
    font-weight: 800;
}

/* CTA */
.co-cta-section {
    padding: 0 0 45px;
    background: #ffffff;
}

.co-cta-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 40px 46px;
    border-radius: 26px;
    color: #ffffff;
    background:
        radial-gradient(circle at 88% 25%, rgba(115, 221, 255, 0.42), transparent 24%),
        linear-gradient(135deg, #006f98, #00adee);
    box-shadow: 0 20px 45px rgba(0, 111, 152, 0.22);
}

.co-cta-card > div > span {
    color: #bcefff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.7px;
}

.co-cta-card h2 {
    margin: 8px 0 10px;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.08;
}

.co-cta-card p {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1200px) {
    .co-hero-grid,
    .co-about-grid,
    .co-academy-card {
        grid-template-columns: 1fr;
    }

    .co-hero-content,
    .co-about-content {
        text-align: center;
    }

    .co-hero-content p,
    .co-hero-actions,
    .co-about-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .co-hero-actions {
        justify-content: center;
    }

    .co-purpose-grid {
        grid-template-columns: 1fr;
    }

    .co-stats-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .co-stat {
        border-right: 0;
        border-bottom: 1px solid var(--co-border);
    }
}

@media (max-width: 991px) {
    .co-offering-grid {
        grid-template-columns: 1fr;
    }

    .co-journey-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .co-journey-row::before {
        display: none;
    }

    .co-hero-visual {
        min-height: auto;
    }

    .co-company-panel {
        min-height: auto;
    }

    .co-cta-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .co-cta-card .co-btn {
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .co-container {
        padding: 0 18px;
    }

    .co-hero {
        padding: 46px 0 34px;
    }

    .co-hero-content h1 {
        letter-spacing: -2px;
    }

    .co-hero-content p {
        font-size: 16px;
    }

    .co-capability-grid,
    .co-journey-row,
    .co-stats-panel {
        grid-template-columns: 1fr;
    }

    .co-purpose-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .co-purpose-icon {
        margin: 0 auto;
    }

    .co-btn,
    .co-text-link {
        width: 100%;
    }

    .co-academy-card,
    .co-cta-card {
        padding: 30px 22px;
    }

    .co-stat {
        border-right: 0;
    }
}

@media (max-width: 576px) {
    .co-about-content h2,
    .co-academy-content h2 {
        font-size: 34px;
    }

    .co-offering-card {
        min-height: auto;
    }

    .co-company-panel {
        padding: 24px 16px;
    }
}

/* ==========================================================================
   SERVICES PAGE
   ========================================================================== */
.service-page,
.service-page * {
    box-sizing: border-box;
}

.service-page {
    overflow: hidden;
    color: var(--mcs-text);
    background: #ffffff;
}

.service-page a {
    text-decoration: none;
}

.service-page img {
    display: block;
    max-width: 100%;
}

.service-page svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mcs-container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 42px;
}

/* HERO */
.mcs-hero {
    position: relative;
    padding: 68px 0 48px;
    border-bottom: 1px solid rgba(0, 173, 238, 0.12);
    background:
        radial-gradient(circle at 8% 34%, rgba(0, 173, 238, 0.08), transparent 18%),
        radial-gradient(circle at 90% 20%, rgba(0, 173, 238, 0.11), transparent 25%),
        linear-gradient(180deg, #ffffff 0%, #f7fcff 100%);
}

.mcs-hero::before,
.mcs-hero::after {
    content: "";
    position: absolute;
    width: 118px;
    height: 118px;
    background-image: radial-gradient(rgba(0, 173, 238, 0.22) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.65;
}

.mcs-hero::before {
    left: 0;
    top: 55px;
}

.mcs-hero::after {
    right: 40px;
    bottom: 32px;
}

.mcs-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 40px;
    align-items: center;
}

.mcs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    color: var(--mcs-primary-dark);
    background: #e8f8ff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.65px;
    text-transform: uppercase;
}

.mcs-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mcs-primary);
}

.mcs-hero-content h1 {
    margin: 18px 0 30px;
    color: var(--mcs-navy);
    font-size: clamp(3rem, 5.7vw, 6rem);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -3px;
}

.mcs-hero-content h1 span {
    display: block;
    margin-top: 7px;
    color: var(--mcs-primary);
    line-height: 1.08;
}

.mcs-hero-content p {
    max-width: 660px;
    margin: 0;
    color: var(--mcs-muted);
    font-size: 18px;
    line-height: 1.9;
}

.mcs-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 29px;
}

.mcs-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 850;
    transition: 0.28s ease;
}

.mcs-btn:hover {
    transform: translateY(-3px);
}

.mcs-btn span {
    width: 18px;
    height: 18px;
    display: inline-flex;
}

.mcs-btn span svg {
    width: 18px;
    height: 18px;
}

.mcs-btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--mcs-primary), var(--mcs-primary-2));
    box-shadow: 0 16px 30px rgba(0, 173, 238, 0.23);
}

.mcs-btn-outline {
    color: var(--mcs-primary);
    border: 1.5px solid var(--mcs-primary);
    background: #ffffff;
}

.mcs-btn-outline:hover {
    color: #ffffff;
    background: var(--mcs-primary);
}

.mcs-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 27px;
}

.mcs-hero-point {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #45546c;
    font-size: 12px;
    font-weight: 750;
}

.mcs-hero-point span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--mcs-primary);
    background: #eaf8ff;
}

.mcs-hero-point svg {
    width: 19px;
    height: 19px;
}

.mcs-hero-visual {
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mcs-hero-visual img {
    width: min(100%, 790px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 35px rgba(7, 27, 70, 0.13));
}

/* FILTERS */
.mcs-services-section {
    padding: 28px 0 66px;
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 173, 238, 0.06), transparent 26%),
        #ffffff;
}

.mcs-filter-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 13px;
    margin-bottom: 25px;
}

.mcs-filter-btn {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 20px;
    border: 1.5px solid #dbe8f1;
    border-radius: 999px;
    color: #3f4f68;
    background: #ffffff;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.24s ease;
}

.mcs-filter-btn svg {
    width: 19px;
    height: 19px;
}

.mcs-filter-btn:hover,
.mcs-filter-btn.is-active {
    color: #ffffff;
    border-color: var(--mcs-primary);
    background: linear-gradient(135deg, var(--mcs-primary), var(--mcs-primary-2));
    box-shadow: 0 11px 24px rgba(0, 173, 238, 0.18);
    transform: translateY(-2px);
}

/* SERVICE CARDS */
.mcs-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.mcs-service-card {
    --icon-color: #00adee;
    --icon-bg: #eaf8ff;

    min-height: 250px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1.5px solid rgba(7, 27, 70, 0.09);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(10, 35, 66, 0.045);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.mcs-service-card[hidden] {
    display: none !important;
}

.mcs-service-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--icon-color) 35%, transparent);
    box-shadow: 0 22px 45px rgba(0, 111, 152, 0.11);
}

.mcs-color-blue {
    --icon-color: #008fec;
    --icon-bg: #e9f6ff;
}

.mcs-color-teal {
    --icon-color: #10b7bc;
    --icon-bg: #e7fbfb;
}

.mcs-color-green {
    --icon-color: #41ae57;
    --icon-bg: #edf9ec;
}

.mcs-color-yellow {
    --icon-color: #f5a900;
    --icon-bg: #fff7df;
}

.mcs-color-orange {
    --icon-color: #ff7f24;
    --icon-bg: #fff0e4;
}

.mcs-color-red {
    --icon-color: #ef4757;
    --icon-bg: #ffeaed;
}

.mcs-color-rose {
    --icon-color: #ff5278;
    --icon-bg: #ffeaf0;
}

.mcs-color-pink {
    --icon-color: #ed4f96;
    --icon-bg: #ffeaf4;
}

.mcs-card-top {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.mcs-service-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--icon-color);
    background: var(--icon-bg);
}

.mcs-service-icon svg {
    width: 27px;
    height: 27px;
}

.mcs-service-card h3 {
    margin: 5px 0 0;
    color: var(--mcs-navy);
    font-size: 17px;
    line-height: 1.3;
    font-weight: 900;
}

.mcs-service-card p {
    margin: 15px 0 19px;
    color: #59687f;
    font-size: 13px;
    line-height: 1.67;
}

.mcs-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 14px;
    margin-top: auto;
    padding: 0;
    list-style: none;
}

.mcs-feature-list li {
    position: relative;
    padding-left: 13px;
    color: #536178;
    font-size: 10px;
    font-weight: 750;
}

.mcs-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--icon-color);
    box-shadow: 0 0 0 3px var(--icon-bg);
}

/* TRUST BAR */
.mcs-trust-section {
    padding: 0 0 70px;
    background: #ffffff;
}

.mcs-trust-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1.5px solid var(--mcs-border);
    border-radius: 22px;
    box-shadow: var(--mcs-shadow);
}

.mcs-trust-item {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 24px;
    border-right: 1px solid var(--mcs-border);
    background: #ffffff;
}

.mcs-trust-item:last-child {
    border-right: 0;
}

.mcs-trust-item > .mcs-trust-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    color: var(--mcs-primary);
    background: #eaf8ff;
    line-height: 1;
}

.mcs-trust-item > .mcs-trust-icon svg {
    width: 27px;
    height: 27px;
    display: block;
    margin: 0;
    flex: 0 0 auto;
}

.mcs-trust-item > div {
    min-width: 0;
    flex: 1 1 auto;
}

.mcs-trust-item > div > strong {
    display: block;
    margin: 0;
    color: var(--mcs-navy);
    font-size: 15px;
    line-height: 1.3;
}

.mcs-trust-item > div > span {
    display: block;
    margin-top: 6px;
    color: var(--mcs-muted);
    font-size: 11px;
    line-height: 1.5;
}

/* CTA */
.mcs-cta {
    padding: 0 0 42px;
    background: #ffffff;
}

.mcs-cta-panel {
    position: relative;
    min-height: 185px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 42px;
    align-items: center;
    overflow: hidden;
    padding: 39px 45px;
    border-radius: 24px;
    color: #ffffff;
    background:
        radial-gradient(circle at 88% 25%, rgba(99, 221, 255, 0.42), transparent 24%),
        linear-gradient(135deg, #006f98, #00adee);
    box-shadow: 0 20px 45px rgba(0, 111, 152, 0.22);
}

.mcs-cta-panel::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -65px;
    top: -100px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    box-shadow:
        0 0 0 30px rgba(255, 255, 255, 0.04),
        0 0 0 62px rgba(255, 255, 255, 0.025);
}

.mcs-cta-content,
.mcs-cta-panel .mcs-btn {
    position: relative;
    z-index: 2;
}

.mcs-cta-content span {
    color: #bcefff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.7px;
}

.mcs-cta-content h2 {
    margin: 8px 0 10px;
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1.08;
}

.mcs-cta-content p {
    max-width: 790px;
    margin: 0;
    color: rgba(255, 255, 255, 0.83);
    font-size: 15px;
    line-height: 1.7;
}

.mcs-cta .mcs-btn-primary {
    color: var(--mcs-primary-dark);
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* RESPONSIVE */
@media (max-width: 1250px) {
    .mcs-services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1050px) {
    .mcs-hero-grid {
        grid-template-columns: 1fr;
    }

    .mcs-hero-content {
        text-align: center;
    }

    .mcs-hero-content p {
        margin-inline: auto;
    }

    .mcs-hero-actions,
    .mcs-hero-points {
        justify-content: center;
    }

    .mcs-hero-visual {
        min-height: 360px;
    }

    .mcs-trust-panel {
        grid-template-columns: repeat(2, 1fr);
    }

    .mcs-trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--mcs-border);
    }

    .mcs-cta-panel {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mcs-cta-panel .mcs-btn {
        justify-self: center;
    }
}

@media (max-width: 850px) {
    .mcs-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .mcs-container {
        padding: 0 18px;
    }

    .mcs-hero {
        padding: 45px 0 32px;
    }

    .mcs-hero-content h1 {
        margin-bottom: 24px;
        font-size: 43px;
        line-height: 1.1;
        letter-spacing: -1.6px;
    }

    .mcs-hero-content h1 span {
        margin-top: 5px;
        line-height: 1.1;
    }

    .mcs-hero-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .mcs-btn {
        width: 100%;
    }

    .mcs-hero-visual {
        min-height: 280px;
    }

    .mcs-filter-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .mcs-filter-btn {
        width: 100%;
        padding: 0 10px;
        font-size: 11px;
    }

    .mcs-services-grid,
    .mcs-trust-panel {
        grid-template-columns: 1fr;
    }

    .mcs-service-card {
        min-height: auto;
    }

    .mcs-trust-item {
        border-bottom: 1px solid var(--mcs-border);
    }

    .mcs-trust-item:last-child {
        border-bottom: 0;
    }

    .mcs-cta-panel {
        padding: 30px 22px;
    }
}

/* ==========================================================================
   PRODUCTS PAGE
   ========================================================================== */
.mcp-page,
.mcp-page * {
    box-sizing: border-box;
}

.mcp-page {
    color: var(--mcp-text);
    background:
        radial-gradient(circle at 93% 9%, rgba(0,173,238,.06), transparent 18%),
        #fff;
}

.mcp-page a {
    text-decoration: none;
}

.mcp-shell {
    width: min(1460px, calc(100% - 48px));
    margin-inline: auto;
}

/* FULL-WIDTH PRODUCTS HERO */
.mcp-hero {
    position: relative;
    width: 100%;
    padding: 0 0 22px;
    overflow: hidden;
}

.mcp-hero-panel {
    position: relative;
    width: 100%;
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 44px 28px 38px;
    border-top: 1px solid #d7eafa;
    border-bottom: 1px solid #d7eafa;
    background:
        radial-gradient(circle at 50% 28%, rgba(255,255,255,.98), rgba(255,255,255,.82) 32%, transparent 62%),
        linear-gradient(115deg, #f9fdff 0%, #eef9ff 48%, #e2f5ff 100%);
}

.mcp-hero-panel::before,
.mcp-hero-panel::after {
    content: '';
    position: absolute;
    left: -7%;
    right: -7%;
    height: 150px;
    border-radius: 50%;
    pointer-events: none;
}

.mcp-hero-panel::before {
    bottom: -84px;
    background: rgba(187,231,253,.44);
    transform: rotate(-2deg);
}

.mcp-hero-panel::after {
    bottom: -116px;
    background: rgba(255,255,255,.82);
    transform: rotate(2deg);
}

.mcp-hero-center {
    position: relative;
    z-index: 5;
    width: min(760px, calc(100% - 40px));
    margin-inline: auto;
    text-align: center;
}

.mcp-hero-center h1 {
    margin: 0;
    color: #09183f;
    font-size: clamp(42px, 4.5vw, 68px);
    line-height: 1.04;
    letter-spacing: -2.5px;
    font-weight: 800;
}

.mcp-hero-center h1 span {
    color: var(--mcp-primary);
}

.mcp-hero-center > p {
    max-width: 690px;
    margin: 15px auto 0;
    color: #64728a;
    font-size: 16px;
    line-height: 1.7;
}

.mcp-hero-search {
    width: min(680px, 100%);
    margin: 24px auto 0;
}

.mcp-search-box {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 8px;
    border: 1px solid #dbe7f1;
    border-radius: 13px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 14px 36px rgba(0,116,160,.10);
}

.mcp-search-box i {
    margin-left: 11px;
    color: #71809a;
    font-size: 17px;
}

.mcp-search-box input {
    min-width: 0;
    flex: 1;
    height: 42px;
    border: 0;
    outline: 0;
    color: var(--mcp-text);
    background: transparent;
    font: inherit;
}

.mcp-search-box button {
    height: 42px;
    padding: 0 27px;
    border: 0;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, var(--mcp-primary-dark), var(--mcp-primary));
    box-shadow: 0 9px 20px rgba(0,173,238,.22);
    font-weight: 700;
    cursor: pointer;
}

.mcp-filter-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 18px;
}

.mcp-filter-pill {
    min-height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 17px;
    border: 1px solid #dfe8f0;
    border-radius: 8px;
    color: #35425b;
    background: rgba(255,255,255,.95);
    box-shadow: 0 6px 18px rgba(17,72,115,.06);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: .22s ease;
}

.mcp-filter-pill:hover,
.mcp-filter-pill.is-active {
    color: #fff;
    border-color: var(--mcp-primary);
    background: var(--mcp-primary);
    transform: translateY(-2px);
    box-shadow: 0 9px 22px rgba(0,173,238,.22);
}

/* Floating product chips */
.mcp-floating-products {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.mcp-floating-chip {
    position: absolute;
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    border: 1px solid rgba(0,173,238,.15);
    border-radius: 13px;
    color: #263550;
    background: rgba(255,255,255,.94);
    box-shadow: 0 12px 28px rgba(31,87,126,.12);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    animation: mcpFloatChip 5s ease-in-out infinite;
}

.mcp-floating-chip i {
    color: var(--chip-color, var(--mcp-primary));
    font-size: 17px;
}

.mcp-floating-chip:nth-child(1) { top: 34px; left: 13%; --chip-color: #178af5; animation-delay: .1s; }
.mcp-floating-chip:nth-child(2) { top: 90px; left: 10%; --chip-color: #18b89a; animation-delay: .7s; }
.mcp-floating-chip:nth-child(3) { top: 151px; left: 14%; --chip-color: #8458e8; animation-delay: 1.2s; }
.mcp-floating-chip:nth-child(4) { top: 216px; left: 20%; --chip-color: #f5a400; animation-delay: 1.8s; }

.mcp-floating-chip:nth-child(5) { top: 34px; right: 13%; --chip-color: #ec4284; animation-delay: .4s; }
.mcp-floating-chip:nth-child(6) { top: 91px; right: 10%; --chip-color: #7d55df; animation-delay: 1s; }
.mcp-floating-chip:nth-child(7) { top: 151px; right: 13%; --chip-color: #11b9a7; animation-delay: 1.5s; }
.mcp-floating-chip:nth-child(8) { top: 216px; right: 20%; --chip-color: #00adee; animation-delay: 2s; }

.mcp-chip-dot {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--mcp-primary);
    opacity: .45;
}

.mcp-chip-dot.one { left: 24%; top: 48px; }
.mcp-chip-dot.two { left: 20%; top: 181px; background: #8b5cf6; }
.mcp-chip-dot.three { right: 24%; top: 52px; background: #f8b928; }
.mcp-chip-dot.four { right: 20%; top: 184px; }

@keyframes mcpFloatChip {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

/* Ensure filtering really hides cards */
.mcp-product-card[hidden] {
    display: none !important;
}


/* Main catalogue */
.mcp-catalogue {
    padding: 0 0 42px;
}

.mcp-catalogue-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.mcp-sidebar {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 14px;
}

.mcp-side-panel {
    padding: 16px;
    border: 1px solid var(--mcp-border);
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(21,72,108,.04);
}

.mcp-side-panel h2,
.mcp-side-panel h3 {
    margin: 0 0 12px;
    color: #1c2841;
    font-size: 13px;
}

.mcp-category-list {
    display: grid;
    gap: 4px;
}

.mcp-category-button {
    width: 100%;
    min-height: 38px;
    display: grid;
    grid-template-columns: 19px 1fr auto;
    align-items: center;
    gap: 9px;
    padding: 0 10px;
    border: 0;
    border-radius: 8px;
    color: #44516a;
    background: transparent;
    text-align: left;
    font-size: 12px;
    cursor: pointer;
    transition: .2s ease;
}

.mcp-category-button i {
    color: #6a7890;
    text-align: center;
}

.mcp-category-button small {
    min-width: 22px;
    padding: 2px 6px;
    border-radius: 999px;
    color: #77849b;
    background: #f1f6fa;
    text-align: center;
    font-size: 10px;
}

.mcp-category-button:hover,
.mcp-category-button.is-active {
    color: var(--mcp-primary-dark);
    background: linear-gradient(90deg, rgba(0,173,238,.12), rgba(0,173,238,.035));
}

.mcp-category-button.is-active i {
    color: var(--mcp-primary);
}

.mcp-access-title {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.mcp-clear {
    border: 0;
    color: var(--mcp-primary-dark);
    background: transparent;
    font-size: 11px;
    cursor: pointer;
}

.mcp-check {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 11px;
    color: #56637a;
    font-size: 12px;
    cursor: pointer;
}

.mcp-check input {
    accent-color: var(--mcp-primary);
}

.mcp-results {
    min-width: 0;
}

.mcp-results-head {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 10px;
}

.mcp-results-count {
    margin: 0;
    color: #6a7890;
    font-size: 12px;
}

.mcp-sort {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #7a879a;
    font-size: 11px;
}

.mcp-sort select {
    height: 36px;
    padding: 0 34px 0 12px;
    border: 1px solid var(--mcp-border);
    border-radius: 8px;
    color: #2d3950;
    background: #fff;
    outline: 0;
    font-weight: 600;
}

.mcp-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.mcp-product-card {
    position: relative;
    min-height: 158px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--mcp-border);
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 7px 22px rgba(17,63,101,.04);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.mcp-product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,173,238,.42);
    box-shadow: 0 17px 35px rgba(0,113,157,.11);
}

.mcp-product-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: var(--mcp-card-color);
    box-shadow:
        inset 0 -8px 18px rgba(0,0,0,.08),
        0 9px 18px color-mix(in srgb, var(--mcp-card-color) 24%, transparent);
    font-size: 24px;
}

.mcp-product-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.mcp-product-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.mcp-product-card h3 {
    margin: 1px 0 5px;
    overflow: hidden;
    color: #1a253c;
    font-size: 14px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mcp-bookmark {
    flex: 0 0 auto;
    border: 0;
    color: #8390a4;
    background: transparent;
    cursor: pointer;
}

.mcp-bookmark.is-saved {
    color: var(--mcp-primary);
}

.mcp-product-card p {
    margin: 0;
    color: #67748a;
    font-size: 11px;
    line-height: 1.5;
}

.mcp-category-tag {
    align-self: flex-start;
    display: inline-flex;
    margin-top: 8px;
    padding: 4px 8px;
    border-radius: 999px;
    color: var(--mcp-card-color);
    background: color-mix(in srgb, var(--mcp-card-color) 11%, white);
    font-size: 9px;
    font-weight: 700;
}

.mcp-card-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 11px;
}

.mcp-product-meta {
    min-width: 0;
    flex: 1 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    color: #7a879a;
    font-size: 9px;
    line-height: 1.25;
    text-align: left;
}

.mcp-product-meta i {
    flex: 0 0 auto;
}

.mcp-try-button {
    min-width: 82px;
    min-height: 34px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 12px;
    border: 1px solid rgba(0,173,238,.40);
    border-radius: 7px;
    color: var(--mcp-primary-dark);
    background: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: .2s ease;
}

.mcp-try-button i {
    flex: 0 0 auto;
}

.mcp-try-button:hover {
    color: #fff;
    border-color: var(--mcp-primary);
    background: var(--mcp-primary);
}

.mcp-empty {
    display: none;
    grid-column: 1 / -1;
    padding: 60px 20px;
    border: 1px dashed #cfdde8;
    border-radius: 15px;
    color: #6c788c;
    background: #fbfdff;
    text-align: center;
}

.mcp-empty i {
    display: block;
    margin-bottom: 12px;
    color: var(--mcp-primary);
    font-size: 34px;
}

/* Benefit bar */
.mcp-benefit-bar {
    width: min(1160px, calc(100% - 48px));
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 6px auto 44px;
    padding: 17px 22px;
    border: 1px solid #d9eafa;
    border-radius: 13px;
    background: linear-gradient(90deg, #f6fcff, #eef9ff);
}

.mcp-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
    border-right: 1px solid #dce9f2;
}

.mcp-benefit:last-child {
    border-right: 0;
}

.mcp-benefit i {
    color: var(--mcp-primary-dark);
    font-size: 24px;
}

.mcp-benefit strong {
    display: block;
    margin-bottom: 2px;
    color: var(--mcp-primary-dark);
    font-size: 11px;
}

.mcp-benefit span {
    display: block;
    color: #69758a;
    font-size: 9px;
}

/* Responsive */
@media (max-width: 1280px) {
    .mcp-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mcp-hero-panel {
        grid-template-columns: .8fr 1.2fr;
    }

    .mcp-hero-art {
        display: none;
    }
}

@media (max-width: 980px) {
    .mcp-shell {
        width: min(100% - 30px, 1460px);
    }

    .mcp-hero-panel {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mcp-hero-copy p {
        margin-inline: auto;
    }

    .mcp-catalogue-layout {
        grid-template-columns: 1fr;
    }

    .mcp-sidebar {
        position: static;
    }

    .mcp-category-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .mcp-side-panel:last-child {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .mcp-side-panel:last-child h3 {
        margin: 0;
    }

    .mcp-check {
        margin-top: 0;
    }

    .mcp-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .mcp-shell {
        width: min(100% - 22px, 1460px);
    }

    .mcp-hero {
        padding-top: 0;
    }

    .mcp-hero-panel {
        padding: 28px 18px;
        border-radius: 0;
    }

    .mcp-search-box {
        flex-wrap: wrap;
    }

    .mcp-search-box button {
        width: 100%;
    }

    .mcp-filter-pills {
        gap: 7px;
    }

    .mcp-filter-pill {
        padding: 0 10px;
        font-size: 10px;
    }

    .mcp-category-list {
        grid-template-columns: 1fr 1fr;
    }

    .mcp-side-panel:last-child {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .mcp-check {
        margin-top: 8px;
    }

    .mcp-results-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .mcp-products-grid {
        grid-template-columns: 1fr;
    }

    .mcp-product-card {
        min-height: 150px;
    }

    .mcp-benefit-bar {
        width: min(100% - 22px, 1160px);
        grid-template-columns: 1fr 1fr;
        gap: 18px 0;
    }

    .mcp-benefit:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width: 420px) {
    .mcp-category-list {
        grid-template-columns: 1fr;
    }

    .mcp-benefit-bar {
        grid-template-columns: 1fr;
    }

    .mcp-benefit {
        justify-content: flex-start;
        border-right: 0;
    }
}

@media (max-width: 1180px) {
    .mcp-floating-chip:nth-child(1),
    .mcp-floating-chip:nth-child(2),
    .mcp-floating-chip:nth-child(3),
    .mcp-floating-chip:nth-child(4) { left: 4%; }

    .mcp-floating-chip:nth-child(5),
    .mcp-floating-chip:nth-child(6),
    .mcp-floating-chip:nth-child(7),
    .mcp-floating-chip:nth-child(8) { right: 4%; }

    .mcp-floating-chip:nth-child(4),
    .mcp-floating-chip:nth-child(8) { display: none; }
}

@media (max-width: 900px) {
    .mcp-hero-panel {
        min-height: auto;
        padding: 46px 18px 34px;
    }

    .mcp-floating-products {
        position: relative;
        inset: auto;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 9px;
        width: min(760px, calc(100% - 20px));
        margin: 0 auto 24px;
        order: -1;
    }

    .mcp-hero-panel {
        flex-direction: column;
    }

    .mcp-floating-chip {
        position: static !important;
        min-height: 40px;
        justify-content: center;
        padding: 0 9px;
        font-size: 10px;
        animation: none;
    }

    .mcp-floating-chip:nth-child(4),
    .mcp-floating-chip:nth-child(8) {
        display: inline-flex;
    }

    .mcp-chip-dot {
        display: none;
    }
}

@media (max-width: 650px) {
    .mcp-hero-center {
        width: 100%;
    }

    .mcp-hero-center h1 {
        font-size: 40px;
        letter-spacing: -1.7px;
    }

    .mcp-hero-center > p {
        font-size: 14px;
    }

    .mcp-floating-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mcp-search-box {
        flex-wrap: wrap;
    }

    .mcp-search-box button {
        width: 100%;
    }

    .mcp-filter-pills {
        gap: 7px;
    }

    .mcp-filter-pill {
        min-height: 37px;
        padding: 0 10px;
        font-size: 10px;
    }
}

/* ==========================================================================
   TEAM PAGES (ourteam.php and team.php)
   ========================================================================== */
.team-page,
.team-page * {
    box-sizing: border-box;
}

.team-page {
    overflow: hidden;
    color: var(--mt-text);
    background: #ffffff;
}

.team-page img {
    display: block;
    max-width: 100%;
}

.team-page a {
    text-decoration: none;
}

.team-page svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mt-container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 42px;
}

.mt-blue { --accent: #00adee; --soft: #e9f8ff; }
.mt-teal { --accent: #10b7bc; --soft: #e7fbfb; }
.mt-green { --accent: #41ae57; --soft: #edf9ec; }
.mt-yellow { --accent: #f5a900; --soft: #fff7df; }
.mt-orange { --accent: #ff7f24; --soft: #fff0e4; }
.mt-rose { --accent: #ff5278; --soft: #ffeaf0; }

.mt-eyebrow,
.mt-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mt-primary-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.mt-eyebrow {
    padding: 8px 13px;
    border-radius: 999px;
    background: #e8f8ff;
}

.mt-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mt-primary);
}

.mt-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.mt-section-heading h2 {
    margin: 8px 0 0;
    color: var(--mt-navy);
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.mt-section-heading h2 span {
    color: var(--mt-primary);
}

/* Hero */
.mt-hero {
    position: relative;
    padding: 64px 0 40px;
    border-bottom: 1px solid rgba(0,173,238,.12);
    background:
        radial-gradient(circle at 9% 28%, rgba(0,173,238,.08), transparent 19%),
        radial-gradient(circle at 89% 21%, rgba(0,173,238,.10), transparent 24%),
        linear-gradient(180deg, #fff, #f8fcff);
}

.mt-hero-grid {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 35px;
    align-items: center;
}

.mt-hero h1 {
    margin: 16px 0 20px;
    color: var(--mt-navy);
    font-size: clamp(3rem, 5.3vw, 5.8rem);
    line-height: 1.02;
    letter-spacing: -3.2px;
}

.mt-hero h1 span {
    display: block;
    color: var(--mt-primary);
}

.mt-hero-copy > p {
    max-width: 640px;
    margin: 0;
    color: var(--mt-muted);
    font-size: 17px;
    line-height: 1.78;
}

.mt-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 29px;
}

.mt-hero-stat {
    min-width: 155px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 14px;
    border: 1px solid var(--mt-border);
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 9px 22px rgba(7,27,70,.055);
}

.mt-hero-stat > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--mt-primary);
    background: #eaf8ff;
}

.mt-hero-stat > span svg {
    width: 21px;
    height: 21px;
}

.mt-hero-stat strong {
    display: block;
    color: var(--mt-navy);
    font-size: 22px;
    line-height: 1;
}

.mt-hero-stat small {
    display: block;
    margin-top: 5px;
    color: var(--mt-muted);
    font-size: 10px;
}

.mt-hero-visual {
    min-height: 460px;
    display: grid;
    place-items: center;
}

.mt-hero-visual img {
    width: min(100%, 780px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 34px rgba(7,27,70,.12));
}

/* Leadership */
.mt-leadership {
    padding: 70px 0;
    background: #fff;
}

.mt-leadership-panel {
    padding: 34px;
    border: 1px solid var(--mt-border);
    border-radius: 24px;
    background:
        radial-gradient(circle at 7% 12%, rgba(0,173,238,.08), transparent 23%),
        linear-gradient(135deg, #f7fcff, #fff);
    box-shadow: var(--mt-shadow);
}

.mt-leadership-intro {
    max-width: 780px;
    margin-bottom: 28px;
}

.mt-leadership-intro h2 {
    margin: 8px 0 12px;
    color: var(--mt-navy);
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.08;
}

.mt-leadership-intro h2 span {
    color: var(--mt-primary);
}

.mt-leadership-intro p {
    margin: 0;
    color: var(--mt-muted);
    font-size: 15px;
    line-height: 1.75;
}

.mt-leader-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.mt-leader-card {
    overflow: hidden;
    border: 1px solid rgba(7,27,70,.09);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(7,27,70,.055);
    transition: .28s ease;
}

.mt-leader-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,173,238,.35);
    box-shadow: 0 21px 40px rgba(0,111,152,.12);
}

.mt-leader-photo {
    height: 260px;
    overflow: hidden;
    background: #edf4f8;
}

.mt-leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.mt-leader-body {
    padding: 20px;
}

.mt-leader-body h3 {
    margin: 0;
    color: var(--mt-navy);
    font-size: 19px;
}

.mt-leader-role {
    display: block;
    margin-top: 6px;
    color: var(--mt-primary-dark);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.45;
}

.mt-leader-body p {
    margin: 13px 0 0;
    color: var(--mt-muted);
    font-size: 12px;
    line-height: 1.65;
}

/* Domains */
.mt-domains {
    padding: 70px 0;
    background: var(--mt-light);
}

.mt-domain-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.mt-domain-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 23px 18px;
    border: 1px solid rgba(7,27,70,.09);
    border-radius: 18px;
    text-align: center;
    background: #fff;
    box-shadow: 0 12px 28px rgba(7,27,70,.045);
    transition: .25s ease;
}

.mt-domain-card:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--accent) 32%, transparent);
}

.mt-domain-icon {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--accent);
    background: var(--soft);
}

.mt-domain-icon svg {
    width: 33px;
    height: 33px;
}

.mt-domain-card h3 {
    margin: 14px 0 7px;
    color: var(--mt-navy);
    font-size: 15px;
    line-height: 1.35;
}

.mt-domain-card strong {
    color: var(--accent);
    font-size: 23px;
}

/* Values */
.mt-values {
    padding: 70px 0;
    background: #fff;
}

.mt-values-panel {
    padding: 31px;
    border: 1px solid var(--mt-border);
    border-radius: 22px;
    background: linear-gradient(135deg, #f6fcff, #fff);
}

.mt-values-title {
    margin-bottom: 25px;
    color: var(--mt-navy);
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.mt-values-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 13px;
}

.mt-value-card {
    min-height: 190px;
    padding: 22px 15px;
    border: 1px solid rgba(7,27,70,.08);
    border-radius: 16px;
    text-align: center;
    background: #fff;
}

.mt-value-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    margin: 0 auto 13px;
    border-radius: 50%;
    color: var(--accent);
    background: var(--soft);
}

.mt-value-icon svg {
    width: 28px;
    height: 28px;
}

.mt-value-card h3 {
    margin: 0;
    color: var(--mt-navy);
    font-size: 13px;
}

.mt-value-card p {
    margin: 9px 0 0;
    color: var(--mt-muted);
    font-size: 10px;
    line-height: 1.55;
}

/* CTA */
.mt-cta {
    padding: 0 0 42px;
}

.mt-cta-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 35px;
    align-items: center;
    padding: 38px 43px;
    border-radius: 23px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 25%, rgba(99,221,255,.4), transparent 23%),
        linear-gradient(135deg, #006f98, #00adee);
    box-shadow: 0 20px 45px rgba(0,111,152,.21);
}

.mt-cta-panel h2 {
    margin: 0 0 8px;
    font-size: clamp(2rem, 3vw, 3rem);
}

.mt-cta-panel p {
    max-width: 730px;
    margin: 0;
    color: rgba(255,255,255,.83);
    font-size: 14px;
    line-height: 1.7;
}

.mt-cta-actions {
    display: flex;
    gap: 12px;
}

.mt-btn {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 20px;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 850;
    white-space: nowrap;
    transition: .25s ease;
}

.mt-btn:hover {
    transform: translateY(-3px);
}

.mt-btn-primary {
    color: var(--mt-primary-dark);
    background: #fff;
}

.mt-btn-outline {
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.72);
}

.mt-btn span {
    width: 17px;
    height: 17px;
    display: inline-flex;
}

.mt-btn svg {
    width: 17px;
    height: 17px;
}

/* Reveal */
.mt-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}

.mt-reveal.mt-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1180px) {
    .mt-domain-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mt-values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 960px) {
    .mt-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mt-hero-copy > p {
        margin-inline: auto;
    }

    .mt-hero-stats {
        justify-content: center;
    }

    .mt-hero-visual {
        min-height: 370px;
    }

    .mt-leader-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mt-cta-panel {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mt-cta-actions {
        justify-content: center;
    }
}

@media (max-width: 650px) {
    .mt-container {
        padding: 0 18px;
    }

    .mt-hero {
        padding-top: 45px;
    }

    .mt-hero h1 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .mt-hero-stat {
        width: 100%;
        justify-content: flex-start;
    }

    .mt-leadership,
    .mt-domains,
    .mt-values {
        padding: 55px 0;
    }

    .mt-leadership-panel,
    .mt-values-panel {
        padding: 23px 16px;
    }

    .mt-leader-grid,
    .mt-domain-grid,
    .mt-values-grid {
        grid-template-columns: 1fr;
    }

    .mt-leader-photo {
        height: 300px;
    }

    .mt-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .mt-cta-panel {
        padding: 30px 22px;
    }

    .mt-cta-actions {
        flex-direction: column;
    }

    .mt-btn {
        width: 100%;
    }
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.mc-contact-page,
.mc-contact-page * {
    box-sizing: border-box;
}

.mc-contact-page {
    overflow: hidden;
    color: var(--mc-contact-text);
    background: #ffffff;
}

.mc-contact-page a {
    text-decoration: none;
}

.mc-contact-page button,
.mc-contact-page input,
.mc-contact-page textarea,
.mc-contact-page select {
    font: inherit;
}

.mc-contact-container {
    width: min(1460px, calc(100% - 56px));
    margin-inline: auto;
}

/* HERO */
.mc-contact-hero {
    position: relative;
    padding: 74px 0 42px;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 173, 238, 0.12);
    background:
        radial-gradient(circle at 7% 34%, rgba(0, 173, 238, 0.08), transparent 18%),
        radial-gradient(circle at 91% 17%, rgba(0, 173, 238, 0.10), transparent 24%),
        linear-gradient(180deg, #ffffff, #f7fcff);
}

.mc-contact-hero::before,
.mc-contact-hero::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(rgba(0, 173, 238, 0.24) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.58;
}

.mc-contact-hero::before {
    left: -12px;
    top: 78px;
}

.mc-contact-hero::after {
    right: 38px;
    bottom: 24px;
}

.mc-contact-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.mc-contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    color: var(--mc-contact-primary-dark);
    background: #e8f8ff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.mc-contact-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mc-contact-primary);
}

.mc-contact-hero h1 {
    margin: 17px 0 18px;
    color: var(--mc-contact-navy);
    font-size: clamp(48px, 5.8vw, 86px);
    line-height: 0.98;
    letter-spacing: -3.2px;
}

.mc-contact-hero h1 span {
    display: block;
    color: var(--mc-contact-primary);
}

.mc-contact-hero-copy > p {
    max-width: 650px;
    margin: 0;
    color: var(--mc-contact-muted);
    font-size: 17px;
    line-height: 1.8;
}

.mc-contact-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.mc-contact-hero-point {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    border: 1px solid var(--mc-contact-border);
    border-radius: 12px;
    color: #40516b;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 25px rgba(7, 27, 70, 0.05);
    font-size: 12px;
    font-weight: 800;
}

.mc-contact-hero-point i {
    color: var(--mc-contact-primary);
}

.mc-contact-illustration {
    position: relative;
    min-height: 390px;
    display: grid;
    place-items: center;
}

.mc-contact-envelope {
    position: relative;
    width: min(540px, 92%);
    aspect-ratio: 1.34;
}

.mc-contact-envelope::before {
    content: "";
    position: absolute;
    inset: 14% 4% 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 173, 238, 0.16), rgba(0, 173, 238, 0) 68%);
    filter: blur(5px);
}

.mc-contact-envelope-body {
    position: absolute;
    left: 50%;
    bottom: 14%;
    width: 72%;
    height: 46%;
    transform: translateX(-50%);
    border-radius: 18px;
    background: linear-gradient(145deg, #1d8ff0, #006ddf);
    box-shadow: 0 30px 45px rgba(0, 100, 170, 0.20);
}

.mc-contact-envelope-body::before,
.mc-contact-envelope-body::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 52%;
    height: 100%;
    background: linear-gradient(145deg, #0b7de3, #00adee);
}

.mc-contact-envelope-body::before {
    left: 0;
    clip-path: polygon(0 0, 100% 55%, 100% 100%, 0 100%);
    border-bottom-left-radius: 18px;
}

.mc-contact-envelope-body::after {
    right: 0;
    clip-path: polygon(100% 0, 0 55%, 0 100%, 100% 100%);
    border-bottom-right-radius: 18px;
}

.mc-contact-envelope-paper {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 8%;
    width: 50%;
    height: 58%;
    transform: translateX(-50%) rotate(-2deg);
    padding: 28px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 20px 38px rgba(7, 27, 70, 0.12);
}

.mc-contact-envelope-paper span {
    display: block;
    height: 9px;
    margin-bottom: 13px;
    border-radius: 20px;
    background: #d8ecf8;
}

.mc-contact-envelope-paper span:first-child {
    width: 62%;
    background: var(--mc-contact-primary);
}

.mc-contact-envelope-paper span:nth-child(2) {
    width: 90%;
}

.mc-contact-envelope-paper span:nth-child(3) {
    width: 78%;
}

.mc-contact-envelope-paper span:nth-child(4) {
    width: 54%;
}

.mc-contact-float-icon {
    position: absolute;
    z-index: 3;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid var(--mc-contact-border);
    border-radius: 17px;
    color: var(--mc-contact-primary);
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(7, 27, 70, 0.10);
    font-size: 22px;
}

.mc-contact-float-icon.one {
    left: 8%;
    top: 26%;
}

.mc-contact-float-icon.two {
    right: 4%;
    top: 14%;
}

.mc-contact-float-icon.three {
    right: 11%;
    bottom: 7%;
}

/* CONTACT AREA */
.mc-contact-main {
    padding: 70px 0;
    background: #ffffff;
}

.mc-contact-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
    align-items: stretch;
}

.mc-contact-info-panel,
.mc-contact-form-panel {
    border: 1px solid var(--mc-contact-border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--mc-contact-shadow);
}

.mc-contact-info-panel {
    padding: 34px;
    background:
        radial-gradient(circle at 8% 10%, rgba(0, 173, 238, 0.10), transparent 24%),
        linear-gradient(145deg, #f4fbff, #ffffff);
}

.mc-contact-panel-label {
    display: inline-block;
    color: var(--mc-contact-primary-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.65px;
    text-transform: uppercase;
}

.mc-contact-info-panel h2,
.mc-contact-form-panel h2 {
    margin: 10px 0 10px;
    color: var(--mc-contact-navy);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
}

.mc-contact-info-panel > p,
.mc-contact-form-panel > p {
    margin: 0;
    color: var(--mc-contact-muted);
    font-size: 14px;
    line-height: 1.7;
}

.mc-contact-detail-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.mc-contact-detail {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 15px;
    align-items: start;
    padding: 17px;
    border: 1px solid rgba(7, 27, 70, 0.07);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(7, 27, 70, 0.04);
}

.mc-contact-detail-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--mc-contact-primary);
    background: #eaf8ff;
    font-size: 19px;
}

.mc-contact-detail h3 {
    margin: 1px 0 6px;
    color: var(--mc-contact-navy);
    font-size: 15px;
}

.mc-contact-detail p,
.mc-contact-detail a {
    margin: 0;
    color: #53637c;
    font-size: 12px;
    line-height: 1.65;
}

.mc-contact-detail a:hover {
    color: var(--mc-contact-primary-dark);
}

.mc-contact-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.mc-contact-social a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--mc-contact-border);
    border-radius: 50%;
    color: var(--mc-contact-primary);
    background: #ffffff;
    transition: 0.25s ease;
}

.mc-contact-social a:hover {
    color: #ffffff;
    background: var(--mc-contact-primary);
    transform: translateY(-3px);
}

.mc-contact-form-panel {
    padding: 34px;
}

.mc-contact-alert {
    margin: 20px 0 0;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
}

.mc-contact-alert.success {
    color: #14683b;
    border: 1px solid #bde7ce;
    background: #effbf4;
}

.mc-contact-alert.error {
    color: #a72b38;
    border: 1px solid #f1c3ca;
    background: #fff1f3;
}

.mc-contact-form {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.mc-contact-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mc-contact-field {
    display: grid;
    gap: 7px;
}

.mc-contact-field label {
    color: #31405a;
    font-size: 12px;
    font-weight: 800;
}

.mc-contact-field label span {
    color: #ef4757;
}

.mc-contact-field input,
.mc-contact-field select,
.mc-contact-field textarea {
    width: 100%;
    border: 1px solid #dbe7ef;
    border-radius: 12px;
    outline: none;
    color: var(--mc-contact-text);
    background: #fbfdff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mc-contact-field input,
.mc-contact-field select {
    height: 50px;
    padding: 0 15px;
}

.mc-contact-field textarea {
    min-height: 150px;
    resize: vertical;
    padding: 15px;
}

.mc-contact-field input:focus,
.mc-contact-field select:focus,
.mc-contact-field textarea:focus {
    border-color: var(--mc-contact-primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 173, 238, 0.09);
}

.mc-contact-hidden-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.mc-contact-submit {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    justify-self: start;
    padding: 0 24px;
    border: 0;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--mc-contact-primary), #1277ff);
    box-shadow: 0 15px 30px rgba(0, 173, 238, 0.23);
    font-weight: 850;
    cursor: pointer;
    transition: 0.25s ease;
}

.mc-contact-submit:hover {
    transform: translateY(-3px);
}

/* MAP */
.mc-contact-map-section {
    padding: 0 0 70px;
    background: #ffffff;
}

.mc-contact-map-card {
    overflow: hidden;
    border: 1px solid var(--mc-contact-border);
    border-radius: 24px;
    box-shadow: var(--mc-contact-shadow);
}

.mc-contact-map-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 25px;
    background: linear-gradient(135deg, #f4fbff, #ffffff);
}

.mc-contact-map-head h2 {
    margin: 0;
    color: var(--mc-contact-navy);
    font-size: 24px;
}

.mc-contact-map-head a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mc-contact-primary-dark);
    font-size: 12px;
    font-weight: 850;
}

.mc-contact-map {
    width: 100%;
    height: 430px;
    border: 0;
    display: block;
}

/* CTA */
.mc-contact-cta {
    padding: 0 0 42px;
    background: #ffffff;
}

.mc-contact-cta-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 35px;
    align-items: center;
    overflow: hidden;
    padding: 38px 43px;
    border-radius: 23px;
    color: #ffffff;
    background:
        radial-gradient(circle at 90% 25%, rgba(99, 221, 255, 0.40), transparent 23%),
        linear-gradient(135deg, var(--mc-contact-primary-deep), var(--mc-contact-primary));
    box-shadow: 0 20px 45px rgba(0, 111, 152, 0.21);
}

.mc-contact-cta-panel h2 {
    margin: 0 0 8px;
    font-size: clamp(30px, 3vw, 45px);
}

.mc-contact-cta-panel p {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    line-height: 1.7;
}

.mc-contact-cta-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 21px;
    border-radius: 11px;
    color: var(--mc-contact-primary-dark);
    background: #ffffff;
    font-size: 13px;
    font-weight: 850;
    white-space: nowrap;
    transition: 0.25s ease;
}

.mc-contact-cta-button:hover {
    transform: translateY(-3px);
}

@media (max-width: 1050px) {
    .mc-contact-hero-grid,
    .mc-contact-layout {
        grid-template-columns: 1fr;
    }

    .mc-contact-hero-copy {
        text-align: center;
    }

    .mc-contact-hero-copy > p {
        margin-inline: auto;
    }

    .mc-contact-hero-points {
        justify-content: center;
    }

    .mc-contact-illustration {
        min-height: 330px;
    }

    .mc-contact-cta-panel {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mc-contact-cta-button {
        justify-self: center;
    }
}

@media (max-width: 650px) {
    .mc-contact-container {
        width: min(100% - 26px, 1460px);
    }

    .mc-contact-hero {
        padding-top: 48px;
    }

    .mc-contact-hero h1 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .mc-contact-hero-points {
        display: grid;
        grid-template-columns: 1fr;
    }

    .mc-contact-hero-point {
        justify-content: center;
    }

    .mc-contact-info-panel,
    .mc-contact-form-panel {
        padding: 24px 18px;
    }

    .mc-contact-field-row {
        grid-template-columns: 1fr;
    }

    .mc-contact-submit {
        width: 100%;
    }

    .mc-contact-map-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .mc-contact-map {
        height: 350px;
    }

    .mc-contact-cta-panel {
        padding: 30px 22px;
    }

    .mc-contact-cta-button {
        width: 100%;
    }
}

/* ========================================================================== 
   HOME PAGE MOBILE PLACEMENT CORRECTIONS
   These rules intentionally affect only .mch-home.
   ========================================================================== */

/* Keep each statistic icon centred inside its own circle at every width. */
.mch-home .mch-stat-icon {
    display: grid;
    place-items: center;
    margin: 0;
}
.mch-home .mch-stat-icon i {
    display: block;
    width: auto;
    height: auto;
    line-height: 1;
}
.mch-home .mch-stat > div {
    min-width: 0;
}

@media (max-width: 900px) {
    .mch-home .mch-hero-inner {
        row-gap: 8px;
    }
    .mch-home .mch-hero-visual {
        width: 100%;
        min-height: 430px;
        justify-content: center;
        overflow: hidden;
    }
    .mch-home .mch-dashboard {
        position: relative;
        left: 3vw;
        width: min(820px, 145vw);
        max-width: none;
        margin: 0;
    }

    .mch-home .mch-stat {
        justify-content: flex-start;
        text-align: left;
    }
    .mch-home .mch-stat > div > span {
        white-space: normal;
    }
}

@media (max-width: 600px) {
    .mch-home .mch-hero {
        min-height: 0;
    }
    .mch-home .mch-hero-inner {
        width: calc(100% - 28px);
        padding: 34px 0 16px;
        gap: 2px;
    }
    .mch-home .mch-hero-copy {
        padding-left: 0;
    }
    .mch-home .mch-hero-badge {
        max-width: 100%;
        justify-content: center;
        text-align: center;
    }
    .mch-home .mch-hero h1 {
        font-size: clamp(34px, 10vw, 42px);
        line-height: 1.08;
        letter-spacing: -1.6px;
    }
    .mch-home .mch-hero-copy > p {
        margin-top: 17px;
        margin-bottom: 22px;
        font-size: 14px;
        line-height: 1.7;
    }
    .mch-home .mch-hero-actions {
        gap: 12px;
    }
    .mch-home .mch-trust-row {
        width: 100%;
        align-items: center;
        justify-content: center;
        margin-top: 23px;
    }
    .mch-home .mch-trust-text {
        max-width: 300px;
        text-align: left;
    }
    .mch-home .mch-hero-visual {
        min-height: 408px;
        margin-top: 2px;
        overflow: hidden;
    }
    .mch-home .mch-hero-visual::before {
        width: 360px;
        height: 360px;
        right: 50%;
        transform: translateX(50%);
    }
    .mch-home .mch-dashboard {
        left: 35px;
        width: min(620px, 170vw);
        margin: 0;
    }

    .mch-home .mch-services-grid {
        gap: 18px;
    }
    .mch-home .mch-stats {
        padding: 12px 18px;
    }
    .mch-home .mch-stat,
    .mch-home .mch-stat:last-child {
        min-height: 78px;
        justify-content: flex-start;
        gap: 16px;
        padding: 14px 10px;
        border-right: 0;
    }
    .mch-home .mch-stat-icon {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        font-size: 17px;
    }
    .mch-home .mch-stat strong {
        font-size: 25px;
    }
    .mch-home .mch-stat > div > span {
        margin-top: 5px;
        font-size: 10px;
        line-height: 1.35;
        white-space: normal;
    }

    .mch-home .mch-growth-panel {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    .mch-home .mch-growth-image {
        width: min(390px, 100%);
        max-width: 100%;
        margin: 18px auto -8px;
        align-self: center;
    }
}

@media (max-width: 390px) {
    .mch-home .mch-dashboard {
        left: 31px;
        width: 168vw;
    }
    .mch-home .mch-hero-visual {
        min-height: 380px;
    }
    .mch-home .mch-growth-image {
        width: min(350px, 108%);
        max-width: 108%;
        margin-left: -4%;
        margin-right: -4%;
    }
}

/* ========================================================================== 
   HOME HERO MOBILE DASHBOARD — SMALLER AND CENTRED
   ========================================================================== */
@media (max-width: 600px) {
    .mch-home .mch-hero-visual {
        width: 100%;
        min-height: 350px;
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .mch-home .mch-dashboard {
        position: relative;
        left: auto;
        right: auto;
        width: min(540px, 116vw);
        max-width: none;
        margin: 0 auto;
        object-position: center;
    }
}

@media (max-width: 390px) {
    .mch-home .mch-hero-visual {
        min-height: 320px;
    }

    .mch-home .mch-dashboard {
        left: auto;
        width: min(470px, 118vw);
        margin: 0 auto;
    }
}
