/* ==========================================================
   MACMISTER - OLM TO PST CONVERTER
   Modern SEO-Friendly Product Page
   ========================================================== */

/* ==========================================================
   1. ROOT / RESET
   ========================================================== */

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #eff6ff;

    --accent: #f97316;
    --accent-dark: #ea580c;
    --accent-light: #fff7ed;

    --dark: #0f172a;
    --dark-2: #111827;
    --dark-3: #1e293b;

    --text: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    --border: #e2e8f0;
    --border-dark: rgba(255, 255, 255, 0.12);

    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --bg-soft-2: #f1f5f9;

    --success: #16a34a;

    --shadow-sm:
        0 4px 14px rgba(15, 23, 42, 0.06);

    --shadow-md:
        0 16px 40px rgba(15, 23, 42, 0.08);

    --shadow-lg:
        0 30px 80px rgba(15, 23, 42, 0.12);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        "Inter",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);
    background: var(--bg);

    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #64748b;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

/* ==========================================================
   2. GLOBAL LAYOUT
   ========================================================== */

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.section {
    position: relative;
    padding: 100px 0;
}

.section-sm {
    padding: 72px 0;
}

.section-soft {
    background: var(--bg-soft);
}

.section-dark {
    color: #fff;
    background:
        radial-gradient(circle at 20% 20%,
            rgba(37, 99, 235, 0.18),
            transparent 35%),
        radial-gradient(circle at 85% 70%,
            rgba(249, 115, 22, 0.14),
            transparent 35%),
        linear-gradient(135deg,
            #0f172a 0%,
            #111827 48%,
            #172033 100%);
}

.section-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-header.left {
    margin-left: 0;
    text-align: left;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 14px;
    padding: 7px 12px;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;

    color: var(--primary-dark);
    background: var(--primary-light);
}

.section-dark .section-eyebrow {
    color: #bfdbfe;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(147, 197, 253, 0.14);
}

.section-title {
    margin: 0;

    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.section-subtitle {
    margin: 10px auto 0;
    max-width: 720px;

    font-size: 16px;
    color: var(--text-muted);
}

.section-dark .section-subtitle {
    color: #cbd5e1;
}

/* ==========================================================
   3. BREADCRUMB
   ========================================================== */

.product-breadcrumb {
    padding: 18px 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;

    margin: 0;
    padding: 0;

    list-style: none;

    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}


.breadcrumb-list li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: #cbd5e1;
    font-weight: 600;
}

.breadcrumb-list a:hover {
    color: var(--primary);
}

/* ==========================================================
   MODERN HEADER
   ========================================================== */
/* ==========================================================
   MOBILE NAVIGATION
   ========================================================== */

.mobile-nav {
    display: none;
}


/* ==========================================================
   TABLET / MOBILE
   ========================================================== */

@media (max-width: 1050px) {

    .main-nav {
        display: none;
    }


    .mobile-menu-toggle {
        display: grid;
        place-items: center;
    }


    .site-header {
        position: relative;
    }


    .mobile-nav {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        z-index: 99999;

        display: none;

        max-height:
            calc(100vh - 70px);

        overflow-y: auto;

        padding:
            12px 20px 22px;

        border-top:
            1px solid rgba(255, 255, 255, .08);

        background:
            linear-gradient(180deg,
                #07385f,
                #082f4c);

        box-shadow:
            0 20px 40px rgba(15, 23, 42, .25);
    }


    /* OPEN STATE */

    .mobile-nav.open {
        display: block;
    }


    /* NORMAL LINKS */

    .mobile-nav-link {
        display: flex;
        align-items: center;

        gap: 9px;

        width: 100%;

        padding:
            13px 8px;

        border-bottom:
            1px solid rgba(255, 255, 255, .07);

        color: #e2e8f0;

        font-size: 14px;
        font-weight: 650;

        text-decoration: none;
    }


    .mobile-nav-link:hover {
        color: #ffffff;
    }


    .mobile-nav-link svg {
        width: 17px;
        height: 17px;
    }


    /* ======================================================
       MOBILE PRODUCTS
       ====================================================== */

    .mobile-products {
        border-bottom:
            1px solid rgba(255, 255, 255, .07);
    }


    .mobile-products-toggle {
        display: flex;

        align-items: center;
        justify-content: space-between;

        width: 100%;

        padding:
            13px 8px;

        border: 0;

        color: #e2e8f0;

        background: transparent;

        font: inherit;
        font-size: 14px;
        font-weight: 650;

        cursor: pointer;
    }


    .mobile-products-toggle svg {
        width: 16px;
        height: 16px;

        transition:
            transform .2s ease;
    }


    .mobile-products.open .mobile-products-toggle svg {
        transform:
            rotate(180deg);
    }


    /* SUB MENU */

    .mobile-products-menu {
        display: none;

        padding:
            2px 10px 16px;
    }


    .mobile-products.open .mobile-products-menu {
        display: block;
    }


    /* PRODUCT GROUP */

    .mobile-product-group {
        display: grid;

        gap: 2px;

        margin-top: 12px;

        padding:
            14px 12px;

        border:
            1px solid rgba(255, 255, 255, .07);

        border-radius: 10px;

        background:
            rgba(255, 255, 255, .035);
    }


    .mobile-product-heading {
        display: block;

        margin-bottom: 8px;

        color: #60a5fa;

        font-size: 10px;
        font-weight: 800;

        letter-spacing: .06em;

        text-transform: uppercase;
    }


    .mobile-product-group a {
        display: block;

        padding:
            7px 3px;

        color: #cbd5e1;

        font-size: 12px;

        text-decoration: none;
    }


    .mobile-product-group a:hover {
        color: #ffffff;
    }


    /* ALL PRODUCTS */

    .mobile-all-products {
        display: inline-flex;

        align-items: center;

        gap: 6px;

        margin-top: 14px;

        color: #60a5fa;

        font-size: 13px;
        font-weight: 750;

        text-decoration: none;
    }


    .mobile-all-products svg {
        width: 15px;
        height: 15px;
    }

}

.site-header {
    position: relative;
    z-index: 1000;

    width: 100%;

    background:
        linear-gradient(90deg,
            #0b3f91 0%,
            #0649b7 50%,
            #063c91 100%);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}


/* INNER */

.site-header-inner {
    min-height: 76px;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 34px;
}


/* ==========================================================
   LOGO
   ========================================================== */

.site-logo {
    display: inline-flex;
    align-items: center;

    text-decoration: none;
}

.site-logo img {
    display: block;

    width: auto;
    max-width: 210px;

    height: auto;
}


/* ==========================================================
   NAVIGATION
   ========================================================== */

.main-nav {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 6px;
}


.nav-link,
.nav-dropdown-toggle {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    min-height: 40px;

    padding:
        9px 12px;

    border: 0;

    border-radius: 8px;

    background: transparent;

    color: #e2e8f0;

    font-size: 15px;
    font-weight: 650;

    text-decoration: none;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}


.nav-link:hover,
.nav-dropdown-toggle:hover {
    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.07);
}


.nav-dropdown-toggle svg {
    width: 15px;
    height: 15px;
}


/* ==========================================================
   OFFERS
   ========================================================== */

.nav-offer {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    min-height: 40px;

    padding:
        9px 13px;

    border-radius: 8px;

    color: #ffffff;

    background:
        linear-gradient(135deg,
            #f43f5e,
            #e11d48);

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 7px 18px rgba(225, 29, 72, 0.20);
}


.nav-offer svg {
    width: 17px;
    height: 17px;
}


/* ==========================================================
   DROPDOWN
   ========================================================== */

.nav-item {
    position: relative;
}


.nav-dropdown {
    position: absolute;

    top: calc(100% + 10px);
    left: 50%;

    width: 250px;

    padding: 10px;

    border:
        1px solid #e2e8f0;

    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 20px 45px rgba(15, 23, 42, 0.14);

    opacity: 0;
    visibility: hidden;

    transform:
        translate(-50%, 8px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}


.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;

    transform:
        translate(-50%, 0);
}


.nav-dropdown a {
    display: block;

    padding:
        10px 12px;

    border-radius: 8px;

    color: #334155;

    font-size: 13px;

    text-decoration: none;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}


.nav-dropdown a:hover {
    color: #2563eb;

    background: #eff6ff;
}


/* ==========================================================
   RIGHT ACTIONS
   ========================================================== */

.header-actions {
    display: flex;

    align-items: center;

    gap: 10px;
}


/* SEARCH */

.header-search {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border: 0;

    border-radius: 9px;

    color: #ffffff;

    background: transparent;

    cursor: pointer;

    transition:
        background 0.2s ease;
}


.header-search:hover {
    background:
        rgba(255, 255, 255, 0.08);
}


.header-search svg {
    width: 18px;
    height: 18px;
}


/* LIVE CHAT */

.header-chat {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    min-height: 40px;

    padding:
        9px 14px;

    border-radius: 9px;

    color: #ffffff;

    background:
        linear-gradient(135deg,
            #ff7a18,
            #f05a0b);

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 8px 18px rgba(37, 99, 235, 0.22);
}


.header-chat svg {
    width: 17px;
    height: 17px;
}


/* ==========================================================
   MOBILE BUTTON
   ========================================================== */

.mobile-menu-toggle {
    display: none;

    width: 40px;
    height: 40px;

    border: 0;

    border-radius: 9px;

    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.06);

    cursor: pointer;
}


.mobile-menu-toggle svg {
    width: 21px;
    height: 21px;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1050px) {

    .main-nav {
        display: none;
    }


    .site-header-inner {
        grid-template-columns:
            auto 1fr;

        gap: 20px;
    }


    .header-actions {
        justify-self: end;
    }


    .mobile-menu-toggle {
        display: grid;
        place-items: center;
    }

}


@media (max-width: 600px) {

    .site-header-inner {
        min-height: 68px;
    }


    .site-logo img {
        max-width: 165px;
    }


    .header-chat {
        display: none;
    }

}

/* ==========================================================
   CURRENT NAV - PRODUCTS TOGGLE
   ========================================================== */

.main-menu-product {
    position: relative;
}

/* Products button */

.main-menu-product-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    min-height: 40px;
    padding: 8px 10px;

    border: 0;
    border-radius: 8px;

    color: #e2e8f0;
    background: transparent;

    font: inherit;
    font-size: 15px;
    font-weight: 650;

    cursor: pointer;
}

.main-menu-product-toggle:hover,
.main-menu-product.open .main-menu-product-toggle {
    color: #ffffff;
    background: rgba(255, 255, 255, .07);
}

.main-menu-product-toggle svg {
    width: 15px;
    height: 15px;

    transition: transform .2s ease;
}

.main-menu-product.open .main-menu-product-toggle svg {
    transform: rotate(180deg);
}


/* ==========================================================
   MEGA MENU
   ========================================================== */

.main-mega-menu {
    position: fixed;

    top: 76px;
    left: 50%;

    z-index: 99999;

    width: min(1120px, calc(100vw - 48px));

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translate(-50%, 10px);

    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .2s ease;
}

.main-menu-product.open .main-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translate(-50%, 0);
}

.main-mega-menu-inner {
    overflow: hidden;

    border: 1px solid #e2e8f0;
    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 28px 70px rgba(15, 23, 42, .20);
}


/* ==========================================================
   TABS
   ========================================================== */

.mega-menu-tabs {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 14px 18px;

    border-bottom: 1px solid #e2e8f0;

    background: #f8fafc;
}

.mega-menu-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    min-width: 180px;

    padding: 10px 18px;

    border: 0;
    border-radius: 9px;

    color: #64748b;
    background: transparent;

    font: inherit;
    font-size: 15px;
    font-weight: 750;

    cursor: pointer;
}

.mega-menu-tab.active {
    color: #2563eb;

    background: #ffffff;

    box-shadow:
        0 5px 15px rgba(15, 23, 42, .07);
}

.mega-menu-tab svg {
    width: 17px;
    height: 17px;
}


/* ==========================================================
   PANELS
   ========================================================== */

.mega-menu-panel {
    display: none;

    padding: 18px 20px;
}

.mega-menu-panel.active {
    display: block;
}


/* ==========================================================
   PRODUCT GRID
   ========================================================== */

.mega-products-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 6px 10px;
}

.mega-product-item {
    display: grid;

    grid-template-columns:
        38px minmax(0, 1fr);

    gap: 10px;

    align-items: center;

    min-height: 60px;

    padding: 9px 10px;

    border: 1px solid transparent;
    border-radius: 10px;

    text-decoration: none;

    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.mega-product-item:hover {
    transform: translateY(-1px);

    border-color: #dbeafe;

    background: #f8fbff;
}

.mega-product-item>svg {
    width: 36px;
    height: 36px;

    padding: 8px;

    border-radius: 9px;

    color: #2563eb;

    background: #eff6ff;

    stroke-width: 1.8;
}

.mega-product-item strong {
    display: block;

    color: #0f172a;

    font-size: 15px;
    font-weight: 700;
}

.mega-product-item small {
    display: block;

    margin-top: 2px;

    color: #94a3b8;

    font-size: 13px;

    line-height: 1.35;
}


/* ==========================================================
   FOOTER
   ========================================================== */

.mega-menu-footer {
    display: flex;
    justify-content: center;

    padding: 12px 18px;

    border-top: 1px solid #e2e8f0;

    background: #f8fafc;
}

.mega-menu-footer a {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: #2563eb;

    font-size: 15px;
    font-weight: 750;

    text-decoration: none;
}

.mega-menu-footer svg {
    width: 14px;
    height: 14px;
}

/* ==========================================================
   4. HERO
   ========================================================== */

/* ==========================================================
   OLM TO PST HERO
   ========================================================== */

.mm-pst-hero {
    position: relative;
    overflow: hidden;

    padding: 76px 0 0;

    background:
        radial-gradient(circle at 50% 0%,
            rgba(37, 99, 235, 0.055),
            transparent 34%),
        #ffffff;
}

.mm-pst-hero .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* ==========================================================
   CONTENT
   ========================================================== */

.mm-pst-hero-content {
    position: relative;
    z-index: 2;

    max-width: 1120px;
    margin: 0 auto;

    text-align: center;
}


/* ==========================================================
   EYEBROW
   ========================================================== */

.mm-pst-eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 18px;

    padding: 7px 13px;

    border: 1px solid #dbeafe;
    border-radius: 999px;

    background: #f8fbff;

    color: #2563eb;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.025em;
}


/* ==========================================================
   TITLE
   ========================================================== */

.mm-pst-title {
    max-width: 900px;

    margin:
        0 auto;

    color: #0f172a;

    font-size:
        clamp(46px,
            6vw,
            72px);

    font-weight: 800;

    line-height: 1.04;

    letter-spacing: -0.05em;
}

.mm-pst-title span {
    color: #2563eb;
}


/* ==========================================================
   DESCRIPTION
   ========================================================== */

.mm-pst-description {
    max-width: 820px;

    margin:
        22px auto 0;

    color: #475569;

    font-size: 18px;

    line-height: 1.7;
}


/* ==========================================================
   BENEFITS
   ========================================================== */

.mm-pst-benefits {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    margin-top: 28px;
}

.mm-pst-benefit {
    position: relative;

    display: flex;
    align-items: center;

    gap: 8px;

    padding:
        6px 24px;

    color: #334155;

    font-size: 14px;
    font-weight: 600;
}

.mm-pst-benefit:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;

    width: 1px;
    height: 22px;

    background: #e2e8f0;
}

.mm-pst-benefit svg {
    width: 18px;
    height: 18px;

    color: #2563eb;

    stroke-width: 1.8;
}


/* ==========================================================
   PLATFORM AREA

   Deliberately NO big card background.
   ========================================================== */

.mm-platform-area {
    max-width: 820px;

    margin:
        42px auto 0;
}


/* ==========================================================
   TABS
   ========================================================== */

.mm-platform-tabs {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    border-top:
        1px solid #e2e8f0;

    border-bottom:
        1px solid #e2e8f0;
}

.mm-platform-tab {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 58px;

    padding:
        12px 20px;

    border: 0;

    background: transparent;

    color: #64748b;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    transition:
        color 0.2s ease;
}

.mm-platform-tab::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -1px;

    height: 3px;

    background: transparent;

    transition:
        background 0.2s ease;
}

.mm-platform-tab:hover {
    color: #0f172a;
}

.mm-platform-tab.is-active {
    color: #2563eb;
}

.mm-platform-tab.is-active::after {
    background: #2563eb;
}

