        /* ==========================================================
           توکن‌های طراحی: پالت رنگی سازمانی فلات (سبز تیره + طلایی + کرم)
           این پالت باید در همه حالات (hover / focus / active) حفظ شود
           ========================================================== */
        :root {
            --teal-950: #0a1615;
            --teal-900: #0f1f1e;
            --teal-800: #132524;
            --teal-700: #1c3532;
            --teal-600: #274743;
            --teal-500: #345e58;

            --gold-deep: #c9a04f;
            --gold: #e9c576;
            --gold-pale: #f3dba0;

            --cream: #fbf3de;
            --text: #fbf3de;
            --muted: #b3c0ba;
            --line: rgba(233, 197, 118, .2);

            --danger-bg: rgba(233, 118, 118, .12);
            --danger-line: rgba(233, 118, 118, .4);
            --success-bg: rgba(102, 201, 166, .16);
            --success-line: rgba(102, 201, 166, .35);

            --radius-lg: 18px;
            --ease: cubic-bezier(.16, 1, .3, 1);
        }

        * {
            box-sizing: border-box
        }

        html {
            scroll-behavior: smooth
        }

        body {
            margin: 0;
            color: var(--text);
            background:
                radial-gradient(circle at 84% 4%, rgba(233, 197, 118, .14), transparent 24%),
                radial-gradient(circle at 8% 38%, rgba(39, 71, 67, .32), transparent 32%),
                linear-gradient(150deg, var(--teal-950), var(--teal-900) 55%, var(--teal-950));
            font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
            line-height: 1.9;
            overflow-x: hidden;
        }

        body:before {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: -2;
            opacity: .2;
            background-image:
                linear-gradient(rgba(251, 243, 222, .03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(251, 243, 222, .03) 1px, transparent 1px);
            background-size: 48px 48px;
            mask-image: linear-gradient(to bottom, #000, transparent 72%);
        }

        a {
            text-decoration: none;
            color: inherit;
            -webkit-tap-highlight-color: transparent
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit
        }

        button {
            -webkit-tap-highlight-color: transparent
        }

        img {
            max-width: 100%;
            display: block
        }

        /* استایل پیش‌فرض فوکوس کیبورد؛ هیچ رنگ متفرقه‌ای (آبی مرورگر) اجازه نمایش ندارد */
        :focus {
            outline: none
        }

        :focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 3px;
            border-radius: 4px;
        }

        ::selection {
            background: rgba(233, 197, 118, .35);
            color: var(--cream);
        }

        .container {
            width: min(1180px, calc(100% - 40px));
            margin: auto
        }

        .section {
            padding: 100px 0;
            position: relative
        }

        .gold {
            color: var(--gold-pale)
        }

        /* ==========================================================
           سیستم آیکون SVG: جایگزین سبک و بهینه به‌جای فونت‌آیکون سنگین
           همه آیکون‌ها از یک اسپرایت (<symbol>) با <use> فراخوانی می‌شوند
           رنگ آیکون از currentColor گرفته می‌شود و با متن اطراف هماهنگ است
           ========================================================== */
        .icon {
            width: 1em;
            height: 1em;
            flex: none;
            display: inline-block;
            vertical-align: -0.15em;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .icon-fill {
            fill: currentColor;
            stroke: none;
        }

        .eyebrow {
            display: flex;
            align-items: center;
            gap: 9px;
            color: var(--gold-pale);
            font-weight: bold;
            font-size: 12px;
            letter-spacing: .3px;
            margin-bottom: 12px;
        }

        .eyebrow:before {
            content: "";
            width: 30px;
            height: 1px;
            background: var(--gold);
            box-shadow: 0 0 12px var(--gold);
        }

        .section-title {
            font-size: clamp(24px, 2.8vw, 38px);
            line-height: 1.42;
            letter-spacing: -.5px;
            margin: 0 0 14px;
            font-weight: 900;
        }

        .section-desc {
            max-width: 710px;
            color: var(--muted);
            font-size: 16px;
            margin: 0
        }

        .button {
            position: relative;
            overflow: hidden;
            border: 0;
            border-radius: 9px;
            padding: 12px 21px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            font-weight: 900;
            font-size: 14px;
            color: var(--teal-950);
            background: linear-gradient(135deg, var(--gold-pale), var(--gold));
            box-shadow: 0 12px 30px rgba(233, 197, 118, .22);
            transition: transform .25s var(--ease), box-shadow .25s var(--ease);
        }

        .button:before {
            content: "";
            position: absolute;
            top: 0;
            left: -60%;
            width: 35%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .4), transparent);
            transform: skewX(20deg);
            transition: left .55s ease;
        }

        .button:hover:before {
            left: 130%
        }

        .button:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 36px rgba(233, 197, 118, .34)
        }

        .button:active {
            transform: translateY(-1px)
        }

        .button:focus-visible {
            outline-color: var(--teal-950);
            outline-offset: -4px;
        }

        .button-outline {
            color: var(--text);
            background: rgba(251, 243, 222, .03);
            border: 1px solid var(--line);
            box-shadow: none;
        }

        .button-outline:hover {
            background: rgba(233, 197, 118, .1);
            border-color: var(--gold);
            transform: translateY(-3px)
        }

        .brand-mini {
            display: inline-flex;
            align-items: center;
            margin-bottom: 26px
        }

        .brand-mini img {
            height: 34px;
            width: auto
        }

        /* ==========================================================
           بخش هیرو (Hero)
           ========================================================== */
        .hero {
            min-height: 720px;
            position: relative;
            overflow: hidden;
            padding-top: 56px
        }

        .hero .container {
            position: relative;
            z-index: 1
        }

        .section-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(90px);
            pointer-events: none;
            z-index: 0
        }

        .section-glow-a {
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(233, 197, 118, .22), transparent 70%);
            top: -140px;
            right: -90px;
            animation: driftA 24s ease-in-out infinite alternate
        }

        .section-glow-b {
            width: 380px;
            height: 380px;
            background: radial-gradient(circle, rgba(39, 71, 67, .5), transparent 70%);
            bottom: -160px;
            left: -110px;
            animation: driftB 28s ease-in-out infinite alternate
        }

        @keyframes driftA {
            0% { transform: translate(0, 0) scale(1) }
            100% { transform: translate(-34px, 26px) scale(1.1) }
        }

        @keyframes driftB {
            0% { transform: translate(0, 0) scale(1) }
            100% { transform: translate(28px, -22px) scale(1.06) }
        }

        .hero:after {
            content: "";
            position: absolute;
            top: -60%;
            left: -25%;
            width: 36%;
            height: 220%;
            background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .05), transparent);
            transform: rotate(12deg) translateX(-120%);
            animation: sweep 11s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes sweep {
            0%, 58% { transform: rotate(12deg) translateX(-120%) }
            80% { transform: rotate(12deg) translateX(230%) }
            100% { transform: rotate(12deg) translateX(230%) }
        }

        .spark {
            position: absolute;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--gold-pale);
            box-shadow: 0 0 9px 2px rgba(233, 197, 118, .75);
            opacity: 0;
            z-index: 0;
            pointer-events: none;
            animation: twinkle 3.6s ease-in-out infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0; transform: scale(.4) }
            50% { opacity: 1; transform: scale(1) }
        }

        .hero-grid {
            min-height: 640px;
            display: grid;
            grid-template-columns: 1.04fr .96fr;
            grid-template-areas: "title visual" "details visual";
            column-gap: 42px;
            row-gap: 18px;
            align-items: center;
        }

        .hero-title-block { grid-area: title; align-self: end }
        .hero-details-block { grid-area: details; align-self: start }

        .hero-title {
            font-size: clamp(30px, 3.6vw, 46px);
            font-weight: 900;
            line-height: 1.25;
            letter-spacing: -1px;
            margin: 0;
        }

        .hero-text {
            max-width: 600px;
            color: #cdd8d3;
            font-size: 17px;
            margin: 18px 0 23px
        }

        .hero-points {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            color: #e7ede9;
            font-size: 13px;
            margin-bottom: 8px
        }

        .hero-points span {
            display: flex;
            align-items: center;
            gap: 6px
        }

        .hero-points .icon {
            font-size: 16px;
            color: var(--gold-pale)
        }

        .hero-visual {
            grid-area: visual;
            position: relative;
            transition: transform .35s ease-out;
            will-change: transform
        }

        .visual-glow {
            position: absolute;
            z-index: 0;
            width: 230px;
            height: 230px;
            top: 10px;
            left: 18%;
            border-radius: 50%;
            background: var(--gold);
            filter: blur(100px);
            opacity: .2;
        }

        .hero-media {
            position: relative;
            z-index: 1;
            display: block;
            width: 100%;
            height: auto;
            border-radius: 20px;
            border: 1px solid rgba(251, 243, 222, .16);
            box-shadow: 0 30px 70px rgba(0, 0, 0, .4);
            background: var(--teal-900);
        }

        /* فرم بالای صفحه */
        .hero-form-wrap { margin-top: 40px; position: relative; z-index: 4 }

        .lead-form {
            padding: 24px;
            border: 1px solid rgba(233, 197, 118, .35);
            border-radius: 17px;
            background: linear-gradient(145deg, rgba(28, 53, 50, .97), rgba(10, 22, 21, .97));
            box-shadow: 0 25px 60px rgba(0, 0, 0, .38), inset 0 1px rgba(251, 243, 222, .06);
        }

        .form-head {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            align-items: start;
            margin-bottom: 16px
        }

        .form-head h2 { font-size: clamp(18px, 2.4vw, 21px); margin: 0 }
        .form-head p { font-size: 12px; color: var(--muted); margin: 2px 0 0 }

        .fields {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr auto;
            gap: 10px;
            align-items: center
        }

        input, select, textarea {
            width: 100%;
            padding: 12px;
            color: var(--text);
            background: rgba(0, 8, 7, .4);
            border: 1px solid rgba(251, 243, 222, .12);
            border-radius: 8px;
            font-size: 13px;
            transition: border-color .2s, box-shadow .2s;
        }

        select option { background: var(--teal-800) }
        input::placeholder, textarea::placeholder { color: #8a9a94 }

        input:focus, select:focus, textarea:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(233, 197, 118, .12)
        }

        .form-trust { font-size: 10px; color: #9bafa8; margin: 9px 0 0 }

        /* آمار سریع */
        .stats {
            margin-top: 90px;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
            background: rgba(251, 243, 222, .015)
        }

        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr) }

        .stat {
            text-align: center;
            padding: 26px 15px;
            border-left: 1px solid var(--line);
            transition: transform .3s var(--ease)
        }

        .stat:last-child { border: 0 }
        .stat:hover { transform: translateY(-4px) }

        .stat .icon {
            font-size: 26px;
            color: var(--gold-pale);
            margin-bottom: 8px;
            transition: color .3s
        }

        .stat:hover .icon { color: var(--gold) }
        .stat b { display: block; color: var(--cream); font-size: 14px; line-height: 1.5 }
        .stat span { font-size: 11.5px; color: var(--muted) }

        /* Reveal روی اسکرول */
        .reveal {
            opacity: 0;
            transform: translateY(35px);
            transition: opacity .8s ease, transform .8s ease
        }

        .reveal.active { opacity: 1; transform: translateY(0) }
        .delay-1 { transition-delay: .12s }
        .delay-2 { transition-delay: .24s }
        .delay-3 { transition-delay: .36s }

        /* مسئله / کنجکاوی */
        .diagnosis {
            display: grid;
            grid-template-columns: .94fr 1.06fr;
            align-items: center;
            gap: 60px
        }

        .diagnosis-box {
            position: relative;
            min-height: 380px;
            padding: 29px;
            overflow: hidden;
            border: 1px solid rgba(233, 197, 118, .28);
            border-radius: 17px;
            background: linear-gradient(145deg, var(--teal-700), var(--teal-950));
        }

        .diagnosis-box:before {
            content: "؟";
            position: absolute;
            left: -17px;
            bottom: -130px;
            color: rgba(233, 197, 118, .08);
            font-size: 420px;
            font-weight: 900;
            line-height: 1;
        }

        .question-item {
            position: relative;
            margin-top: 13px;
            padding: 12px 14px;
            border-radius: 9px;
            color: #dee7e2;
            font-size: 13px;
            background: rgba(251, 243, 222, .05);
            border-right: 2px solid rgba(233, 197, 118, .6);
        }

        .question-item span { color: var(--gold-pale); font-weight: bold }

        .curiosity {
            position: absolute;
            left: 25px;
            top: 24px;
            width: 76px;
            height: 76px;
            display: grid;
            place-items: center;
            color: var(--gold-pale);
            border: 1px solid rgba(233, 197, 118, .4);
            border-radius: 50%;
            font-size: 25px;
            font-weight: 900;
            animation: floatTwo 4s ease-in-out infinite;
        }

        @keyframes floatTwo { 50% { transform: translateY(-13px) } }

        .answer-card {
            border-radius: 14px;
            padding: 25px;
            border: 1px solid rgba(251, 243, 222, .1);
            background: linear-gradient(145deg, rgba(34, 73, 68, .75), rgba(8, 20, 19, .5));
            transition: transform .3s var(--ease), border-color .3s var(--ease);
        }

        .answer-card:hover { transform: translateY(-5px); border-color: rgba(233, 197, 118, .35) }
        .answer-card h3 { font-size: clamp(17px, 2.2vw, 21px); margin: 0 0 9px }
        .answer-card p { color: var(--muted); font-size: 14px; margin: 0 }
        .answer-card strong { color: var(--gold-pale) }

        /* ==========================================================
           بخش مقایسه: سئو در برابر تبلیغات کلیکی (PPC)
           جدول به‌صورت مستقل اسکرول افقی می‌شود تا کل صفحه بی‌اسکرول بماند
           ========================================================== */
        .compare-wrap {
            border: 1px solid rgba(251, 243, 222, .12);
            border-radius: 18px;
            overflow: hidden;
            background: linear-gradient(160deg, rgba(24, 54, 50, .55), rgba(8, 20, 19, .6));
        }

        .compare-scroll { overflow-x: auto; }

        .compare-table {
            width: 100%;
            min-width: 620px;
            border-collapse: collapse;
        }

        .compare-table th, .compare-table td {
            padding: 16px 20px;
            text-align: center;
            font-size: 13px;
            border-bottom: 1px solid rgba(251, 243, 222, .08);
        }

        .compare-table th:first-child, .compare-table td:first-child {
            text-align: right;
            color: var(--muted);
            font-weight: 600;
        }

        .compare-table thead th {
            font-size: 13px;
            font-weight: 900;
            padding: 18px 20px;
            color: var(--text);
            background: rgba(251, 243, 222, .04);
        }

        .compare-table thead th.win {
            color: var(--teal-950);
            background: linear-gradient(135deg, var(--gold-pale), var(--gold));
        }

        .compare-table tbody td.win {
            color: var(--gold-pale);
            font-weight: 700;
            background: rgba(233, 197, 118, .06);
        }

        .compare-table tbody tr:last-child td { border-bottom: 0 }

        .compare-note {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            margin-top: 22px;
            padding: 18px 20px;
            border-radius: 12px;
            border: 1px solid var(--line);
            background: rgba(251, 243, 222, .03);
            color: #dfe8e3;
            font-size: 13.5px;
        }

        .compare-note .icon {
            font-size: 20px;
            color: var(--gold-pale);
            margin-top: 2px;
        }

        .compare-note strong { color: var(--gold-pale) }

        /* خدمات */
        #services { overflow: hidden }
        #services .container { position: relative; z-index: 1 }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 17px;
            margin-top: 42px
        }

        .service-card {
            padding: 26px 24px;
            border: 1px solid rgba(251, 243, 222, .1);
            border-radius: 16px;
            background: linear-gradient(160deg, rgba(24, 54, 50, .6), rgba(8, 20, 19, .6));
            transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: rgba(233, 197, 118, .45);
            box-shadow: 0 22px 45px rgba(0, 0, 0, .3)
        }

        .service-card.highlight {
            border-color: rgba(233, 197, 118, .4);
            background: linear-gradient(160deg, rgba(38, 80, 66, .55), rgba(8, 20, 19, .65));
        }

        .service-icon {
            width: 48px;
            height: 48px;
            display: grid;
            place-items: center;
            margin-bottom: 16px;
            border-radius: 12px;
            background: linear-gradient(145deg, rgba(233, 197, 118, .18), rgba(233, 197, 118, .04));
            border: 1px solid rgba(233, 197, 118, .3);
        }

        .service-icon .icon { font-size: 24px; color: var(--gold-pale) }
        .service-card h3 { margin: 0 0 8px; font-size: clamp(17px, 2vw, 19px) }
        .service-card p { margin: 0; color: var(--muted); font-size: 13px }
        .service-card .tag {
            display: inline-block;
            margin-top: 12px;
            padding: 4px 10px;
            border-radius: 999px;
            font-size: 10.5px;
            font-weight: 700;
            color: var(--gold-pale);
            border: 1px solid rgba(233, 197, 118, .35);
        }

        /* ==========================================================
           چرا فلات؟ (تمایز): شفافیت، داده‌محوری، ترکیب انسان + هوش مصنوعی
           ========================================================== */
        .diff-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 42px
        }

        .diff-card {
            padding: 30px 26px;
            text-align: center;
            border: 1px solid rgba(251, 243, 222, .1);
            border-radius: 16px;
            background: linear-gradient(160deg, rgba(20, 50, 46, .55), rgba(8, 20, 19, .55));
            transition: transform .35s var(--ease), border-color .35s var(--ease);
        }

        .diff-card:hover { transform: translateY(-6px); border-color: rgba(233, 197, 118, .4) }

        .diff-icon {
            width: 58px;
            height: 58px;
            margin: 0 auto 18px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            border: 1px solid rgba(233, 197, 118, .4);
            color: var(--gold-pale);
        }

        .diff-icon .icon { font-size: 26px }
        .diff-card h3 { font-size: 17px; margin: 0 0 8px }
        .diff-card p { font-size: 13px; color: var(--muted); margin: 0 }

        /* نمونه واقعی نتیجه */
        .proof {
            display: grid;
            grid-template-columns: .9fr 1.1fr;
            gap: 50px;
            align-items: center;
        }

        .proof-image {
            position: relative;
            overflow: hidden;
            border-radius: 18px;
            border: 1px solid rgba(233, 197, 118, .3);
            box-shadow: 0 30px 65px rgba(0, 0, 0, .4);
        }

        .proof-image:before {
            content: "";
            position: absolute;
            inset: -1px;
            z-index: 1;
            background: linear-gradient(160deg, rgba(233, 197, 118, .2), transparent 45%);
            pointer-events: none;
        }

        .proof-image img {
            width: 100%; height: auto; display: block;
            transition: transform .6s var(--ease)
        }

        .proof-image:hover img { transform: scale(1.04) }

        .proof-list { margin: 20px 0 0; padding: 0; list-style: none }

        .proof-list li {
            display: flex; gap: 10px; align-items: flex-start;
            margin-bottom: 12px; color: #dfe8e3; font-size: 14px;
        }

        .proof-list .icon { color: var(--gold-pale); font-size: 20px; margin-top: 2px }

        /* پکیج‌ها */
        .packages {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            align-items: stretch;
            gap: 18px;
            margin-top: 42px
        }

        .package {
            position: relative;
            padding: 29px 24px;
            overflow: hidden;
            border: 1px solid rgba(251, 243, 222, .1);
            border-radius: 16px;
            background: linear-gradient(145deg, rgba(20, 50, 46, .85), rgba(8, 20, 19, .65));
            transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
        }

        .package:hover {
            transform: translateY(-8px);
            border-color: rgba(233, 197, 118, .45);
            box-shadow: 0 22px 45px rgba(0, 0, 0, .3)
        }

        .package.featured {
            transform: translateY(-12px);
            border-color: rgba(233, 197, 118, .7);
            background: linear-gradient(145deg, rgba(38, 80, 66, .92), rgba(10, 28, 26, .85));
            box-shadow: 0 20px 45px rgba(0, 0, 0, .28);
        }

        .package.featured:hover { transform: translateY(-17px); box-shadow: 0 28px 55px rgba(0, 0, 0, .34) }

        .package.featured:before {
            content: "پیشنهاد مناسب رشد پایدار کسب‌وکار";
            position: absolute; top: 0; right: 0; left: 0;
            text-align: center; padding: 6px;
            color: var(--teal-950);
            background: linear-gradient(90deg, var(--gold), var(--gold-pale));
            font-size: 10px; font-weight: bold;
        }

        .package.featured .package-name { margin-top: 19px }
        .package-name { font-size: clamp(19px, 2.4vw, 22px); font-weight: 900; margin: 0 }
        .package-for { font-size: 12px; color: var(--gold-pale); margin: 4px 0 16px }
        .package p { font-size: 13px; color: var(--muted); min-height: 51px }
        .package ul { padding: 0; margin: 18px 0; list-style: none }

        .package li {
            font-size: 12px; color: #dfe8e3; margin: 8px 0;
            display: flex; gap: 8px; align-items: flex-start
        }

        .package li .icon { color: var(--gold-pale); font-size: 16px; margin-top: 2px }
        .package .button { width: 100%; margin-top: 8px }
        .price-note { color: #a3b6b0; font-size: 11px; text-align: center; margin-top: 20px }

        /* نقشه راه */
        .roadmap-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center }

        .roadmap-image {
            position: relative; overflow: hidden; border-radius: 18px;
            border: 1px solid rgba(251, 243, 222, .14);
            box-shadow: 0 25px 55px rgba(0, 0, 0, .35);
        }

        .roadmap-image:before {
            content: ""; position: absolute; inset: -1px; z-index: 1;
            background: linear-gradient(160deg, rgba(233, 197, 118, .18), transparent 40%);
            pointer-events: none;
        }

        .roadmap-image img { width: 100%; height: 100%; max-height: 320px; object-fit: cover; display: block }

        .roadmap { margin-top: 56px; position: relative }

        .roadmap:before {
            content: "";
            position: absolute;
            top: 36px; right: 10%; left: 10%;
            height: 1px;
            background: repeating-linear-gradient(90deg, rgba(233, 197, 118, .35) 0 10px, transparent 10px 20px);
        }

        .roadmap-grid { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px }
        .road { position: relative; padding: 0 15px; text-align: center }

        .road-no {
            width: 72px; height: 72px; display: grid; place-items: center;
            margin: 0 auto 17px; position: relative; z-index: 1;
            border-radius: 50%;
            border: 1px solid rgba(233, 197, 118, .45);
            color: var(--gold-pale);
            background: var(--teal-900);
            box-shadow: 0 0 0 9px var(--teal-950);
            transition: transform .3s var(--ease), background .3s, color .3s;
        }

        .road-no .icon { font-size: 26px }
        .road:hover .road-no { transform: scale(1.08); background: var(--gold); color: var(--teal-950) }
        .road h3 { font-size: 16px; margin: 0 0 7px }
        .road p { font-size: 12px; color: var(--muted); margin: 0 }

        /* سوالات متداول */
        .faq { margin-top: 42px }

        .faq-item {
            border: 1px solid rgba(251, 243, 222, .12);
            border-radius: 14px;
            margin-bottom: 12px;
            overflow: hidden;
            background: linear-gradient(160deg, rgba(24, 54, 50, .5), rgba(8, 20, 19, .5));
            transition: transform .3s var(--ease), border-color .3s var(--ease);
        }

        .faq-item:hover { transform: translateY(-3px); border-color: rgba(233, 197, 118, .35) }
        .faq-item.open { border-color: rgba(233, 197, 118, .5) }

        .faq-question {
            width: 100%; display: flex; align-items: center; justify-content: space-between;
            gap: 16px; padding: 22px 24px;
            background: transparent; border: 0; margin: 0; cursor: pointer;
            text-align: right; color: var(--text);
            font-size: 15px; font-weight: 700; font-family: inherit; line-height: 1.6;
            -webkit-tap-highlight-color: transparent;
            transition: color .2s ease, background-color .2s ease;
        }

        .faq-question:hover, .faq-question:focus-visible {
            color: var(--gold-pale);
            background-color: rgba(233, 197, 118, .07)
        }

        .faq-question:active { background-color: rgba(233, 197, 118, .13) }

        .faq-question:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px }

        .faq-icon {
            flex: none; width: 27px; height: 27px; display: grid; place-items: center;
            border-radius: 50%;
            border: 1px solid rgba(233, 197, 118, .4);
            color: var(--gold-pale);
            transition: transform .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
        }

        .faq-icon .icon { font-size: 15px }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            background: var(--gold); color: var(--teal-950); border-color: var(--gold)
        }

        .faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .22s ease-out }
        .faq-item.open .faq-answer { grid-template-rows: 1fr }
        .faq-answer-inner { overflow: hidden }

        .faq-answer p {
            margin: 0; padding: 0 24px 22px; color: var(--muted); font-size: 13px; line-height: 1.9
        }

        /* CTA پایانی */
        .cta {
            position: relative; overflow: hidden; margin-bottom: 90px;
            padding: 70px 30px;
            border: 1px solid rgba(233, 197, 118, .35);
            border-radius: 20px; text-align: center;
            background: radial-gradient(circle at 50% 120%, rgba(233, 197, 118, .28), transparent 45%), linear-gradient(135deg, var(--teal-800), var(--teal-950));
        }

        .cta:before {
            content: "◆"; position: absolute; bottom: -275px; left: 50%;
            transform: translateX(-50%);
            color: rgba(233, 197, 118, .07);
            font-size: 430px; line-height: 1;
        }

        .cta > * { position: relative }
        .cta h2 { font-size: clamp(24px, 2.8vw, 36px); line-height: 1.4; margin: 0 0 10px }
        .cta p { max-width: 620px; color: var(--muted); margin: 0 auto 23px }

        /* پاپ‌آپ فرم مشاوره */
        .modal {
            position: fixed; inset: 0; z-index: 1000; display: none;
            align-items: center; justify-content: center; padding: 20px;
            background: rgba(4, 10, 9, .8);
            backdrop-filter: blur(8px);
            opacity: 0; transition: opacity .3s ease;
        }

        .modal.show { display: flex }
        .modal.show.in { opacity: 1 }

        .modal-box {
            position: relative; width: min(560px, 100%); max-height: 92vh; overflow: auto;
            border-radius: 20px;
            background: linear-gradient(160deg, var(--teal-700), var(--teal-950));
            box-shadow: 0 30px 90px rgba(0, 0, 0, .6);
            transform: translateY(26px) scale(.96);
            transition: transform .4s var(--ease);
        }

        .modal.show.in .modal-box { transform: translateY(0) scale(1) }

        .modal-head {
            position: relative; padding: 26px 28px 22px;
            background: radial-gradient(circle at 15% -20%, rgba(233, 197, 118, .35), transparent 55%), linear-gradient(135deg, rgba(233, 197, 118, .16), transparent 60%);
            border-bottom: 1px solid rgba(251, 243, 222, .1);
        }

        .modal-head img { height: 28px; width: auto; margin-bottom: 14px }
        .modal-box h2 { font-size: clamp(19px, 2.6vw, 23px); margin: 0 0 4px }
        .modal-box .modal-head p { font-size: 13px; color: var(--muted); margin: 0 }
        .modal-body { padding: 24px 28px 28px }

        .close {
            position: absolute; top: 14px; left: 14px; width: 34px; height: 34px;
            border: 1px solid var(--line); color: var(--gold-pale);
            border-radius: 50%;
            background: rgba(8, 20, 19, .5);
            cursor: pointer; z-index: 5;
            display: grid; place-items: center;
            transition: transform .2s, border-color .2s;
        }

        .close .icon { font-size: 17px }
        .close:hover { transform: rotate(90deg); border-color: var(--gold) }

        .modal-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px }
        .modal-fields .full { grid-column: 1/-1 }
        textarea { min-height: 90px; resize: vertical }
        .modal-body .button { width: 100%; margin-top: 12px }

        .success-message {
            display: none; align-items: center; gap: 8px; margin-top: 12px;
            padding: 12px 14px; border-radius: 10px;
            background: var(--success-bg);
            border: 1px solid var(--success-line);
            color: #c3ecda; font-size: 12px;
        }

        .success-message.show { display: flex }
        .success-message .icon { flex: none; font-size: 18px; color: #7fd8ae }

        /* ==========================================================
           واکنش‌گرا: موبایل، تبلت، لپ‌تاپ و دسکتاپ بزرگ
           ========================================================== */
        @media(max-width:900px) {
            .hero { padding-top: 36px }
            .hero-grid, .diagnosis, .proof, .roadmap-head { grid-template-columns: 1fr }
            .hero-grid { padding-top: 20px; grid-template-areas: "title" "visual" "details"; row-gap: 22px }
            .hero-visual { width: 100%; margin: auto }
            .hero-form-wrap { margin-top: 32px }
            .fields { grid-template-columns: 1fr 1fr }
            .fields .button { grid-column: 1/-1 }
            .service-grid, .packages, .diff-grid { grid-template-columns: 1fr 1fr }
            .roadmap-head { gap: 26px }
            .roadmap-image img { max-height: 240px }
            .roadmap-grid { grid-template-columns: repeat(3, 1fr) }
            .roadmap:before { display: none }
            .proof { gap: 30px }
        }

        @media(max-width:560px) {
            .container { width: calc(100% - 28px) }
            .brand-mini img { height: 28px }
            .form-head { display: block }
            .fields, .service-grid, .packages, .diff-grid, .roadmap-grid, .modal-fields { grid-template-columns: 1fr }
            .package.featured { transform: none }
            .stats-grid { grid-template-columns: 1fr 1fr }
            .stat { border-bottom: 1px solid var(--line) }
            .section { padding: 70px 0 }
            .modal-head, .modal-body { padding-left: 20px; padding-right: 20px }
            .faq-question { padding: 16px 18px; font-size: 14px }
            .faq-answer p { padding: 0 18px 16px }
            .compare-table th, .compare-table td { padding: 12px 14px; font-size: 12px }
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: .001ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: .001ms !important;
                scroll-behavior: auto !important
            }
        }