@font-face {
            font-family: 'IRANSansX';
            src: url('../IRANSansX-Regular.ttf') format('truetype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'IRANSansX';
            src: url('../IRANSansX-Medium.ttf') format('truetype');
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'IRANSansX';
            src: url('../IRANSansX-Light.ttf') format('truetype');
            font-weight: 300;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'RokhFaNum';
            src: url('../RokhFaNum-SemiBold.ttf') format('truetype');
            font-weight: 600;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'RokhFaNum';
            src: url('../RokhFaNum-UltraBold.ttf') format('truetype');
            font-weight: 800;
            font-style: normal;
            font-display: swap;
        }

        :root {
            /* Light palette (blue + white) */
            --bg: 246 249 255;
            /* page background */
            --card: 255 255 255 / 1;
            /* cards on light */
            --stroke: 13 63 116 / .10;
            /* soft blue stroke */
            --acc: 15 56 122;
            /* primary blue (from logo #0F387A) */
            --acc-2: 99 102 241;
            /* secondary indigo */
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: 'IRANSansX', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.7;
            background-color: rgb(246, 249, 255);
        }

        h1,
        h2,
        h3,
        .hero-title,
        .services-title {
            font-family: 'RokhFaNum', 'IRANSansX', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        /* Glass utilities (light) */
        .glass {
            background: rgba(var(--card));
            border: 1px solid rgba(var(--stroke));
            box-shadow: 0 8px 24px rgba(13, 63, 116, .06);
        }

        .glass-strong {
            background: rgba(255, 255, 255, .9);
            border: 1px solid rgba(13, 63, 116, .14)
        }

        .glow {
            box-shadow: 0 0 0 1px rgba(13, 63, 116, .06), 0 14px 34px -10px rgba(15, 56, 122, .20)
        }

        .ring-brand {
            box-shadow: 0 0 0 2px rgba(var(--acc) / .30) inset
        }

        /* Simple marquee */
        .marquee {
            display: flex;
            gap: 2.5rem;
            animation: scroll 30s linear infinite
        }

        @keyframes scroll {
            from {
                transform: translateX(0)
            }

            to {
                transform: translateX(-50%)
            }
        }

        /* Hide scrollbar for nice sliders */
        .no-scrollbar::-webkit-scrollbar {
            display: none
        }

        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none
        }

        /* Hero creative graph area (scoped to art box) */
        .hero-graph::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            /* subtle blue grid for light theme */
            background-image:
                repeating-linear-gradient(0deg, rgba(13, 63, 116, .06) 0 1px, transparent 1px 28px),
                repeating-linear-gradient(90deg, rgba(13, 63, 116, .06) 0 1px, transparent 1px 28px),
                repeating-linear-gradient(0deg, rgba(13, 63, 116, .10) 0 1px, transparent 1px 140px),
                repeating-linear-gradient(90deg, rgba(13, 63, 116, .10) 0 1px, transparent 1px 140px);
            transform: rotate(.5deg) scale(1.02);
            -webkit-mask-image: radial-gradient(60% 60% at 50% 50%, #000 45%, transparent 95%);
            mask-image: radial-gradient(60% 60% at 50% 50%, #000 45%, transparent 95%);
            opacity: .85;
        }

        .hero-graph::after {
            content: "";
            position: absolute;
            inset: -15%;
            pointer-events: none;
            background:
                radial-gradient(600px 220px at 100% 0%, rgba(var(--acc) / .10), transparent 60%),
                radial-gradient(520px 220px at 0% 100%, rgba(var(--acc-2) / .10), transparent 60%);
        }

        .hero-graph__shapes {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .hg-sq {
            position: absolute;
            width: 12px;
            height: 12px;
            border-radius: 4px;
            transform: rotate(15deg);
        }

        .hg-sq--1 {
            top: 18%;
            right: 22%;
            border: 1px solid rgba(var(--acc) / .45);
            background: rgba(36, 228, 163, .06);
            animation: floatY 8s ease-in-out infinite;
        }

        .hg-sq--2 {
            bottom: 22%;
            left: 15%;
            width: 10px;
            height: 10px;
            border: 1px solid rgba(255, 169, 64, .45);
            background: rgba(255, 169, 64, .06);
            animation: floatX 9s ease-in-out infinite;
        }

        .hg-sq--3 {
            top: 55%;
            left: 45%;
            width: 14px;
            height: 14px;
            border: 1px solid rgba(255, 255, 255, .28);
            background: rgba(255, 255, 255, .04);
            animation: floatY 10s ease-in-out infinite reverse;
        }

        @keyframes floatY {

            0%,
            100% {
                transform: translateY(0) rotate(15deg);
            }

            50% {
                transform: translateY(-8px) rotate(15deg);
            }
        }

        @keyframes floatX {

            0%,
            100% {
                transform: translateX(0) rotate(15deg);
            }

            50% {
                transform: translateX(8px) rotate(15deg);
            }
        }

.animate-spin-slow {
            animation: spin 18s linear infinite
        }

        @keyframes spin {
            to {
                transform: rotate(360deg)
            }
        }

/* Hero graph overlay (fades on right side of hero) */
        .hero-graph-overlay {
            position: absolute;
            inset: 0;
            z-index: -5;
            pointer-events: none;
            background-image:
                repeating-linear-gradient(0deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 28px),
                repeating-linear-gradient(90deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 28px),
                repeating-linear-gradient(0deg, rgba(255, 255, 255, .09) 0 1px, transparent 1px 140px),
                repeating-linear-gradient(90deg, rgba(255, 255, 255, .09) 0 1px, transparent 1px 140px);
            transform: rotate(.3deg);
            opacity: .9;
            -webkit-mask-image: radial-gradient(60% 68% at 15% 50%, #000 55%, transparent 75%);
            mask-image: radial-gradient(60% 68% at 15% 50%, #000 55%, transparent 75%);
        }

        .hero-graph-overlay::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(600px 240px at 10% 30%, rgba(var(--acc) / .14), transparent 60%),
                radial-gradient(520px 220px at 20% 75%, rgba(var(--acc-2) / .12), transparent 60%);
            -webkit-mask-image: radial-gradient(60% 68% at 15% 50%, #000 55%, transparent 75%);
            mask-image: radial-gradient(60% 68% at 15% 50%, #000 55%, transparent 75%);
        }

        @media (max-width: 768px) {
            .hero-graph-overlay {
                opacity: .5;
                -webkit-mask-image: radial-gradient(42% 42% at 18% 20%, #000 40%, transparent 70%);
                mask-image: radial-gradient(42% 42% at 18% 20%, #000 40%, transparent 70%);
            }

            .hero-graph-overlay::after {
                opacity: .8;
            }
        }

        /* Swap columns on desktop: image left, text right */
        @media (min-width: 768px) {
            #home .container>.grid> :first-child {
                order: 2;
            }

            #home .container>.grid> :nth-child(2) {
                order: 1;
            }
        }

        /* Turn the hero-graph box into a photo slot */
        #home .hero-graph {
            position: relative;
            border: 1px dashed rgba(255, 255, 255, .22) !important;
            border-radius: 28px !important;
            background: linear-gradient(135deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02)) !important;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .35), inset 0 0 0 1px rgba(255, 255, 255, .06) !important;
            overflow: hidden;
            min-height: clamp(280px, 44vh, 540px);
        }

        #home .hero-graph::before,
        #home .hero-graph::after,
        #home .hero-graph .hero-graph__shapes {
            display: none !important;
        }

        #home .hero-graph .img-slot-label {
            position: absolute;
            inset: auto 0 0 0;
            text-align: center;
            padding: .5rem;
            font-size: 12px;
            color: rgba(255, 255, 255, .6);
            background: linear-gradient(to top, rgba(0, 0, 0, .2), transparent);
        }

        #home .hero-graph img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        #home .hero-graph::after {
            content: "جای تصویر";
            position: absolute;
            inset: auto 0 0 0;
            height: 36px;
            display: grid !important;
            place-items: center;
            font-size: 12px;
            color: rgba(255, 255, 255, .6);
            background: linear-gradient(to top, rgba(0, 0, 0, .2), transparent);
            pointer-events: none;
        }

