:root {
    --ml-bg: #f7f9ff;
    --ml-soft: #eef3ff;
    --ml-surface: #ffffff;
    --ml-ink: #101b3d;
    --ml-ink-soft: #58647d;
    --ml-border: #dfe6f5;

    --ml-navy: #101d45;
    --ml-navy-2: #172c63;
    --ml-blue: #2563eb;
    --ml-cyan: #06b6d4;
    --ml-gold: #f4b740;

    --ml-fardasaz: #f08b25;
    --ml-amooz: #00a98f;
    --ml-dan: #3b68e9;
    --ml-madares: #8752dc;

    --ml-radius: 24px;
    --ml-shadow: 0 18px 45px rgba(21, 43, 88, .10);
    --ml-shadow-lg: 0 28px 60px rgba(21, 43, 88, .18);
    --ml-font: "Vazirmatn", Tahoma, sans-serif;
    --ml-transition: .28s cubic-bezier(.2, .7, .2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

.ml-body {
    direction: rtl;
    overflow-x: hidden;
    background: var(--ml-bg);
    color: var(--ml-ink);
    font-family: var(--ml-font);
    line-height: 1.9;
    -webkit-font-smoothing: antialiased;
}

.ml-container {
    width: min(1200px, 100%);
    margin-inline: auto;
    padding-inline: 24px;
}

.ml-container--narrow {
    width: min(850px, 100%);
}

.ml-icon {
    width: 1.3em;
    height: 1.3em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.ml-skip-link {
    position: fixed;
    top: -100px;
    right: 20px;
    z-index: 999;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--ml-navy);
    color: #fff;
    text-decoration: none;
}

.ml-skip-link:focus {
    top: 16px;
}

.ml-h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 900;
    line-height: 1.5;
}

.ml-lead {
    margin: 14px 0 0;
    color: var(--ml-ink-soft);
    font-size: 1.04rem;
}

.ml-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 7px 14px;
    border: 1px solid rgba(37, 99, 235, .18);
    border-radius: 999px;
    background: rgba(37, 99, 235, .08);
    color: var(--ml-blue);
    font-size: .82rem;
    font-weight: 800;
}

.ml-eyebrow--dark {
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
    color: #b8d7ff;
}

.ml-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 14px;
    font: inherit;
    font-size: .93rem;
    font-weight: 800;
    text-decoration: none;
    transition: var(--ml-transition);
}

.ml-btn:hover {
    transform: translateY(-3px);
}

.ml-btn--sm {
    min-height: 42px;
    padding: 9px 17px;
    border-radius: 11px;
    font-size: .85rem;
}

.ml-btn--primary {
    background: var(--ml-navy);
    color: #fff;
    box-shadow: 0 10px 22px rgba(16, 29, 69, .2);
}

.ml-btn--gold {
    background: linear-gradient(135deg, #ffd66f, var(--ml-gold));
    color: #382400;
    box-shadow: 0 14px 28px rgba(244, 183, 64, .28);
}

.ml-btn--light {
    border-color: rgba(16, 29, 69, .12);
    background: #fff;
    color: var(--ml-navy);
}

.ml-btn--outline {
    border-color: rgba(255, 255, 255, .35);
    color: #fff;
}

.ml-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    border-bottom: 1px solid transparent;
    background: rgba(247, 249, 255, .78);
    backdrop-filter: blur(18px);
    transition: var(--ml-transition);
}

.ml-header.is-scrolled {
    border-color: var(--ml-border);
    box-shadow: 0 8px 24px rgba(16, 29, 69, .08);
}

.ml-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
}

.ml-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--ml-ink);
    text-decoration: none;
}

.ml-brand__mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(145deg, #2859d6, #101d45);
    color: #ffd46a;
    box-shadow: 0 10px 20px rgba(29, 69, 165, .22);
}

.ml-brand__mark .ml-icon {
    width: 25px;
    height: 25px;
}

.ml-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.ml-brand__text strong {
    font-size: 1.1rem;
    font-weight: 900;
}

.ml-brand__text small {
    color: var(--ml-ink-soft);
    font-size: .67rem;
}

.ml-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.ml-nav__link {
    color: var(--ml-ink-soft);
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    transition: color var(--ml-transition);
}

.ml-nav__link:hover {
    color: var(--ml-blue);
}

.ml-header__burger {
    display: none;
    border: 0;
    background: transparent;
    color: var(--ml-navy);
    cursor: pointer;
}

.ml-icon--close {
    display: none;
}

.ml-header__burger.is-open .ml-icon--menu {
    display: none;
}

.ml-header__burger.is-open .ml-icon--close {
    display: block;
}
/* ================= HERO ================= */
.ml-hero {
    position: relative;
    overflow: hidden;
    padding: 155px 0 100px;
    background:
        radial-gradient(circle at 85% 12%, rgba(39, 174, 176, .14), transparent 25%),
        radial-gradient(circle at 13% 78%, rgba(31, 108, 220, .11), transparent 28%),
        radial-gradient(circle at 55% 110%, rgba(228, 195, 121, .10), transparent 30%),
        linear-gradient(135deg, #fbfdff 0%, #eff7fb 48%, #f6f9ff 100%);
}

.ml-hero__noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .38;
    background-image:
        linear-gradient(rgba(36, 104, 145, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(36, 104, 145, .045) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at 56% 48%, #000, transparent 75%);
}

.ml-hero__orb {
    position: absolute;
    width: 410px;
    height: 410px;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(85px);
    opacity: .48;
}

.ml-hero__orb--one {
    top: -180px;
    right: -100px;
    background: #67d7d1;
}

.ml-hero__orb--two {
    bottom: -220px;
    left: -130px;
    background: #8dafff;
}

.ml-hero__line {
    position: absolute;
    width: 560px;
    height: 560px;
    pointer-events: none;
    border: 1px solid rgba(18, 134, 147, .09);
    border-radius: 50%;
}

.ml-hero__line--one {
    top: -335px;
    right: 4%;
}

.ml-hero__line--two {
    bottom: -430px;
    left: 4%;
    width: 680px;
    height: 680px;
    border-color: rgba(43, 97, 199, .08);
}

.ml-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, .92fr);
    align-items: center;
    gap: clamp(40px, 6vw, 78px);
}

.ml-hero__content {
    position: relative;
    z-index: 2;
}

