: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;
}

.ml-hero {
    position: relative;
    overflow: hidden;
    padding: 165px 0 95px;
    background:
        radial-gradient(circle at 80% 15%, rgba(37, 99, 235, .13), transparent 28%),
        radial-gradient(circle at 18% 72%, rgba(6, 182, 212, .14), transparent 25%),
        linear-gradient(135deg, #f8faff 0%, #edf3ff 100%);
}

.ml-hero__noise {
    position: absolute;
    inset: 0;
    opacity: .45;
    background-image:
        linear-gradient(rgba(37, 99, 235, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, .055) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at center, #000, transparent 78%);
}

.ml-hero__orb {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .4;
}

.ml-hero__orb--one {
    top: -140px;
    right: -100px;
    background: #7ba5ff;
}

.ml-hero__orb--two {
    bottom: -200px;
    left: -130px;
    background: #68e1dc;
}

.ml-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr .95fr;
    align-items: center;
    gap: 60px;
}

.ml-hero__title {
    max-width: 640px;
    margin: 0;
    color: var(--ml-navy);
    font-size: clamp(2.8rem, 5.6vw, 5.2rem);
    font-weight: 950;
    line-height: 1.22;
    letter-spacing: -.045em;
}

.ml-hero__title span {
    display: block;
    background: linear-gradient(90deg, var(--ml-blue), var(--ml-cyan));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.ml-hero__lead {
    max-width: 570px;
    margin: 22px 0 0;
    color: var(--ml-ink-soft);
    font-size: 1.08rem;
}

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

.ml-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
    color: var(--ml-ink-soft);
    font-size: .86rem;
    font-weight: 700;
}

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

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

.ml-hero__visual {
    display: flex;
    justify-content: center;
}

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

.ml-core__ring {
    position: absolute;
    inset: 14%;
    border: 1px dashed rgba(37, 99, 235, .28);
    border-radius: 50%;
    animation: ml-rotate 25s linear infinite;
}

.ml-core__ring--two {
    inset: 3%;
    border-style: solid;
    border-color: rgba(37, 99, 235, .13);
    animation-direction: reverse;
    animation-duration: 34s;
}

.ml-core__center {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: flex;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 7px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    background: linear-gradient(145deg, #2859d6, #101d45);
    box-shadow: 0 28px 55px rgba(19, 53, 137, .38);
    color: #fff;
}

.ml-core__center .ml-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 5px;
    color: #ffd56a;
}

.ml-core__center strong {
    font-size: 1.1rem;
}

.ml-core__center small {
    color: #b8c9f5;
    font-size: .67rem;
}

.ml-core__item {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 13px;
    background: rgba(255, 255, 255, .91);
    box-shadow: var(--ml-shadow);
    color: var(--ml-ink);
    font-size: .83rem;
    font-weight: 800;
    text-decoration: none;
    transition: var(--ml-transition);
}

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

.ml-core__item--fardasaz { top: 7%; right: 3%; color: var(--ml-fardasaz); }
.ml-core__item--amooz { bottom: 8%; right: 1%; color: var(--ml-amooz); }
.ml-core__item--dan { bottom: 8%; left: 1%; color: var(--ml-dan); }
.ml-core__item--madares { top: 7%; left: 0; color: var(--ml-madares); }

.ml-core__item span {
    color: var(--ml-ink);
}

.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;
}

.ml-footer {
    background: #0a1430;
    color: #bdc9e4;
}

.ml-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr .8fr;
    gap: 40px;
    padding: 60px 0 45px;
}

.ml-brand--footer {
    color: #fff;
}

.ml-brand--footer .ml-brand__text small {
    color: #aab8d8;
}

.ml-footer__text {
    margin: 15px 0 0;
    color: #f4c75a;
    font-size: .91rem;
    font-weight: 700;
}

.ml-footer__links,
.ml-footer__trust {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.ml-footer__links strong,
.ml-footer__trust strong {
    margin-bottom: 5px;
    color: #fff;
}

.ml-footer__links a {
    color: #bdc9e4;
    font-size: .88rem;
    text-decoration: none;
    transition: color var(--ml-transition);
}

.ml-footer__links a:hover {
    color: #f4c75a;
}

.ml-enamad-placeholder {
    display: flex;
    width: 108px;
    min-height: 112px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px dashed rgba(244, 199, 90, .65);
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    color: #f4c75a;
    text-align: center;
}

.ml-enamad-placeholder span {
    font-size: 1.05rem;
    font-weight: 900;
}

.ml-enamad-placeholder small {
    color: #bdc9e4;
    font-size: .64rem;
}

.ml-footer__bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .11);
    color: #8696ba;
    font-size: .82rem;
    text-align: center;
}