.mm-platform-tab svg {
    width: 20px;
    height: 20px;
}

.mm-platform-logo {
    width: 20px;
    height: 20px;
}

.mm-platform-tab small {
    padding:
        3px 7px;

    border-radius: 999px;

    background: #eff6ff;

    color: #2563eb;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.04em;

    text-transform: uppercase;
}


/* ==========================================================
   PLATFORM PANELS
   ========================================================== */

.mm-platform-panel {
    display: none;

    padding:
        30px 20px;
}

.mm-platform-panel.is-active {
    display: block;
}


/* ==========================================================
   ACTIONS
   ========================================================== */

.mm-platform-actions {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;

    max-width: 650px;

    margin: 0 auto;
}


/* DOWNLOAD */

.mm-download-button,
.mm-buy-button {
    min-height: 72px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    padding:
        12px 22px;

    border-radius: 12px;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}


.mm-download-button {
    color: #ffffff;

    background:
        linear-gradient(135deg,
            #2563eb,
            #1d4ed8);

    box-shadow:
        0 10px 24px rgba(37, 99, 235, 0.2);
}

.mm-download-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 15px 30px rgba(37, 99, 235, 0.26);
}


/* BUY */

.mm-buy-button {
    color: #1d4ed8;

    border:
        1px solid #bfdbfe;

    background: #ffffff;
}

.mm-buy-button:hover {
    transform: translateY(-2px);

    border-color: #60a5fa;

    box-shadow:
        0 12px 28px rgba(15, 23, 42, 0.07);
}


/* ACTION ICON */

.mm-action-icon {
    display: grid;

    place-items: center;

    width: 38px;
    height: 38px;

    flex:
        0 0 38px;
}

.mm-action-icon svg {
    width: 23px;
    height: 23px;

    stroke-width: 1.8;
}

.mm-download-button .mm-action-icon {
    color: #ffffff;
}

.mm-buy-button .mm-action-icon {
    color: #2563eb;
}


/* ACTION TEXT */

.mm-action-copy {
    text-align: left;
}

.mm-action-copy strong {
    display: block;

    font-size: 16px;
    line-height: 1.3;
}

.mm-action-copy small {
    display: block;

    margin-top: 3px;

    font-size: 12px;
    font-weight: 500;
}

.mm-download-button small {
    color: #dbeafe;
}

.mm-buy-button small {
    color: #64748b;
}


/* ==========================================================
   TRUST ROW
   ========================================================== */

.mm-platform-trust {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 2px;

    padding:
        22px 0;

    border-top:
        1px solid #e2e8f0;

    border-bottom:
        1px solid #e2e8f0;
}

.mm-trust-item {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding:
        0 12px;

    text-align: left;
}

.mm-trust-item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 50%;
    right: 0;

    width: 1px;
    height: 32px;

    transform:
        translateY(-50%);

    background: #e2e8f0;
}

.mm-trust-item>svg {
    width: 23px;
    height: 23px;

    flex:
        0 0 23px;

    color: #2563eb;

    stroke-width: 1.7;
}

.mm-trust-item strong {
    display: block;

    color: #0f172a;

    font-size: 15px;
    font-weight: 700;
}

.mm-trust-item span {
    display: block;

    margin-top: 2px;

    color: #94a3b8;

    font-size: 13px;
}


/* ==========================================================
   PRODUCT SCREENSHOT

   Similar content rhythm to HxD:
   CTA first, actual software UI directly below.
   ========================================================== */

.mm-product-preview {
    position: relative;

    max-width: 1050px;

    margin:
        52px auto 0;
}

.mm-preview-heading {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-bottom: 14px;

    color: #64748b;

    font-size: 12px;
    font-weight: 600;
}

.mm-preview-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow:
        0 0 0 4px rgba(34, 197, 94, 0.10);
}


/* Screenshot frame */

.mm-product-screenshot {
    position: relative;

    overflow: hidden;

    border:
        1px solid #dbe3ee;

    border-radius:
        12px 12px 0 0;

    background: #ffffff;

    box-shadow:
        0 30px 70px rgba(15, 23, 42, 0.13);
}

.mm-product-screenshot::before {
    content: "";

    display: block;

    height: 34px;

    border-bottom:
        1px solid #e2e8f0;

    background:
        linear-gradient(180deg,
            #fbfdff,
            #f4f7fb);
}

.mm-product-screenshot img {
    width: 100%;
    height: auto;

    display: block;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 900px) {

    .mm-pst-hero {
        padding-top: 62px;
    }

    .mm-platform-trust {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .mm-trust-item:nth-child(2)::after {
        display: none;
    }

    .mm-trust-item:nth-child(-n + 2) {
        padding-bottom: 14px;
    }

    .mm-trust-item:nth-child(n + 3) {
        padding-top: 14px;
    }

}


@media (max-width: 700px) {

    .mm-pst-title {
        font-size:
            clamp(38px,
                11vw,
                52px);
    }

    .mm-pst-description {
        font-size: 16px;
    }

    .mm-pst-benefits {
        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap: 12px;
    }

    .mm-pst-benefit {
        justify-content: center;

        padding: 6px;
    }

    .mm-pst-benefit::after {
        display: none;
    }

    .mm-platform-actions {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 520px) {

    .mm-pst-hero .container {
        width:
            calc(100% - 28px);
    }

    .mm-platform-tab {
        font-size: 14px;
    }

    .mm-platform-tab small {
        display: none;
    }

    .mm-pst-benefits {
        grid-template-columns: 1fr;
    }

    .mm-platform-trust {
        grid-template-columns: 1fr;
    }

    .mm-trust-item {
        justify-content: flex-start;

        max-width: 220px;

        margin:
            0 auto;

        padding:
            10px 0;
    }

    .mm-trust-item::after {
        display: none;
    }

}

.hero-rating-static {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 8px;

    margin: 12px 0 18px;

    color: #64748b;

    font-size: 12px;
}


.hero-rating-stars {
    display: flex;
    align-items: center;

    gap: 2px;
}


.hero-rating-stars svg {
    width: 17px;
    height: 17px;

    color: #f59e0b;
    fill: #f59e0b;

    stroke-width: 1.7;
}


.hero-rating-score {
    color: #0f172a;

    font-weight: 750;
}


.hero-rating-separator {
    width: 1px;
    height: 13px;

    background: #dbe2ea;
}


.hero-rating-count {
    color: #64748b;

    font-weight: 500;
}

/* ==========================================================
   MAC OLM TO PST - CORE FEATURES
   ========================================================== */

.mm-core-features {
    position: relative;
    overflow: hidden;

    padding: 100px 0;

    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #f8fafc 100%);
}


/* SUBTLE BACKGROUND */

.mm-core-features::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    top: -260px;
    right: -220px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(37, 99, 235, 0.06),
            transparent 70%);

    pointer-events: none;
}


/* ==========================================================
   GRID
   ========================================================== */

.mm-core-feature-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        0 52px;

    max-width: 1100px;

    margin: 0 auto;
}


/* ==========================================================
   FEATURE ITEM
   ========================================================== */

.mm-core-feature {
    position: relative;

    display: grid;

    grid-template-columns:
        52px minmax(0, 1fr);

    gap: 18px;

    padding:
        30px 4px;

    border-bottom:
        1px solid #e2e8f0;
}


/*
 * Remove bottom border
 * from last row.
 */

.mm-core-feature:nth-last-child(-n + 2) {
    border-bottom: 0;
}


/* ==========================================================
   ICON
   ========================================================== */