.ml-hero__content .ml-eyebrow {
    color: #276d77;
    border-color: rgba(24, 128, 140, .14);
    background: rgba(255, 255, 255, .68);
    box-shadow: 0 8px 20px rgba(26, 91, 111, .06);
}

.ml-hero__content .ml-eyebrow .ml-icon {
    color: #0d9c9a;
}

/* نام برند بالای شعار */
.ml-hero__brand-name {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 20px 0 8px;
    color: #0b9b9c;
}

.ml-hero__brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 14px;
    background: linear-gradient(135deg, #12b6ae, #087e91);
    box-shadow: 0 12px 25px rgba(8, 126, 145, .20);
}

.ml-hero__brand-mark .ml-icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.ml-hero__brand-name strong {
    font-size: clamp(1.75rem, 3.3vw, 2.8rem);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -.06em;
    text-shadow: 0 6px 20px rgba(10, 148, 153, .12);
}

/* شعار اصلی */
.ml-hero__title {
    max-width: 690px;
    margin: 18px 0 0;
    color: #102542;
    font-size: clamp(1.35rem, 3.25vw, 3.15rem);
    font-weight: 950;
    line-height: 1.42;
    letter-spacing: -.055em;
}

.ml-hero__title-first,
.ml-hero__title-brand,
.ml-hero__title-last {
    display: block;
}

.ml-hero__title-brand {
    width: fit-content;
    margin: .04em 0 .08em;
    padding: .02em .12em .10em;
    color: #0a9f9a;
    font-size: 1.2em;
    font-weight: 950;
    line-height: 1.15;
    letter-spacing: -.07em;
    background:
        linear-gradient(
            to top,
            rgba(82, 218, 199, .28) 0,
            rgba(82, 218, 199, .28) 28%,
            transparent 29%
        );
    text-shadow: 0 8px 22px rgba(10, 159, 154, .16);
}

.ml-hero__title-last {
    color: #17385a;
}

.ml-hero__lead {
    max-width: 585px;
    margin: 22px 0 0;
    color: #53677d;
    font-size: 1.03rem;
    line-height: 2.08;
}

.ml-hero__actions,
.ml-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.ml-hero__actions .ml-btn {
    min-height: 51px;
    padding-inline: 21px;
}

.ml-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 28px;
    color: #5b6c7e;
    font-size: .82rem;
    font-weight: 700;
}

.ml-hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.ml-hero__trust .ml-icon {
    width: 16px;
    height: 16px;
    color: #0aab94;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* ================= ECOSYSTEM VISUAL ================= */
.ml-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.ml-core {
    position: relative;
    width: min(440px, 88vw);
    aspect-ratio: 1;
}

.ml-core::before {
    position: absolute;
    inset: 20%;
    content: "";
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 185, 175, .14), transparent 68%);
    filter: blur(12px);
}

.ml-core__ring {
    position: absolute;
    border: 1px dashed rgba(20, 132, 152, .28);
    border-radius: 50%;
    animation: ml-rotate 25s linear infinite;
}

.ml-core__ring--one {
    inset: 16%;
}

.ml-core__ring--two {
    inset: 4%;
    border-style: solid;
    border-color: rgba(26, 114, 189, .13);
    animation-direction: reverse;
    animation-duration: 34s;
}

.ml-core__ring--three {
    inset: 27%;
    border-style: solid;
    border-color: rgba(17, 177, 164, .13);
    animation-duration: 20s;
}

.ml-core__center {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: flex;
    width: 164px;
    height: 164px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: translate(-50%, -50%);
    overflow: hidden;
    border: 7px solid rgba(255, 255, 255, .62);
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 25%, rgba(125, 244, 225, .26), transparent 30%),
        linear-gradient(145deg, #0f9e9b, #0c4064);
    box-shadow:
        0 28px 60px rgba(12, 86, 121, .29),
        inset 0 1px 0 rgba(255, 255, 255, .22);
    color: #fff;
}

.ml-core__center::before {
    position: absolute;
    inset: 10px;
    content: "";
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: inherit;
}

.ml-core__center-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    margin-bottom: 7px;
    color: #113954;
    border-radius: 13px;
    background: linear-gradient(135deg, #c4f5e5, #efd78c);
    box-shadow: 0 10px 18px rgba(0, 0, 0, .14);
}