:root {
            --boom-bg: #0f1113;
            --boom-card: #14171a;
            --boom-elev: #0b0d0e;
            --boom-border: rgba(255, 255, 255, 0.08);
            --boom-text: #f2f5f4;
            --boom-muted: #b6c0bc;
            --boom-accent: #10b981;
            /* سبز */
            --boom-accent-ink: #072b20;
        }

        /* ----- Hero ----- */
        .boom-hero {
            position: relative;
            isolation: isolate;
            margin: 2rem auto;
            max-width: 1200px;
            border-radius: 20px;
            background:
                radial-gradient(1200px 300px at 100% 0%, rgba(16, 185, 129, 0.10), transparent 55%),
                linear-gradient(135deg, #0d1110, #0a0c0c 60%);
            color: var(--boom-text);
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .35), inset 0 0 0 1px var(--boom-border);
        }

        .boom-hero__inner {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 2rem;
            padding: clamp(24px, 4vw, 56px);
        }

        .boom-hero__text {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
        }

        .boom-hero__kicker {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            padding: .35rem .7rem;
            border-radius: 999px;
            background: rgba(16, 185, 129, .12);
            color: var(--boom-accent);
            width: fit-content;
            font-size: .9rem;
        }

        .boom-hero__title {
            margin: 0;
            line-height: 1.25;
            font-size: clamp(1.4rem, 2.6vw, 2.2rem);
        }

        .boom-hero__subtitle {
            margin: 0;
            color: var(--boom-muted);
        }

        .boom-hero__cta {
            display: flex;
            gap: .75rem;
            flex-wrap: wrap;
            margin-top: .5rem;
        }

        .boom-hero__features {
            list-style: none;
            display: flex;
            gap: 1rem;
            margin: .5rem 0 0;
            padding: 0;
            color: var(--boom-muted);
            font-size: .95rem;
        }

        .boom-hero__art {
            position: relative;
            min-height: 260px;
        }

        .boom-blob {
            position: absolute;
            filter: blur(30px);
            opacity: .5;
        }

        .boom-blob--1 {
            width: 220px;
            height: 220px;
            right: 15%;
            top: 15%;
            background: radial-gradient(circle at 30% 30%, #22c55e, transparent 60%);
        }

        .boom-blob--2 {
            width: 260px;
            height: 260px;
            right: -10%;
            bottom: -10%;
            background: radial-gradient(circle at 70% 70%, #34d399, transparent 60%);
        }

        .boom-hero__badge {
            position: absolute;
            right: clamp(10px, 3vw, 30px);
            top: clamp(10px, 3vw, 30px);
            background: linear-gradient(180deg, #0fb77a, #059669);
            color: #fff;
            border-radius: 14px;
            padding: 14px 16px;
            display: grid;
            place-items: center;
            box-shadow: 0 10px 30px rgba(16, 185, 129, .35);
        }

        .boom-hero__badge-top {
            font-size: 1.15rem;
            line-height: 1;
        }

        .boom-hero__badge-num {
            font-weight: 700;
            font-size: .9rem;
            opacity: .9;
        }

        /* Buttons */
        .boom-btn {
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: .5rem;
            padding: .7rem 1rem;
            border-radius: 12px;
            border: 1px solid transparent;
            color: #08110e;
            background: var(--boom-accent);
            font-weight: 600;
            text-decoration: none;
            transition: transform .12s ease, box-shadow .2s ease, background .15s;
        }

        .boom-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 24px rgba(16, 185, 129, .25);
        }

        .boom-btn:active {
            transform: translateY(0);
        }

        .boom-btn--ghost {
            background: transparent;
            color: var(--boom-text);
            border-color: var(--boom-border);
        }

        .boom-btn--ghost:hover {
            border-color: rgba(255, 255, 255, .22);
            background: rgba(255, 255, 255, .04);
        }

        .boom-btn--small {
            padding: .55rem .8rem;
            font-size: .9rem;
        }

        /* ----- Weekly Deals ----- */
        .boom-weekly {
            max-width: 1200px;
            margin: 0 auto 3rem;
            background: #0f1312;
            border-radius: 20px;
            padding: clamp(16px, 3vw, 28px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, .35), inset 0 0 0 1px var(--boom-border);
            color: var(--boom-text);
        }

        .boom-weekly__head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .boom-weekly__titles h2 {
            margin: 0;
            font-size: clamp(1.2rem, 2.2vw, 1.6rem);
        }

        .boom-weekly__titles p {
            margin: .25rem 0 0;
            color: var(--boom-muted);
        }

        .boom-weekly__slider {
            position: relative;
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: .5rem;
            align-items: center;
        }

        .boom-weekly__track {
            display: grid;
            grid-auto-flow: column;
            grid-auto-columns: minmax(240px, 1fr);
            gap: 16px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            padding: 8px 4px;
        }

        .boom-weekly__track::-webkit-scrollbar {
            height: 8px;
        }

        .boom-weekly__track::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, .12);
            border-radius: 999px;
        }

        .boom-weekly__nav {
            cursor: pointer;
            user-select: none;
            width: 40px;
            height: 40px;
            border: 1px solid var(--boom-border);
            background: #111514;
            color: var(--boom-text);
            border-radius: 10px;
            display: grid;
            place-items: center;
            font-size: 24px;
            transition: background .15s, transform .12s;
        }

        .boom-weekly__nav:hover {
            background: rgba(255, 255, 255, .06);
            transform: translateY(-1px);
        }

        /* Card */
        .boom-card {
            background: var(--boom-card);
            border-radius: 16px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .35), inset 0 0 0 1px var(--boom-border);
            scroll-snap-align: center;
        }

        .boom-card__media {
            position: relative;
            aspect-ratio: 4/4;
            background: radial-gradient(60% 60% at 50% 40%, rgba(16, 185, 129, .18), transparent 70%), radial-gradient(30% 30% at 80% 85%, rgba(16, 185, 129, .12), transparent 60%), #0e1211;
        }

        .boom-card__media::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: var(--img);
            background-size: cover;
            background-position: center;
            filter: saturate(.95);
            opacity: .1;
        }

        .boom-card__media img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border: 0;
        }

        .boom-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: linear-gradient(180deg, #10b981, #0ea772);
            color: #fff;
            padding: .35rem .6rem;
            font-weight: 700;
            border-radius: 999px;
            font-size: .9rem;
            box-shadow: 0 6px 16px rgba(16, 185, 129, .35);
        }

        .boom-card__body {
            padding: 12px 14px 14px;
            display: grid;
            gap: .5rem;
        }

        .boom-card__title {
            margin: 0;
            font-size: 1rem;
            line-height: 1.5;
        }

        .boom-price {
            display: flex;
            gap: .5rem;
            align-items: baseline;
        }

        .boom-price .current {
            color: var(--boom-accent);
            font-weight: 700;
        }

        .boom-price .old {
            color: var(--boom-muted);
            opacity: .7;
        }

        .boom-card:hover {
            transform: translateY(-2px);
            transition: transform .12s ease;
        }

        .boom-weekly__dots {
            display: flex;
            gap: 6px;
            justify-content: center;
            margin-top: 12px;
        }

        .boom-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .25);
            transition: transform .15s, background .15s;
        }

        .boom-dot.is-active {
            background: var(--boom-accent);
            transform: scale(1.25);
        }

        @media (max-width: 900px) {
            .boom-hero__inner {
                grid-template-columns: 1fr;
            }

            .boom-hero__art {
                min-height: 200px;
                order: -1;
            }

            .boom-weekly__slider {
                grid-template-columns: 1fr;
            }

            .boom-weekly__nav {
                position: absolute;
                top: calc(50% - 20px);
                z-index: 2;
            }

            .boom-weekly__nav.prev {
                right: 8px;
            }

            .boom-weekly__nav.next {
                left: 8px;
            }
        }