.mm-core-feature-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    color: #2563eb;

    background:
        linear-gradient(145deg,
            #eff6ff,
            #f8fbff);

    border:
        1px solid #dbeafe;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}


.mm-core-feature-icon svg {
    width: 23px;
    height: 23px;

    stroke-width: 1.8;
}


.mm-core-feature:hover .mm-core-feature-icon {
    transform:
        translateY(-3px);

    color: #ffffff;

    background:
        linear-gradient(135deg,
            #2563eb,
            #1d4ed8);
}


/* ==========================================================
   CONTENT
   ========================================================== */

.mm-core-feature-content {
    min-width: 0;
}


.mm-core-feature-content h3 {
    margin:
        0 0 8px;

    color: #0f172a;

    font-size: 18px;
    font-weight: 750;

    line-height: 1.35;

    letter-spacing: -0.015em;
}


.mm-core-feature-content p {
    margin: 0;

    color: #64748b;

    font-size: 15px;

    line-height: 1.7;
}

.mm-core-feature-content a {
    color: #2563eb;

    font-weight: 700;

    text-decoration: none;
}


.mm-core-feature-content strong {
    color: #334155;

    font-weight: 650;
}


/* ==========================================================
   BOTTOM NOTE / INTERNAL LINK
   ========================================================== */

.mm-core-feature-note {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    max-width: 850px;

    margin:
        42px auto 0;

    padding:
        14px 14px;

    border:
        1px solid #e2e8f0;

    border-radius: 12px;

    background: #ffffff;

    color: #64748b;

    font-size: 14px;

    text-align: center;
}


.mm-core-feature-note svg {
    width: 18px;
    height: 18px;

    flex:
        0 0 18px;

    color: #2563eb;
}


.mm-core-feature-note p {
    margin: 0;
}


.mm-core-feature-note a {
    color: #2563eb;

    font-weight: 700;

    text-decoration: none;
}


.mm-core-feature-note a:hover {
    text-decoration: underline;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 900px) {

    .mm-core-feature-grid {
        gap:
            0 32px;
    }

}


@media (max-width: 767px) {

    .mm-core-features {
        padding:
            72px 0;
    }


    .mm-core-feature-grid {
        grid-template-columns: 1fr;
    }


    .mm-core-feature {
        padding:
            24px 0;
    }


    .mm-core-feature:nth-last-child(-n + 2) {
        border-bottom:
            1px solid #e2e8f0;
    }


    .mm-core-feature:last-child {
        border-bottom: 0;
    }

}


@media (max-width: 480px) {

    .mm-core-feature {
        grid-template-columns:
            44px minmax(0, 1fr);

        gap: 14px;
    }


    .mm-core-feature-icon {
        width: 44px;
        height: 44px;

        border-radius: 12px;
    }


    .mm-core-feature-icon svg {
        width: 20px;
        height: 20px;
    }


    .mm-core-feature-content h3 {
        font-size: 16px;
    }


    .mm-core-feature-note {
        align-items: flex-start;

        text-align: left;
    }

}

/* ==========================================================
   SPECIFICATION - PRODUCT DOCUMENTATION
   ========================================================== */

.mm-spec-resources {
    margin-top: 26px;
    padding-top: 24px;

    border-top: 1px solid #e2e8f0;
}


/* HEADER */

.mm-spec-resources-header {
    margin-bottom: 14px;
}

.mm-spec-resources-header>span {
    display: block;

    margin-bottom: 3px;

    color: #2563eb;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mm-spec-resources-header h4 {
    margin: 0;

    color: #0f172a;

    font-size: 18px;
    font-weight: 750;

    letter-spacing: -0.01em;
}


/* GRID */

.mm-spec-resource-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;
}


/* RESOURCE */

.mm-spec-resource-link {
    display: grid;

    grid-template-columns:
        38px minmax(0, 1fr) 16px;

    align-items: center;

    gap: 10px;

    min-height: 64px;

    padding: 10px 12px;

    border: 1px solid #e2e8f0;

    border-radius: 11px;

    background: #f8fafc;

    color: #334155;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


/* ICON */

.mm-spec-resource-icon {
    display: grid;
    place-items: center;

    width: 38px;
    height: 38px;

    border-radius: 9px;

    color: #2563eb;

    background: #eff6ff;
}

.mm-spec-resource-icon svg {
    width: 18px;
    height: 18px;

    stroke-width: 1.9;
}


/* TEXT */

.mm-spec-resource-link strong {
    display: block;

    color: #0f172a;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.3;
}

.mm-spec-resource-link small {
    display: block;

    margin-top: 2px;

    color: #94a3b8;

    font-size: 14px;

    line-height: 1.3;
}


/* ARROW */

.mm-spec-resource-arrow {
    width: 15px;
    height: 15px;

    color: #94a3b8;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


/* HOVER */

.mm-spec-resource-link:hover {
    transform: translateY(-2px);

    border-color: #bfdbfe;

    background: #ffffff;

    box-shadow:
        0 8px 20px rgba(15, 23, 42, 0.06);
}

.mm-spec-resource-link:hover .mm-spec-resource-arrow {
    color: #2563eb;

    transform:
        translate(2px, -2px);
}


/* MOBILE */

@media (max-width: 520px) {

    .mm-spec-resource-grid {
        grid-template-columns: 1fr;
    }

}

/* ==========================================================
   TRIAL VS FULL VERSION
   ========================================================== */

.mm-license-compare {
    padding: 100px 0;

    background: #f8fafc;
}


/* TABLE WRAPPER */

.mm-compare-table-wrap {
    max-width: 1120px;

    margin: 0 auto;

    overflow-x: auto;

    border: 1px solid #e2e8f0;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 18px 48px rgba(15, 23, 42, 0.06);
}


/* TABLE */

.mm-compare-table {
    width: 100%;

    border-collapse: collapse;

    table-layout: fixed;
}


/* HEADER */

.mm-compare-table thead th {
    padding: 19px 20px;

    border-right: 1px solid rgba(255, 255, 255, 0.18);

    background:
        linear-gradient(90deg,
            #0b3f91 0%,
            #0649b7 50%,
            #063c91 100%);

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    text-align: center;
}

.mm-compare-table thead th:first-child {
    width: 50%;

    text-align: left;
}

.mm-compare-table thead th:nth-child(2),
.mm-compare-table thead th:nth-child(3) {
    width: 25%;
}

.mm-compare-table thead th:last-child {
    border-right: 0;
}


/* BODY */

.mm-compare-table tbody td {
    padding: 15px 20px;

    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;

    color: #334155;

    font-size: 16px;

    text-align: center;

    vertical-align: middle;
}

.mm-compare-table tbody td:first-child {
    color: #0f172a;

    font-weight: 600;

    text-align: left;
}

.mm-compare-table tbody td:last-child {
    border-right: 0;
}

.mm-compare-table tbody tr:last-child td {
    border-bottom: 0;
}


/* SUBTLE FULL VERSION EMPHASIS */

.mm-full-column {
    background:
        rgba(239, 246, 255, 0.45);
}


/* CHECK / CROSS */

.compare-status {
    display: inline-grid;

    place-items: center;

    width: 26px;
    height: 26px;

    border-radius: 50%;
}

.compare-status svg {
    width: 15px;
    height: 15px;

    stroke-width: 3;
}

.compare-status.yes {
    color: #ffffff;

    background: #16a34a;
}

.compare-status.no {
    color: #ffffff;

    background: #dc2626;
}


/* PRICE */

.mm-price-row td {
    background: #f8fafc;
}

.mm-trial-price,
.mm-full-price {
    display: inline-block;

    color: #0f172a;

    font-size: 18px;
    font-weight: 750;
}

.mm-full-price {
    color: #2563eb;
}


/* CTA ROW */

.mm-cta-row td {
    padding-top: 18px;
    padding-bottom: 18px;

    background: #ffffff;
}

.mm-compare-download,
.mm-compare-buy {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 42px;

    padding: 9px 16px;

    border-radius: 9px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.mm-compare-download {
    color: #ffffff;

    background:
        linear-gradient(135deg,
            #1677ff,
            #0864e8);

    box-shadow:
        0 8px 18px rgba(22, 163, 74, 0.22);
}


/* BUY NOW - ORANGE */

.mm-compare-buy {
    color: #ffffff;

    background:
        linear-gradient(135deg,
            #f97316,
            #ea580c);

    box-shadow:
        0 8px 18px rgba(249, 115, 22, 0.22);
}


/* HOVER */

.mm-compare-download:hover {
    background:
        linear-gradient(135deg,
            #2583ff,
            #075bd2);
}

.mm-compare-buy:hover {
    background:
        linear-gradient(135deg,
            #ea580c,
            #c2410c);
}

.mm-compare-download:hover,
.mm-compare-buy:hover {
    transform: translateY(-2px);
}

.mm-compare-download svg,
.mm-compare-buy svg {
    width: 16px;
    height: 16px;
}


/* RESPONSIVE */

@media (max-width: 767px) {

    .mm-license-compare {
        padding: 72px 0;
    }

    .mm-compare-table {
        min-width: 760px;
    }

}

/* ==========================================================
   WHY CONVERT OLM TO PST
   ========================================================== */

.mm-why-section {
    position: relative;
    overflow: hidden;

    padding: 110px 0;

    background:
        linear-gradient(180deg,
            #f8fafc 0%,
            #ffffff 100%);
}


/* SUBTLE DECORATION */

.mm-why-section::before {
    content: "";

    position: absolute;

    width: 560px;
    height: 560px;

    left: -300px;
    top: -180px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(37, 99, 235, 0.07),
            transparent 70%);

    pointer-events: none;
}




/* ==========================================================
   LAYOUT
   ========================================================== */

.mm-why-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(420px, 0.92fr) minmax(0, 1.08fr);

    gap: 72px;

    align-items: center;
}


/* ==========================================================
   LEFT VISUAL
   ========================================================== */

.mm-why-visual {
    position: relative;
}


.mm-why-image-wrap {
    position: relative;

    padding: 12px;

    border:
        1px solid #e2e8f0;

    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 30px 70px rgba(15, 23, 42, 0.11);
}


.mm-why-image-wrap::before {
    content: "";

    position: absolute;

    inset: 18px -18px -18px 18px;

    z-index: -1;

    border-radius: 22px;

    background:
        linear-gradient(145deg,
            #dbeafe,
            #eff6ff);
}


.mm-why-image-wrap img {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 14px;
}


/* FLOATING BADGE */

.mm-why-image-badge {
    position: absolute;

    right: -26px;
    bottom: 30px;

    display: flex;
    align-items: center;

    gap: 10px;

    min-width: 210px;

    padding:
        12px 15px;

    border:
        1px solid #dcfce7;

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.96);

    box-shadow:
        0 14px 32px rgba(15, 23, 42, 0.12);

    backdrop-filter: blur(10px);
}


.mm-why-image-badge>svg {
    width: 22px;
    height: 22px;

    flex:
        0 0 22px;

    color: #16a34a;
}


.mm-why-image-badge span {
    color: #64748b;

    font-size: 10px;

    line-height: 1.4;
}


.mm-why-image-badge strong {
    display: block;

    margin-bottom: 1px;

    color: #0f172a;

    font-size: 12px;
}


/* ==========================================================
   RIGHT CONTENT
   ========================================================== */

.mm-why-content {
    min-width: 0;
}





.mm-why-content>p {
    max-width: 700px;

    margin:
        0 0 14px;

    color: #64748b;

    font-size: 15px;

    line-height: 1.75;
}


.mm-why-content>p strong {
    color: #334155;

    font-weight: 700;
}


.mm-why-lead {
    font-size: 16px !important;

    color: #475569 !important;
}


/* ==========================================================
   WHY PST CALLOUT
   ========================================================== */

.mm-why-pst {
    display: grid;

    grid-template-columns:
        46px minmax(0, 1fr);

    gap: 14px;

    margin-top: 25px;

    padding:
        17px 18px;

    border-left:
        3px solid #2563eb;

    border-radius:
        0 12px 12px 0;

    background: #f8fafc;
}


.mm-why-pst-icon {
    display: grid;
    place-items: center;

    width: 46px;
    height: 46px;

    border-radius: 12px;

    color: #2563eb;

    background: #eff6ff;
}


.mm-why-pst-icon svg {
    width: 21px;
    height: 21px;
}


.mm-why-pst h3 {
    margin:
        0 0 5px;

    color: #0f172a;

    font-size: 16px;
    font-weight: 750;
}


.mm-why-pst p {
    margin: 0;

    color: #64748b;

    font-size: 16px;

    line-height: 1.65;
}


/* ==========================================================
   REASONS
   ========================================================== */

.mm-why-reasons {
    margin-top: 28px;
}


.mm-why-reasons>h3 {
    margin:
        0 0 16px;

    color: #0f172a;

    font-size: 15px;
    font-weight: 750;

    letter-spacing: -0.01em;
}


.mm-why-reasons ul {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        12px 18px;

    margin: 0;

    padding: 0;

    list-style: none;
}


.mm-why-reasons li {
    display: grid;

    grid-template-columns:
        32px minmax(0, 1fr);

    gap: 9px;

    align-items: flex-start;

    color: #64748b;

    font-size: 15px;

    line-height: 1.5;
}


.mm-reason-icon {
    display: grid;
    place-items: center;

    width: 32px;
    height: 32px;

    border-radius: 8px;

    color: #2563eb;

    background: #eff6ff;
}


.mm-reason-icon svg {
    width: 16px;
    height: 16px;

    stroke-width: 2;
}


.mm-why-reasons strong {
    display: block;

    margin-bottom: 1px;

    color: #334155;

    font-size: 15px;

    font-weight: 700;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1050px) {

    .mm-why-grid {
        gap: 48px;
    }

}


@media (max-width: 900px) {

    .mm-why-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .mm-why-visual {
        max-width: 680px;

        width: 100%;

        margin: 0 auto;
    }


    .mm-why-content {
        max-width: 760px;

        margin: 0 auto;
    }

}


@media (max-width: 650px) {

    .mm-why-section {
        padding:
            75px 0;
    }


    .mm-why-image-badge {
        position: relative;

        right: auto;
        bottom: auto;

        margin:
            12px 0 0;

        box-shadow: none;
    }


    .mm-why-image-wrap::before {
        display: none;
    }


    .mm-why-reasons ul {
        grid-template-columns: 1fr;
    }


    .mm-why-content h2 {
        font-size: 30px;
    }

}

/* ==========================================================
   OLM ATTRIBUTES - DARK SECTION
   ========================================================== */

.mm-attributes-dark {
    position: relative;
    overflow: hidden;

    padding: 110px 0;

    color: #ffffff;

    background:
        radial-gradient(circle at 15% 20%,
            rgba(37, 99, 235, 0.20),
            transparent 30%),
        radial-gradient(circle at 85% 75%,
            rgba(14, 165, 233, 0.12),
            transparent 28%),
        linear-gradient(135deg,
            #07111f 0%,
            #0b1730 55%,
            #101c35 100%);
}


/* GRID */

.mm-attributes-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr) minmax(420px, 0.95fr);

    gap: 72px;

    align-items: center;
}


/* EYEBROW */

.mm-dark-eyebrow {
    display: inline-flex;

    margin-bottom: 16px;
    padding: 7px 12px;

    border: 1px solid rgba(147, 197, 253, 0.18);
    border-radius: 999px;

    color: #bfdbfe;
    background: rgba(37, 99, 235, 0.12);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.05em;
    text-transform: uppercase;
}


/* CONTENT */

.mm-attributes-dark h2 {
    max-width: 900px;

    margin: 0;

    color: #ffffff;

    font-size: clamp(34px, 4vw, 50px);

    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -0.035em;
}

.mm-attributes-content>p {
    max-width: 720px;

    margin: 18px 0 0;

    color: #cbd5e1;

    font-size: 15px;
    line-height: 1.75;
}

.mm-attributes-lead {
    color: #e2e8f0 !important;

    font-size: 16px !important;
}


/* LIST TITLE */

.mm-attributes-list-title {
    margin-top: 30px;
    margin-bottom: 15px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 750;
}


/* LIST */

.mm-attributes-list {
    display: grid;

    gap: 13px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.mm-attributes-list li {
    display: grid;

    grid-template-columns:
        34px minmax(0, 1fr);

    gap: 11px;

    align-items: flex-start;

    color: #cbd5e1;

    font-size: 15px;
    line-height: 1.55;
}

.mm-attributes-list li>svg {
    width: 20px;
    height: 20px;

    margin-top: 1px;

    color: #60a5fa;
}

.mm-attributes-list strong {
    display: block;

    margin-bottom: 1px;

    color: #ffffff;

    font-size: 15px;
}


/* VISUAL */

.mm-attributes-visual {
    position: relative;
}

.mm-attributes-screen {
    position: relative;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.10);

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.05);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.32);

    backdrop-filter: blur(12px);
}

.mm-attributes-screen img {
    display: block;

    width: 100%;
    height: auto;
}


/* FLOATING MAILBOX TYPES */

.mm-attributes-float {
    position: absolute;

    left: -28px;
    bottom: -24px;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 8px;

    padding: 12px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 14px;

    background:
        rgba(7, 17, 31, 0.92);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.28);

    backdrop-filter: blur(12px);
}

.mm-attributes-float span {
    display: flex;

    align-items: center;

    gap: 6px;

    min-width: 105px;

    color: #dbeafe;

    font-size: 11px;
    font-weight: 600;
}

.mm-attributes-float svg {
    width: 15px;
    height: 15px;

    color: #60a5fa;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .mm-attributes-grid {
        grid-template-columns: 1fr;

        gap: 54px;
    }

    .mm-attributes-visual {
        max-width: 720px;

        margin: 0 auto;
    }

}

@media (max-width: 600px) {

    .mm-attributes-dark {
        padding: 76px 0;
    }

    .mm-attributes-float {
        position: static;

        margin-top: 12px;

        grid-template-columns: 1fr 1fr;
    }

}

/* ==========================================================
   MAILBOX CONTENT SECTION
   ========================================================== */

.mm-mailbox-section {
    position: relative;
    overflow: hidden;

    padding: 100px 0;

    background:
        radial-gradient(circle at 50% 10%,
            rgba(37, 99, 235, 0.05),
            transparent 28%),
        linear-gradient(180deg,
            #ffffff 0%,
            #f8fafc 100%);
}


/* ==========================================================
   GRID
   ========================================================== */

.mm-mailbox-grid {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 16px;

    max-width: 1180px;

    margin: 0 auto;
}


/* subtle connector */

.mm-mailbox-grid::before {
    content: "";

    position: absolute;

    left: 7%;
    right: 7%;
    top: 38px;

    height: 1px;

    background:
        linear-gradient(90deg,
            transparent,
            #dbeafe 15%,
            #bfdbfe 50%,
            #dbeafe 85%,
            transparent);

    z-index: 0;
}


/* ==========================================================
   CARD
   ========================================================== */

.mm-mailbox-card {
    position: relative;
    z-index: 1;

    min-height: 190px;

    padding:
        24px 18px 20px;

    border:
        1px solid #e2e8f0;

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.94);

    text-align: center;

    box-shadow:
        0 10px 28px rgba(15, 23, 42, 0.04);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.mm-mailbox-card:hover {
    transform:
        translateY(-5px);

    border-color:
        #bfdbfe;

    box-shadow:
        0 18px 34px rgba(15, 23, 42, 0.08);
}


/* ==========================================================
   ICON
   ========================================================== */

.mm-mailbox-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin:
        0 auto 16px;

    border-radius: 16px;

    color: #2563eb;

    background:
        linear-gradient(145deg,
            #eff6ff,
            #f8fbff);

    border:
        1px solid #dbeafe;

    box-shadow:
        0 8px 18px rgba(37, 99, 235, 0.08);

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}


.mm-mailbox-icon svg {
    width: 24px;
    height: 24px;

    stroke-width: 1.8;
}


.mm-mailbox-card:hover .mm-mailbox-icon {
    transform:
        scale(1.06);

    color: #ffffff;

    background:
        linear-gradient(135deg,
            #2563eb,
            #1d4ed8);
}


/* ==========================================================
   CONTENT
   ========================================================== */

.mm-mailbox-card h3 {
    margin:
        0 0 8px;

    color: #0f172a;

    font-size: 16px;
    font-weight: 750;
}


.mm-mailbox-card p {
    margin: 0;

    color: #64748b;

    font-size: 14px;

    line-height: 1.55;
}


/* ==========================================================
   SUMMARY BAR
   ========================================================== */

.mm-mailbox-summary {
    display: grid;

    grid-template-columns:
        46px minmax(0, 1fr);

    gap: 14px;

    align-items: center;

    max-width: 950px;

    margin:
        34px auto 0;

    padding:
        16px 20px;

    border:
        1px solid #dbeafe;

    border-radius: 14px;

    background:
        linear-gradient(135deg,
            #eff6ff,
            #f8fbff);
}


.mm-mailbox-summary-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: #2563eb;

    background: #ffffff;

    border:
        1px solid #dbeafe;
}


.mm-mailbox-summary-icon svg {
    width: 21px;
    height: 21px;
}


.mm-mailbox-summary strong {
    display: block;

    margin-bottom: 3px;

    color: #0f172a;

    font-size: 15px;
    font-weight: 750;
}


.mm-mailbox-summary span {
    display: block;

    color: #64748b;

    font-size: 14px;

    line-height: 1.55;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1100px) {

    .mm-mailbox-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .mm-mailbox-grid::before {
        display: none;
    }

}


@media (max-width: 700px) {

    .mm-mailbox-section {
        padding:
            72px 0;
    }

    .mm-mailbox-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 480px) {

    .mm-mailbox-grid {
        grid-template-columns: 1fr;
    }

    .mm-mailbox-card {
        min-height: auto;
    }

}

/* ==========================================================
   TUTORIAL PREVIEW SECTION
   ========================================================== */

.mm-tutorial-preview-section {
    position: relative;
    overflow: hidden;

    padding: 105px 0;

    background:
        radial-gradient(circle at 20% 15%,
            rgba(37, 99, 235, 0.06),
            transparent 28%),
        #ffffff;
}


/* ==========================================================
   MAIN GRID
   ========================================================== */

.mm-tutorial-preview-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr) minmax(420px, 0.95fr);

    gap: 56px;

    align-items: center;

    margin-top: 52px;
}


/* ==========================================================
   LEFT PANEL
   ========================================================== */

.mm-tutorial-preview-left {
    position: relative;

    padding: 26px;

    border: 1px solid #e2e8f0;
    border-radius: 24px;

    background:
        linear-gradient(180deg,
            #f8fbff,
            #f1f7ff);

    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.08);
}


/* PREVIEW BADGE */

.mm-preview-step-badge {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 18px;
    padding: 7px 11px;

    border: 1px solid #bfdbfe;
    border-radius: 9px;

    color: #2563eb;
    background: #ffffff;

    font-size: 15px;
    font-weight: 700;

    box-shadow:
        0 6px 14px rgba(37, 99, 235, 0.08);
}

.mm-preview-step-badge svg {
    width: 16px;
    height: 16px;
}


/* SOFTWARE PREVIEW */

.mm-preview-window {
    overflow: hidden;

    border: 1px solid #dbe3ee;
    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 18px 42px rgba(15, 23, 42, 0.10);
}

.mm-preview-window img {
    display: block;

    width: 100%;
    height: auto;

    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
}


/* DID YOU KNOW */

.mm-tutorial-tip {
    display: grid;

    grid-template-columns:
        42px minmax(0, 1fr);

    gap: 12px;

    align-items: center;

    margin-top: 18px;
    padding: 14px 16px;

    border: 1px solid #dbeafe;
    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.85);
}

.mm-tutorial-tip-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #2563eb;
    background: #eff6ff;
}

.mm-tutorial-tip-icon svg {
    width: 20px;
    height: 20px;
}

.mm-tutorial-tip strong {
    display: block;

    margin-bottom: 2px;

    color: #0f172a;

    font-size: 15px;
}

.mm-tutorial-tip span {
    display: block;

    color: #64748b;

    font-size: 14px;
    line-height: 1.5;
}


/* ==========================================================
   RIGHT TIMELINE
   ========================================================== */

.mm-tutorial-timeline {
    position: relative;

    display: grid;

    gap: 18px;
}


/* VERTICAL CONNECTOR */

.mm-tutorial-timeline::before {
    content: "";

    position: absolute;

    left: 26px;
    top: 30px;
    bottom: 30px;

    width: 1px;

    background:
        repeating-linear-gradient(to bottom,
            #dbeafe 0,
            #dbeafe 5px,
            transparent 5px,
            transparent 10px);
}


/* STEP */

.mm-timeline-step {
    position: relative;

    display: grid;

    grid-template-columns:
        54px minmax(0, 1fr);

    gap: 18px;

    width: 100%;

    padding: 0;

    border: 0;

    background: transparent;

    text-align: left;

    cursor: pointer;
}


/* NUMBER */

.mm-timeline-number {
    position: relative;
    z-index: 2;

    display: grid;
    place-items: center;

    width: 54px;
    height: 54px;

    border-radius: 50%;

    color: #475569;
    background: #e2e8f0;

    font-size: 16px;
    font-weight: 700;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.mm-timeline-step.active .mm-timeline-number {
    color: #ffffff;

    background:
        linear-gradient(135deg,
            #2563eb,
            #1d4ed8);

    transform: scale(1.03);
}


/* CARD */

.mm-timeline-card {
    display: grid;

    grid-template-columns:
        58px minmax(0, 1fr);

    gap: 16px;

    align-items: center;

    min-height: 118px;

    padding: 18px 20px;

    border: 1px solid #e2e8f0;
    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 8px 20px rgba(15, 23, 42, 0.04);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.mm-timeline-step:hover .mm-timeline-card {
    transform: translateY(-2px);

    border-color: #bfdbfe;

    box-shadow:
        0 14px 28px rgba(15, 23, 42, 0.07);
}

.mm-timeline-step.active .mm-timeline-card {
    border-color: #2563eb;

    box-shadow:
        0 14px 30px rgba(37, 99, 235, 0.10);
}


/* ICON BOX */

.mm-timeline-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 14px;
}

.mm-timeline-icon svg {
    width: 25px;
    height: 25px;

    stroke-width: 1.8;
}

.mm-timeline-icon.icon-blue {
    color: #2563eb;
    background: #eff6ff;
}

.mm-timeline-icon.icon-green {
    color: #16a34a;
    background: #ecfdf5;
}

.mm-timeline-icon.icon-purple {
    color: #9333ea;
    background: #faf5ff;
}

.mm-timeline-icon.icon-orange {
    color: #f97316;
    background: #fff7ed;
}


/* TEXT */

.mm-timeline-copy strong {
    display: block;

    margin-bottom: 6px;

    color: #0f172a;

    font-size: 16px;
    font-weight: 750;
}

.mm-timeline-copy small {
    display: block;

    color: #64748b;

    font-size: 15px;
    line-height: 1.6;
}


/* ==========================================================
   TRUST STRIP
   ========================================================== */

.mm-tutorial-trust-strip {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    margin-top: 48px;

    border: 1px solid #e2e8f0;
    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 16px 38px rgba(15, 23, 42, 0.05);

    overflow: hidden;
}

.mm-tutorial-trust-item {
    position: relative;

    display: grid;

    grid-template-columns:
        48px minmax(0, 1fr);

    gap: 12px;

    align-items: center;

    padding: 22px 24px;
}

.mm-tutorial-trust-item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 22%;

    width: 1px;
    height: 56%;

    background: #e2e8f0;
}

.mm-tutorial-trust-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 50%;
}

.mm-tutorial-trust-icon svg {
    width: 22px;
    height: 22px;
}

.mm-tutorial-trust-icon.blue {
    color: #2563eb;
    background: #eff6ff;
}

.mm-tutorial-trust-icon.green {
    color: #16a34a;
    background: #ecfdf5;
}

.mm-tutorial-trust-icon.cyan {
    color: #0284c7;
    background: #f0f9ff;
}

.mm-tutorial-trust-icon.purple {
    color: #9333ea;
    background: #faf5ff;
}

.mm-tutorial-trust-item strong {
    display: block;

    margin-bottom: 3px;

    color: #0f172a;

    font-size: 14px;
}

.mm-tutorial-trust-item span {
    display: block;

    color: #64748b;

    font-size: 13px;
    line-height: 1.45;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1050px) {

    .mm-tutorial-preview-grid {
        gap: 40px;
    }

}

@media (max-width: 900px) {

    .mm-tutorial-preview-grid {
        grid-template-columns: 1fr;
    }

    .mm-tutorial-preview-left {
        max-width: 760px;
        margin: 0 auto;
    }

    .mm-tutorial-trust-strip {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .mm-tutorial-trust-item:nth-child(2)::after {
        display: none;
    }

    .mm-tutorial-trust-item:nth-child(-n + 2) {
        border-bottom: 1px solid #e2e8f0;
    }

}

@media (max-width: 600px) {

    .mm-tutorial-preview-section {
        padding: 75px 0;
    }

    .mm-tutorial-preview-left {
        padding: 18px;
    }

    .mm-timeline-step {
        grid-template-columns:
            44px minmax(0, 1fr);

        gap: 12px;
    }

    .mm-timeline-number {
        width: 44px;
        height: 44px;
    }

    .mm-tutorial-timeline::before {
        left: 21px;
    }

    .mm-timeline-card {
        grid-template-columns:
            46px minmax(0, 1fr);

        min-height: 100px;

        padding: 15px;
    }

    .mm-timeline-icon {
        width: 46px;
        height: 46px;
    }

    .mm-timeline-icon svg {
        width: 21px;
        height: 21px;
    }

    .mm-tutorial-trust-strip {
        grid-template-columns: 1fr;
    }

    .mm-tutorial-trust-item {
        border-bottom: 1px solid #e2e8f0;
    }

    .mm-tutorial-trust-item:last-child {
        border-bottom: 0;
    }

    .mm-tutorial-trust-item::after {
        display: none;
    }

}

/* ==========================================================
   VIDEO TUTORIAL SECTION
   ========================================================== */

.mm-video-section {
    position: relative;
    overflow: hidden;

    padding: 105px 0;

    background:
        radial-gradient(circle at 50% 10%,
            rgba(37, 99, 235, 0.05),
            transparent 28%),
        linear-gradient(180deg,
            #ffffff 0%,
            #f8fafc 100%);
}


/* ==========================================================
   VIDEO WRAPPER
   ========================================================== */

.mm-video-wrap {
    max-width: 980px;
    margin: 0 auto;
}


/* ==========================================================
   FRAME
   ========================================================== */

.mm-video-frame {
    overflow: hidden;

    border: 1px solid #dbe3ee;
    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 28px 70px rgba(15, 23, 42, 0.12);
}


/* TOP BAR */

.mm-video-frame-top {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 42px;

    padding: 0 16px;

    border-bottom: 1px solid #e2e8f0;

    background:
        linear-gradient(180deg,
            #fbfdff,
            #f4f7fb);
}


.mm-video-dots {
    display: flex;
    gap: 6px;
}


.mm-video-dots span {
    width: 9px;
    height: 9px;

    border-radius: 50%;
}

.mm-video-dots span:nth-child(1) {
    background: #fb7185;
}

.mm-video-dots span:nth-child(2) {
    background: #fbbf24;
}

.mm-video-dots span:nth-child(3) {
    background: #22c55e;
}


.mm-video-frame-title {
    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    color: #64748b;

    font-size: 11px;
    font-weight: 600;
}


/* ==========================================================
   RESPONSIVE VIDEO
   ========================================================== */

.mm-video-responsive {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    background: #0f172a;
}


.mm-video-responsive iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}


/* ==========================================================
   META ROW
   ========================================================== */

.mm-video-meta {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 0;

    margin-top: 18px;

    border: 1px solid #e2e8f0;
    border-radius: 16px;

    background: #ffffff;

    overflow: hidden;

    box-shadow:
        0 14px 32px rgba(15, 23, 42, 0.05);
}


.mm-video-meta-item {
    position: relative;

    display: grid;

    grid-template-columns:
        44px minmax(0, 1fr);

    gap: 11px;

    align-items: center;

    padding: 18px 20px;
}


.mm-video-meta-item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 22%;

    width: 1px;
    height: 56%;

    background: #e2e8f0;
}


/* ICON */

.mm-video-meta-icon {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: #2563eb;

    background: #eff6ff;
}


.mm-video-meta-icon svg {
    width: 20px;
    height: 20px;

    stroke-width: 1.9;
}


/* TEXT */

.mm-video-meta-item strong {
    display: block;

    margin-bottom: 3px;

    color: #0f172a;

    font-size: 14px;
    font-weight: 750;
}


.mm-video-meta-item span {
    display: block;

    color: #64748b;

    font-size: 13px;

    line-height: 1.45;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 800px) {

    .mm-video-meta {
        grid-template-columns: 1fr;
    }

    .mm-video-meta-item {
        border-bottom: 1px solid #e2e8f0;
    }

    .mm-video-meta-item:last-child {
        border-bottom: 0;
    }

    .mm-video-meta-item::after {
        display: none;
    }

}


@media (max-width: 600px) {

    .mm-video-section {
        padding: 75px 0;
    }

    .mm-video-frame {
        border-radius: 14px;
    }

}

/* ==========================================================
   FAQ SECTION
   ========================================================== */

.mm-faq-section {
    position: relative;
    overflow: hidden;

    padding: 100px 0;

    background:
        radial-gradient(circle at 50% 0%,
            rgba(37, 99, 235, 0.05),
            transparent 28%),
        #f8fafc;
}


/* FAQ LIST */

.mm-faq-list {
    display: grid;
    gap: 12px;

    max-width: 900px;
    margin: 0 auto;
}


/* ITEM */

.mm-faq-item {
    overflow: hidden;

    border: 1px solid #e2e8f0;
    border-radius: 14px;

    background: #ffffff;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.mm-faq-item:hover {
    border-color: #cbd5e1;
}

.mm-faq-item.active {
    border-color: #bfdbfe;

    box-shadow:
        0 12px 28px rgba(15, 23, 42, 0.06);
}


/* QUESTION */

.mm-faq-question {
    width: 100%;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr) 34px;

    gap: 18px;

    align-items: center;

    padding: 20px 22px;

    border: 0;

    background: transparent;

    color: #0f172a;

    text-align: left;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;
}

.mm-faq-question:hover {
    background: #fbfdff;
}


/* TOGGLE */

.mm-faq-toggle {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    color: #2563eb;
    background: #eff6ff;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.mm-faq-toggle svg {
    width: 17px;
    height: 17px;

    stroke-width: 2;
}

.mm-faq-item.active .mm-faq-toggle {
    color: #ffffff;
    background: #2563eb;
}


/* ANSWER */

.mm-faq-answer {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.35s ease,
        opacity 0.25s ease;
}

.mm-faq-item.active .mm-faq-answer {
    max-height: 320px;

    opacity: 1;
}

.mm-faq-answer-inner {
    padding:
        0 70px 22px 22px;

    color: #64748b;

    font-size: 14px;

    line-height: 1.75;
}


/* ACTIVE QUESTION */

.mm-faq-item.active .mm-faq-question {
    color: #1d4ed8;
}


/* RESPONSIVE */

@media (max-width: 600px) {

    .mm-faq-section {
        padding: 72px 0;
    }

    .mm-faq-question {
        padding: 17px 16px;

        font-size: 14px;
    }

    .mm-faq-answer-inner {
        padding:
            0 16px 18px;

        font-size: 13px;
    }

}

/* ==========================================================
   CUSTOMER REVIEWS
   ========================================================== */

.mm-reviews-section {
    position: relative;
    overflow: hidden;

    padding: 100px 0;

    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #f8fafc 100%);
}


/* GRID */

.mm-reviews-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;

    max-width: 1120px;

    margin: 0 auto;
}