.ml-core__center-icon .ml-icon {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.ml-core__center strong,
.ml-core__center small {
    position: relative;
    z-index: 1;
}

.ml-core__center strong {
    font-size: 1.14rem;
    font-weight: 900;
}

.ml-core__center small {
    margin-top: 3px;
    color: #c8efee;
    font-size: .64rem;
}

/* کارت محصولات اطراف هسته */
.ml-core__item {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px 9px 9px;
    border: 1px solid rgba(255, 255, 255, .88);
    border-radius: 14px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 15px 30px rgba(30, 71, 103, .11);
    backdrop-filter: blur(10px);
    color: var(--ml-ink);
    font-size: .78rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

.ml-core__item:hover {
    z-index: 4;
    box-shadow: 0 20px 34px rgba(30, 71, 103, .18);
    transform: translateY(-5px);
}

.ml-core__item-icon {
    display: grid;
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    place-items: center;
    border-radius: 10px;
}

.ml-core__item-icon .ml-icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.ml-core__item > span:last-child {
    color: #263a50;
}

.ml-core__item--fardasaz {
    top: 6%;
    right: 0;
}

.ml-core__item--fardasaz .ml-core__item-icon {
    color: #078873;
    background: #eafaf5;
}

.ml-core__item--amooz {
    right: -1%;
    bottom: 8%;
}

.ml-core__item--amooz .ml-core__item-icon {
    color: #1c71d8;
    background: #edf4ff;
}

.ml-core__item--dan {
    bottom: 8%;
    left: -1%;
}

.ml-core__item--dan .ml-core__item-icon {
    color: #d88513;
    background: #fff6e8;
}

.ml-core__item--madares {
    top: 6%;
    left: -2%;
}

.ml-core__item--madares .ml-core__item-icon {
    color: #7446c9;
    background: #f4efff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1050px) {
    .ml-hero {
        padding-top: 135px;
    }

    .ml-hero__inner {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .ml-hero__content {
        max-width: 720px;
    }

    .ml-hero__visual {
        padding-top: 4px;
    }
}

@media (max-width: 600px) {
    .ml-hero {
        padding: 118px 0 66px;
    }

    .ml-hero__noise {
        background-size: 30px 30px;
    }

    .ml-hero__brand-name {
        gap: 9px;
        margin-top: 17px;
    }

    .ml-hero__brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .ml-hero__brand-mark .ml-icon {
        width: 21px;
        height: 21px;
    }

    .ml-hero__title {
    margin-top: 16px;
    font-size: clamp(2.05rem, 9.5vw, 2.7rem);
    line-height: 1.5;
}

.ml-hero__title-brand {
    font-size: 1.16em;
}

    .ml-hero__lead {
        font-size: .95rem;
        line-height: 2;
    }

    .ml-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ml-hero__actions .ml-btn {
        width: 100%;
    }

    .ml-hero__trust {
        display: grid;
        gap: 10px;
        font-size: .77rem;
    }

    .ml-core {
        width: min(390px, 95vw);
    }

    .ml-core__center {
        width: 138px;
        height: 138px;
        border-width: 5px;
    }

    .ml-core__center-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 5px;
        border-radius: 11px;
    }

    .ml-core__center-icon .ml-icon {
        width: 20px;
        height: 20px;
    }

    .ml-core__item {
        gap: 6px;
        padding: 7px 9px 7px 7px;
        border-radius: 11px;
        font-size: .66rem;
    }

    .ml-core__item-icon {
        width: 26px;
        height: 26px;
        flex-basis: 26px;
        border-radius: 8px;
    }

    .ml-core__item-icon .ml-icon {
        width: 14px;
        height: 14px;
    }

    .ml-core__item--fardasaz {
        top: 4%;
        right: 0;
    }

    .ml-core__item--madares {
        top: 4%;
        left: 0;
    }

    .ml-core__item--amooz {
        right: 0;
        bottom: 5%;
    }

    .ml-core__item--dan {
        bottom: 5%;
        left: 0;
    }
}
.ml-section {
    padding: 100px 0;
}

.ml-section--soft {
    background: var(--ml-soft);
}

.ml-section__head {
    max-width: 700px;
    margin: 0 auto 52px;
    text-align: center;
}

.ml-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.ml-product {
    position: relative;
    display: flex;
    min-height: 495px;
    flex-direction: column;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--ml-border);
    border-radius: var(--ml-radius);
    background: var(--ml-surface);
    box-shadow: var(--ml-shadow);
    transition: var(--ml-transition);
}

.ml-product::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    content: "";
}

.ml-product:hover {
    transform: translateY(-9px);
    box-shadow: var(--ml-shadow-lg);
}

.ml-product--fardasaz::before { background: var(--ml-fardasaz); }
.ml-product--amooz::before { background: var(--ml-amooz); }
.ml-product--dan::before { background: var(--ml-dan); }
.ml-product--madares::before { background: var(--ml-madares); }

.ml-product__icon {
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    border-radius: 18px;
}

.ml-product__icon .ml-icon {
    width: 28px;
    height: 28px;
}

.ml-product--fardasaz .ml-product__icon { background: rgba(240, 139, 37, .12); color: var(--ml-fardasaz); }
.ml-product--amooz .ml-product__icon { background: rgba(0, 169, 143, .12); color: var(--ml-amooz); }
.ml-product--dan .ml-product__icon { background: rgba(59, 104, 233, .12); color: var(--ml-dan); }
.ml-product--madares .ml-product__icon { background: rgba(135, 82, 220, .12); color: var(--ml-madares); }

.ml-product__number {
    position: absolute;
    top: 26px;
    left: 25px;
    color: #c8d1e5;
    font-size: 1.1rem;
    font-weight: 900;
}

.ml-product h3 {
    margin: 22px 0 0;
    font-size: 1.36rem;
    font-weight: 900;
}

.ml-product__summary {
    min-height: 86px;
    margin: 13px 0 0;
    padding: 12px 13px;
    border-radius: 14px;
    font-size: .86rem;
    line-height: 1.9;
}

.ml-product--fardasaz .ml-product__summary {
    background: rgba(240, 139, 37, .10);
    color: #a95405;
}

.ml-product--amooz .ml-product__summary {
    background: rgba(0, 169, 143, .10);
    color: #007d6b;
}

.ml-product--dan .ml-product__summary {
    background: rgba(59, 104, 233, .10);
    color: #264fae;
}

.ml-product--madares .ml-product__summary {
    background: rgba(135, 82, 220, .10);
    color: #6330ad;
}

.ml-product ul {
    display: grid;
    gap: 9px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
    color: var(--ml-ink-soft);
    font-size: .84rem;
}

.ml-product li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.ml-product li .ml-icon {
    color: var(--ml-amooz);
}

.ml-product__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 46px;
    margin-top: auto;
    border-radius: 13px;
    color: #fff;
    font-size: .86rem;
    font-weight: 900;
    text-decoration: none;
    transition: var(--ml-transition);
}

.ml-product__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 22px rgba(16, 29, 69, .18);
}

.ml-product__button .ml-icon {
    transition: transform var(--ml-transition);
}

.ml-product__button:hover .ml-icon {
    transform: translateX(-4px);
}