.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;border:1px solid rgba(255,255,255,.12);border-radius:36px;overflow:hidden;background:
radial-gradient(circle at 12% 18%,rgba(82,188,222,.16),transparent 28%),
radial-gradient(circle at 82% 92%,rgba(232,201,141,.12),transparent 32%),
linear-gradient(135deg,#071426 0%,#0b1930 56%,#101f35 100%);
box-shadow:0 36px 110px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.06)}
.ml-fardasaz-spotlight__glow{position:absolute;width:420px;height:420px;border-radius:50%;filter:blur(10px);background:radial-gradient(circle,rgba(159,240,208,.15),rgba(159,240,208,0) 68%);left:-130px;top:-170px;pointer-events:none}
.ml-fardasaz-spotlight__content{position:relative;z-index:2;max-width:700px}
.ml-fardasaz-spotlight__content .ml-eyebrow{background:rgba(255,255,255,.045);border-color:rgba(255,255,255,.11);color:#eaf4f1}
.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 25px;padding:18px 20px;border:1px solid rgba(232,201,141,.20);border-right:3px solid #e8c98d;background:linear-gradient(135deg,rgba(232,201,141,.09),rgba(255,255,255,.025));border-radius:0 18px 18px 0;color:#aebaca;font-size:.84rem;line-height:2.08}
.ml-fardasaz-spotlight__quote strong{color:#f1f3f6}
.ml-fardasaz-spotlight__actions{display:flex;gap:12px;flex-wrap:wrap}
.ml-fardasaz-spotlight__actions .ml-btn{min-height:52px;padding-inline:22px}

/* Product canvas */
.ml-fardasaz-canvas{position:relative;z-index:2;padding:15px;border:1px solid rgba(255,255,255,.12);border-radius:30px;background:linear-gradient(145deg,rgba(255,255,255,.09),rgba(255,255,255,.035));box-shadow:0 24px 70px rgba(0,0,0,.28);backdrop-filter:blur(16px);transform:perspective(1400px) rotateY(-7deg) rotateX(2deg)}
.ml-fardasaz-canvas__top{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:10px 10px 14px;color:#dce6ef}
.ml-fardasaz-canvas__brand{display:flex;align-items:center;gap:10px;font-weight:800;font-size:.88rem}
.ml-fardasaz-canvas__brand span{width:34px;height:34px;border-radius:11px;display:grid;place-items:center;color:#112022;background:linear-gradient(135deg,#e9d393,#9ff0d0);box-shadow:0 8px 20px rgba(159,240,208,.13)}
.ml-fardasaz-canvas__brand .ml-icon{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:1.8}
.ml-fardasaz-canvas__status{padding:7px 10px;border-radius:999px;border:1px solid rgba(159,240,208,.16);background:rgba(159,240,208,.055);color:#aef0d4;font-size:.63rem}
.ml-fardasaz-canvas__body{padding:18px;border-radius:22px;background:linear-gradient(160deg,#f7f9fc,#eef3f7);box-shadow:inset 0 1px 0 rgba(255,255,255,.85)}
.ml-fardasaz-canvas__heading{display:flex;justify-content:space-between;align-items:flex-end;gap:14px;margin-bottom:16px}
.ml-fardasaz-canvas__heading strong{color:#0f1f39;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{padding:12px 11px;border:1px solid #dce4eb;border-radius:16px;background:#fff;box-shadow:0 8px 20px rgba(15,31,57,.045)}
.ml-fardasaz-mini strong{display:block;color:#0e203b;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{background:linear-gradient(145deg,#fefbf3,#f4fbf7);border-color:#dfebdf}
.ml-fardasaz-canvas__modules{display:grid;grid-template-columns:repeat(3,1fr);gap:9px}
.ml-fardasaz-module{min-height:92px;display:flex;align-items:center;gap:10px;padding:12px;border-radius:16px;border:1px solid #dde5ec;background:#fff;box-shadow:0 8px 20px rgba(15,31,57,.04)}
.ml-fardasaz-module--wide{grid-column:span 2}
.ml-fardasaz-module--featured{background:linear-gradient(145deg,#eefaf5,#fbfcf9);border-color:#cee7dc}
.ml-fardasaz-module>span{width:36px;height:36px;border-radius:11px;display:grid;place-items:center;color:#12313a;background:linear-gradient(135deg,#e5d08f,#9ff0d0);flex:0 0 36px;box-shadow:0 7px 16px rgba(100,152,127,.10)}
.ml-fardasaz-module .ml-icon{width:18px;height:18px;stroke:currentColor;fill:none;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;justify-content:space-between;align-items:center;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;border-radius:99px;background:#dbe4ea;overflow:hidden}
.ml-fardasaz-canvas__progress i::after{content:"";display:block;width:74%;height:100%;border-radius:inherit;background:linear-gradient(90deg,#31a986,#e2c77f)}
.ml-fardasaz-canvas__tag{color:#3b7a65}
.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;stroke:#9ff0d0;fill:none;stroke-width:1.7}

@media (max-width:1100px){
  .ml-fardasaz-spotlight__box{grid-template-columns:1fr;gap:34px}
  .ml-fardasaz-canvas{max-width:680px;width:100%;margin-inline:auto;transform:none}
}
@media (max-width:600px){
  .ml-fardasaz-spotlight{padding:60px 0 52px}
  .ml-fardasaz-spotlight__box{padding:22px;border-radius:26px;min-height:0}
  .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;
}