/* CARD */

.mm-review-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 300px;

    padding: 26px;

    border: 1px solid #e2e8f0;
    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 14px 34px rgba(15, 23, 42, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.mm-review-card:hover {
    transform: translateY(-4px);

    border-color: #bfdbfe;

    box-shadow:
        0 22px 44px rgba(15, 23, 42, 0.08);
}


/* TOP */

.mm-review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;

    margin-bottom: 20px;
}

.mm-review-stars {
    color: #f59e0b;

    font-size: 16px;

    letter-spacing: 1px;
}

.mm-review-badge {
    padding: 4px 8px;

    border-radius: 999px;

    color: #16a34a;
    background: #ecfdf5;

    font-size: 12px;
    font-weight: 600;


    letter-spacing: 0.04em;
}


/* REVIEW */

.mm-review-card blockquote {
    flex: 1;

    margin: 0;

    color: #475569;

    font-size: 15px;
    line-height: 1.75;
}


/* USER */

.mm-review-user {
    display: flex;
    align-items: center;

    gap: 11px;

    margin-top: 24px;

    padding-top: 18px;

    border-top: 1px solid #e2e8f0;
}

.mm-review-avatar {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    flex: 0 0 42px;

    border-radius: 50%;

    color: #2563eb;
    background: #eff6ff;

    font-size: 14px;
    font-weight: 800;
}

.mm-review-user strong {
    display: block;

    color: #0f172a;

    font-size: 13px;
}

.mm-review-user span {
    display: block;

    margin-top: 2px;

    color: #94a3b8;

    font-size: 12px;
}


/* SUMMARY */

.mm-review-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;

    max-width: 900px;

    margin: 34px auto 0;

    padding: 18px 22px;

    border: 1px solid #e2e8f0;
    border-radius: 14px;

    background: #ffffff;
}

.mm-review-summary-score {
    display: flex;
    align-items: center;

    gap: 12px;
}

.mm-review-summary-score>strong {
    color: #0f172a;

    font-size: 30px;
    font-weight: 800;
}

.mm-review-summary-score span {
    display: block;

    margin-top: 2px;

    color: #94a3b8;

    font-size: 10px;
}

.mm-review-summary-points {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px 18px;
}

.mm-review-summary-points span {
    display: flex;
    align-items: center;

    gap: 5px;

    color: #64748b;

    font-size: 11px;
    font-weight: 600;
}

.mm-review-summary-points svg {
    width: 15px;
    height: 15px;

    color: #2563eb;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .mm-reviews-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 650px) {

    .mm-reviews-section {
        padding: 72px 0;
    }

    .mm-reviews-grid {
        grid-template-columns: 1fr;
    }

    .mm-review-summary {
        flex-direction: column;
        align-items: flex-start;
    }

}

/* ==========================================================
   MODERN MACMISTER FOOTER
   ========================================================== */

.site-footer {
    position: relative;
    overflow: hidden;

    padding:
        72px 0 24px;

    color: #cbd5e1;

    background:
        radial-gradient(circle at 8% 5%,
            rgba(37, 99, 235, 0.15),
            transparent 28%),
        linear-gradient(135deg,
            #07111f 0%,
            #0a1424 52%,
            #0d1828 100%);
}


/* SUBTLE BACKGROUND GLOW */

.site-footer::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -250px;
    bottom: -280px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(37, 99, 235, 0.09),
            transparent 70%);

    pointer-events: none;
}


/* ==========================================================
   MAIN GRID
   ========================================================== */

.footer-main {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(320px, 1.35fr) repeat(3, minmax(160px, 0.65fr));

    gap: 56px;

    padding-bottom: 54px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}


/* ==========================================================
   BRAND
   ========================================================== */

.footer-brand {
    position: relative;

    max-width: 420px;

    padding-right: 48px;
}

.footer-brand::after {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 1px;
    height: 100%;

    background:
        rgba(255, 255, 255, 0.08);
}


.footer-logo {
    display: inline-flex;

    margin-bottom: 20px;
}


.footer-logo img {
    display: block;

    width: auto;
    max-width: 190px;

    height: auto;
}


.footer-about {
    margin: 0;

    max-width: 390px;

    color: #94a3b8;

    font-size: 15px;

    line-height: 1.8;
}


/* ==========================================================
   SUPPORT CONTACT
   ========================================================== */

.footer-contact {
    margin-top: 24px;
}


.footer-contact>span {
    display: block;

    margin-bottom: 6px;

    color: #64748b;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}


.footer-contact a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 650;

    text-decoration: none;

    transition:
        color 0.2s ease;
}


.footer-contact a:hover {
    color: #60a5fa;
}


.footer-contact svg {
    width: 17px;
    height: 17px;

    color: #3b82f6;
}


/* ==========================================================
   SOCIAL ICONS
   ========================================================== */

.footer-socials {
    display: flex;

    gap: 9px;

    margin-top: 22px;
}


.footer-socials a {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255, 255, 255, 0.10);

    border-radius: 10px;

    color: #cbd5e1;

    background:
        rgba(255, 255, 255, 0.035);

    text-decoration: none;

    transition:
        transform 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}


.footer-socials a:hover {
    transform:
        translateY(-2px);

    color: #ffffff;

    border-color:
        rgba(59, 130, 246, 0.50);

    background:
        rgba(37, 99, 235, 0.18);
}


.footer-socials svg {
    width: 17px;
    height: 17px;
}

/* ==========================================================
   FOOTER COLUMN
   ========================================================== */

.footer-column {
    min-width: 0;
}


.footer-column-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    margin-bottom: 14px;

    border-radius: 10px;

    color: #3b82f6;

    background:
        rgba(37, 99, 235, 0.10);
}


.footer-column-icon svg {
    width: 20px;
    height: 20px;

    stroke-width: 1.8;
}