.ml-product--fardasaz .ml-product__button { background: linear-gradient(135deg, #ffad48, var(--ml-fardasaz)); }
.ml-product--amooz .ml-product__button { background: linear-gradient(135deg, #08c6aa, var(--ml-amooz)); }
.ml-product--dan .ml-product__button { background: linear-gradient(135deg, #5b87ff, var(--ml-dan)); }
.ml-product--madares .ml-product__button { background: linear-gradient(135deg, #a579ee, var(--ml-madares)); }

.ml-about {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 12%, rgba(37, 99, 235, .11), transparent 27%),
        linear-gradient(135deg, #0d1838, #142b62);
    color: #fff;
}

.ml-about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 85px;
}

.ml-about__text .ml-lead {
    color: #c5d1eb;
}

.ml-about__note {
    margin: 25px 0 0;
    padding: 16px 18px;
    border-right: 4px solid var(--ml-gold);
    border-radius: 0 12px 12px 0;
    background: rgba(255, 255, 255, .08);
    color: #f5d77a;
    font-size: .92rem;
    font-weight: 700;
}

.ml-about__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.ml-stat {
    display: flex;
    min-height: 175px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
}

.ml-stat .ml-icon {
    width: 27px;
    height: 27px;
    margin-bottom: 15px;
    color: #86b1ff;
}

.ml-stat strong {
    color: #fff;
    font-size: 2.1rem;
    font-weight: 900;
    line-height: 1.2;
}

.ml-stat span {
    margin-top: 7px;
    color: #bfcae7;
    font-size: .84rem;
}

.ml-audiences {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.ml-audience {
    padding: 30px 22px;
    border: 1px solid var(--ml-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--ml-shadow);
    text-align: center;
    transition: var(--ml-transition);
}

.ml-audience:hover {
    transform: translateY(-7px);
    box-shadow: var(--ml-shadow-lg);
}

.ml-audience > span {
    display: grid;
    width: 58px;
    height: 58px;
    margin: 0 auto 17px;
    place-items: center;
    border-radius: 17px;
    background: linear-gradient(135deg, #edf4ff, #dcecff);
    color: var(--ml-blue);
}

.ml-audience h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 900;
}

.ml-audience p {
    margin: 10px 0 0;
    color: var(--ml-ink-soft);
    font-size: .86rem;
}

.ml-faq {
    display: grid;
    gap: 13px;
}

.ml-faq__item {
    overflow: hidden;
    border: 1px solid var(--ml-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(16, 29, 69, .04);
}

.ml-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 19px 22px;
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

.ml-faq__item summary::-webkit-details-marker {
    display: none;
}

.ml-faq__item summary .ml-icon {
    color: var(--ml-blue);
    transition: transform var(--ml-transition);
}

.ml-faq__item[open] summary .ml-icon {
    transform: rotate(180deg);
}

.ml-faq__item p {
    margin: 0;
    padding: 0 22px 20px;
    color: var(--ml-ink-soft);
    font-size: .91rem;
}

.ml-cta {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(circle at 82% 20%, rgba(37, 99, 235, .45), transparent 28%),
        linear-gradient(135deg, #101d45, #172f6b);
    color: #fff;
    text-align: center;
}

.ml-cta__inner {
    max-width: 720px;
}

.ml-cta h2 {
    margin: 0;
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 900;
}

.ml-cta p {
    margin: 14px 0 0;
    color: #c5d2f0;
}

.ml-cta__actions {
    justify-content: center;
}


/* ================= COMMON FOOTER ================= */
.ml-footer {
    --ml-footer-navy: #0b1220;
    --ml-footer-navy-deep: #070d18;
    --ml-footer-blue: #2563eb;
    --ml-footer-cyan: #20bdb8;
    --ml-footer-gold: #f59e0b;
    --ml-footer-gold-light: #fcd34d;
    --ml-footer-line: rgba(148, 163, 184, .20);
    --ml-footer-muted: #94a3b8;

    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 70px;
    color: #cbd5e1;
    background:
        radial-gradient(900px 400px at 88% -20%, rgba(245, 158, 11, .10), transparent 60%),
        radial-gradient(900px 400px at 8% 120%, rgba(37, 99, 235, .16), transparent 60%),
        linear-gradient(180deg, var(--ml-footer-navy) 0%, var(--ml-footer-navy-deep) 100%);
}

.ml-footer::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    content: "";
    background: linear-gradient(
        90deg,
        transparent,
        var(--ml-footer-gold),
        var(--ml-footer-cyan),
        var(--ml-footer-blue),
        transparent
    );
}

.ml-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.15fr;
    gap: 34px;
    padding-bottom: 46px;
}

.ml-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}

.ml-footer__brand:hover {
    color: #fff;
    text-decoration: none;
}

.ml-footer__brand-mark {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(94, 234, 212, .28);
    border-radius: 15px;
    background: linear-gradient(145deg, rgba(32, 189, 184, .25), rgba(37, 99, 235, .18));
}

.ml-footer__brand-mark .ml-icon {
    width: 28px;
    height: 28px;
    color: #baf8ef;
}

.ml-footer__brand-text strong,
.ml-footer__brand-text small {
    display: block;
}

.ml-footer__brand-text strong {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1.5;
}

.ml-footer__brand-text small {
    margin-top: 2px;
    color: var(--ml-footer-muted);
    font-size: .73rem;
    line-height: 1.8;
}

.ml-footer__description {
    max-width: 360px;
    margin: 19px 0 17px;
    color: var(--ml-footer-muted);
    font-size: .86rem;
    line-height: 2.2;
}

.ml-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ml-footer__badge {
    padding: 6px 12px;
    color: #bdf7f0;
    border: 1px solid rgba(94, 234, 212, .20);
    border-radius: 999px;
    background: rgba(32, 189, 184, .10);
    font-size: .72rem;
    font-weight: 700;
}

.ml-footer__column h3 {
    position: relative;
    margin: 0 0 22px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.8;
}

.ml-footer__column h3::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42px;
    height: 2px;
    content: "";
    border-radius: 2px;
    background: linear-gradient(90deg, var(--ml-footer-gold), var(--ml-footer-cyan));
}

.ml-footer__links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ml-footer__links li {
    margin-bottom: 11px;
}

.ml-footer__links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #cbd5e1;
    font-size: .86rem;
    line-height: 2;
    text-decoration: none;
    transition: .22s ease;
}

.ml-footer__links a i {
    color: var(--ml-footer-gold-light);
    font-size: .68rem;
}

.ml-footer__links a:hover {
    color: #fff;
    text-decoration: none;
    transform: translateX(-4px);
}

.ml-footer__support p {
    margin: 0 0 16px;
    color: var(--ml-footer-muted);
    font-size: .84rem;
    line-height: 2.15;
}

.ml-footer__contact-btn {
    display: inline-flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 16px;
    color: #102033;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--ml-footer-gold-light), var(--ml-footer-gold));
    box-shadow: 0 12px 28px rgba(245, 158, 11, .22);
    font-size: .85rem;
    font-weight: 800;
    text-decoration: none;
    transition: .24s ease;
}

.ml-footer__contact-btn:hover {
    color: #102033;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(245, 158, 11, .32);
    transform: translateY(-2px);
}

.ml-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 22px 0 26px;
    border-top: 1px solid var(--ml-footer-line);
}

.ml-footer__copyright {
    color: var(--ml-footer-muted);
    font-size: .8rem;
    line-height: 2;
}

.ml-footer__seal {
    display: inline-flex;
    padding: 7px;
    overflow: hidden;
    border-radius: 13px;
    background: #fff;
    line-height: 0;
}

.ml-footer__seal img {
    width: auto;
    max-height: 82px;
}

@media (max-width: 991px) {
    .ml-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .ml-footer {
        padding-top: 52px;
    }

    .ml-footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ml-footer__bottom {
        justify-content: center;
        text-align: center;
    }

    .ml-footer__brand-text small {
        font-size: .7rem;
    }

    .ml-footer__seal {
        margin-inline: auto;
    }
}

.ml-footer__links li {
    margin-bottom: 10px;
}

.ml-footer__links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-size: .86rem;
    line-height: 2;
    text-decoration: none;
    transition: color .22s ease, transform .22s ease;
}

.ml-footer__links a:hover {
    color: #fff;
    text-decoration: none;
    transform: translateX(-4px);
}

.ml-footer__link-icon {
    display: inline-flex;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: .78rem;
    line-height: 1;
    transition: transform .22s ease, box-shadow .22s ease;
}

.ml-footer__links a:hover .ml-footer__link-icon {
    box-shadow: 0 8px 18px rgba(15, 23, 42, .25);
    transform: scale(1.1) rotate(-4deg);
}

/* محصولات */
.ml-footer__link-icon--fardasaz {
    color: #fcd34d;
    border-color: rgba(252, 211, 77, .22);
    background: rgba(245, 158, 11, .16);
}

.ml-footer__link-icon--madares {
    color: #67e8f9;
    border-color: rgba(103, 232, 249, .22);
    background: rgba(6, 182, 212, .16);
}

.ml-footer__link-icon--amooz {
    color: #c4b5fd;
    border-color: rgba(196, 181, 253, .22);
    background: rgba(139, 92, 246, .16);
}

.ml-footer__link-icon--dan {
    color: #86efac;
    border-color: rgba(134, 239, 172, .22);
    background: rgba(34, 197, 94, .16);
}

/* دسترسی سریع */
.ml-footer__link-icon--about {
    color: #93c5fd;
    border-color: rgba(147, 197, 253, .22);
    background: rgba(59, 130, 246, .16);
}

.ml-footer__link-icon--contact {
    color: #5eead4;
    border-color: rgba(94, 234, 212, .22);
    background: rgba(20, 184, 166, .16);
}

.ml-footer__link-icon--feedback {
    color: #f9a8d4;
    border-color: rgba(249, 168, 212, .22);
    background: rgba(236, 72, 153, .16);
}

.ml-footer__link-icon--rules {
    color: #fdba74;
    border-color: rgba(253, 186, 116, .22);
    background: rgba(249, 115, 22, .16);
}







.ml-reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
}

.ml-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes ml-rotate {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1050px) {
    .ml-products,
    .ml-audiences {
        grid-template-columns: repeat(2, 1fr);
    }

    .ml-about__inner {
        gap: 45px;
    }

    .ml-footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

@media (max-width: 860px) {
    .ml-header__burger {
        display: block;
    }

    .ml-nav {
        position: fixed;
        top: 85px;
        right: 16px;
        left: 16px;
        display: flex;
        padding: 15px;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        border: 1px solid var(--ml-border);
        border-radius: 17px;
        background: #fff;
        box-shadow: var(--ml-shadow-lg);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: var(--ml-transition);
    }

    .ml-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .ml-nav__link {
        padding: 10px;
    }

    .ml-nav__cta {
        margin-top: 8px;
    }

    .ml-hero {
        padding-top: 135px;
    }

    .ml-hero__inner,
    .ml-about__inner {
        grid-template-columns: 1fr;
    }

    .ml-hero__content {
        text-align: center;
    }

    .ml-hero__lead {
        margin-inline: auto;
    }

    .ml-hero__actions,
    .ml-hero__trust {
        justify-content: center;
    }

    .ml-hero__visual {
        order: -1;
    }

    .ml-core {
        width: min(360px, 90vw);
    }

    .ml-about__text {
        text-align: center;
    }

    .ml-about__note {
        border-right: 0;
        border-bottom: 4px solid var(--ml-gold);
        border-radius: 12px;
    }

    .ml-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }
}

@media (max-width: 560px) {
    .ml-container {
        padding-inline: 18px;
    }

    .ml-section {
        padding: 70px 0;
    }

    .ml-hero {
        padding: 120px 0 70px;
    }

    .ml-hero__title {
        font-size: 2.65rem;
    }

    .ml-products,
    .ml-audiences,
    .ml-footer__grid {
        grid-template-columns: 1fr;
    }

    .ml-product {
        min-height: auto;
    }

    .ml-product__summary {
        min-height: auto;
    }

    .ml-core__center {
        width: 125px;
        height: 125px;
    }

    .ml-core__item {
        padding: 8px 10px;
        font-size: .69rem;
    }

    .ml-core__item .ml-icon {
        width: 1em;
        height: 1em;
    }

    .ml-about__stats {
        gap: 10px;
    }

    .ml-stat {
        min-height: 145px;
        padding: 18px;
    }

    .ml-stat strong {
        font-size: 1.7rem;
    }

    .ml-enamad-placeholder {
        width: 120px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .ml-reveal {
        opacity: 1;
        transform: none;
    }
}






/* ================= FARDASAZ PREMIUM SPOTLIGHT ================= */
.ml-fardasaz-spotlight {
    padding: 88px 0 78px;
}

.ml-fardasaz-spotlight__box {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    gap: 46px;
    align-items: center;
    min-height: 560px;
    padding: 46px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 36px;
    background:
        radial-gradient(circle at 8% 12%, rgba(23, 179, 147, .16), transparent 27%),
        radial-gradient(circle at 92% 92%, rgba(92, 79, 206, .16), transparent 31%),
        linear-gradient(135deg, #071426 0%, #0a1930 55%, #0e2436 100%);
    box-shadow:
        0 36px 110px rgba(0, 0, 0, .34),
        inset 0 1px 0 rgba(255, 255, 255, .06);
}

.ml-fardasaz-spotlight__box::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    opacity: .26;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(to left, #000, transparent 72%);
}

.ml-fardasaz-spotlight__glow {
    position: absolute;
    top: -170px;
    left: -130px;
    width: 420px;
    height: 420px;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(10px);
    background: radial-gradient(circle, rgba(77, 222, 184, .17), rgba(77, 222, 184, 0) 68%);
}

.ml-fardasaz-spotlight__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.ml-fardasaz-spotlight__content .ml-eyebrow {
    color: #eaf4f1;
    border-color: rgba(255, 255, 255, .11);
    background: rgba(255, 255, 255, .045);
}

.ml-fardasaz-spotlight__content .ml-h2 {
    max-width: 700px;
    margin: 18px 0 16px;
    color: #f5f7fb;
    font-size: clamp(2rem, 3.6vw, 3.25rem);
    line-height: 1.55;
    letter-spacing: -.03em;
}

.ml-fardasaz-spotlight__content .ml-lead {
    max-width: 650px;
    color: #b5c1d0;
    line-height: 2.18;
}

.ml-fardasaz-spotlight__quote {
    margin: 25px 0;
    padding: 18px 20px;
    color: #b7c5d3;
    font-size: .84rem;
    line-height: 2.08;
    border: 1px solid rgba(80, 216, 181, .20);
    border-right: 3px solid #38c6a4;
    border-radius: 0 18px 18px 0;
    background: linear-gradient(135deg, rgba(56, 198, 164, .10), rgba(255, 255, 255, .025));
}

.ml-fardasaz-spotlight__quote strong {
    color: #f3f7fa;
}

.ml-fardasaz-spotlight__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ml-fardasaz-spotlight__actions .ml-btn {
    min-height: 52px;
    padding-inline: 22px;
}

.ml-fardasaz-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 13px;
    color: #9eadbd;
    font-size: .63rem;
}

.ml-fardasaz-note .ml-icon {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: #63dbc0;
    stroke-width: 1.7;
}

/* ================= FARDASAZ DASHBOARD CANVAS ================= */
.ml-fardasaz-canvas {
    position: relative;
    z-index: 2;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .035));
    box-shadow:
        0 26px 75px rgba(0, 0, 0, .30),
        inset 0 1px 0 rgba(255, 255, 255, .10);
    backdrop-filter: blur(16px);
    transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
}

.ml-fardasaz-canvas__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 12px 15px;
    color: #dce6ef;
}