/* Global section headings and text scale */
        section h2 {
            font-size: 20px;
            line-height: 30px;
            font-weight: 500;
        }

        h3 {
            font-size: 18px;
            line-height: 28px;
            font-weight: 500;
        }

        p {
            font-size: 16px;
            line-height: 26px;
            font-weight: 400;
        }

        footer {
            font-size: 13px;
            line-height: 22px;
        }

        /* Hero typography (agency) */
        #agency .agency-title {
            font-weight: 500;
            font-size: 24px;
            line-height: 34px;
        }

        @media (min-width: 768px) {
            #agency .agency-title {
                font-size: 32px;
                line-height: 44px;
            }
        }

        /* Boom-hero + weekly */
        .boom-hero__title {
            font-size: clamp(26px, 3.2vw, 42px);
        }

        .boom-hero__subtitle {
            font-size: clamp(15px, 1.4vw, 20px);
        }

        .boom-btn {
            font-size: clamp(14px, 1.2vw, 18px);
            font-weight: 700;
        }

        .boom-btn--small {
            font-size: clamp(13px, 1.05vw, 15px);
        }

        .boom-weekly__titles h2 {
            font-size: clamp(18px, 2.2vw, 28px);
        }

        .boom-weekly__titles p {
            font-size: clamp(14px, 1.1vw, 18px);
        }

        .boom-card__title {
            font-size: clamp(16px, 1.6vw, 20px);
            line-height: 1.6;
        }