.footer-column h2 {
    position: relative;

    margin:
        0 0 22px;

    padding-bottom: 12px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 0.04em;

    text-transform: uppercase;
}


.footer-column h2::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 34px;
    height: 2px;

    border-radius: 999px;

    background:
        #2563eb;
}


/* ==========================================================
   LINKS
   ========================================================== */

.footer-column ul {
    display: grid;

    gap: 12px;

    margin: 0;

    padding: 0;

    list-style: none;
}


.footer-column li {
    margin: 0;
}


.footer-column a {
    position: relative;

    display: inline-block;

    padding-left: 14px;

    color: #94a3b8;

    font-size: 14px;

    line-height: 1.4;

    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.footer-column a::before {
    content: "›";

    position: absolute;

    left: 0;
    top: -1px;

    color: #3b82f6;

    font-size: 18px;

    line-height: 1;
}


.footer-column a:hover {
    transform:
        translateX(3px);

    color: #ffffff;
}


/* ==========================================================
   BOTTOM FOOTER
   ========================================================== */

.footer-bottom {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 26px;

    padding-top: 22px;
}


.footer-bottom p {
    margin: 0;

    color: #64748b;

    font-size: 13px;
}


.footer-bottom p strong {
    color: #3b82f6;

    font-weight: 700;
}


.footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 14px;
}


.footer-bottom-links a {
    color: #64748b;

    font-size: 13px;

    text-decoration: none;

    transition:
        color 0.2s ease;
}


.footer-bottom-links a:hover {
    color: #ffffff;
}


.footer-bottom-links>span {
    width: 1px;
    height: 12px;

    background:
        rgba(255, 255, 255, 0.12);
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1050px) {

    .footer-main {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            46px 40px;
    }


    .footer-brand {
        max-width: none;

        padding-right: 0;
    }


    .footer-brand::after {
        display: none;
    }

}


@media (max-width: 650px) {

    .site-footer {
        padding:
            58px 0 20px;
    }


    .footer-main {
        grid-template-columns: 1fr;

        gap: 34px;

        padding-bottom: 40px;
    }


    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 14px;
    }


    .footer-bottom-links {
        flex-wrap: wrap;
    }

}

/* ==========================================================
   PREMIUM BLUE PRODUCT STICKY NAV
   ========================================================== */

.product-anchor-nav {
    position: sticky;
    top: 0;

    z-index: 9000;

    width: 100%;

    background:
        linear-gradient(90deg,
            #0b3f91 0%,
            #0649b7 50%,
            #063c91 100%);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.14);

    box-shadow:
        0 8px 24px rgba(3, 32, 84, 0.18);
}


/* ==========================================================
   INNER
   ========================================================== */

.product-anchor-inner {
    min-height: 64px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
}


/* ==========================================================
   LEFT NAVIGATION
   ========================================================== */

.product-anchor-links {
    display: flex;
    align-items: center;

    gap: 4px;

    min-width: 0;
}


.product-anchor-links a {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    min-height: 64px;

    padding:
        0 13px;

    color:
        rgba(255, 255, 255, 0.88);

    font-size: 14px;
    font-weight: 550;

    white-space: nowrap;

    text-decoration: none;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}


.product-anchor-links a:hover {
    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.05);
}


.product-anchor-links a svg {
    width: 16px;
    height: 16px;

    stroke-width: 1.8;
}


/* ACTIVE INDICATOR */

.product-anchor-links a::after {
    content: "";

    position: absolute;

    left: 13px;
    right: 13px;
    bottom: 0;

    height: 3px;

    border-radius:
        3px 3px 0 0;

    background: transparent;
}


.product-anchor-links a.is-active {
    color: #ffffff;
}


.product-anchor-links a.is-active::after {
    background: #ffffff;
}


/* ==========================================================
   RIGHT SIDE
   ========================================================== */

.product-anchor-right {
    display: flex;
    align-items: center;

    gap: 12px;

    flex: 0 0 auto;
}


/* ==========================================================
   MAC / WINDOWS SWITCH
   ========================================================== */

.anchor-platform-switch {
    display: inline-flex;
    align-items: center;

    overflow: hidden;

    min-height: 40px;

    padding: 2px;

    border:
        1px solid rgba(255, 255, 255, 0.28);

    border-radius: 8px;

    background:
        rgba(2, 32, 94, 0.28);
}


.anchor-platform-btn {
    min-height: 36px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding:
        7px 14px;

    border: 0;
    border-radius: 6px;

    color:
        rgba(255, 255, 255, 0.88);

    background: transparent;

    font: inherit;
    font-size: 12px;
    font-weight: 650;

    white-space: nowrap;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.anchor-platform-btn:hover {
    color: #ffffff;
}


.anchor-platform-btn.is-active {
    color: #0645a8;

    background: #ffffff;

    box-shadow:
        0 3px 10px rgba(0, 20, 70, 0.14);
}


.anchor-platform-btn svg {
    width: 15px;
    height: 15px;
}


/* APPLE SYMBOL */

.anchor-apple {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: 18px;

    line-height: 1;
}


/* ==========================================================
   PLATFORM ACTION GROUP
   ========================================================== */

.anchor-platform-actions {
    display: none;
    align-items: center;

    gap: 9px;
}


.anchor-platform-actions.is-active {
    display: flex;
}


/* ==========================================================
   DOWNLOAD
   ========================================================== */

.anchor-download {
    min-height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding:
        8px 15px;

    border:
        1px solid rgba(255, 255, 255, 0.10);

    border-radius: 7px;

    color: #ffffff;

    background:
        linear-gradient(135deg,
            #1677ff,
            #0864e8);

    box-shadow:
        0 5px 14px rgba(0, 67, 180, 0.24);

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.anchor-download:hover {
    color: #ffffff;

    transform:
        translateY(-1px);

    background:
        linear-gradient(135deg,
            #2583ff,
            #075bd2);

    box-shadow:
        0 7px 18px rgba(0, 67, 180, 0.32);
}


/* ==========================================================
   BUY NOW
   ========================================================== */

.anchor-buy {
    min-height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding:
        8px 16px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 7px;

    color: #ffffff;

    background:
        linear-gradient(135deg,
            #ff7a18,
            #f05a0b);

    box-shadow:
        0 5px 14px rgba(194, 65, 12, 0.25);

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.anchor-buy:hover {
    color: #ffffff;

    transform:
        translateY(-1px);

    background:
        linear-gradient(135deg,
            #ff8629,
            #df4f05);

    box-shadow:
        0 7px 18px rgba(194, 65, 12, 0.32);
}


/* CTA ICONS */

.anchor-download svg,
.anchor-buy svg {
    width: 15px;
    height: 15px;

    stroke-width: 2;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1180px) {

    .product-anchor-inner {
        gap: 14px;
    }


    .product-anchor-links a {
        padding:
            0 9px;

        font-size: 11px;
    }


    .anchor-platform-btn {
        padding:
            7px 10px;
    }


    .anchor-download,
    .anchor-buy {
        padding:
            8px 11px;
    }

}


@media (max-width: 1000px) {

    .product-anchor-links {
        overflow-x: auto;

        scrollbar-width: none;
    }


    .product-anchor-links::-webkit-scrollbar {
        display: none;
    }


    .product-anchor-right {
        flex: 0 0 auto;
    }


    .anchor-download span {
        display: none;
    }


    .anchor-download {
        width: 40px;

        padding: 0;
    }

}


@media (max-width: 820px) {

    .anchor-platform-switch {
        display: none;
    }


    .anchor-download span {
        display: inline;
    }


    .anchor-download {
        width: auto;

        padding:
            8px 12px;
    }

}


@media (max-width: 680px) {

    .product-anchor-inner {
        min-height: 54px;
    }


    .product-anchor-links a {
        min-height: 54px;
    }


    .product-anchor-right {
        display: none;
    }


    .product-anchor-links {
        width: 100%;
    }

}

/* ==========================================================
   FLOATING LIVE CHAT + GO TO TOP
   ========================================================== */

.floating-tools {
    position: fixed;

    right: 22px;
    bottom: 24px;

    z-index: 9999;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 10px;
}


/* ==========================================================
   LIVE CHAT
   ========================================================== */

.floating-live-chat {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 44px;

    padding:
        10px 15px;

    border-radius: 10px;

    color: #ffffff;

    background:
        linear-gradient(135deg,
            #ff7a18,
            #f05a0b);

    box-shadow:
        0 10px 24px rgba(37, 99, 235, 0.24);

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.floating-live-chat:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 14px 28px rgba(37, 99, 235, 0.30);
}


.floating-live-chat svg {
    width: 18px;
    height: 18px;
}


/* ==========================================================
   GO TO TOP
   ========================================================== */

.go-top-btn {


    background:
        linear-gradient(90deg,
            #0b3f91 0%,
            #0649b7 50%,
            #063c91 100%);

    position: fixed;
    right: 24px;
    bottom: 62px;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;

    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
    text-decoration: none;
    cursor: pointer;

    opacity: 0.85;
    visibility: visible;
    transform: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.go-top-btn.is-visible {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0);
}


.go-top-btn:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 12px 26px rgba(15, 63, 103, 0.30);
}


.go-top-btn svg {
    width: 18px;
    height: 18px;

    stroke-width: 2.3;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

    .floating-tools {
        right: 14px;
        bottom: 16px;

        gap: 8px;
    }


    .floating-live-chat {
        width: 42px;
        height: 42px;

        min-height: 42px;

        padding: 0;

        border-radius: 10px;
    }


    .floating-live-chat span {
        display: none;
    }


    .go-top-btn {
        width: 40px;
        height: 40px;
    }

}

/* ==========================================================
   DOWNLOAD & SPECIFICATIONS
   ========================================================== */

.mm-specification-section {
    position: relative;

    padding: 100px 0;

    background:
        linear-gradient(180deg,
            #f8fafc 0%,
            #ffffff 100%);
}


/* ==========================================================
   GRID
   ========================================================== */

.mm-spec-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr) minmax(380px, 0.95fr);

    gap: 28px;

    max-width: 1100px;

    margin: 0 auto;
}


/* ==========================================================
   MAIN BLOCKS
   ========================================================== */

.mm-spec-download,
.mm-spec-requirements {
    padding: 34px;

    border:
        1px solid #e2e8f0;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 18px 48px rgba(15, 23, 42, 0.06);
}


/* ==========================================================
   PRODUCT HEADER
   ========================================================== */

.mm-spec-product,
.mm-spec-requirement-header {
    display: flex;

    align-items: center;

    gap: 14px;
}


.mm-spec-product-icon,
.mm-spec-requirement-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    flex:
        0 0 50px;

    border-radius: 14px;

    color: #2563eb;

    background: #eff6ff;

    border:
        1px solid #dbeafe;
}


.mm-spec-product-icon svg,
.mm-spec-requirement-icon svg {
    width: 23px;
    height: 23px;
}


.mm-spec-label,
.mm-spec-requirement-header span {
    display: block;

    margin-bottom: 3px;

    color: #2563eb;

    font-size: 12px;

    font-weight: 780;

    letter-spacing: 0.05em;

    text-transform: uppercase;
}


.mm-spec-product h3,
.mm-spec-requirement-header h3 {
    margin: 0;

    color: #0f172a;

    font-size: 22px;

    letter-spacing: -0.02em;
}


/* DESCRIPTION */

.mm-spec-description {
    margin:
        22px 0;

    color: #64748b;

    font-size: 15px;

    line-height: 1.7;
}


/* ==========================================================
   META
   ========================================================== */

.mm-spec-meta {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    margin-bottom: 26px;

    border-top:
        1px solid #e2e8f0;

    border-bottom:
        1px solid #e2e8f0;
}


.mm-spec-meta-item {
    position: relative;

    display: flex;

    align-items: center;

    gap: 9px;

    padding:
        16px 12px;
}


.mm-spec-meta-item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;

    top: 25%;

    width: 1px;
    height: 50%;

    background: #e2e8f0;
}


.mm-spec-meta-item svg {
    width: 19px;
    height: 19px;

    color: #2563eb;
}


.mm-spec-meta-item span {
    display: block;

    color: #94a3b8;

    font-size: 15px;
}


.mm-spec-meta-item strong {
    display: block;

    margin-top: 2px;

    color: #334155;

    font-size: 15px;
}


/* ==========================================================
   PLATFORM TABS
   ========================================================== */

.spec-platform-tab-buttons {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    border-bottom:
        1px solid #e2e8f0;
}


.spec-platform-tab {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 46px;

    border: 0;

    background: transparent;

    color: #64748b;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;
}


.spec-platform-tab::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -1px;

    height: 3px;

    background: transparent;
}


.spec-platform-tab.active,
.spec-platform-tab.is-active {
    color: #2563eb;
}


.spec-platform-tab.active::after,
.spec-platform-tab.is-active::after {
    background: #2563eb;
}


.spec-platform-tab svg {
    width: 17px;
    height: 17px;
}


.spec-apple-icon {
    font-size: 17px;
}


/* PANEL */

.spec-platform-panel {
    display: none;

    padding-top: 18px;
}


.spec-platform-panel.active,
.spec-platform-panel.is-active {
    display: block;
}


/* BUTTONS */

.spec-platform-actions {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;
}


.spec-download-btn,
.spec-buy-btn {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 60px;

    padding:
        10px 16px;

    border-radius: 11px;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.spec-download-btn {
    color: #ffffff;

    background:
        linear-gradient(135deg,
            #2563eb,
            #1d4ed8);

    box-shadow:
        0 10px 24px rgba(37, 99, 235, 0.20);
}


.spec-buy-btn {
    color: #1d4ed8;

    border:
        1px solid #bfdbfe;

    background: #ffffff;
}


.spec-download-btn:hover,
.spec-buy-btn:hover {
    transform: translateY(-2px);
}


.spec-download-btn svg,
.spec-buy-btn svg {
    width: 20px;
    height: 20px;
}


.spec-download-btn span,
.spec-buy-btn span {
    text-align: left;
}


.spec-download-btn strong,
.spec-buy-btn strong {
    display: block;

    font-size: 18px;
}


.spec-download-btn small,
.spec-buy-btn small {
    display: block;

    margin-top: 2px;

    font-size: 10px;
}


.spec-download-btn small {
    color: #dbeafe;
}


.spec-buy-btn small {
    color: #64748b;
}


/* ==========================================================
   TRUST
   ========================================================== */

.mm-spec-trust {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap:
        10px 18px;

    margin-top: 18px;

    color: #64748b;

    font-size: 13px;

    font-weight: 600;
}


.mm-spec-trust span {
    display: flex;

    align-items: center;

    gap: 5px;
}


.mm-spec-trust svg {
    width: 15px;
    height: 15px;

    color: #16a34a;
}


/* ==========================================================
   REQUIREMENTS
   ========================================================== */

.mm-requirement-list {
    margin-top: 28px;
}


.mm-requirement-item {
    display: grid;

    grid-template-columns:
        42px 1fr;

    gap: 13px;

    align-items: center;

    padding:
        16px 0;

    border-bottom:
        1px solid #e2e8f0;
}


.mm-requirement-icon {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    color: #2563eb;

    background: #f8fafc;
}


.mm-requirement-icon svg {
    width: 20px;
    height: 20px;
}


.mm-requirement-item span {
    display: block;

    color: #94a3b8;

    font-size: 16px;




}


.mm-requirement-item strong {
    display: block;

    color: #334155;

    font-size: 16px;

    line-height: 1.45;
}


/* ==========================================================
   DEMO LIMIT
   ========================================================== */

.mm-demo-limit {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 22px;

    padding: 15px;

    border:
        1px solid #fed7aa;

    border-radius: 12px;

    background: #fff7ed;
}


.mm-demo-limit-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    flex:
        0 0 38px;

    border-radius: 10px;

    color: #ea580c;

    background: #ffedd5;
}


.mm-demo-limit-icon svg {
    width: 19px;
    height: 19px;
}


.mm-demo-limit span {
    display: block;

    color: #c2410c;

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;
}


.mm-demo-limit strong {
    display: block;

    margin-top: 3px;

    color: #7c2d12;

    font-size: 16px;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 900px) {

    .mm-spec-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .mm-specification-section {
        padding:
            72px 0;
    }


    .mm-spec-download,
    .mm-spec-requirements {
        padding: 24px;
    }


    .mm-spec-meta {
        grid-template-columns: 1fr;
    }


    .mm-spec-meta-item:not(:last-child)::after {
        display: none;
    }


    .mm-spec-meta-item {
        border-bottom:
            1px solid #e2e8f0;
    }


    .mm-spec-meta-item:last-child {
        border-bottom: 0;
    }


    .spec-platform-actions {
        grid-template-columns: 1fr;
    }

}

/* ==========================================================
   FEATURE PLATFORM TABS
   ========================================================== */

.feature-platform-tabs {
    max-width: 650px;

    margin: 34px 0 0;
}


/* TAB BUTTONS */

.feature-platform-tab-buttons {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    border-bottom:
        1px solid #e2e8f0;
}

.feature-platform-tab {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 48px;

    padding:
        10px 18px;

    border: 0;

    background: transparent;

    color: #64748b;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.feature-platform-tab::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -1px;

    height: 3px;

    background: transparent;
}

.feature-platform-tab:hover {
    color: #0f172a;
}

.feature-platform-tab.active {
    color: #2563eb;
}

.feature-platform-tab.active::after {
    background: #2563eb;
}

.feature-platform-tab svg {
    width: 18px;
    height: 18px;
}

.feature-platform-icon {
    font-size: 18px;
    line-height: 1;
}

.feature-platform-primary {
    padding:
        2px 7px;

    border-radius: 999px;

    color: #2563eb;
    background: #eff6ff;

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;
}


/* PANELS */

.feature-platform-panel {
    display: none;

    padding-top: 20px;
}

.feature-platform-panel.active {
    display: block;
}


/* BUTTON AREA */

.feature-platform-actions {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;
}


/* DOWNLOAD / BUY */

.feature-platform-download,
.feature-platform-buy {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 60px;

    padding:
        10px 18px;

    border-radius: 11px;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.feature-platform-download {
    color: #ffffff;

    background:
        linear-gradient(135deg,
            #2563eb,
            #1d4ed8);

    box-shadow:
        0 10px 24px rgba(37, 99, 235, 0.20);
}

.feature-platform-download:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 28px rgba(37, 99, 235, 0.26);
}

.feature-platform-buy {
    color: #1d4ed8;

    border:
        1px solid #bfdbfe;

    background: #ffffff;
}

.feature-platform-buy:hover {
    transform: translateY(-2px);

    border-color: #60a5fa;

    box-shadow:
        0 10px 24px rgba(15, 23, 42, 0.07);
}

.feature-platform-download svg,
.feature-platform-buy svg {
    width: 20px;
    height: 20px;

    flex:
        0 0 20px;
}

.feature-platform-download span,
.feature-platform-buy span {
    text-align: left;
}

.feature-platform-download strong,
.feature-platform-buy strong {
    display: block;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.25;
}

.feature-platform-download small,
.feature-platform-buy small {
    display: block;

    margin-top: 2px;

    font-size: 11px;
    font-weight: 500;
}

.feature-platform-download small {
    color: #dbeafe;
}

.feature-platform-buy small {
    color: #64748b;
}


/* RESPONSIVE */

@media (max-width: 650px) {

    .feature-platform-tabs {
        max-width: 100%;
    }

    .feature-platform-actions {
        grid-template-columns: 1fr;
    }

    .feature-platform-primary {
        display: none;
    }

}

/* ==========================================================
   OLM FEATURE HIGHLIGHTS
   ========================================================== */

.mm-highlights-section {
    position: relative;

    padding: 92px 0;

    background:
        linear-gradient(180deg,
            #f8fafc 0%,
            #ffffff 100%);
    text-align: center;

}


/* ==========================================================
   GRID
   ========================================================== */

.mm-highlights-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr) minmax(340px, 0.65fr);

    gap: 64px;

    align-items: center;
    padding: 30px 0 30px;
}


/* ==========================================================
   LEFT CONTENT
   ========================================================== */

.mm-highlights-content {
    min-width: 0;
    margin: 20, 0;
}

.mm-highlights-title {
    max-width: 720px;



    color: #0f172a;

    font-size: clamp(32px, 3.4vw, 44px);

    font-weight: 750;

    line-height: 0.7;

    letter-spacing: -0.035em;
    margin-left: auto;
    margin-right: auto;
}

.mm-highlights-intro {




    color: #64748b;

    font-size: 16px;
    margin: 10;


    text-align: center;
}


/* ==========================================================
   FEATURE LIST
   ========================================================== */

.mm-feature-list {
    display: grid;

    gap: 13px;

    margin: 0;

    padding: 0;

    list-style: none;
}

.mm-feature-list li {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    color: #334155;

    font-size: 15px;

    line-height: 1.55;
}

.mm-feature-list li>svg {
    width: 19px;
    height: 19px;

    flex:
        0 0 19px;

    margin-top: 2px;

    color: #16a34a;

    stroke-width: 2.4;
}

.mm-feature-list strong {
    color: #0f172a;

    font-weight: 700;
}


/* ==========================================================
   RIGHT VISUAL
   ========================================================== */

.mm-highlights-visual {
    position: relative;
}


/* IMAGE AREA */

.mm-visual-frame {
    position: relative;

    overflow: hidden;

    border:
        1px solid #e2e8f0;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.10);
}

.mm-visual-frame img {
    display: block;

    width: 100%;
    height: auto;
}


/* ==========================================================
   RESOURCE LINKS
   ========================================================== */

.mm-resource-links {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin-top: 14px;
}

.mm-resource-link {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 50px;

    padding: 10px;

    border:
        1px solid #dbeafe;

    border-radius: 10px;

    background: #ffffff;

    color: #2563eb;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.mm-resource-link svg {
    width: 17px;
    height: 17px;

    stroke-width: 2;
}

.mm-resource-link:hover {
    transform: translateY(-2px);

    color: #ffffff;

    border-color: #2563eb;

    background: #2563eb;

    box-shadow:
        0 8px 18px rgba(37, 99, 235, 0.18);
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 991px) {

    .mm-highlights-grid {
        grid-template-columns: 1fr;

        gap: 46px;
    }

    .mm-highlights-visual {
        max-width: 620px;

        width: 100%;

        margin: 0 auto;
    }

}


@media (max-width: 600px) {

    .mm-highlights-section {
        padding: 68px 0;
    }

    .mm-feature-list {
        gap: 15px;
    }

    .mm-feature-list li {
        font-size: 14px;
    }

    .mm-resource-links {
        grid-template-columns: 1fr;
    }

}

.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
    gap: 72px;
    align-items: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    margin: 0 auto;

    font-size: clamp(44px, 6vw, 70px);
    line-height: 1.02;
    letter-spacing: -0.055em;
    font-weight: 800;

    text-align: center;
}

.hero-description {
    max-width: 760px;
    margin: 24px auto 0;

    font-size: 19px;
    line-height: 1.72;
    color: #475569;

    text-align: center;
}

.hero-points {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 24px;

    margin: 28px auto 0;
    padding: 0;

    list-style: none;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 32px;
}

.hero-note {
    margin-top: 14px;
    text-align: center;

    font-size: 13px;
    color: var(--text-muted);
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 15px;
    font-weight: 600;
    color: #334155;
}

.hero-points li::before {
    content: "✓";

    display: grid;
    place-items: center;

    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    border-radius: 50%;

    color: #fff;
    background: var(--success);

    font-size: 12px;
    font-weight: 800;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 50px;
    padding: 0 22px;

    border: 1px solid transparent;
    border-radius: 12px;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg,
            var(--primary),
            var(--primary-dark));

    box-shadow:
        0 12px 28px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    box-shadow:
        0 18px 34px rgba(37, 99, 235, 0.32);
}

.btn-secondary {
    color: var(--text);
    background: #fff;
    border-color: var(--border);

    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: #cbd5e1;
    box-shadow: var(--shadow-md);
}

.hero-note {
    margin-top: 14px;

    font-size: 13px;
    color: var(--text-muted);
}

/* ==========================================================
   5. HERO VISUAL
   ========================================================== */

.hero-visual {
    position: relative;

    min-height: 500px;

    display: grid;
    place-items: center;
}

.hero-visual-card {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 520px;

    padding: 28px;

    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 26px;

    background:
        rgba(255, 255, 255, 0.92);

    box-shadow:
        0 34px 80px rgba(15, 23, 42, 0.14);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hero-visual::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(37, 99, 235, 0.13),
            rgba(37, 99, 235, 0.03) 45%,
            transparent 70%);
}

.hero-format-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 18px;
    align-items: center;
}

.format-card {
    padding: 24px 18px;

    border: 1px solid var(--border);
    border-radius: 18px;

    text-align: center;

    background: #fff;

    box-shadow: var(--shadow-sm);
}

.format-icon {
    width: 66px;
    height: 66px;

    margin: 0 auto 14px;

    display: grid;
    place-items: center;

    border-radius: 16px;

    font-size: 24px;
    font-weight: 800;

    color: var(--primary);
    background: var(--primary-light);
}

.format-card h3 {
    margin: 0;
    font-size: 20px;
}

.format-card p {
    margin: 6px 0 0;
    font-size: 13px;
    color: var(--text-muted);
}

.format-arrow {
    display: grid;
    place-items: center;

    width: 46px;
    height: 46px;

    border-radius: 50%;

    color: #fff;
    background: var(--primary);

    font-weight: 700;

    box-shadow:
        0 12px 24px rgba(37, 99, 235, 0.25);
}

/* ==========================================================
   6. TRUST STRIP
   ========================================================== */

.product-trust-strip {
    position: relative;
    z-index: 3;

    margin-top: -1px;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.92);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    min-height: 82px;
    padding: 20px;

    font-size: 14px;
    font-weight: 700;
    color: #334155;

    border-right: 1px solid var(--border);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-icon {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    color: var(--primary);
    background: var(--primary-light);
}

/* ==========================================================
   7. INFORMATIONAL INTRO
   ========================================================== */

.info-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 70px;
    align-items: center;
}