.ml-fardasaz-canvas__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    font-weight: 800;
}

.ml-fardasaz-canvas__brand span {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 11px;
    background: linear-gradient(135deg, #0c8c77, #16b996);
    box-shadow: 0 9px 20px rgba(18, 185, 150, .24);
}

.ml-fardasaz-canvas__brand .ml-icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.ml-fardasaz-canvas__status {
    padding: 7px 10px;
    color: #aef0d4;
    font-size: .63rem;
    border: 1px solid rgba(159, 240, 208, .18);
    border-radius: 999px;
    background: rgba(159, 240, 208, .065);
}

.ml-fardasaz-canvas__body {
    padding: 18px;
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(240, 245, 249, .96));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .96);
}

.ml-fardasaz-canvas__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.ml-fardasaz-canvas__heading strong {
    color: #10223e;
    font-size: 1rem;
}

.ml-fardasaz-canvas__heading small {
    color: #728097;
    font-size: .62rem;
}

.ml-fardasaz-canvas__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-bottom: 12px;
}

.ml-fardasaz-mini {
    position: relative;
    padding: 12px 11px;
    overflow: hidden;
    border: 1px solid #e0e8ef;
    border-radius: 16px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 8px 20px rgba(15, 31, 57, .045);
}

.ml-fardasaz-mini::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    content: "";
    border-radius: 0 4px 4px 0;
    background: #26ad91;
}