/* Hero grid image slot (set inline: style="--hero-img:url('...')") */
        #home .hero-graph {
            position: relative;
            border-radius: 28px;
            overflow: hidden;
            min-height: clamp(320px, 44vh, 540px);
            background: linear-gradient(135deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
            box-shadow: 0 10px 30px rgba(0, 0, 0, .35), inset 0 0 0 1px rgba(255, 255, 255, .06);
            border: 1px dashed rgba(255, 255, 255, .22);
        }

        #home .hero-graph__shapes {
            display: none !important;
        }

        #home .hero-graph::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: var(--hero-img);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            filter: saturate(.95);
        }

        #home .hero-graph img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        #home .hero-graph::after {
            content: "جای تصویر";
            position: absolute;
            inset: auto 0 0 0;
            height: 36px;
            display: grid;
            place-items: center;
            font-size: 12px;
            color: rgba(255, 255, 255, .6);
            background: linear-gradient(to top, rgba(0, 0, 0, .2), transparent);
            pointer-events: none;
        }

/* Override: provide default placeholder and simplify usage */
        #home .hero-graph::before {
            background-image: var(--hero-img, url('../hero-couch.png')) !important;
            background-size: contain !important;
            background-repeat: no-repeat !important;
            background-position: center !important;
        }

/* Text color overrides for Tailwind whites on light background */
        body {
            color: #0f172a;
        }

        .text-white,
        .text-white\/90 {
            color: rgba(15, 23, 42, .92) !important;
        }

        .text-white\/80 {
            color: rgba(15, 23, 42, .82) !important;
        }

        .text-white\/70 {
            color: rgba(15, 23, 42, .72) !important;
        }

        .text-white\/60 {
            color: rgba(15, 23, 42, .62) !important;
        }

        .text-white\/50 {
            color: rgba(15, 23, 42, .52) !important;
        }

        .text-white\/40 {
            color: rgba(15, 23, 42, .42) !important;
        }

        .placeholder-white\/40::placeholder {
            color: rgba(15, 23, 42, .45) !important;
        }

        /* Map emerald accents to blue for consistency */
        .text-emerald-300 {
            color: rgb(15, 56, 122) !important;
        }

        .hover\:text-emerald-200:hover {
            color: rgb(59, 130, 246) !important;
        }

        .bg-emerald-400\/20 {
            background: rgba(15, 56, 122, .10) !important;
        }

        .bg-emerald-500\/20 {
            background: rgba(15, 56, 122, .12) !important;
        }

        .hover\:bg-emerald-500\/30:hover {
            background: rgba(15, 56, 122, .18) !important;
        }

        .border-emerald-400\/40 {
            border-color: rgba(15, 56, 122, .35) !important;
        }

        .border-emerald-300\/40 {
            border-color: rgba(15, 56, 122, .28) !important;
        }

        .focus\:ring-emerald-400\/50:focus {
            box-shadow: 0 0 0 2px rgba(15, 56, 122, .50) !important;
            outline: none;
        }

        /* Agency hero */
        .agency-grid-lg,
        .agency-grid {
            background-image:
                repeating-linear-gradient(0deg, rgba(13, 63, 116, .08) 0 1px, transparent 1px 28px),
                repeating-linear-gradient(90deg, rgba(13, 63, 116, .08) 0 1px, transparent 1px 28px);
        }

        .agency-grid-lg {
            position: absolute;
            inset: 0;
            opacity: .25;
            transform: rotate(.2deg);
        }

        .agency-grid {
            opacity: .35;
            border-radius: 24px;
        }

        .btn-primary,
        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: .8rem 1.2rem;
            border-radius: 14px;
            font-weight: 800;
            text-decoration: none;
            transition: transform .12s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
        }

        .btn-primary {
            background: rgb(15, 56, 122);
            color: #fff;
            box-shadow: 0 10px 24px rgba(15, 56, 122, .28);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 30px rgba(15, 56, 122, .32);
        }

        .btn-outline {
            border: 1px solid rgba(15, 56, 122, .25);
            color: rgb(15, 56, 122);
            background: #fff;
        }

        .btn-outline:hover {
            border-color: rgba(15, 56, 122, .38);
            box-shadow: 0 10px 20px rgba(15, 56, 122, .10);
            transform: translateY(-2px);
        }

        /* Glassy capsule nav */
        .nav-capsule {
            border: 1px solid rgba(13, 63, 116, .14);
            background: rgba(255, 255, 255, .72);
            -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
            box-shadow: 0 16px 40px rgba(13, 63, 116, .10);
        }

        .btn-chip {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            padding: .45rem .9rem;
            border: 1px solid rgba(13, 63, 116, .18);
            border-radius: 999px;
            background: #fff;
            color: #133e7c;
            font-weight: 800;
            font-size: 13px
        }

        .btn-chip a {
            padding: .2rem .45rem;
            border-radius: 10px;
            text-decoration: none;
            color: #133e7c
        }

        .btn-chip a.is-active {
            background: rgba(30, 64, 175, .12);
            color: #1e40af
        }

        .nav-link {
            position: relative;
            padding: .35rem .1rem;
            font-weight: 700;
            color: #0f172a
        }

        .nav-link::after {
            content: "";
            position: absolute;
            inset: auto 0 -8px 0;
            height: 2px;
            transform: scaleX(0);
            transform-origin: center;
            background: linear-gradient(90deg, rgba(13, 63, 116, .0), rgba(13, 63, 116, .6), rgba(13, 63, 116, .0));
            transition: transform .18s ease
        }

        .nav-link:hover::after {
            transform: scaleX(1)
        }

        .nav-capsule img {
            box-shadow: 0 8px 20px rgba(13, 63, 116, .15);
        }

        .consult-mini {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: .5rem .9rem;
            border-radius: 999px;
            border: 1px solid rgba(13, 63, 116, .18);
            background: #fff;
            color: #133e7c;
            font-weight: 800;
            font-size: 13px
        }

        .consult-mini.primary {
            color: #fff;
            background: linear-gradient(180deg, #1e40af, #1b2d7a);
            border-color: transparent;
            box-shadow: 0 12px 28px rgba(30, 64, 175, .30)
        }

        .story-mini {
            display: inline-grid;
            place-items: center;
            width: 44px;
            height: 44px;
            border-radius: 999px;
            border: 1px solid rgba(13, 63, 116, .18);
            background: #fff;
            position: relative;
            overflow: hidden
        }

        .story-mini img {
            width: 100%;
            height: 100%;
            object-fit: cover
        }

        .story-mini .play {
            position: absolute;
            right: 2px;
            bottom: 2px;
            width: 18px;
            height: 18px;
            border-radius: 999px;
            background: #0f172a;
            color: #fff;
            font-size: 10px;
            display: grid;
            place-items: center
        }

        /* Mouse-follow glow for glass elements */
        .fx-glass {
            position: relative;
            overflow: hidden
        }

        .fx-glass::before {
            content: "";
            position: absolute;
            inset: -1px;
            border-radius: inherit;
            pointer-events: none;
            opacity: var(--fx-o, 0);
            transition: opacity .2s ease;
            background: radial-gradient(280px 280px at var(--px, -100px) var(--py, -100px), rgba(255, 255, 255, .80), rgba(15, 56, 122, .22) 40%, transparent 62%);
        }

        /* Services */
        .services-title::after {
            content: "";
            position: absolute;
            inset: auto 0 -14px 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(13, 63, 116, .15), transparent);
        }

        #services {
            position: relative;
        }

        #services::before {
            content: "";
            position: absolute;
            inset: 10% 0 auto 0;
            height: 50%;
            z-index: -1;
            pointer-events: none;
            opacity: .4;
            background-image: repeating-linear-gradient(0deg, rgba(13, 63, 116, .06) 0 1px, transparent 1px 28px),
                repeating-linear-gradient(90deg, rgba(13, 63, 116, .06) 0 1px, transparent 1px 28px);
            transform: rotate(.2deg);
        }

        .service-card {
            background: #fff;
            border: 1px solid rgba(13, 63, 116, .18);
            border-radius: 18px;
            padding: 22px;
            text-align: center;
            color: #0f172a;
            box-shadow: 0 16px 44px rgba(13, 63, 116, .08);
            transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
        }

        .service-card:hover {
            transform: translateY(-4px);
            border-color: rgba(13, 63, 116, .30);
            box-shadow: 0 24px 54px rgba(13, 63, 116, .12);
        }

        .service-card .icon {
            color: rgb(13, 63, 116);
            width: 48px;
            height: 48px;
            margin: 0 auto 10px;
            display: grid;
            place-items: center;
        }

        .service-card .icon svg {
            width: 36px;
            height: 36px;
        }

        .service-card .title {
            font-weight: 800;
            color: #133e7c;
        }