.info-card {
    padding: 34px;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background: #fff;

    box-shadow: var(--shadow-md);
}

.info-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.info-card p {
    margin: 0;
    color: var(--text-muted);
}

.info-list {
    display: grid;
    gap: 14px;

    margin: 26px 0 0;
    padding: 0;

    list-style: none;
}

.info-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;

    color: #475569;
}

.info-list li::before {
    content: "•";

    color: var(--accent);
    font-size: 22px;
    line-height: 1;
}

/* ==========================================================
   8. USE CASES
   ========================================================== */

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.use-case-card {
    padding: 28px;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: #fff;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);

    border-color: #bfdbfe;

    box-shadow: var(--shadow-md);
}

.use-case-number {
    display: inline-flex;

    margin-bottom: 18px;

    font-size: 13px;
    font-weight: 800;

    color: var(--primary);
}

.use-case-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.use-case-card p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
}

/* ==========================================================
   9. HOW IT WORKS
   ========================================================== */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;

    position: relative;
}

.step-card {
    position: relative;

    padding: 34px;

    border: 1px solid var(--border);
    border-radius: 20px;

    background: #fff;

    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    border-radius: 14px;

    color: #fff;
    background: var(--primary);

    font-weight: 800;
}

.step-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
}

.step-card p {
    margin: 0;
    color: var(--text-muted);
}

/* ==========================================================
   10. FEATURES
   ========================================================== */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-card {
    position: relative;

    padding: 30px;

    border: 1px solid var(--border);
    border-radius: 20px;

    background: #fff;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    margin-bottom: 18px;

    border-radius: 14px;

    color: var(--primary);
    background: var(--primary-light);

    font-size: 20px;
}

.feature-card h3 {
    margin: 0 0 9px;
    font-size: 19px;
}

.feature-card p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
}

/* ==========================================================
   11. MAILBOX DATA TYPES
   ========================================================== */

.mailbox-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.mailbox-item {
    padding: 22px 14px;

    border: 1px solid var(--border);
    border-radius: 16px;

    text-align: center;

    background: #fff;
}

.mailbox-icon {
    width: 42px;
    height: 42px;

    margin: 0 auto 11px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: var(--accent);
    background: var(--accent-light);
}

.mailbox-item span {
    display: block;

    font-size: 14px;
    font-weight: 700;
}

/* ==========================================================
   12. ADVANCED OPTIONS / DARK FEATURE STORY
   ========================================================== */

.advanced-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    gap: 70px;
    align-items: center;
}

.advanced-list {
    display: grid;
    gap: 18px;

    margin-top: 30px;
}

.advanced-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: start;
}

.advanced-item-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: #bfdbfe;
    background: rgba(37, 99, 235, 0.14);
}

.advanced-item h3 {
    margin: 0 0 5px;
    font-size: 17px;
}

.advanced-item p {
    margin: 0;

    font-size: 14px;
    color: #cbd5e1;
}

.advanced-panel {
    padding: 30px;

    border: 1px solid var(--border-dark);
    border-radius: 22px;

    background:
        rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* ==========================================================
   13. SCREENSHOTS / PRODUCT WORKFLOW
   ========================================================== */

.product-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}

.software-window {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 22px;

    background: #fff;

    box-shadow: var(--shadow-lg);
}

.software-window-top {
    display: flex;
    align-items: center;
    gap: 6px;

    height: 44px;
    padding: 0 16px;

    background: #f8fafc;
    border-bottom: 1px solid var(--border);
}

.window-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
}

.software-window-image {
    padding: 18px;
}

/* ==========================================================
   14. WHY CHOOSE
   ========================================================== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    padding: 28px;

    border-radius: 18px;

    background: var(--bg-soft);

    border: 1px solid var(--border);
}

.why-card strong {
    display: block;

    margin-bottom: 7px;

    font-size: 16px;
}

.why-card p {
    margin: 0;

    font-size: 14px;
    color: var(--text-muted);
}

/* ==========================================================
   15. DOWNLOAD / SYSTEM REQUIREMENTS
   ========================================================== */

.download-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
    gap: 50px;
    align-items: stretch;
}

.download-card,
.requirements-card {
    padding: 36px;

    border: 1px solid var(--border);
    border-radius: 22px;

    background: #fff;

    box-shadow: var(--shadow-md);
}

.download-card h3,
.requirements-card h3 {
    margin: 0 0 14px;
    font-size: 25px;
}

.download-card p,
.requirements-card p {
    color: var(--text-muted);
}

.requirements-list {
    display: grid;
    gap: 12px;

    margin: 20px 0 0;
    padding: 0;

    list-style: none;
}

.requirements-list li {
    display: flex;
    gap: 10px;

    font-size: 14px;
    color: #475569;
}

.requirements-list strong {
    min-width: 92px;
    color: var(--text);
}

/* ==========================================================
   16. FREE VS FULL
   ========================================================== */

.compare-table-wrap {
    overflow-x: auto;

    border: 1px solid var(--border);
    border-radius: 20px;

    background: #fff;

    box-shadow: var(--shadow-sm);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;

}

.compare-table th,
.compare-table td {
    padding: 18px 20px;

    border-bottom: 1px solid var(--border);

    text-align: left;
}

.compare-table th {


    font-size: 14px;
    color: #334155;
}

.compare-table td {
    font-size: 14px;
    color: #475569;
}

.compare-table tr:last-child td {
    border-bottom: 0;
}

.compare-check {
    font-weight: 800;
    color: var(--success);
}

.compare-no {
    color: #94a3b8;
}

/* ==========================================================
   17. LONG-FORM GUIDE
   ========================================================== */

.guide-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 54px;
    align-items: start;
}

.guide-content h2 {
    margin-top: 48px;
    margin-bottom: 14px;

    font-size: 30px;
    letter-spacing: -0.025em;
}

.guide-content h3 {
    margin-top: 30px;
    margin-bottom: 10px;

    font-size: 21px;
}

.guide-content p {
    color: #475569;
}

.guide-content ul {
    color: #475569;
}

.guide-sidebar {
    position: sticky;
    top: 100px;

    padding: 24px;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: #fff;

    box-shadow: var(--shadow-sm);
}

.guide-sidebar h3 {
    margin: 0 0 14px;
    font-size: 16px;
}

.guide-sidebar a {
    display: block;

    padding: 8px 0;

    font-size: 14px;
    color: var(--text-muted);
}

.guide-sidebar a:hover {
    color: var(--primary);
}

/* ==========================================================
   18. OLM VS PST
   ========================================================== */

.format-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.format-compare-card {
    padding: 30px;

    border: 1px solid var(--border);
    border-radius: 20px;

    background: #fff;
}

.format-compare-card h3 {
    margin: 0 0 14px;
    font-size: 24px;
}