.ml-fardasaz-mini:nth-child(2)::before {
    background: #4f73dc;
}

.ml-fardasaz-mini:nth-child(3)::before {
    background: #8057da;
}

.ml-fardasaz-mini strong {
    display: block;
    color: #10223e;
    font-size: .75rem;
}

.ml-fardasaz-mini span {
    display: block;
    margin-top: 4px;
    color: #7a8798;
    font-size: .58rem;
    line-height: 1.5;
}

.ml-fardasaz-mini--accent {
    border-color: #cfeee5;
    background: linear-gradient(145deg, #f2fcf8, #ffffff);
}

/* ================= MODULES ================= */
.ml-fardasaz-canvas__modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}

.ml-fardasaz-module {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 92px;
    padding: 12px;
    border: 1px solid #e0e8ef;
    border-radius: 16px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 8px 20px rgba(15, 31, 57, .04);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.ml-fardasaz-module:hover {
    z-index: 1;
    border-color: #cfdbe6;
    box-shadow: 0 14px 25px rgba(15, 31, 57, .09);
    transform: translateY(-3px);
}

.ml-fardasaz-module--wide {
    grid-column: span 2;
}

.ml-fardasaz-module--featured {
    border-color: #cbece2;
    background: linear-gradient(145deg, #effbf7, #ffffff);
}

/*
 * آیکون‌ها بر اساس پالت واقعی داشبورد فرداساز:
 * سبز، آبی، بنفش، فیروزه‌ای، نارنجی و قرمز.
 */
.ml-fardasaz-module > span {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    color: #078873;
    border: 1px solid #c7eee4;
    border-radius: 12px;
    background: #effbf7;
    box-shadow: 0 5px 12px rgba(12, 145, 116, .10);
}

.ml-fardasaz-module:nth-child(2) > span {
    color: #1d69d8;
    border-color: #d6e5ff;
    background: #f1f6ff;
    box-shadow: 0 5px 12px rgba(29, 105, 216, .10);
}

.ml-fardasaz-module:nth-child(3) > span {
    color: #7040db;
    border-color: #e6d9ff;
    background: #f7f2ff;
    box-shadow: 0 5px 12px rgba(112, 64, 219, .10);
}

.ml-fardasaz-module:nth-child(4) > span {
    color: #099ab8;
    border-color: #cceff6;
    background: #effbfe;
    box-shadow: 0 5px 12px rgba(9, 154, 184, .10);
}

.ml-fardasaz-module:nth-child(5) > span {
    color: #ef7b17;
    border-color: #ffe4c9;
    background: #fff7ef;
    box-shadow: 0 5px 12px rgba(239, 123, 23, .10);
}

.ml-fardasaz-module:nth-child(6) > span {
    color: #d64b66;
    border-color: #ffd9e0;
    background: #fff4f6;
    box-shadow: 0 5px 12px rgba(214, 75, 102, .10);
}

.ml-fardasaz-module .ml-icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.ml-fardasaz-module strong {
    display: block;
    color: #18283e;
    font-size: .7rem;
}

.ml-fardasaz-module small {
    display: block;
    margin-top: 3px;
    color: #7b8796;
    font-size: .54rem;
    line-height: 1.45;
}

.ml-fardasaz-canvas__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding: 10px 4px 0;
    color: #718096;
    font-size: .58rem;
}

.ml-fardasaz-canvas__progress {
    display: flex;
    align-items: center;
    gap: 7px;
}

.ml-fardasaz-canvas__progress i {
    display: block;
    width: 82px;
    height: 5px;
    overflow: hidden;
    border-radius: 99px;
    background: #dbe4ea;
}

.ml-fardasaz-canvas__progress i::after {
    display: block;
    width: 74%;
    height: 100%;
    content: "";
    border-radius: inherit;
    background: linear-gradient(90deg, #18b995, #0f83d5);
}

.ml-fardasaz-canvas__tag {
    color: #17896f;
    font-weight: 700;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
    .ml-fardasaz-spotlight__box {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .ml-fardasaz-canvas {
        width: 100%;
        max-width: 680px;
        margin-inline: auto;
        transform: none;
    }
}

@media (max-width: 600px) {
    .ml-fardasaz-spotlight {
        padding: 60px 0 52px;
    }

    .ml-fardasaz-spotlight__box {
        min-height: 0;
        padding: 22px;
        border-radius: 26px;
    }

    .ml-fardasaz-spotlight__content .ml-h2 {
        font-size: 1.75rem;
        line-height: 1.65;
    }

    .ml-fardasaz-spotlight__quote {
        font-size: .77rem;
    }

    .ml-fardasaz-spotlight__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ml-fardasaz-spotlight__actions .ml-btn {
        width: 100%;
    }

    .ml-fardasaz-canvas {
        padding: 10px;
        border-radius: 22px;
    }

    .ml-fardasaz-canvas__body {
        padding: 12px;
    }

    .ml-fardasaz-canvas__stats {
        grid-template-columns: 1fr 1fr;
    }

    .ml-fardasaz-mini:last-child {
        grid-column: 1 / -1;
    }

    .ml-fardasaz-canvas__modules {
        grid-template-columns: 1fr 1fr;
    }

    .ml-fardasaz-module--wide {
        grid-column: 1 / -1;
    }

    .ml-fardasaz-module {
        min-height: 82px;
    }

    .ml-fardasaz-canvas__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}



/* ================= AUDIENCE FEATURED FARDASAZ ================= */

.ml-audience__featured {
    margin-top: 1.25rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            rgba(217, 185, 92, 0.14),
            rgba(43, 196, 157, 0.10)
        );
    border: 1px solid rgba(193, 165, 79, 0.32);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.45),
        0 8px 24px rgba(19, 43, 76, 0.06);
    position: relative;
    overflow: hidden;
}

.ml-audience__featured::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #d7bd67, #54c9a4);
    border-radius: 0 4px 4px 0;
}