/* Bottom consult bar (fixed به پایین اسکرین) */
        .consult-bar {
            position: fixed;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            border-radius: 999px;
            border: 1px solid rgba(13, 63, 116, .16);
            background: rgba(255, 255, 255, .9);
            -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
            box-shadow: 0 -8px 24px rgba(15, 23, 42, .18);
            bottom: max(12px, env(safe-area-inset-bottom));
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            width: calc(100% - 32px);
            max-width: 520px;
        }

        .consult-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: .7rem 1rem;
            border-radius: 999px;
            border: 1px solid rgba(13, 63, 116, .18);
            background: #fff;
            color: #133e7c;
            font-weight: 800
        }

        .consult-primary {
            color: #fff;
            background: linear-gradient(180deg, #1e40af, #1b2d7a);
            border-color: transparent;
            box-shadow: 0 12px 28px rgba(30, 64, 175, .30)
        }

        .story-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, .92);
            border: 1px solid rgba(13, 63, 116, .18);
            border-radius: 999px;
            padding: 4px 10px;
            box-shadow: 0 10px 24px rgba(13, 63, 116, .12)
        }

        .story-chip img {
            width: 54px;
            height: 54px;
            border-radius: 999px;
            object-fit: cover;
            box-shadow: 0 6px 16px rgba(13, 63, 116, .18)
        }

        .story-chip .label {
            color: #0f172a;
            font-weight: 700
        }

        .story-chip .play {
            display: grid;
            place-items: center;
            width: 28px;
            height: 28px;
            border-radius: 999px;
            background: #0f172a;
            color: #fff;
            font-size: 12px
        }

        @media (max-width: 640px) {
            .consult-bar {
                padding: 6px 8px;
                gap: 6px;
                border-radius: 16px;
            }

            .consult-chip {
                flex: 1;
                justify-content: center;
                padding: .5rem .7rem;
                font-size: 11px;
            }

            .consult-chip svg {
                width: 14px;
                height: 14px;
            }

            .story-chip {
                padding: 4px 6px;
            }

            .story-chip img {
                width: 40px;
                height: 40px;
            }

            .story-chip .label {
                display: none;
            }

            .story-chip .play {
                width: 22px;
                height: 22px;
                font-size: 10px;
            }
        }

        /* Story modal */
        .story-dialog {
            position: fixed;
            right: clamp(10px, 6vw, 48px);
            bottom: clamp(10px, 6vw, 48px);
            width: min(92vw, 420px);
            height: min(80vh, 740px);
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(13, 63, 116, .18);
            background: #fff
        }

        .story-top {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px
        }

        .story-top .close {
            width: 28px;
            height: 28px;
            border-radius: 999px;
            border: 1px solid rgba(13, 63, 116, .18);
            background: #fff;
            font-size: 18px;
            line-height: 1
        }

        .story-top .progress {
            position: relative;
            flex: 1;
            height: 6px;
            background: rgba(13, 63, 116, .12);
            border-radius: 999px
        }

        .story-top .progress span {
            position: absolute;
            inset: 0 0 0 0;
            width: 0%;
            background: linear-gradient(90deg, #1e40af, #22c55e);
            border-radius: inherit
        }

        .story-top .progress .time {
            position: absolute;
            right: 6px;
            top: -18px;
            font-size: 11px;
            color: #475569
        }

        .story-video {
            position: relative;
            padding: 12px
        }

        .story-video video {
            width: 100%;
            aspect-ratio: 9/16;
            border-radius: 16px;
            background: #000;
            display: block
        }

        .story-video .play-btn {
            position: absolute;
            inset: auto 50% 50% auto;
            transform: translate(50%, 50%);
            width: 58px;
            height: 58px;
            border-radius: 999px;
            border: none;
            background: rgba(255, 255, 255, .88);
            color: #0f172a;
            font-weight: 800;
            box-shadow: 0 10px 24px rgba(0, 0, 0, .2)
        }

        .story-choices {
            display: grid;
            gap: 8px;
            padding: 4px 12px 14px
        }

        .story-choices .choice {
            text-align: center;
            font-weight: 700;
            color: #0f172a;
            border: 1px solid rgba(13, 63, 116, .18);
            background: #fff;
            border-radius: 999px;
            padding: .55rem .8rem
        }

        /* Contact: map + glass form */
        .map-card {
            min-height: 420px;
            box-shadow: 0 30px 80px rgba(239, 68, 68, .15);
        }

        .contact-card {
            background: #fff;
            border: 1px solid rgba(13, 63, 116, .14);
            box-shadow: 0 28px 70px rgba(30, 64, 175, .14), 0 10px 30px rgba(99, 102, 241, .10);
        }

        /* Gradient glass tiles */
        .tile-glass {
            border-radius: 22px;
            background: radial-gradient(800px 400px at 10% 10%, rgba(255, 255, 255, .06), transparent 60%),
                radial-gradient(800px 400px at 90% 90%, rgba(255, 255, 255, .06), transparent 60%),
                linear-gradient(180deg, rgba(17, 24, 39, .65), rgba(17, 24, 39, .85));
            border: 1px solid rgba(255, 255, 255, .12);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06), 0 30px 80px rgba(17, 24, 39, .45);
        }

        /* Partners: tilted, looping rows */
        .partners-row {
            position: relative;
            overflow: hidden;
            height: 108px;
        }

        .partners-fade {
            position: absolute;
            inset: 0;
            pointer-events: none;
            -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
            mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
        }

        .partners-track {
            display: flex;
            gap: 16px;
            align-items: center;
            animation: partner-scroll 28s linear infinite;
        }

        .partners-track--reverse {
            animation-direction: reverse;
            animation-duration: 32s;
        }

        @keyframes partner-scroll {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        .tile {
            width: 88px;
            height: 88px;
            border-radius: 18px;
            background: #fff;
            border: 1px solid rgba(13, 63, 116, .18);
            display: grid;
            place-items: center;
            box-shadow: 0 18px 48px rgba(13, 63, 116, .10);
        }

        .tile img {
            width: 64px;
            height: 64px;
            object-fit: contain;
            filter: saturate(1.1) contrast(1.05);
        }

        /* Light theming for boom sections */
        :root {
            --boom-bg: #f6f9ff;
            --boom-card: #ffffff;
            --boom-elev: #eef4ff;
            --boom-border: rgba(13, 63, 116, .12);
            --boom-text: #0f172a;
            --boom-muted: #475569;
            --boom-accent: #1e40af;
            --boom-accent-ink: #132a7a;
        }

        .boom-hero {
            background: linear-gradient(135deg, #ffffff, #f6f9ff 60%);
            color: var(--boom-text);
            box-shadow: 0 14px 42px rgba(13, 63, 116, .10), inset 0 0 0 1px var(--boom-border);
        }

        .boom-blob--1 {
            background: radial-gradient(circle at 30% 30%, rgba(30, 64, 175, .20), transparent 60%);
        }

        .boom-blob--2 {
            background: radial-gradient(circle at 70% 70%, rgba(99, 102, 241, .18), transparent 60%);
        }

        .boom-hero__badge {
            background: linear-gradient(180deg, #1e40af, #1d4ed8);
            box-shadow: 0 10px 30px rgba(30, 64, 175, .25);
        }

        .boom-btn {
            background: var(--boom-accent);
            color: #fff;
        }

        .boom-btn:hover {
            box-shadow: 0 12px 26px rgba(30, 64, 175, .25);
        }

        .boom-btn--ghost {
            background: rgba(255, 255, 255, .75);
            color: var(--boom-text);
            border: 1px solid var(--boom-border);
        }

        .boom-btn--ghost:hover {
            background: rgba(255, 255, 255, .95);
            border-color: rgba(13, 63, 116, .22);
        }

        .boom-weekly {
            background: rgba(255, 255, 255, .8);
            color: var(--boom-text);
            border-radius: 20px;
            padding: clamp(16px, 3vw, 28px);
            border: 1px solid var(--boom-border);
            box-shadow: 0 18px 48px rgba(13, 63, 116, .10);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
        }

        .boom-weekly__nav {
            background: rgba(255, 255, 255, .88);
            border-color: var(--boom-border);
            color: var(--boom-text);
        }

        .boom-weekly__nav:hover {
            background: rgba(255, 255, 255, 1);
        }

        .boom-card {
            background: #fff;
            box-shadow: 0 14px 34px rgba(13, 63, 116, .10), inset 0 0 0 1px var(--boom-border);
        }

        .boom-card__media {
            background: radial-gradient(60% 60% at 50% 40%, rgba(30, 64, 175, .12), transparent 70%), radial-gradient(30% 30% at 80% 85%, rgba(99, 102, 241, .10), transparent 60%), #ffffff;
        }

        .boom-badge {
            background: linear-gradient(180deg, #1e40af, #1d4ed8);
            box-shadow: 0 6px 16px rgba(30, 64, 175, .25);
        }

        .boom-dot {
            background: rgba(13, 63, 116, .20);
        }

        .boom-dot.is-active {
            background: var(--boom-accent);
        }

        .boom-weekly__track::-webkit-scrollbar-thumb {
            background: rgba(13, 63, 116, .20);
        }

        /* Green-tinted mouse light for weekly */
        .fx-green::before {
            background: radial-gradient(320px 320px at var(--px, -100px) var(--py, -100px), rgba(255, 255, 255, .85), rgba(16, 185, 129, .30) 40%, transparent 62%) !important;
        }

        /* Green accent inside weekly */
        #weekly-deals .boom-btn {
            background: #10b981;
        }

        #weekly-deals .boom-btn:hover {
            box-shadow: 0 12px 26px rgba(16, 185, 129, .25);
        }

        #weekly-deals .boom-card {
            box-shadow: 0 14px 34px rgba(16, 185, 129, .12), inset 0 0 0 1px rgba(16, 185, 129, .18);
        }

        /* Portfolio (cases) */
        #portfolio {
            position: relative;
        }

        #portfolio::before {
            content: "";
            position: absolute;
            inset: -10% -0% auto -0%;
            height: 80%;
            z-index: -1;
            pointer-events: none;
            opacity: .5;
            background:
                radial-gradient(600px 240px at 10% 20%, rgba(30, 64, 175, .10), transparent 60%),
                radial-gradient(600px 240px at 80% 50%, rgba(99, 102, 241, .10), transparent 60%);
        }

        .chip {
            cursor: pointer;
            border: 1px solid rgba(13, 63, 116, .18);
            color: #0f172a;
            background: #fff;
            padding: .5rem .9rem;
            border-radius: 999px;
            font-weight: 700;
            transition: all .15s ease
        }

        .chip:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(13, 63, 116, .10)
        }

        .chip.is-active {
            color: #fff;
            background: rgb(30, 64, 175);
            border-color: transparent;
            box-shadow: 0 10px 24px rgba(30, 64, 175, .28)
        }

        .cases {
            position: relative;
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
            background: rgba(255, 255, 255, .72);
            border: 1px solid var(--boom-border);
            box-shadow: 0 18px 48px rgba(13, 63, 116, .10)
        }

        .cases-track {
            display: grid;
            grid-auto-flow: column;
            grid-auto-columns: minmax(220px, 260px);
            gap: 16px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding: 8px 6px
        }

        .cases-track::-webkit-scrollbar {
            height: 8px
        }

        .cases-track::-webkit-scrollbar-thumb {
            background: rgba(13, 63, 116, .20);
            border-radius: 999px
        }

        .cases-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
            width: 42px;
            height: 42px;
            border-radius: 12px;
            border: 1px solid var(--boom-border);
            background: #fff;
            color: #0f172a;
            display: grid;
            place-items: center;
            font-size: 26px;
            box-shadow: 0 10px 24px rgba(13, 63, 116, .12)
        }

        .cases-nav.prev {
            right: 10px
        }

        .cases-nav.next {
            left: 10px
        }

        .case {
            position: relative;
            scroll-snap-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            padding: 6px
        }

        .case__badge {
            position: absolute;
            top: -12px;
            background: #fff;
            color: #0f172a;
            border: 1px solid rgba(13, 63, 116, .18);
            padding: .2rem .5rem;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .6px
        }

        .case__star {
            position: absolute;
            top: -22px;
            font-size: 16px;
            color: rgb(250, 204, 21)
        }

        .case__phone {
            width: 100%;
            aspect-ratio: 9/16;
            background: linear-gradient(180deg, rgba(var(--accent), .18), rgba(var(--accent), .26));
            border-radius: 32px;
            position: relative;
            box-shadow: 0 14px 34px rgba(var(--accent), .22), inset 0 0 0 1px rgba(13, 63, 116, .10);
            overflow: hidden
        }

        .case__phone::before {
            content: "";
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 46%;
            height: 8px;
            background: #fff;
            border-radius: 999px;
            opacity: .9
        }

        .case__btn {
            position: absolute;
            bottom: 10px;
            width: 10px;
            height: 10px;
            background: #fff;
            border-radius: 999px;
            opacity: .9
        }

        .case__dot-left {
            left: 24px
        }

        .case__dot-right {
            right: 24px
        }

        .case__tri {
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 12px solid #fff;
            border-radius: 0;
            background: transparent
        }

        .case__img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: saturate(.98);
        }

        .case__meta {
            text-align: center
        }

        .case__meta h3 {
            margin: 0;
            font-weight: 800;
            color: #133e7c;
            font-size: 15px
        }

        .case__meta span {
            color: #475569;
            font-size: 12px
        }

        @media (min-width: 960px) {
            .cases-track {
                grid-auto-columns: minmax(240px, 280px)
            }
        }

/* National-network and motion fixes */
.bg-\[rgb\(var\(--bg\)\)\]{background-color:rgb(var(--bg))}
.bg-\[radial-gradient\(250px_250px_at_60\%_38\%,rgba\(239,68,68,.20\),transparent_60\%\)\]{background:radial-gradient(250px 250px at 60% 38%,rgba(239,68,68,.20),transparent 60%)}
.bg-\[radial-gradient\(ellipse_at_top_right,rgba\(36,228,163,.2\),transparent_40\%\),radial-gradient\(ellipse_at_bottom_left,rgba\(255,169,64,.12\),transparent_45\%\)\]{background:radial-gradient(ellipse at top right,rgba(36,228,163,.2),transparent 40%),radial-gradient(ellipse at bottom left,rgba(255,169,64,.12),transparent 45%)}
.supports-backdrop\:bg-white\/5{background:rgba(255,255,255,.05)}
.reveal{opacity:0;transform:translateY(18px);transition:opacity .6s ease,transform .6s ease}.reveal.is-visible{opacity:1;transform:none}
@media (prefers-reduced-motion: reduce){*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important;transition-duration:.01ms!important}}