.format-compare-list {
    display: grid;
    gap: 10px;

    margin: 0;
    padding-left: 18px;

    color: var(--text-muted);
}

/* ==========================================================
   19. FAQ
   ========================================================== */

.faq-list {
    max-width: 880px;
    margin: 0 auto;

    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 16px;

    background: #fff;
}

.faq-question {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;

    padding: 20px 22px;

    border: 0;

    background: transparent;

    text-align: left;

    font-size: 16px;
    font-weight: 700;
    color: var(--text);

    cursor: pointer;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-answer {
    padding: 0 22px 22px;

    color: var(--text-muted);
    font-size: 14px;
}

/* ==========================================================
   20. RELATED TOOLS
   ========================================================== */

.related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.related-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    padding: 28px;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: #fff;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.related-card h3 {
    margin: 0 0 6px;
    font-size: 19px;
}

.related-card p {
    margin: 0;

    font-size: 14px;
    color: var(--text-muted);
}

.related-arrow {
    flex: 0 0 auto;

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: var(--primary);
    background: var(--primary-light);
}

/* ==========================================================
   FINAL CTA SECTION
   ========================================================== */

.final-cta {
    position: relative;
    overflow: hidden;

    padding: 72px 0;

    color: #ffffff;

    background:
        radial-gradient(circle at 15% 20%,
            rgba(255, 255, 255, 0.12),
            transparent 26%),
        linear-gradient(135deg,
            #3568e5 0%,
            #2563eb 48%,
            #2453c5 100%);
}


/* ==========================================================
   INNER LAYOUT
   ========================================================== */

.final-cta-inner {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr) auto;

    align-items: center;

    gap: 48px;
}


/* ==========================================================
   CONTENT
   ========================================================== */

.final-cta h2 {
    margin: 0;

    color: #ffffff;

    font-size:
        clamp(34px,
            4vw,
            50px);

    font-weight: 750;

    line-height: 1.08;

    letter-spacing: -0.035em;
}


.final-cta p {
    max-width: 650px;

    margin:
        14px 0 0;

    color:
        rgba(255, 255, 255, 0.90);

    font-size: 15px;

    line-height: 1.7;
}


/* ==========================================================
   ACTIONS
   ========================================================== */

/* ==========================================================
   FINAL CTA ACTION GROUP
   ========================================================== */

.final-cta-actions {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 8px;

    border:
        1px solid rgba(255, 255, 255, 0.16);

    border-radius: 14px;

    background:
        rgba(255, 255, 255, 0.08);

    box-shadow:
        0 14px 34px rgba(10, 35, 95, 0.16);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


/* ==========================================================
   COMMON ACTION
   ========================================================== */

.final-action {
    min-height: 56px;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding:
        9px 15px 9px 10px;

    border-radius: 10px;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}


/* ICON */

.final-action-icon {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    flex: 0 0 36px;

    border-radius: 9px;
}


.final-action-icon svg {
    width: 17px;
    height: 17px;

    stroke-width: 2;
}


/* COPY */

.final-action-copy {
    display: flex;
    flex-direction: column;

    gap: 3px;

    line-height: 1;
}


.final-action-copy small {
    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.03em;
}


.final-action-copy strong {
    font-size: 13px;
    font-weight: 750;

    white-space: nowrap;
}


/* ==========================================================
   DOWNLOAD
   ========================================================== */

.final-action-download {
    min-width: 190px;

    color: #0f172a;

    background: #ffffff;

    border:
        1px solid rgba(255, 255, 255, 0.90);

    box-shadow:
        0 5px 14px rgba(15, 23, 42, 0.10);
}


.final-action-download .final-action-icon {
    color: #16a34a;

    background: #f0fdf4;
}


.final-action-download .final-action-copy small {
    color: #64748b;
}


.final-action-download .final-action-copy strong {
    color: #0f172a;
}


.final-action-download:hover {
    transform:
        translateY(-2px);

    background: #ffffff;

    border-color: #bbf7d0;

    box-shadow:
        0 9px 22px rgba(15, 23, 42, 0.15);
}


/* ==========================================================
   BUY
   ========================================================== */

.final-action-buy {
    min-width: 145px;

    color: #ffffff;

    background:
        linear-gradient(135deg,
            #ff7a18,
            #ea580c);

    border:
        1px solid rgba(255, 255, 255, 0.14);

    box-shadow:
        0 7px 18px rgba(194, 65, 12, 0.28);
}


.final-action-buy .final-action-icon {
    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.14);
}


.final-action-buy .final-action-copy small {
    color:
        rgba(255, 255, 255, 0.72);
}


.final-action-buy .final-action-copy strong {
    color: #ffffff;
}


.final-action-buy:hover {
    transform:
        translateY(-2px);

    background:
        linear-gradient(135deg,
            #f97316,
            #c2410c);

    box-shadow:
        0 10px 24px rgba(194, 65, 12, 0.34);
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 900px) {

    .final-cta-actions {
        width: fit-content;
    }

}


@media (max-width: 560px) {

    .final-cta-actions {
        width: 100%;

        flex-direction: column;
        align-items: stretch;
    }


    .final-action {
        width: 100%;
    }


    .final-action-download,
    .final-action-buy {
        min-width: 0;
    }

}

/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

    .final-cta {
        padding:
            64px 0;
    }


    .final-cta-inner {
        grid-template-columns: 1fr;

        gap: 28px;
    }


    .final-cta-actions {
        justify-content: flex-start;
    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

    .final-cta {
        padding:
            54px 0;
    }


    .final-cta h2 {
        font-size: 32px;

        line-height: 1.12;
    }


    .final-cta p {
        font-size: 14px;

        line-height: 1.65;
    }


    .final-cta-actions {
        flex-wrap: wrap;

        gap: 9px;
    }


    .final-cta-actions a {
        min-height: 44px;

        padding:
            9px 16px;

        font-size: 13px;
    }

}

/* ==========================================================
   22. FLOATING / STICKY CTA
   ========================================================== */

.product-sticky-cta {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 1000;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 16px;

    min-width: 520px;
    padding: 12px 14px 12px 18px;

    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.94);

    box-shadow:
        0 18px 60px rgba(15, 23, 42, 0.18);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.sticky-cta-text {
    flex: 1;
}

.sticky-cta-text strong {
    display: block;
    font-size: 14px;
}

.sticky-cta-text span {
    display: block;
    margin-top: 2px;

    font-size: 12px;
    color: var(--text-muted);
}

.product-sticky-cta .btn {
    min-height: 42px;
    padding: 0 16px;
}

/* ==========================================================
   23. ACCESSIBILITY
   ========================================================== */

:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.35);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================
   24. RESPONSIVE
   ========================================================== */

@media (max-width: 1180px) {

    .hero-grid,
    .info-grid,
    .advanced-grid,
    .download-layout {
        gap: 48px;
    }

    .mailbox-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .use-case-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .section {
        padding: 82px 0;
    }

    .hero-grid,
    .info-grid,
    .advanced-grid,
    .product-showcase-grid,
    .download-layout,
    .guide-layout,
    .final-cta-inner {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 50px;
    }

    .hero-content {
        max-width: none;
    }

    .hero-visual {
        min-height: auto;
    }

    .feature-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guide-sidebar {
        position: static;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

    .final-cta-inner {
        text-align: center;
    }

    .final-cta p {
        margin-left: auto;
        margin-right: auto;
    }

    .final-cta-actions {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .section {
        padding: 68px 0;
    }

    .mm-pst-hero {
        padding: 70px 0 64px;
    }

    .hero-title {
        font-size: clamp(38px, 11vw, 54px);
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-format-flow {
        grid-template-columns: 1fr;
    }

    .format-arrow {
        margin: 0 auto;
        transform: rotate(90deg);
    }

    .feature-grid,
    .steps-grid,
    .use-case-grid,
    .why-grid,
    .related-grid,
    .format-compare-grid {
        grid-template-columns: 1fr;
    }

    .mailbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .product-sticky-cta {
        left: 14px;
        right: 14px;
        bottom: 12px;

        transform: none;

        min-width: 0;

        flex-wrap: wrap;
    }

    .sticky-cta-text {
        width: 100%;
    }

    .product-sticky-cta .btn {
        flex: 1;
    }

    .section-title {
        font-size: 34px;
    }

    .section-subtitle {
        font-size: 16px;

    }
}

@media (max-width: 480px) {

    .hero-visual-card,
    .info-card,
    .download-card,
    .requirements-card,
    .advanced-panel {
        padding: 22px;
    }

    .mailbox-grid {
        grid-template-columns: 1fr 1fr;
    }

    .compare-table th,
    .compare-table td {
        padding: 14px 12px;
    }

    .hero-points li {
        align-items: flex-start;
    }
}

/* ==========================================================
   COOKIE CONSENT
   ========================================================== */

.cookie-consent {
    position: fixed;

    left: 24px;
    right: 24px;
    bottom: 20px;

    z-index: 99999;

    display: none;
}


.cookie-consent.is-visible {
    display: block;
}


.cookie-consent-inner {
    width: 100%;
    max-width: 1120px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 16px;

    padding: 15px 16px;

    border: 1px solid #e2e8f0;
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.98);

    box-shadow:
        0 15px 45px rgba(15, 23, 42, 0.16);

    backdrop-filter: blur(12px);
}


/* ICON */

.cookie-consent-icon {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    flex: 0 0 40px;

    border-radius: 9px;

    color: #2563eb;
    background: #eff6ff;
}


.cookie-consent-icon svg {
    width: 19px;
    height: 19px;
}


/* CONTENT */

.cookie-consent-content {
    flex: 1;
}


.cookie-consent-content strong {
    display: block;

    margin-bottom: 3px;

    color: #0f172a;

    font-size: 14px;
    font-weight: 700;
}


.cookie-consent-content p {
    margin: 0;

    color: #64748b;

    font-size: 12px;
    line-height: 1.55;
}


.cookie-consent-content a {
    color: #2563eb;

    font-weight: 600;

    text-decoration: none;
}


.cookie-consent-content a:hover {
    text-decoration: underline;
}


/* ACTIONS */

.cookie-consent-actions {
    display: flex;
    align-items: center;

    gap: 8px;

    flex: 0 0 auto;
}


.cookie-consent-actions button {
    min-height: 38px;

    padding: 8px 14px;

    border-radius: 7px;

    font-family: inherit;
    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


/* ESSENTIAL */

.cookie-essential-btn {
    color: #475569;

    background: #ffffff;

    border: 1px solid #cbd5e1;
}


.cookie-essential-btn:hover {
    color: #0f172a;

    background: #f8fafc;
}


/* ACCEPT */

.cookie-accept-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    color: #ffffff;

    background: #2563eb;

    border: 1px solid #2563eb;
}


.cookie-accept-btn:hover {
    background: #1d4ed8;

    border-color: #1d4ed8;

    transform: translateY(-1px);
}


.cookie-accept-btn svg {
    width: 14px;
    height: 14px;
}


/* MOBILE */

@media (max-width: 700px) {

    .cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }


    .cookie-consent-inner {
        align-items: flex-start;

        flex-wrap: wrap;

        padding: 14px;
    }


    .cookie-consent-content {
        flex:
            1 1 calc(100% - 58px);
    }


    .cookie-consent-actions {
        width: 100%;

        margin-top: 4px;
    }


    .cookie-consent-actions button {
        flex: 1;
    }

}
.reverse-conversion-box {
    display: flex;

    gap: 12px;

    max-width: 520px;

    margin: 22px auto 0;

    padding: 13px 15px;

    border: 1px solid #dbeafe;
    border-radius: 10px;

    background: #f8fbff;

    box-shadow:
        0 6px 18px rgba(15, 23, 42, 0.05);
}


.reverse-conversion-icon {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    flex: 0 0 36px;

    border-radius: 8px;

    color: #2563eb;
    background: #eff6ff;
}


.reverse-conversion-icon svg {
    width: 17px;
    height: 17px;
}


.reverse-conversion-content {
    flex: 1;
}


.reverse-conversion-label {
    display: block;

    margin-bottom: 2px;

    color: #0f172a;

    font-size: 12px;
    font-weight: 700;
}


.reverse-conversion-content p {
    margin: 0;

    color: #64748b;

    font-size: 11px;
    line-height: 1.5;
}


.reverse-conversion-content a {
    color: #2563eb;

    font-weight: 700;

    text-decoration: none;
}


.reverse-conversion-content a:hover {
    text-decoration: underline;
}


.reverse-conversion-link {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    flex: 0 0 auto;

    color: #2563eb;

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;
}


.reverse-conversion-link svg {
    width: 14px;
    height: 14px;

    transition: transform 0.2s ease;
}


.reverse-conversion-link:hover svg {
    transform: translateX(3px);
}


@media (max-width: 600px) {

    .reverse-conversion-box {
        align-items: flex-start;

        flex-wrap: wrap;
    }

    .reverse-conversion-link {
        margin-left: 48px;
    }

}
/* MacMister reusable conversion section. Inter and Lucide are already loaded by your page. */
#mm-conversion-section {
  --mm-ink: #ffffff;
  --mm-muted: #cbd5e1;
  --mm-primary: #60a5fa;
  --mm-primary-dark: #bfdbfe;
  --mm-primary-soft: rgba(37, 99, 235, 0.12);
  --mm-panel: #0d1b32;
  --mm-soft: #07111f;
  --mm-border: rgba(255, 255, 255, 0.12);
  --mm-blue-border: rgba(147, 197, 253, 0.18);
  width: 100%;
  box-sizing: border-box;
  padding: 48px 30px 38px;
  color-scheme: dark;
  background:
    radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.20), transparent 30%),
    radial-gradient(circle at 85% 75%, rgba(14, 165, 233, 0.12), transparent 28%),
    linear-gradient(135deg, #07111f 0%, #0b1730 55%, #101c35 100%);
  color: var(--mm-ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  container-type: inline-size;
}
#mm-conversion-section * { box-sizing: border-box; }
#mm-conversion-section .mm-header { margin: 0 auto 34px; text-align: center; max-width: 760px; }
#mm-conversion-section .mm-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  margin: 0 0 16px; padding: 7px 12px; border-radius: 999px;
  border: 1px solid var(--mm-blue-border);
  color: var(--mm-primary-dark); background: var(--mm-primary-soft);
  font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
}
#mm-conversion-section .mm-eyebrow svg { width: 14px; height: 14px; }
#mm-conversion-section h2 {
  margin: 0; color: var(--mm-ink); font-size: clamp(32px, 4.85cqi, 50px);
  font-weight: 700; line-height: 1.12; letter-spacing: -.035em; text-wrap: balance;
}
#mm-conversion-section .mm-subtitle {
  margin: 13px auto 0; max-width: 580px; color: var(--mm-muted);
  font-size: 16px; line-height: 1.75;
}
#mm-conversion-section .mm-grid {
  width: 100%; max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 32px; align-items: start;
}
#mm-conversion-section .mm-explain {
  border: 1px solid var(--mm-blue-border); border-radius: 22px;
  padding: 25px 23px 22px; background: var(--mm-panel);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.20);
}
#mm-conversion-section .mm-file-pair {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
  max-width: 270px;
}
#mm-conversion-section .mm-file {
  flex: 1; min-width: 0; display: flex; align-items: center;
  justify-content: center; gap: 8px; padding: 15px 8px;
  border: 1px solid var(--mm-blue-border); border-radius: 12px;
  color: var(--mm-primary); background: var(--mm-primary-soft);
  font-size: 13px; font-weight: 700;
}
#mm-conversion-section .mm-file svg { width: 22px; height: 22px; flex-shrink: 0; }
#mm-conversion-section .mm-explain h3 {
  margin: 0 0 10px; color: var(--mm-ink); font-size: 23px;
  line-height: 1.22; letter-spacing: -.025em; font-weight: 700;
}
#mm-conversion-section .mm-explain p {
  margin: 0; color: var(--mm-muted); font-size: 15px; line-height: 1.75;
}
#mm-conversion-section .mm-inside {
  list-style: none; display: grid; gap: 11px;
  margin: 21px 0 22px; padding: 0;
  color: var(--mm-muted); font-size: 15px;
}
#mm-conversion-section .mm-inside li { display: flex; align-items: center; gap: 9px; }
#mm-conversion-section .mm-inside svg { width: 16px; height: 16px; color: var(--mm-primary); flex-shrink: 0; }
#mm-conversion-section .mm-input-note {
  margin-top: 20px; padding-top: 17px; border-top: 1px solid var(--mm-border);
  display: flex; gap: 10px; align-items: flex-start;
}
#mm-conversion-section .mm-input-note svg { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; color: var(--mm-primary); }
#mm-conversion-section .mm-input-note strong { display: block; font-size: 13px; font-weight: 600; color: var(--mm-ink); }
#mm-conversion-section .mm-input-note span { display: block; font-size: 13px; line-height: 1.65; color: var(--mm-muted); }
#mm-conversion-section .mm-use-cases { display: grid; }
#mm-conversion-section .mm-case {
  display: grid; grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px; padding: 17px 0; border-bottom: 1px solid var(--mm-border);
}
#mm-conversion-section .mm-case:first-child { padding-top: 3px; }
#mm-conversion-section .mm-case:last-child { border-bottom: 0; padding-bottom: 0; }
#mm-conversion-section .mm-case-icon {
  display: grid; place-items: center; width: 34px; height: 34px;
  border-radius: 9px; color: var(--mm-primary); background: var(--mm-primary-soft);
}
#mm-conversion-section .mm-case-icon svg { width: 17px; height: 17px; }
#mm-conversion-section .mm-case h3 {
  margin: 0 0 5px; font-size: 16px; font-weight: 700;
  line-height: 1.4; letter-spacing: -.015em; color: var(--mm-ink);
}
#mm-conversion-section .mm-case p {
  margin: 0; color: var(--mm-muted); font-size: 15px; line-height: 1.7;
}
#mm-conversion-section .mm-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 9px; }
#mm-conversion-section .mm-tags span {
  padding: 2px 7px; border: 1px solid var(--mm-border); border-radius: 5px;
  color: var(--mm-muted); background: var(--mm-panel); font-size: 12px; font-weight: 500;
}
#mm-conversion-section .mm-footer {
  display: flex; align-items: flex-start; gap: 11px;
  width: 100%; max-width: 1000px;
  margin: 29px auto 0; padding: 16px 19px;
  border-left: 3px solid var(--mm-primary); border-radius: 0 10px 10px 0;
  background: var(--mm-primary-soft);
}
#mm-conversion-section .mm-footer svg { color: var(--mm-primary); width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
#mm-conversion-section .mm-footer p { margin: 0; color: var(--mm-muted); font-size: 15px; line-height: 1.7; }
#mm-conversion-section .mm-footer strong { color: var(--mm-ink); font-weight: 600; }
@container (max-width: 555px) {
  #mm-conversion-section .mm-grid { grid-template-columns: 1fr; gap: 27px; }
  #mm-conversion-section .mm-explain { padding: 24px; }
  #mm-conversion-section .mm-file-pair { max-width: 270px; }
  #mm-conversion-section .mm-case p { font-size: 15px; }
  #mm-conversion-section .mm-inside { font-size: 15px; }
  #mm-conversion-section .mm-case h3 { font-size: 16px; }
}
@media (max-width: 420px) {
  #mm-conversion-section { padding: 32px 20px 28px; }
  #mm-conversion-section .mm-header { margin-bottom: 25px; }
  #mm-conversion-section .mm-explain { padding: 21px 18px; }
  #mm-conversion-section .mm-grid { gap: 25px; }
  #mm-conversion-section .mm-footer { padding: 14px 12px; }
}
/* Reusable conversion sections. Inter and Lucide are already loaded by the site. */
.mm-detail-section {
  --mm-detail-text: #ffffff;
  --mm-detail-muted: #cbd5e1;
  --mm-detail-blue: #60a5fa;
  --mm-detail-panel: #0d1b32;
  --mm-detail-border: rgba(147, 197, 253, .18);
  --mm-detail-label: #bfdbfe;
  --mm-detail-chip-text: #dbeafe;
  box-sizing: border-box;
  width: 100%;
  padding: 68px 24px;
  color-scheme: dark;
  color: var(--mm-detail-text);
  background:
    radial-gradient(circle at 15% 20%, rgba(37, 99, 235, .20), transparent 30%),
    radial-gradient(circle at 85% 75%, rgba(14, 165, 233, .12), transparent 28%),
    linear-gradient(135deg, #07111f 0%, #0b1730 55%, #101c35 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.75;
}
.mm-detail-section * { box-sizing: border-box; }
.mm-detail-section .mm-detail-container { width: 100%; max-width: 1000px; margin-inline: auto; }
.mm-detail-section .mm-detail-header { max-width: 820px; margin: 0 auto 38px; text-align: center; }
.mm-detail-section .mm-detail-eyebrow {
  display: inline-block; max-width: 100%; padding: 7px 12px; margin-bottom: 16px;
  border: 1px solid var(--mm-detail-border); border-radius: 999px;
  background: rgba(37, 99, 235, .12); color: var(--mm-detail-label);
  font-size: 12px; font-weight: 800; line-height: 1.5; letter-spacing: .05em; text-transform: uppercase;
}
.mm-detail-section h2 {
  margin: 0; color: var(--mm-detail-text); font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 700; line-height: 1.14; letter-spacing: -.035em; text-wrap: balance;
}
.mm-detail-section .mm-detail-header p { max-width: 720px; margin: 17px auto 0; color: var(--mm-detail-muted); font-size: 16px; line-height: 1.75; }
.mm-detail-section h3 { margin: 0 0 10px; color: var(--mm-detail-text); font-size: 18px; font-weight: 700; line-height: 1.4; letter-spacing: -.015em; }
.mm-detail-section p { color: var(--mm-detail-muted); }
.mm-detail-section .mm-compatibility-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 22px; align-items: stretch; }
.mm-detail-section .mm-detail-panel { min-width: 0; padding: 26px; border: 1px solid var(--mm-detail-border); border-radius: 16px; background: var(--mm-detail-panel); }
.mm-detail-section .mm-detail-panel p { margin: 0; font-size: 15px; line-height: 1.75; }
.mm-detail-section .mm-detail-icon { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; flex-shrink: 0; color: var(--mm-detail-blue); background: rgba(37, 99, 235, .12); }
.mm-detail-section .mm-detail-icon svg { width: 21px; height: 21px; }
.mm-detail-section .mm-source-panel > .mm-detail-icon { margin-bottom: 18px; }
.mm-detail-section .mm-source-files { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; list-style: none; margin: 24px 0; padding: 0; }
.mm-detail-section .mm-source-files li { min-width: 0; padding: 15px 12px; border: 1px solid var(--mm-detail-border); border-radius: 10px; }
.mm-detail-section .mm-source-files strong { display: block; color: var(--mm-detail-label); font-size: 22px; letter-spacing: -.03em; line-height: 1.3; }
.mm-detail-section .mm-source-files span { display: block; margin-top: 5px; color: var(--mm-detail-muted); font-size: 12px; line-height: 1.6; }
.mm-detail-section .mm-detail-checks { display: grid; gap: 10px; list-style: none; margin: 0; padding: 0; font-size: 14px; color: var(--mm-detail-muted); }
.mm-detail-section .mm-detail-checks li { display: flex; gap: 9px; align-items: flex-start; }
.mm-detail-section .mm-detail-checks svg { width: 17px; height: 17px; margin-top: 4px; flex-shrink: 0; color: var(--mm-detail-blue); }
.mm-detail-section .mm-destination-panels { display: grid; gap: 18px; min-width: 0; }
.mm-detail-section .mm-detail-panel-heading { display: flex; align-items: center; gap: 13px; margin-bottom: 15px; }
.mm-detail-section .mm-detail-panel-heading h3 { margin: 0; }
.mm-detail-section .mm-format-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 19px 0 0; padding: 0; }
.mm-detail-section .mm-format-list li { max-width: 100%; padding: 5px 11px; border: 1px solid var(--mm-detail-border); border-radius: 7px; color: var(--mm-detail-chip-text); background: rgba(37, 99, 235, .08); font-size: 13px; font-weight: 600; line-height: 1.5; }
.mm-detail-section .mm-detail-note { display: flex; gap: 12px; align-items: flex-start; margin: 25px 0 0; padding: 17px 20px; border-left: 3px solid var(--mm-detail-blue); border-radius: 0 10px 10px 0; background: rgba(37, 99, 235, .10); font-size: 14px; line-height: 1.75; }
.mm-detail-section .mm-detail-note svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 4px; color: var(--mm-detail-blue); }
.mm-detail-section .mm-detail-note strong { color: var(--mm-detail-text); font-weight: 600; }
.mm-detail-section-light {
  --mm-detail-text: #0f172a;
  --mm-detail-muted: #475569;
  --mm-detail-blue: #2563eb;
  --mm-detail-panel: #ffffff;
  --mm-detail-border: #dbe5f1;
  --mm-detail-label: #1d4ed8;
  --mm-detail-chip-text: #1e40af;
  color-scheme: light;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.mm-detail-section-secondary { border-top: 1px solid rgba(147, 197, 253, .16); }
.mm-detail-section .mm-preservation-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.mm-detail-section .mm-preservation-item { min-width: 0; padding: 24px; border: 1px solid var(--mm-detail-border); border-radius: 14px; background: var(--mm-detail-panel); }
.mm-detail-section .mm-preservation-item .mm-detail-icon { margin-bottom: 18px; }
.mm-detail-section .mm-preservation-item h3 { font-size: 16px; }
.mm-detail-section .mm-preservation-item p { margin: 0; font-size: 15px; line-height: 1.75; }
@media (max-width: 900px) {
  .mm-detail-section .mm-preservation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .mm-detail-section { padding: 48px 22px; }
  .mm-detail-section .mm-compatibility-grid { grid-template-columns: 1fr; }
  .mm-detail-section .mm-source-files { max-width: 360px; }
  .mm-detail-section .mm-detail-header { margin-bottom: 30px; }
}
@media (max-width: 520px) {
  .mm-detail-section { padding: 40px 18px; }
  .mm-detail-section .mm-preservation-grid { grid-template-columns: 1fr; gap: 14px; }
  .mm-detail-section .mm-detail-panel, .mm-detail-section .mm-preservation-item { padding: 21px; }
  .mm-detail-section .mm-detail-note { padding: 15px 12px; }
  .mm-detail-section .mm-detail-header p { font-size: 15px; }
}
.conversion-steps,
.conversion-steps * {
    box-sizing: border-box;
}

.conversion-steps {
    padding: 72px 24px;
    background: #f5f8ff;
    color: #0f172a;
    font-family: inherit;
}

.conversion-steps__container {
    max-width: 1080px;
    margin-inline: auto;
}

.conversion-steps__header {
    max-width: 780px;
    margin: 0 auto 36px;
    text-align: center;
}

.conversion-steps__label {
    display: inline-block;
    padding: 7px 13px;
    border-radius: 999px;
    background: #e7efff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.conversion-steps__header h2 {
    margin: 16px 0 12px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.conversion-steps__header p,
.conversion-steps__footer p {
    margin: 0;
    color: #526078;
    font-size: 16px;
    line-height: 1.65;
}

.conversion-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.conversion-steps__card {
    padding: 28px;
    background: #fff;
    border: 1px solid #e0e7f1;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgb(15 23 42 / 3%);
}

.conversion-steps__number {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 14px;
    background: #eff5ff;
    color: #2563eb;
    font-size: 19px;
    font-weight: 700;
}

.conversion-steps__card h3 {
    margin: 0 0 12px;
    font-size: 19px;
    line-height: 1.4;
}

.conversion-steps__card p {
    margin: 0;
    color: #526078;
    font-size: 15px;
    line-height: 1.8;
}

.conversion-steps__card strong {
    color: #334155;
    font-weight: 600;
}

.conversion-steps__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
    padding: 26px 30px;
    background: #eaf1ff;
    border: 1px solid #dce7fc;
    border-radius: 16px;
}

.conversion-steps__footer h3 {
    margin: 0 0 4px;
    font-size: 18px;
}

.conversion-steps__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-shrink: 0;
    padding: 14px 22px;
    border-radius: 10px;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.conversion-steps__button:hover {
    background: #1d4ed8;
    color: #fff;
}

.conversion-steps__button:focus-visible {
    outline: 3px solid #1d4ed8;
    outline-offset: 4px;
}

@media (max-width: 760px) {
    .conversion-steps {
        padding: 48px 20px;
    }

    .conversion-steps__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .conversion-steps__card {
        padding: 24px;
    }

    .conversion-steps__footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .conversion-steps__button {
        width: 100%;
    }
}
.conversion-steps__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    border-radius: 14px;
    background: #eff5ff;
    color: #2563eb;
}