.ml-audience__featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.55rem;
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(193, 165, 79, 0.25);
    color: #153b62;
    font-size: 0.82rem;
    font-weight: 800;
}

.ml-audience__featured-badge .ml-icon {
    width: 16px;
    height: 16px;
}

.ml-audience__featured-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.ml-audience__featured-text strong {
    color: #0d2f54;
    font-size: 0.88rem;
    line-height: 1.7;
}

.ml-audience__featured-text span {
    color: #58708a;
    font-size: 0.76rem;
    line-height: 1.9;
}






/* ================= MOFIDYAR SCHOOLS SPOTLIGHT ================= */

.ml-mofidyar-spotlight {
    position: relative;
    overflow: hidden;
    padding-top: 25px;
}

.ml-mofidyar-spotlight__box {
    position: relative;
    display: grid;
    grid-template-columns: .94fr 1.06fr;
    gap: 42px;
    overflow: hidden;
    padding: clamp(28px, 5vw, 62px);
    border: 1px solid rgba(135, 82, 220, .22);
    border-radius: 30px;
    background:
        radial-gradient(circle at 96% 0%, rgba(135, 82, 220, .17), transparent 29%),
        radial-gradient(circle at 8% 100%, rgba(101, 72, 182, .10), transparent 28%),
        linear-gradient(135deg, #faf8ff 0%, #f2efff 100%);
    box-shadow: 0 24px 60px rgba(77, 52, 138, .12);
}

.ml-mofidyar-spotlight__glow {
    position: absolute;
    top: -190px;
    left: -170px;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: rgba(135, 82, 220, .18);
    filter: blur(60px);
    pointer-events: none;
}

.ml-mofidyar-spotlight__content,
.ml-mofidyar-canvas {
    position: relative;
    z-index: 1;
}

.ml-mofidyar-spotlight__content {
    align-self: center;
}

.ml-mofidyar-spotlight__content .ml-eyebrow {
    border-color: rgba(135, 82, 220, .22);
    background: rgba(135, 82, 220, .09);
    color: #7043c0;
}

.ml-mofidyar-spotlight__content .ml-h2 {
    max-width: 590px;
    color: #221345;
    font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.ml-mofidyar-spotlight__content .ml-lead {
    max-width: 610px;
    color: #5e5573;
}

.ml-mofidyar-spotlight__quote {
    margin-top: 24px;
    padding: 17px 19px;
    border-right: 4px solid var(--ml-madares);
    border-radius: 0 14px 14px 0;
    background: rgba(135, 82, 220, .09);
    color: #51476a;
    font-size: .91rem;
    line-height: 2;
}

.ml-mofidyar-spotlight__quote strong {
    color: #48258c;
}

.ml-mofidyar-spotlight__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.ml-btn--mofidyar {
    background: linear-gradient(135deg, #a675ef, #7142c4);
    box-shadow: 0 14px 28px rgba(112, 67, 192, .27);
    color: #fff;
}

.ml-btn--mofidyar:hover {
    box-shadow: 0 18px 32px rgba(112, 67, 192, .36);
}

.ml-mofidyar-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 22px;
    color: #675a7f;
    font-size: .84rem;
    font-weight: 700;
}

.ml-mofidyar-note .ml-icon {
    margin-top: 5px;
    color: var(--ml-madares);
}

/* Dashboard mockup */

.ml-mofidyar-canvas {
    overflow: hidden;
    border: 1px solid #e2dbf5;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 24px 50px rgba(75, 50, 135, .18);
}

.ml-mofidyar-canvas__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-height: 62px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #4f2a9b, #7951c9);
    color: #fff;
}

.ml-mofidyar-canvas__brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: .91rem;
    font-weight: 900;
}

.ml-mofidyar-canvas__brand > span {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 9px;
    background: rgba(255, 255, 255, .16);
    color: #f0dcff;
}

.ml-mofidyar-canvas__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #eadfff;
    font-size: .71rem;
    font-weight: 700;
}

.ml-mofidyar-canvas__status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #83edc6;
    box-shadow: 0 0 0 4px rgba(131, 237, 198, .15);
}

.ml-mofidyar-canvas__body {
    padding: 20px;
    background: #fcfbff;
}

.ml-mofidyar-canvas__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.ml-mofidyar-canvas__heading strong {
    display: block;
    color: #30234b;
    font-size: .93rem;
    font-weight: 900;
}

.ml-mofidyar-canvas__heading small {
    display: block;
    margin-top: 3px;
    color: #847a99;
    font-size: .69rem;
}

.ml-mofidyar-canvas__heading > span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 8px;
    border-radius: 8px;
    background: #f0ebfb;
    color: #7251ae;
    font-size: .65rem;
    font-weight: 700;
}

.ml-mofidyar-canvas__heading > span .ml-icon {
    width: 1.1em;
    height: 1.1em;
}

.ml-mofidyar-canvas__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-top: 17px;
}

.ml-mofidyar-mini {
    display: flex;
    min-height: 82px;
    align-items: flex-start;
    gap: 8px;
    padding: 11px;
    border: 1px solid #eee9f7;
    border-radius: 12px;
    background: #fff;
}

.ml-mofidyar-mini > span {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border-radius: 8px;
    background: #f0ebfb;
    color: #7951c9;
}

.ml-mofidyar-mini > span .ml-icon {
    width: 1.05em;
    height: 1.05em;
}

.ml-mofidyar-mini--primary {
    border-color: rgba(135, 82, 220, .20);
    background: linear-gradient(135deg, #f5f1ff, #fff);
}

.ml-mofidyar-mini strong,
.ml-mofidyar-mini small {
    display: block;
}

.ml-mofidyar-mini strong {
    color: #514365;
    font-size: .67rem;
    font-weight: 900;
    line-height: 1.55;
}

.ml-mofidyar-mini small {
    margin-top: 3px;
    color: #968ca7;
    font-size: .58rem;
    line-height: 1.5;
}

.ml-mofidyar-canvas__grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 12px;
    margin-top: 13px;
}

.ml-mofidyar-panel {
    min-height: 202px;
    padding: 14px;
    border: 1px solid #eee9f7;
    border-radius: 14px;
    background: #fff;
}

.ml-mofidyar-panel__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.ml-mofidyar-panel__title strong {
    color: #514365;
    font-size: .73rem;
    font-weight: 900;
}

.ml-mofidyar-panel__title small {
    color: #9a91ab;
    font-size: .59rem;
}

.ml-mofidyar-chart {
    display: flex;
    height: 112px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 7px;
    margin-top: 17px;
    padding: 0 5px 0 2px;
    border-bottom: 1px solid #e9e4f3;
    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 27px,
            #f1edf8 28px
        );
}

.ml-mofidyar-chart i {
    display: block;
    width: 100%;
    min-width: 8px;
    border-radius: 5px 5px 1px 1px;
    background: linear-gradient(to top, #7042c3, #b292ef);
}

.ml-mofidyar-chart i:nth-child(2n) {
    background: linear-gradient(to top, #8353d5, #c7b0f3);
}

.ml-mofidyar-chart__labels {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    color: #9a91aa;
    font-size: .58rem;
}

.ml-mofidyar-panel--reports {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ml-mofidyar-panel--reports .ml-mofidyar-panel__title {
    margin-bottom: 3px;
}

.ml-mofidyar-report {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 9px;
    background: #faf9fd;
}

.ml-mofidyar-report > span {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border-radius: 8px;
    background: #ede7fa;
    color: #7951c9;
}

.ml-mofidyar-report > span .ml-icon {
    width: 1.05em;
    height: 1.05em;
}

.ml-mofidyar-report strong,
.ml-mofidyar-report small {
    display: block;
}

.ml-mofidyar-report strong {
    color: #5a4e6d;
    font-size: .64rem;
    font-weight: 900;
    line-height: 1.45;
}

.ml-mofidyar-report small {
    color: #968ca7;
    font-size: .55rem;
    line-height: 1.35;
}

.ml-mofidyar-canvas__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 13px;
    padding-top: 13px;
    border-top: 1px solid #eee9f7;
    color: #776c8b;
    font-size: .64rem;
    font-weight: 700;
}

.ml-mofidyar-canvas__footer > div {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ml-mofidyar-canvas__footer > div .ml-icon {
    color: #8154cf;
}

.ml-mofidyar-canvas__footer > span {
    padding: 4px 7px;
    border-radius: 999px;
    background: #f0ebfb;
    color: #7450ad;
    font-size: .56rem;
}

/* Responsive */

@media (max-width: 980px) {
    .ml-mofidyar-spotlight__box {
        grid-template-columns: 1fr;
    }

    .ml-mofidyar-canvas {
        width: min(680px, 100%);
        margin-inline: auto;
    }
}

@media (max-width: 560px) {
    .ml-mofidyar-spotlight__box {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .ml-mofidyar-spotlight__actions {
        flex-direction: column;
    }

    .ml-mofidyar-spotlight__actions .ml-btn {
        width: 100%;
    }

    .ml-mofidyar-canvas__body {
        padding: 14px;
    }

    .ml-mofidyar-canvas__stats,
    .ml-mofidyar-canvas__grid {
        grid-template-columns: 1fr;
    }

    .ml-mofidyar-mini {
        min-height: auto;
    }

    .ml-mofidyar-panel {
        min-height: auto;
    }

    .ml-mofidyar-canvas__footer {
        align-items: flex-start;
        flex-direction: column;
    }
}