.conversion-steps__icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.product-guide,
.product-guide * {
    box-sizing: border-box;
}

.product-guide {
    padding: 70px 24px;
    background: linear-gradient(180deg, #f5f8ff, #ffffff);
    color: #0f172a;
    font-family: inherit;
}

.product-guide__container {
    max-width: 1000px;
    margin-inline: auto;
}

.product-guide__header {
    margin: 0 auto 36px;
    text-align: center;
}

.product-guide__eyebrow {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eaf1ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.product-guide__header h2 {
    margin: 16px 0 12px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.25;
    letter-spacing: -0.7px;
}

.product-guide__header p {
    margin: 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}

.product-guide__slider {
    position: relative;
    max-width: 880px;
    margin-inline: auto;
    padding-inline: 60px;
}

.product-guide__screen {
    overflow: hidden;
    border: 1px solid #dfe7f3;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 50px rgb(15 23 42 / 9%);
}

.product-guide__slide {
    margin: 0;
}

.product-guide__slide[hidden] {
    display: none;
}

.product-guide__slide img {
    display: block;
    width: 100%;
    height: 580px;
    object-fit: contain;
    padding: 0px;
    background: #f8fafc;
}

.product-guide__slide figcaption {
    min-height: 100px;
    padding: 20px 24px;
    border-top: 1px solid #e8edf5;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
}

.product-guide__slide figcaption strong {
    display: block;
    margin-bottom: 4px;
    color: #0f172a;
    font-size: 17px;
}

.product-guide__arrow {
    position: absolute;
    top: 220px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    transform: translateY(-50%);
    border: 1px solid #dbe6fb;
    border-radius: 50%;
    background: #fff;
    color: #2563eb;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.product-guide__arrow--prev {
    left: 0;
}

.product-guide__arrow--next {
    right: 0;
}

.product-guide__arrow svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-guide__arrow:hover {
    background: #2563eb;
    color: #fff;
}

.product-guide__steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
}

.product-guide__steps button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #fff;
    color: #526078;
    font: inherit;
    font-size: 14px;
    cursor: pointer;
}

.product-guide__steps button span {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f1f5f9;
    font-size: 12px;
    font-weight: 700;
}

.product-guide__steps button[aria-current="step"] {
    border-color: #bfd3ff;
    background: #eff5ff;
    color: #1d4ed8;
}

.product-guide__steps button[aria-current="step"] span {
    background: #2563eb;
    color: #fff;
}

.product-guide__link {
    margin: 26px 0 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
}

.product-guide__link a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.product-guide button:focus-visible,
.product-guide a:focus-visible {
    outline: 3px solid #2563eb;
    outline-offset: 4px;
}

.product-guide__status {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

@media (max-width: 600px) {
    .product-guide {
        padding: 48px 16px;
    }

    .product-guide__slider {
        padding: 0 0 58px;
    }

    .product-guide__slide img {
        height: 300px;
        padding: 12px;
    }

    .product-guide__arrow {
        top: auto;
        bottom: 0;
        transform: none;
    }

    .product-guide__arrow--prev {
        left: calc(50% - 52px);
    }

    .product-guide__arrow--next {
        right: calc(50% - 52px);
    }

    .product-guide__steps {
        gap: 8px;
        margin-top: 18px;
    }

    .product-guide__steps button {
        padding: 8px 10px;
        font-size: 12px;
    }
}
.product-guide__download {
    margin-top: 32px;
    text-align: center;
}

.product-guide__download p {
    margin: 0 0 16px;
    color: #334155;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.6;
}

.product-guide__download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 100%;
    padding: 15px 24px;
    border-radius: 10px;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    box-shadow: 0 6px 18px rgb(37 99 235 / 18%);
    transition: background 0.2s ease;
}

.product-guide__download-btn svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-guide__download-btn:hover {
    background: #1d4ed8;
    color: #fff;
    text-decoration: none;
}

.product-guide__download-btn:focus-visible {
    outline: 3px solid #2563eb;
    outline-offset: 4px;
}
