/* =========================================================
   گمانه | طراحی لوکس سینمایی برای اندیشکده صنعت مس
   نسخه هماهنگ با HTML بازنویسی‌شده
   ========================================================= */


/* =========================================================
   فونت‌ها
   ========================================================= */

@font-face {
    font-family: "Kahroba";
    src: url("../fonts/Kahroba-VF.woff2") format("woff2");
    font-display: swap;
    font-weight: 100 900;
}

@font-face {
    font-family: "Kahroba FD";
    src: url("../fonts/Kahroba-VF-FD.woff2") format("woff2");
    font-display: swap;
    font-weight: 100 900;
}

@font-face {
    font-family: "Kahroba OA";
    src: url("../fonts/Kahroba-VF-OA.woff2") format("woff2");
    font-display: swap;
    font-weight: 100 900;
}


/* =========================================================
   متغیرها
   ========================================================= */

:root {
    --g-black: #030303;
    --g-black-2: #060606;
    --g-black-3: #0a0a0a;

    --g-charcoal: #101010;
    --g-charcoal-2: #171717;
    --g-charcoal-3: #202020;

    --g-navy: #060b12;
    --g-navy-2: #08111b;

    --g-cream: #f2ecdf;
    --g-cream-2: #d8cdb9;
    --g-white: #ffffff;

    --g-muted: rgba(242, 236, 223, 0.68);
    --g-muted-2: rgba(242, 236, 223, 0.48);
    --g-muted-3: rgba(242, 236, 223, 0.32);

    --g-gold: #f4bd48;
    --g-gold-2: #ffd36a;
    --g-gold-3: #a86b1e;

    --g-copper: #b87333;
    --g-copper-2: #d8893a;
    --g-copper-3: #ef9d3d;

    --g-danger: #ff6b4a;
    --g-success: #8fcf7a;

    --g-border: rgba(244, 189, 72, 0.26);
    --g-border-strong: rgba(244, 189, 72, 0.48);
    --g-border-soft: rgba(255, 255, 255, 0.095);
    --g-border-softer: rgba(255, 255, 255, 0.06);

    --g-glass: rgba(10, 10, 10, 0.52);
    --g-glass-2: rgba(255, 255, 255, 0.045);
    --g-glass-3: rgba(244, 189, 72, 0.055);

    --g-shadow-dark: 0 34px 110px rgba(0, 0, 0, 0.72);
    --g-shadow-soft: 0 22px 70px rgba(0, 0, 0, 0.46);
    --g-shadow-gold: 0 0 44px rgba(244, 189, 72, 0.22);
    --g-shadow-copper: 0 0 54px rgba(184, 115, 51, 0.24);

    --g-radius-xs: 8px;
    --g-radius-sm: 12px;
    --g-radius-md: 18px;
    --g-radius-lg: 28px;
    --g-radius-xl: 40px;
    --g-radius-pill: 999px;

    --g-container: 1320px;

    --g-header-height: 82px;

    --g-transition-fast: 180ms ease;
    --g-transition: 280ms ease;
    --g-transition-slow: 620ms cubic-bezier(0.16, 1, 0.3, 1);

    --g-font-main: "Kahroba FD", "Vazirmatn", "IRANSans", "Tahoma", sans-serif;
    --g-font-ui: "Kahroba FD", "Vazirmatn", "Tahoma", sans-serif;
    --g-font-number: "Kahroba FD", "Vazirmatn", "Arial", sans-serif;
}


/* =========================================================
   پایه و ریست
   ========================================================= */

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

html {
    min-height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    min-height: 100vh;
    margin: 0;
    direction: rtl;
    text-align: right;
    font-family: var(--g-font-main);
    color: var(--g-cream);
    background:
        radial-gradient(circle at 18% 8%, rgba(244, 189, 72, 0.085), transparent 28%),
        radial-gradient(circle at 82% 4%, rgba(184, 115, 51, 0.10), transparent 30%),
        linear-gradient(180deg, var(--g-black) 0%, #080808 42%, var(--g-black) 100%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -4;
    pointer-events: none;
    opacity: 0.12;
    background-image:
        linear-gradient(rgba(244, 189, 72, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 189, 72, 0.10) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: radial-gradient(circle at center, black 0%, transparent 76%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    opacity: 0.34;
    background:
        radial-gradient(circle at 50% 120%, rgba(244, 189, 72, 0.11), transparent 36%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018), transparent 34%, transparent 66%, rgba(255, 255, 255, 0.018));
}

a {
    color: inherit;
    text-decoration: none;
    transition:
        color var(--g-transition),
        background var(--g-transition),
        border-color var(--g-transition),
        box-shadow var(--g-transition),
        transform var(--g-transition),
        opacity var(--g-transition);
}

a:hover {
    color: var(--g-gold);
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

p {
    margin: 0;
    color: var(--g-muted);
    line-height: 2.05;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

::selection {
    color: #090909;
    background: var(--g-gold-2);
}

:focus-visible {
    outline: 2px solid var(--g-gold);
    outline-offset: 4px;
}


/* =========================================================
   ابزارهای عمومی
   ========================================================= */

.page-wrapper {
    position: relative;
    min-height: 100vh;
    overflow: clip;
}

.gamane-container {
    width: min(var(--g-container), calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 9999;
    padding: 10px 18px;
    border-radius: var(--g-radius-pill);
    background: var(--g-gold);
    color: #050505;
    font-weight: 950;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
}

.text-gold {
    color: var(--g-gold) !important;
}

.text-copper {
    color: var(--g-copper-3) !important;
}

.ltr {
    direction: ltr;
    text-align: left;
}

.rtl {
    direction: rtl;
    text-align: right;
}


/* =========================================================
   هدر و ناوبری
   ========================================================= */

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 900;
    min-height: var(--g-header-height);
    border-bottom: 1px solid transparent;
    background:
        linear-gradient(180deg, rgba(3, 3, 3, 0.70), rgba(3, 3, 3, 0.18));
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    transition:
        background var(--g-transition),
        border-color var(--g-transition),
        backdrop-filter var(--g-transition),
        box-shadow var(--g-transition);
}

.site-header.is-scrolled {
    border-bottom-color: rgba(255, 255, 255, 0.085);
    background: rgba(5, 5, 5, 0.74);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow:
        0 18px 60px rgba(0, 0, 0, 0.42),
        inset 0 -1px 0 rgba(244, 189, 72, 0.045);
}

.navbar-shell {
    min-height: var(--g-header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: fit-content;
}

.brand-mark {
    position: relative;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(244, 189, 72, 0.55);
    border-radius: 15px;
    color: var(--g-gold);
    background:
        radial-gradient(circle at 34% 20%, rgba(255, 211, 106, 0.32), transparent 34%),
        linear-gradient(145deg, rgba(244, 189, 72, 0.11), rgba(255, 255, 255, 0.025)),
        rgba(5, 5, 5, 0.40);
    box-shadow:
        0 0 34px rgba(244, 189, 72, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.13);
    overflow: hidden;
}

.brand-mark::before {
    content: "";
    position: absolute;
    inset: -40%;
    opacity: 0.55;
    background:
        conic-gradient(from 180deg, transparent, rgba(244, 189, 72, 0.35), transparent 36%);
    animation: brandRotate 8s linear infinite;
}

.brand-mark i {
    position: relative;
    z-index: 1;
    font-size: 1.32rem;
}

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

.brand-title {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.15;
}

.brand-title strong {
    color: var(--g-gold);
    font-size: 1.38rem;
    font-weight: 950;
    letter-spacing: -0.6px;
}

.brand-title span {
    color: rgba(242, 236, 223, 0.62);
    font-size: 0.74rem;
    font-weight: 650;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 32px);
}

.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: var(--g-header-height);
    color: rgba(242, 236, 223, 0.82);
    font-size: 0.92rem;
    font-weight: 750;
    white-space: nowrap;
}

.main-nav a::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 22px;
    width: 0;
    height: 2px;
    margin-inline: auto;
    border-radius: var(--g-radius-pill);
    background: linear-gradient(90deg, transparent, var(--g-gold), transparent);
    box-shadow: 0 0 18px rgba(244, 189, 72, 0.42);
    transition: width var(--g-transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--g-gold);
}

.main-nav a:hover::before,
.main-nav a.active::before {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.header-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border: 1px solid rgba(244, 189, 72, 0.42);
    border-radius: var(--g-radius-pill);
    color: var(--g-gold);
    background:
        linear-gradient(145deg, rgba(244, 189, 72, 0.08), rgba(255, 255, 255, 0.018)),
        rgba(5, 5, 5, 0.22);
    font-size: 0.86rem;
    font-weight: 900;
    white-space: nowrap;
}

.header-cta:hover {
    color: #050505;
    border-color: var(--g-gold);
    background: linear-gradient(135deg, var(--g-gold-2), var(--g-copper-2));
    box-shadow: 0 16px 42px rgba(244, 189, 72, 0.24);
    transform: translateY(-2px);
}

.icon-btn {
    width: 43px;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--g-border-soft);
    border-radius: 14px;
    color: rgba(242, 236, 223, 0.86);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
        rgba(5, 5, 5, 0.30);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.icon-btn:hover {
    color: #050505;
    border-color: var(--g-gold);
    background: linear-gradient(135deg, var(--g-gold-2), var(--g-copper-2));
    box-shadow:
        0 16px 44px rgba(244, 189, 72, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.34);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
}


/* =========================================================
   مسیر طلایی ثابت
   ========================================================= */

.golden-path {
    position: fixed;
    top: 0;
    bottom: 0;
    right: clamp(18px, 3vw, 54px);
    z-index: 120;
    width: 1px;
    pointer-events: none;
    opacity: 0.58;
}

.golden-path span {
    position: absolute;
    inset: 96px 0 34px;
    display: block;
    width: 1px;
    background:
        linear-gradient(
            180deg,
            transparent 0%,
            rgba(244, 189, 72, 0.10) 8%,
            rgba(244, 189, 72, 0.78) 30%,
            rgba(244, 189, 72, 0.18) 54%,
            rgba(244, 189, 72, 0.72) 76%,
            transparent 100%
        );
    box-shadow:
        0 0 18px rgba(244, 189, 72, 0.36),
        0 0 44px rgba(244, 189, 72, 0.12);
}

.golden-path span::before,
.golden-path span::after {
    content: "";
    position: absolute;
    right: 50%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--g-gold-2);
    box-shadow:
        0 0 0 5px rgba(244, 189, 72, 0.10),
        0 0 28px rgba(244, 189, 72, 0.85);
    transform: translateX(50%);
}

.golden-path span::before {
    top: 16%;
}

.golden-path span::after {
    bottom: 18%;
}


/* =========================================================
   سکشن‌های سینمایی مشترک
   ========================================================= */

.cinematic-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    isolation: isolate;
    overflow: hidden;
    background: var(--g-black);
}

.section-bg {
    position: absolute;
    inset: 0;
    z-index: -5;
    overflow: hidden;
    background: var(--g-black);
}

.section-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.025);
    filter: brightness(0.82) contrast(1.12) saturate(1.08);
}

.section-overlay {
    position: absolute;
    inset: 0;
    z-index: -4;
    pointer-events: none;
}

.section-overlay--hero {
    background:
        radial-gradient(circle at 24% 46%, rgba(244, 189, 72, 0.09), transparent 26%),
        linear-gradient(90deg, rgba(3, 3, 3, 0.90) 0%, rgba(3, 3, 3, 0.60) 30%, rgba(3, 3, 3, 0.16) 58%, rgba(3, 3, 3, 0.54) 100%),
        linear-gradient(180deg, rgba(3, 3, 3, 0.48) 0%, transparent 38%, rgba(3, 3, 3, 0.96) 100%);
}

.section-overlay--deep {
    background:
        radial-gradient(circle at 70% 32%, rgba(244, 189, 72, 0.08), transparent 30%),
        radial-gradient(circle at 20% 90%, rgba(184, 115, 51, 0.15), transparent 34%),
        linear-gradient(90deg, rgba(3, 3, 3, 0.92) 0%, rgba(3, 3, 3, 0.46) 46%, rgba(3, 3, 3, 0.86) 100%),
        linear-gradient(180deg, rgba(3, 3, 3, 0.94) 0%, rgba(3, 3, 3, 0.35) 42%, rgba(3, 3, 3, 0.94) 100%);
}

.section-overlay--layers {
    background:
        linear-gradient(90deg, rgba(3, 3, 3, 0.88) 0%, rgba(3, 3, 3, 0.52) 42%, rgba(3, 3, 3, 0.82) 100%),
        linear-gradient(180deg, rgba(3, 3, 3, 0.92) 0%, rgba(3, 3, 3, 0.22) 48%, rgba(3, 3, 3, 0.96) 100%);
}

.section-overlay--reports {
    background:
        radial-gradient(circle at 82% 18%, rgba(244, 189, 72, 0.15), transparent 30%),
        radial-gradient(circle at 16% 82%, rgba(184, 115, 51, 0.14), transparent 34%),
        linear-gradient(90deg, rgba(3, 3, 3, 0.90), rgba(3, 3, 3, 0.56), rgba(3, 3, 3, 0.90)),
        linear-gradient(180deg, rgba(3, 3, 3, 0.96), rgba(3, 3, 3, 0.46), rgba(3, 3, 3, 0.96));
}

.section-overlay--tunnel {
    background:
        radial-gradient(circle at 50% 48%, rgba(244, 189, 72, 0.08), transparent 28%),
        linear-gradient(90deg, rgba(3, 3, 3, 0.88) 0%, rgba(3, 3, 3, 0.28) 50%, rgba(3, 3, 3, 0.88) 100%),
        linear-gradient(180deg, rgba(3, 3, 3, 0.96) 0%, rgba(3, 3, 3, 0.30) 48%, rgba(3, 3, 3, 0.98) 100%);
}

.section-overlay--final {
    background:
        radial-gradient(circle at 50% 48%, rgba(244, 189, 72, 0.06), transparent 28%),
        linear-gradient(90deg, rgba(3, 3, 3, 0.92) 0%, rgba(3, 3, 3, 0.50) 26%, rgba(3, 3, 3, 0.10) 50%, rgba(3, 3, 3, 0.52) 74%, rgba(3, 3, 3, 0.92) 100%),
        linear-gradient(180deg, rgba(3, 3, 3, 0.96) 0%, rgba(3, 3, 3, 0.12) 44%, rgba(3, 3, 3, 0.88) 100%);
}

.section-noise {
    position: absolute;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    opacity: 0.115;
    mix-blend-mode: screen;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.80) 0 1px, transparent 1.4px),
        radial-gradient(circle at 80% 30%, rgba(244, 189, 72, 0.72) 0 1px, transparent 1.6px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.58) 0 1px, transparent 1.4px);
    background-size: 88px 88px, 132px 132px, 174px 174px;
}

.section-fade {
    position: absolute;
    right: 0;
    left: 0;
    z-index: -1;
    height: 210px;
    pointer-events: none;
}

.section-fade--top {
    top: 0;
    background: linear-gradient(180deg, var(--g-black), transparent);
}

.section-fade--bottom {
    bottom: 0;
    background: linear-gradient(0deg, var(--g-black), transparent);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--g-gold);
    font-size: 0.93rem;
    font-weight: 950;
    letter-spacing: -0.1px;
    margin-bottom: 18px;
}

.section-eyebrow::before {
    content: "";
    width: 42px;
    height: 2px;
    border-radius: var(--g-radius-pill);
    background: linear-gradient(90deg, transparent, var(--g-gold));
    box-shadow: 0 0 20px rgba(244, 189, 72, 0.52);
}

.section-eyebrow::after {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--g-gold-2);
    box-shadow: 0 0 18px rgba(244, 189, 72, 0.85);
}

mark {
    padding: 0;
    color: var(--g-gold);
    background: transparent;
}


/* =========================================================
   دکمه‌های لوکس
   ========================================================= */

.btn-primary-lux,
.btn-secondary-lux,
.reports-more,
.final-link {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 12px 25px;
    border-radius: 15px;
    font-size: 0.94rem;
    font-weight: 950;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary-lux {
    border: 1px solid rgba(255, 211, 106, 0.72);
    color: #070707 !important;
    background:
        linear-gradient(135deg, var(--g-gold-2) 0%, var(--g-gold) 34%, var(--g-copper-2) 100%);
    box-shadow:
        0 20px 54px rgba(244, 189, 72, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.btn-primary-lux:hover {
    transform: translateY(-3px);
    box-shadow:
        0 28px 82px rgba(244, 189, 72, 0.42),
        0 0 45px rgba(184, 115, 51, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.50);
}

.btn-secondary-lux {
    border: 1px solid rgba(244, 189, 72, 0.34);
    color: var(--g-gold) !important;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
        rgba(5, 5, 5, 0.42);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.btn-secondary-lux:hover {
    color: #070707 !important;
    border-color: var(--g-gold);
    background: var(--g-gold);
    transform: translateY(-3px);
    box-shadow: 0 22px 62px rgba(244, 189, 72, 0.24);
}


/* =========================================================
   سکشن اول | هیرو
   ========================================================= */

.hero-section {
    min-height: 100svh;
    padding: calc(var(--g-header-height) + 74px) 0 96px;
    display: flex;
    align-items: center;
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.58fr);
    align-items: center;
    gap: clamp(32px, 5vw, 96px);
}

.hero-content {
    max-width: 720px;
}

.hero-content h1 {
    margin: 0 0 18px;
    color: #d7bd86;
    font-size: clamp(5.8rem, 11vw, 12.5rem);
    font-weight: 950;
    line-height: 0.80;
    letter-spacing: -8px;
    text-shadow:
        0 30px 86px rgba(0, 0, 0, 0.96),
        0 0 34px rgba(244, 189, 72, 0.12);
}

.hero-content h2 {
    margin: 0;
    color: var(--g-white);
    font-size: clamp(1.65rem, 3.2vw, 3.72rem);
    font-weight: 950;
    line-height: 1.38;
    letter-spacing: -1.2px;
    text-shadow:
        0 18px 48px rgba(0, 0, 0, 0.88),
        0 0 28px rgba(244, 189, 72, 0.075);
}

.hero-content p {
    max-width: 650px;
    margin-top: 24px;
    color: rgba(242, 236, 223, 0.77);
    font-size: clamp(0.98rem, 1.25vw, 1.18rem);
    line-height: 2.25;
    text-shadow: 0 10px 34px rgba(0, 0, 0, 0.92);
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-panel {
    position: relative;
    max-width: 430px;
    justify-self: end;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.115);
    border-radius: 26px;
    background:
        radial-gradient(circle at 100% 0%, rgba(244, 189, 72, 0.12), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
        rgba(7, 7, 7, 0.48);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow:
        var(--g-shadow-dark),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 10px;
    z-index: -1;
    border-radius: 20px;
    border: 1px solid rgba(244, 189, 72, 0.10);
    pointer-events: none;
}

.hero-panel__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--g-gold);
    font-size: 0.86rem;
    font-weight: 950;
}

.hero-panel__label::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--g-gold);
    box-shadow: 0 0 20px rgba(244, 189, 72, 0.80);
}

.hero-panel__items {
    display: grid;
    gap: 12px;
}

.hero-panel-card {
    position: relative;
    min-height: 92px;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 18px;
    color: var(--g-cream);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
        rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.hero-panel-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background:
        radial-gradient(circle at 22% 50%, rgba(244, 189, 72, 0.18), transparent 34%),
        linear-gradient(90deg, rgba(244, 189, 72, 0.08), transparent);
    transition: opacity var(--g-transition);
}

.hero-panel-card:hover {
    color: var(--g-cream);
    border-color: rgba(244, 189, 72, 0.42);
    transform: translateX(-5px);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.42);
}

.hero-panel-card:hover::before {
    opacity: 1;
}

.hero-panel-card i,
.hero-panel-card span {
    position: relative;
    z-index: 1;
}

.hero-panel-card i {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(244, 189, 72, 0.32);
    border-radius: 16px;
    color: var(--g-gold);
    background:
        radial-gradient(circle at 50% 30%, rgba(244, 189, 72, 0.16), transparent 62%),
        rgba(244, 189, 72, 0.04);
    font-size: 1.55rem;
}

.hero-panel-card strong {
    display: block;
    color: var(--g-white);
    font-size: 0.98rem;
    font-weight: 950;
    line-height: 1.5;
    margin-bottom: 4px;
}

.hero-panel-card small {
    display: block;
    color: var(--g-muted);
    font-size: 0.76rem;
    font-weight: 650;
    line-height: 1.8;
}

.scroll-indicator {
    position: absolute;
    right: 50%;
    bottom: 30px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(242, 236, 223, 0.62);
    font-size: 0.78rem;
    font-weight: 850;
    transform: translateX(50%);
}

.scroll-indicator i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--g-gold);
    border: 1px solid rgba(244, 189, 72, 0.34);
    border-radius: 50%;
    animation: scrollFloat 1.6s ease-in-out infinite;
}

@keyframes scrollFloat {
    0%,
    100% {
        transform: translateY(-2px);
        opacity: 0.72;
    }

    50% {
        transform: translateY(5px);
        opacity: 1;
    }
}


/* =========================================================
   سکشن دوم | بیان مسئله و تحلیل
   ========================================================= */

.insight-section {
    min-height: 92vh;
    padding: 126px 0;
    display: flex;
    align-items: center;
}

.insight-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(34px, 5vw, 88px);
}

.insight-statement {
    max-width: 650px;
}

.insight-statement h2,
.layers-heading h2,
.process-heading h2,
.reports-title h2,
.final-title h2 {
    margin: 0;
    color: var(--g-white);
    font-weight: 950;
    line-height: 1.34;
    letter-spacing: -1.2px;
    text-shadow:
        0 18px 58px rgba(0, 0, 0, 0.92),
        0 0 24px rgba(244, 189, 72, 0.08);
}

.insight-statement h2 {
    font-size: clamp(2.35rem, 4.6vw, 5.5rem);
}

.insight-statement p {
    max-width: 580px;
    margin-top: 28px;
    color: rgba(242, 236, 223, 0.74);
    font-size: 1.02rem;
    line-height: 2.35;
}

.insight-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.insight-card {
    position: relative;
    min-height: 332px;
    padding: 26px 22px;
    border: 1px solid rgba(255, 255, 255, 0.095);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.018)),
        rgba(6, 6, 6, 0.52);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow:
        0 25px 86px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.09);
    overflow: hidden;
    transition:
        border-color var(--g-transition),
        box-shadow var(--g-transition),
        transform var(--g-transition);
}

.insight-card::before {
    content: "";
    position: absolute;
    inset: -30%;
    opacity: 0;
    background:
        radial-gradient(circle at 50% 18%, rgba(244, 189, 72, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(244, 189, 72, 0.08), transparent 42%);
    transition: opacity var(--g-transition);
}

.insight-card:hover {
    border-color: rgba(244, 189, 72, 0.44);
    transform: translateY(-8px);
    box-shadow:
        0 32px 100px rgba(0, 0, 0, 0.68),
        0 0 54px rgba(244, 189, 72, 0.13);
}

.insight-card:hover::before {
    opacity: 1;
}

.insight-card > * {
    position: relative;
    z-index: 1;
}

.insight-card__number {
    direction: ltr;
    display: block;
    color: rgba(244, 189, 72, 0.70);
    font-size: 1.08rem;
    font-weight: 950;
    margin-bottom: 32px;
}

.insight-card i {
    width: 66px;
    height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    border: 1px solid rgba(244, 189, 72, 0.34);
    border-radius: 19px;
    color: var(--g-gold);
    background:
        radial-gradient(circle at 50% 30%, rgba(244, 189, 72, 0.17), transparent 60%),
        rgba(244, 189, 72, 0.04);
    font-size: 1.75rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.insight-card h3 {
    margin: 0 0 13px;
    color: var(--g-white);
    font-size: 1.18rem;
    font-weight: 950;
    line-height: 1.55;
}

.insight-card p {
    color: rgba(242, 236, 223, 0.64);
    font-size: 0.88rem;
    line-height: 2.05;
}


/* =========================================================
   سکشن سوم | لایه‌های تحلیلی
   ========================================================= */

.layers-section {
    min-height: 100vh;
    padding: 118px 0;
    display: flex;
    align-items: center;
}

.layers-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
    align-items: center;
    gap: clamp(34px, 6vw, 112px);
}

.layers-heading {
    max-width: 620px;
}

.layers-heading h2 {
    font-size: clamp(2.2rem, 4vw, 4.9rem);
}

.layers-heading p {
    max-width: 560px;
    margin-top: 26px;
    font-size: 1rem;
    line-height: 2.28;
}

.layers-list {
    position: relative;
    display: grid;
    gap: 14px;
}

.layers-list::before {
    content: "";
    position: absolute;
    top: 22px;
    bottom: 22px;
    right: 45px;
    width: 1px;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(244, 189, 72, 0.62),
            rgba(244, 189, 72, 0.10),
            rgba(244, 189, 72, 0.66),
            transparent
        );
    box-shadow: 0 0 22px rgba(244, 189, 72, 0.24);
}

.layer-row {
    position: relative;
    min-height: 104px;
    display: grid;
    grid-template-columns: 76px 72px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 16px 18px 16px 22px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    color: var(--g-cream);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.016)),
        rgba(5, 5, 5, 0.44);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 20px 68px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    overflow: hidden;
}

.layer-row::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background:
        linear-gradient(90deg, rgba(244, 189, 72, 0.10), transparent 56%),
        radial-gradient(circle at 18% 50%, rgba(244, 189, 72, 0.12), transparent 32%);
    transition: opacity var(--g-transition);
}

.layer-row::after {
    content: "";
    position: absolute;
    right: 43px;
    top: 50%;
    z-index: 2;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--g-gold-2);
    box-shadow:
        0 0 0 6px rgba(244, 189, 72, 0.08),
        0 0 24px rgba(244, 189, 72, 0.65);
    transform: translate(50%, -50%);
}

.layer-row:hover {
    color: var(--g-cream);
    border-color: rgba(244, 189, 72, 0.44);
    transform: translateX(-7px);
    box-shadow:
        0 28px 88px rgba(0, 0, 0, 0.58),
        0 0 46px rgba(244, 189, 72, 0.10);
}

.layer-row:hover::before {
    opacity: 1;
}

.layer-row > * {
    position: relative;
    z-index: 1;
}

.layer-row__icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(244, 189, 72, 0.38);
    border-radius: 17px;
    color: var(--g-gold);
    background:
        radial-gradient(circle at 50% 30%, rgba(244, 189, 72, 0.18), transparent 60%),
        rgba(244, 189, 72, 0.04);
    font-size: 1.45rem;
}

.layer-row__number {
    direction: ltr;
    display: inline-flex;
    justify-content: center;
    color: var(--g-gold);
    font-family: var(--g-font-number);
    font-size: 1.45rem;
    font-weight: 950;
    text-shadow: 0 0 22px rgba(244, 189, 72, 0.24);
}

.layer-row__content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.layer-row__content small {
    color: rgba(242, 236, 223, 0.56);
    font-size: 0.78rem;
    font-weight: 750;
}

.layer-row__content strong {
    color: var(--g-white);
    font-size: clamp(1.05rem, 1.45vw, 1.45rem);
    font-weight: 950;
    line-height: 1.45;
}


/* =========================================================
   سکشن چهارم | گزارش‌ها
   ========================================================= */

.reports-section {
    min-height: auto;
    padding: 118px 0;
}

.reports-board {
    position: relative;
    z-index: 1;
    padding: clamp(22px, 3.1vw, 46px);
    border: 1px solid rgba(255, 255, 255, 0.125);
    border-radius: 34px;
    background:
        radial-gradient(circle at 78% 12%, rgba(244, 189, 72, 0.12), transparent 30%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.025)),
        rgba(7, 7, 7, 0.54);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    box-shadow:
        0 42px 140px rgba(0, 0, 0, 0.76),
        0 0 64px rgba(244, 189, 72, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.reports-board::before {
    content: "";
    position: absolute;
    inset: -40%;
    z-index: -1;
    opacity: 0.46;
    background:
        radial-gradient(circle at 80% 20%, rgba(244, 189, 72, 0.16), transparent 28%),
        radial-gradient(circle at 18% 88%, rgba(184, 115, 51, 0.17), transparent 30%),
        linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.035), transparent);
}

.reports-board__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 26px;
    margin-bottom: 34px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.105);
}

.reports-title h2 {
    font-size: clamp(1.9rem, 3.2vw, 3.35rem);
}

.reports-title p {
    max-width: 660px;
    margin-top: 14px;
    color: rgba(242, 236, 223, 0.66);
    font-size: 0.96rem;
}

.reports-more {
    border: 1px solid rgba(244, 189, 72, 0.38);
    color: var(--g-gold);
    background: rgba(244, 189, 72, 0.055);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.reports-more:hover {
    color: #070707;
    border-color: var(--g-gold);
    background: var(--g-gold);
    transform: translateY(-3px);
    box-shadow: 0 22px 58px rgba(244, 189, 72, 0.28);
}

.poster-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.poster-card {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 26px;
    color: var(--g-cream);
    background: rgba(8, 8, 8, 0.60);
    box-shadow:
        0 28px 86px rgba(0, 0, 0, 0.52),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.poster-card:hover {
    color: var(--g-cream);
    border-color: rgba(244, 189, 72, 0.52);
    transform: translateY(-10px);
    box-shadow:
        0 38px 120px rgba(0, 0, 0, 0.76),
        0 0 56px rgba(244, 189, 72, 0.17),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.poster-card__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #101010;
}

.poster-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.52;
    filter: brightness(0.66) contrast(1.18) saturate(1.08);
    transform: scale(1.02);
    transition:
        transform 800ms cubic-bezier(0.16, 1, 0.3, 1),
        opacity var(--g-transition),
        filter var(--g-transition);
}

.poster-card:hover .poster-card__media img {
    opacity: 0.70;
    filter: brightness(0.78) contrast(1.20) saturate(1.13);
    transform: scale(1.10);
}

.poster-card__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.38) 38%, rgba(0, 0, 0, 0.97) 100%),
        radial-gradient(circle at 50% 12%, rgba(244, 189, 72, 0.16), transparent 38%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 58%, rgba(0, 0, 0, 0.42));
}

.poster-card__badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 13px;
    border-radius: var(--g-radius-pill);
    color: #080808;
    background: linear-gradient(135deg, var(--g-gold-2), var(--g-copper-2));
    font-size: 0.72rem;
    font-weight: 950;
    box-shadow:
        0 16px 34px rgba(244, 189, 72, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.poster-card__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 108px 20px 20px;
}

.poster-card__serial {
    display: block;
    margin-bottom: 17px;
}

.poster-card__serial small {
    display: block;
    color: rgba(242, 236, 223, 0.52);
    font-size: 0.72rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.poster-card__serial strong {
    direction: ltr;
    display: block;
    color: var(--g-gold);
    font-size: 2.5rem;
    font-weight: 950;
    line-height: 1;
    text-shadow: 0 0 26px rgba(244, 189, 72, 0.26);
}

.poster-card h3 {
    min-height: 88px;
    margin: 0 0 10px;
    color: var(--g-white);
    font-size: 1.08rem;
    font-weight: 950;
    line-height: 1.85;
}

.poster-card p {
    min-height: 54px;
    color: rgba(242, 236, 223, 0.68);
    font-size: 0.82rem;
    line-height: 1.95;
}

.poster-card__footer {
    margin-top: 18px;
    padding-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.115);
    color: rgba(242, 236, 223, 0.64);
    font-size: 0.75rem;
}

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

.poster-card__footer > i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #070707;
    background: var(--g-gold);
    font-size: 1.2rem;
    box-shadow: 0 0 28px rgba(244, 189, 72, 0.30);
}


/* =========================================================
   سکشن پنجم | مسیر تحلیل
   ========================================================= */

.process-section {
    min-height: 100vh;
    padding: 122px 0;
    display: flex;
    align-items: center;
}

.process-layout {
    position: relative;
    z-index: 1;
}

.process-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.process-heading h2 {
    font-size: clamp(2.15rem, 4.1vw, 5.1rem);
}

.process-heading p {
    max-width: 650px;
    margin-top: 22px;
    color: rgba(242, 236, 223, 0.74);
    font-size: 1rem;
    line-height: 2.25;
}

.process-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.process-track::before {
    content: "";
    position: absolute;
    top: 74px;
    right: 9%;
    left: 9%;
    height: 1px;
    background:
        linear-gradient(90deg, transparent, rgba(244, 189, 72, 0.86), rgba(244, 189, 72, 0.22), rgba(244, 189, 72, 0.72), transparent);
    box-shadow: 0 0 28px rgba(244, 189, 72, 0.34);
}

.process-step {
    position: relative;
    z-index: 1;
    min-height: 292px;
    padding: 26px 20px 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 26px;
    background:
        radial-gradient(circle at 50% 0%, rgba(244, 189, 72, 0.10), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.086), rgba(255, 255, 255, 0.018)),
        rgba(5, 5, 5, 0.47);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow:
        0 25px 82px rgba(0, 0, 0, 0.50),
        inset 0 1px 0 rgba(255, 255, 255, 0.09);
    overflow: hidden;
    transition:
        transform var(--g-transition),
        border-color var(--g-transition),
        box-shadow var(--g-transition);
}

.process-step::before {
    content: "";
    position: absolute;
    inset: -30%;
    opacity: 0;
    background:
        radial-gradient(circle at 50% 24%, rgba(244, 189, 72, 0.18), transparent 26%),
        linear-gradient(180deg, rgba(244, 189, 72, 0.06), transparent 48%);
    transition: opacity var(--g-transition);
}

.process-step:hover {
    border-color: rgba(244, 189, 72, 0.46);
    transform: translateY(-9px);
    box-shadow:
        0 36px 106px rgba(0, 0, 0, 0.72),
        0 0 52px rgba(244, 189, 72, 0.16);
}

.process-step:hover::before {
    opacity: 1;
}

.process-step > * {
    position: relative;
    z-index: 1;
}

.process-step__number {
    direction: ltr;
    display: block;
    color: rgba(242, 236, 223, 0.60);
    font-size: 0.88rem;
    font-weight: 950;
    margin-bottom: 12px;
}

.process-step__icon {
    width: 92px;
    height: 92px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(244, 189, 72, 0.55);
    border-radius: 50%;
    color: var(--g-gold);
    background:
        radial-gradient(circle at 50% 32%, rgba(244, 189, 72, 0.22), transparent 62%),
        rgba(255, 255, 255, 0.045);
    font-size: 2.05rem;
    box-shadow:
        0 0 0 8px rgba(244, 189, 72, 0.035),
        0 22px 60px rgba(0, 0, 0, 0.64),
        0 0 30px rgba(244, 189, 72, 0.18);
}

.process-step h3 {
    margin: 0 0 10px;
    color: var(--g-gold);
    font-size: 1.16rem;
    font-weight: 950;
    line-height: 1.45;
}

.process-step p {
    max-width: 220px;
    margin-inline: auto;
    color: rgba(242, 236, 223, 0.66);
    font-size: 0.86rem;
    line-height: 1.98;
}


/* =========================================================
   سکشن آخر | CTA و درباره گمانه
   ========================================================= */

.final-section {
    min-height: 100vh;
    padding: 110px 0;
    display: flex;
    align-items: center;
}

.final-layout {
    position: relative;
    z-index: 1;
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(300px, 0.88fr) minmax(320px, 1.14fr) minmax(300px, 0.88fr);
    grid-template-areas: "subscribe center about";
    align-items: center;
    gap: clamp(22px, 3.5vw, 56px);
    direction: ltr;
}

.final-panel {
    position: relative;
    direction: rtl;
    text-align: right;
}

.final-panel::before {
    content: "";
    position: absolute;
    inset: -44px -34px;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 44%, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.42) 54%, transparent 78%);
    filter: blur(10px);
}

.final-panel--subscribe {
    grid-area: subscribe;
}

.final-panel--about {
    grid-area: about;
}

.final-center {
    grid-area: center;
    min-height: 620px;
    pointer-events: none;
}

.final-title {
    margin-bottom: 22px;
}

.final-title h2 {
    font-size: clamp(2.05rem, 3.8vw, 4.85rem);
    line-height: 1.18;
}

.final-title h2 mark {
    display: block;
}

.final-panel p {
    max-width: 395px;
    color: rgba(242, 236, 223, 0.76);
    font-size: 0.98rem;
    line-height: 2.20;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.86);
}

.subscribe-form {
    max-width: 395px;
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.subscribe-form label {
    position: relative;
    display: block;
}

.subscribe-form input {
    width: 100%;
    min-height: 58px;
    padding: 0 56px 0 18px;
    border: 1px solid rgba(244, 189, 72, 0.38);
    border-radius: 15px;
    outline: none;
    color: var(--g-cream);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
        rgba(5, 5, 5, 0.64);
    box-shadow:
        0 18px 54px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.subscribe-form input::placeholder {
    color: rgba(242, 236, 223, 0.46);
}

.subscribe-form input:focus {
    border-color: rgba(244, 189, 72, 0.74);
    box-shadow:
        0 0 0 4px rgba(244, 189, 72, 0.10),
        0 0 36px rgba(244, 189, 72, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.subscribe-form label i {
    position: absolute;
    top: 50%;
    right: 19px;
    color: rgba(242, 236, 223, 0.56);
    font-size: 1.18rem;
    transform: translateY(-50%);
}

.subscribe-form button {
    width: 100%;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 1px solid rgba(255, 211, 106, 0.70);
    border-radius: 15px;
    color: #070707;
    background:
        linear-gradient(135deg, var(--g-gold-2), var(--g-gold), var(--g-copper-2));
    font-weight: 950;
    box-shadow:
        0 22px 58px rgba(244, 189, 72, 0.27),
        inset 0 1px 0 rgba(255, 255, 255, 0.42);
    transition:
        transform var(--g-transition),
        box-shadow var(--g-transition);
}

.subscribe-form button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 30px 84px rgba(244, 189, 72, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.quick-links {
    max-width: 395px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.quick-links a {
    min-width: 84px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    color: rgba(242, 236, 223, 0.76);
    font-size: 0.78rem;
    font-weight: 850;
}

.quick-links a:hover {
    color: var(--g-gold);
    transform: translateY(-4px);
}

.quick-links i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(244, 189, 72, 0.34);
    border-radius: 14px;
    color: var(--g-gold);
    background: rgba(5, 5, 5, 0.48);
    font-size: 1.28rem;
}

.final-metrics {
    max-width: 420px;
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin-top: 30px;
}

.final-metrics div {
    flex: 1;
    min-height: 82px;
    padding: 12px 10px;
    text-align: center;
    border-bottom: 1px solid rgba(244, 189, 72, 0.60);
    background:
        linear-gradient(180deg, transparent, rgba(244, 189, 72, 0.055));
}

.final-metrics strong {
    direction: ltr;
    display: block;
    color: var(--g-gold);
    font-size: 1.85rem;
    font-weight: 950;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 22px rgba(244, 189, 72, 0.22);
}

.final-metrics span {
    display: block;
    color: rgba(242, 236, 223, 0.70);
    font-size: 0.74rem;
    line-height: 1.7;
}

.final-link {
    width: fit-content;
    margin-top: 30px;
    border: 1px solid rgba(244, 189, 72, 0.52);
    color: var(--g-gold);
    background: rgba(5, 5, 5, 0.50);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.final-link:hover {
    color: #070707;
    border-color: var(--g-gold);
    background: var(--g-gold);
    transform: translateY(-3px);
    box-shadow: 0 22px 62px rgba(244, 189, 72, 0.28);
}


/* =========================================================
   فوتر
   ========================================================= */

.site-footer {
    position: relative;
    z-index: 2;
    padding: 62px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    background:
        radial-gradient(circle at 78% 118%, rgba(244, 189, 72, 0.09), transparent 30%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.96), #030303);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 42px;
    margin-bottom: 36px;
}

.footer-brand-col p {
    max-width: 420px;
    margin-top: 18px;
    font-size: 0.92rem;
    line-height: 2.1;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}

.footer-title {
    margin: 0 0 18px;
    color: var(--g-white);
    font-size: 1.05rem;
    font-weight: 950;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-links a {
    width: fit-content;
    color: rgba(242, 236, 223, 0.62);
    font-size: 0.90rem;
    font-weight: 650;
}

.footer-links a:hover {
    color: var(--g-gold);
    transform: translateX(-5px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.085);
    color: rgba(242, 236, 223, 0.44);
    font-size: 0.84rem;
}


/* =========================================================
   صفحات مقاله و محتوای داخلی
   ========================================================= */

.article-page {
    padding: 130px 0 76px;
    background:
        radial-gradient(circle at 18% 12%, rgba(244, 189, 72, 0.08), transparent 30%),
        linear-gradient(180deg, #050505, #090909 52%, #050505);
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
}

.article-main {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.105);
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
        rgba(8, 8, 8, 0.55);
    box-shadow: var(--g-shadow-dark);
}

.article-hero-img {
    height: 430px;
    background: #111;
    overflow: hidden;
}

.article-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
    filter: brightness(0.78) contrast(1.12) saturate(1.08);
}

.article-content {
    padding: clamp(24px, 4vw, 46px);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    color: rgba(242, 236, 223, 0.54);
    font-size: 0.88rem;
}

.article-content h1 {
    margin: 0 0 22px;
    color: var(--g-white);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 950;
    line-height: 1.42;
    letter-spacing: -1px;
}

.article-summary {
    padding: 20px 22px;
    margin-bottom: 32px;
    border: 1px solid rgba(244, 189, 72, 0.24);
    border-radius: 20px;
    background: rgba(244, 189, 72, 0.045);
}

.article-body {
    color: rgba(242, 236, 223, 0.86);
    font-size: 1.02rem;
    line-height: 2.36;
}

.article-body h2,
.article-body h3 {
    color: var(--g-white);
    font-weight: 950;
    margin: 38px 0 14px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-sidebar {
    position: sticky;
    top: 108px;
}

.toc-card {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.105);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.016)),
        rgba(8, 8, 8, 0.55);
    box-shadow: var(--g-shadow-soft);
}

.toc-card h3 {
    margin: 0 0 18px;
    color: var(--g-gold);
    font-size: 1rem;
    font-weight: 950;
}

.toc-card li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.085);
    color: rgba(242, 236, 223, 0.62);
    font-size: 0.9rem;
}

.toc-card li:last-child {
    border-bottom: 0;
}


/* =========================================================
   فرم‌ها و اجزای بوت‌استرپ
   ========================================================= */

.form-control,
.form-select {
    min-height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.105);
    border-radius: 14px;
    color: var(--g-cream);
    background-color: rgba(255, 255, 255, 0.04);
}

.form-control:focus,
.form-select:focus {
    color: var(--g-cream);
    border-color: rgba(244, 189, 72, 0.62);
    background-color: rgba(255, 255, 255, 0.055);
    box-shadow: 0 0 0 0.25rem rgba(244, 189, 72, 0.12);
}

.form-control::placeholder {
    color: rgba(242, 236, 223, 0.42);
}

.dropdown-menu {
    border: 1px solid rgba(255, 255, 255, 0.105);
    border-radius: 16px;
    background: rgba(12, 12, 12, 0.96);
    box-shadow: var(--g-shadow-dark);
}

.dropdown-item {
    color: var(--g-cream);
}

.dropdown-item:hover {
    color: var(--g-gold);
    background: rgba(244, 189, 72, 0.09);
}

.pagination {
    gap: 8px;
}

.page-link {
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.105);
    border-radius: 12px !important;
    color: var(--g-cream);
    background: rgba(255, 255, 255, 0.04);
}

.page-link:hover,
.page-item.active .page-link {
    border-color: var(--g-gold);
    color: #050505;
    background: var(--g-gold);
}

.empty-state {
    padding: 54px 24px;
    text-align: center;
    border: 1px dashed rgba(244, 189, 72, 0.30);
    border-radius: 24px;
    background: rgba(244, 189, 72, 0.035);
}

.empty-state h3 {
    margin: 0 0 10px;
    color: var(--g-white);
    font-weight: 950;
}


/* =========================================================
   افکت‌های نرم ورود
   ========================================================= */

.hero-content,
.hero-panel,
.insight-statement,
.insight-card,
.layers-heading,
.layer-row,
.reports-board,
.process-heading,
.process-step,
.final-panel {
    animation: luxuryReveal 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-panel {
    animation-delay: 160ms;
}

.insight-card:nth-child(2),
.layer-row:nth-child(2),
.process-step:nth-child(2) {
    animation-delay: 80ms;
}

.insight-card:nth-child(3),
.layer-row:nth-child(3),
.process-step:nth-child(3) {
    animation-delay: 150ms;
}

.layer-row:nth-child(4),
.process-step:nth-child(4) {
    animation-delay: 220ms;
}

.layer-row:nth-child(5) {
    animation-delay: 290ms;
}

@keyframes luxuryReveal {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   ریسپانسیو
   ========================================================= */

@media (max-width: 1399px) {
    :root {
        --g-container: 1180px;
    }

    .poster-card {
        min-height: 405px;
    }

    .hero-content h1 {
        font-size: clamp(5.2rem, 10vw, 10.8rem);
    }
}

@media (max-width: 1199px) {
    .main-nav {
        gap: 18px;
    }

    .header-cta {
        display: none;
    }

    .hero-layout,
    .insight-layout,
    .layers-layout {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        justify-self: stretch;
        max-width: none;
    }

    .hero-panel__items {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .insight-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .poster-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-track::before {
        display: none;
    }

    .final-layout {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "subscribe about"
            "center center";
    }

    .final-center {
        min-height: 360px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }
}

@media (max-width: 991px) {
    :root {
        --g-header-height: 72px;
    }

    .gamane-container {
        width: min(100% - 30px, var(--g-container));
    }

    .navbar-shell {
        gap: 16px;
    }

    .main-nav {
        position: fixed;
        top: calc(var(--g-header-height) + 10px);
        right: 15px;
        left: 15px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.105);
        border-radius: 22px;
        background: rgba(6, 6, 6, 0.96);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        box-shadow: var(--g-shadow-dark);
    }

    .main-nav.show {
        display: flex;
    }

    .main-nav a {
        min-height: 48px;
        padding: 10px 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    }

    .main-nav a:last-child {
        border-bottom: 0;
    }

    .main-nav a::before {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .search-btn {
        display: none;
    }

    .golden-path {
        display: none;
    }

    .hero-section,
    .insight-section,
    .layers-section,
    .process-section,
    .final-section {
        min-height: auto;
        padding: 104px 0;
    }

    .hero-layout {
        gap: 34px;
    }

    .hero-content h1 {
        font-size: clamp(4.3rem, 15vw, 7.2rem);
        letter-spacing: -3px;
    }

    .hero-panel__items {
        grid-template-columns: 1fr;
    }

    .insight-cards {
        grid-template-columns: 1fr;
    }

    .insight-card {
        min-height: auto;
    }

    .layers-list::before {
        right: 36px;
    }

    .layer-row {
        grid-template-columns: 60px 54px minmax(0, 1fr);
    }

    .layer-row::after {
        right: 35px;
    }

    .layer-row__icon {
        width: 50px;
        height: 50px;
    }

    .reports-board__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .final-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "subscribe"
            "center"
            "about";
    }

    .final-center {
        min-height: 340px;
    }

    .final-panel p,
    .subscribe-form,
    .quick-links,
    .final-metrics {
        max-width: none;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .gamane-container {
        width: min(100% - 22px, var(--g-container));
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }

    .brand-title strong {
        font-size: 1.18rem;
    }

    .brand-title span {
        font-size: 0.66rem;
    }

    .hero-section {
        padding-top: 112px;
    }

    .section-bg img {
        transform: scale(1.04);
    }

    .hero-content h2,
    .insight-statement h2,
    .layers-heading h2,
    .process-heading h2,
    .reports-title h2,
    .final-title h2 {
        letter-spacing: -0.6px;
    }

    .hero-content p,
    .insight-statement p,
    .layers-heading p,
    .process-heading p {
        font-size: 0.92rem;
        line-height: 2.12;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .btn-primary-lux,
    .btn-secondary-lux {
        width: 100%;
    }

    .hero-panel {
        padding: 16px;
        border-radius: 22px;
    }

    .hero-panel-card {
        min-height: 82px;
        grid-template-columns: 48px 1fr;
        padding: 12px;
    }

    .hero-panel-card i {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 1.28rem;
    }

    .scroll-indicator {
        display: none;
    }

    .insight-section,
    .layers-section,
    .reports-section,
    .process-section,
    .final-section {
        padding: 78px 0;
    }

    .section-eyebrow {
        font-size: 0.82rem;
    }

    .section-eyebrow::before {
        width: 30px;
    }

    .layer-row {
        min-height: 92px;
        grid-template-columns: 50px 44px minmax(0, 1fr);
        gap: 12px;
        padding: 13px;
        border-radius: 18px;
    }

    .layers-list::before,
    .layer-row::after {
        display: none;
    }

    .layer-row__icon {
        width: 44px;
        height: 44px;
        border-radius: 13px;
        font-size: 1.12rem;
    }

    .layer-row__number {
        font-size: 1.1rem;
    }

    .layer-row__content strong {
        font-size: 0.98rem;
    }

    .reports-board {
        padding: 18px;
        border-radius: 24px;
    }

    .poster-grid,
    .process-track {
        grid-template-columns: 1fr;
    }

    .poster-card {
        min-height: 370px;
        border-radius: 22px;
    }

    .poster-card__content {
        padding: 92px 18px 18px;
    }

    .poster-card h3 {
        min-height: auto;
    }

    .process-step {
        min-height: auto;
    }

    .final-center {
        min-height: 260px;
    }

    .quick-links {
        flex-direction: column;
        align-items: stretch;
    }

    .quick-links a {
        min-height: 52px;
        flex-direction: row;
        justify-content: flex-start;
        padding: 8px 0;
    }

    .final-metrics {
        flex-direction: column;
    }

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

    .article-page {
        padding: 100px 0 56px;
    }

    .article-hero-img {
        height: 260px;
    }

    .article-content {
        padding: 24px 18px;
    }
}

@media (max-width: 480px) {
    .gamane-container {
        width: min(100% - 18px, var(--g-container));
    }

    .hero-content h1 {
        font-size: 4.2rem;
    }

    .hero-content h2 {
        font-size: 1.48rem;
    }

    .insight-statement h2,
    .layers-heading h2,
    .process-heading h2,
    .final-title h2 {
        font-size: 2rem;
    }

    .reports-title h2 {
        font-size: 1.75rem;
    }

    .poster-card__serial strong {
        font-size: 2.05rem;
    }

    .btn-primary-lux,
    .btn-secondary-lux,
    .reports-more,
    .final-link {
        min-height: 50px;
        padding: 11px 18px;
        font-size: 0.88rem;
    }
}


/* =========================================================
   کاهش حرکت برای دسترسی‌پذیری
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .brand-mark::before,
    .scroll-indicator i {
        animation: none !important;
    }
}


/* =========================================================
   حالت چاپ
   ========================================================= */

@media print {
    body {
        color: #000;
        background: #fff;
    }

    .site-header,
    .site-footer,
    .golden-path,
    .section-bg,
    .section-overlay,
    .section-noise,
    .section-fade,
    .scroll-indicator,
    .hero-panel,
    .quick-links,
    .subscribe-form {
        display: none !important;
    }

    .cinematic-section {
        min-height: auto;
        padding: 24px 0;
        background: #fff;
    }

    .hero-content h1,
    .hero-content h2,
    .insight-statement h2,
    .layers-heading h2,
    .process-heading h2,
    .reports-title h2,
    .final-title h2,
    .poster-card h3,
    .process-step h3 {
        color: #000;
        text-shadow: none;
    }

    p {
        color: #222;
    }
}

/* =========================================================
   Mine Layers | Image-map Luxury Override
   تصویر خودش هولدر متن‌هاست؛ بدون کارت، بدون باکس قابل مشاهده
   ========================================================= */

.layers-image-section {
    min-height: 0;
    height: auto;
    aspect-ratio: 1920 / 1605;
    padding: 0;
    display: block;
    overflow: hidden;
    background: #030303;
}

.layers-image-section .section-bg {
    inset: 0;
}

.layers-image-section .section-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: none;
    filter:
        brightness(1.12)
        contrast(1.08)
        saturate(1.10);
}

.layers-image-section .section-overlay--layers {
    background:
        radial-gradient(
            circle at 72% 24%,
            rgba(244, 189, 72, 0.08),
            transparent 28%
        ),
        linear-gradient(
            90deg,
            rgba(3, 3, 3, 0.30) 0%,
            rgba(3, 3, 3, 0.12) 28%,
            rgba(3, 3, 3, 0.04) 52%,
            rgba(3, 3, 3, 0.18) 78%,
            rgba(3, 3, 3, 0.34) 100%
        ),
        linear-gradient(
            180deg,
            rgba(3, 3, 3, 0.26) 0%,
            rgba(3, 3, 3, 0.02) 42%,
            rgba(3, 3, 3, 0.38) 100%
        );
}

.layers-image-section .section-noise {
    opacity: 0.045;
}

.layers-image-section .section-fade {
    height: 150px;
}

.layers-image-section .section-fade--top {
    background:
        linear-gradient(
            180deg,
            rgba(3, 3, 3, 0.44) 0%,
            rgba(3, 3, 3, 0.12) 48%,
            transparent 100%
        );
}

.layers-image-section .section-fade--bottom {
    background:
        linear-gradient(
            0deg,
            rgba(3, 3, 3, 0.70) 0%,
            rgba(3, 3, 3, 0.20) 52%,
            transparent 100%
        );
}


/* -------------------------
   Image Map Container
------------------------- */

.layers-image-map {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}

.layers-map-title {
    position: absolute;
    top: 6.4%;
    right: clamp(28px, 6.5vw, 128px);
    z-index: 5;
    width: min(620px, 44vw);
    direction: rtl;
    text-align: right;
    pointer-events: auto;
}

.layers-map-title .section-eyebrow {
    margin-bottom: 12px;
    color: rgba(244, 189, 72, 0.92);
    text-shadow:
        0 8px 28px rgba(0, 0, 0, 0.88),
        0 0 24px rgba(244, 189, 72, 0.22);
}

.layers-map-title h2 {
    margin: 0;
    color: rgba(255, 255, 255, 0.96);
    font-size: clamp(2.1rem, 3.5vw, 4.6rem);
    font-weight: 950;
    line-height: 1.18;
    letter-spacing: -1.2px;
    text-shadow:
        0 18px 54px rgba(0, 0, 0, 0.96),
        0 0 26px rgba(244, 189, 72, 0.10);
}


/* -------------------------
   Invisible Hover Rows
------------------------- */

.layers-hotspots {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}

.layer-hotspot {
    --strip-height: clamp(104px, 9.2vw, 176px);

    position: absolute;
    right: 0;
    left: 36%;
    top: var(--spot-y);
    min-height: var(--strip-height);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(18px, 2.2vw, 38px);
    padding: 0 clamp(30px, 7vw, 138px) 0 clamp(20px, 3vw, 54px);
    direction: rtl;
    text-align: right;
    color: var(--g-cream);
    border: 0;
    background: transparent;
    transform: translateY(-50%);
    pointer-events: auto;
    isolation: isolate;
    overflow: hidden;
}

.layer-hotspot--01 {
    --spot-y: 20.2%;
}

.layer-hotspot--02 {
    --spot-y: 38.9%;
}

.layer-hotspot--03 {
    --spot-y: 56.6%;
}

.layer-hotspot--04 {
    --spot-y: 73.8%;
}

.layer-hotspot--05 {
    --spot-y: 88.2%;
}

.layer-hotspot::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0;
    background:
        linear-gradient(
            to left,
            rgba(244, 189, 72, 0.30) 0%,
            rgba(244, 189, 72, 0.15) 34%,
            rgba(244, 189, 72, 0.055) 64%,
            transparent 100%
        );
    mix-blend-mode: screen;
    transition:
        opacity 280ms ease,
        transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
    transform: scaleX(0.88);
    transform-origin: right center;
}

.layer-hotspot::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    z-index: -1;
    height: 1px;
    opacity: 0;
    background:
        linear-gradient(
            to left,
            rgba(255, 211, 106, 0.95),
            rgba(244, 189, 72, 0.36) 44%,
            transparent 100%
        );
    box-shadow:
        0 0 16px rgba(244, 189, 72, 0.75),
        0 0 42px rgba(244, 189, 72, 0.22);
    transition:
        opacity 260ms ease,
        transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
    transform: scaleX(0.68);
    transform-origin: right center;
}

.layer-hotspot:hover,
.layer-hotspot:focus-visible {
    color: #ffffff;
}

.layer-hotspot:hover::before,
.layer-hotspot:focus-visible::before {
    opacity: 1;
    transform: scaleX(1);
}

.layer-hotspot:hover::after,
.layer-hotspot:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.layer-hotspot__number {
    direction: ltr;
    min-width: clamp(54px, 5vw, 92px);
    color: rgba(244, 189, 72, 0.76);
    font-family: var(--g-font-number);
    font-size: clamp(2.3rem, 3.6vw, 5.2rem);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -2px;
    text-shadow:
        0 10px 34px rgba(0, 0, 0, 0.86),
        0 0 28px rgba(244, 189, 72, 0.20);
    transition:
        color 260ms ease,
        text-shadow 260ms ease,
        transform 260ms ease;
}

.layer-hotspot__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(4px, 0.6vw, 10px);
    min-width: 0;
}

.layer-hotspot__content small {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(242, 236, 223, 0.64);
    font-size: clamp(0.86rem, 1vw, 1.15rem);
    font-weight: 850;
    line-height: 1.2;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.94);
    transition:
        color 260ms ease,
        transform 260ms ease;
}

.layer-hotspot__content small::before {
    content: "";
    width: clamp(22px, 2.6vw, 46px);
    height: 2px;
    border-radius: 999px;
    background:
        linear-gradient(
            to left,
            rgba(244, 189, 72, 0.95),
            rgba(244, 189, 72, 0.16)
        );
    box-shadow: 0 0 18px rgba(244, 189, 72, 0.32);
}

.layer-hotspot__content strong {
    display: block;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(1.75rem, 2.55vw, 3.85rem);
    font-weight: 950;
    line-height: 1.25;
    letter-spacing: -1.2px;
    white-space: nowrap;
    text-shadow:
        0 14px 42px rgba(0, 0, 0, 0.96),
        0 0 24px rgba(244, 189, 72, 0.08);
    transition:
        color 260ms ease,
        text-shadow 260ms ease,
        transform 260ms ease;
}

.layer-hotspot:hover .layer-hotspot__number,
.layer-hotspot:focus-visible .layer-hotspot__number {
    color: var(--g-gold-2);
    text-shadow:
        0 12px 38px rgba(0, 0, 0, 0.92),
        0 0 32px rgba(244, 189, 72, 0.56);
    transform: translateX(-6px);
}

.layer-hotspot:hover .layer-hotspot__content small,
.layer-hotspot:focus-visible .layer-hotspot__content small {
    color: rgba(255, 211, 106, 0.90);
    transform: translateX(-5px);
}

.layer-hotspot:hover .layer-hotspot__content strong,
.layer-hotspot:focus-visible .layer-hotspot__content strong {
    color: #ffffff;
    text-shadow:
        0 16px 44px rgba(0, 0, 0, 0.94),
        0 0 30px rgba(244, 189, 72, 0.24);
    transform: translateX(-5px);
}


/* -------------------------
   Responsive Layer Image Map
------------------------- */

@media (max-width: 1399px) {
    .layer-hotspot {
        left: 34%;
        padding-right: clamp(28px, 6vw, 96px);
    }

    .layers-map-title {
        right: clamp(24px, 5.5vw, 96px);
    }
}

@media (max-width: 1199px) {
    .layers-image-section {
        aspect-ratio: 1440 / 1320;
    }

    .layers-image-section .section-bg img {
        object-position: 42% center;
    }

    .layers-map-title {
        width: min(560px, 54vw);
    }

    .layer-hotspot {
        left: 28%;
        min-height: clamp(96px, 10vw, 146px);
    }

    .layer-hotspot__content strong {
        font-size: clamp(1.45rem, 2.7vw, 3rem);
    }
}

@media (max-width: 991px) {
    .layers-image-section {
        aspect-ratio: auto;
        min-height: 980px;
    }

    .layers-image-section .section-bg img {
        object-fit: cover;
        object-position: 34% center;
        filter:
            brightness(0.98)
            contrast(1.08)
            saturate(1.08);
    }

    .layers-image-section .section-overlay--layers {
        background:
            linear-gradient(
                90deg,
                rgba(3, 3, 3, 0.66) 0%,
                rgba(3, 3, 3, 0.34) 42%,
                rgba(3, 3, 3, 0.76) 100%
            ),
            linear-gradient(
                180deg,
                rgba(3, 3, 3, 0.40) 0%,
                rgba(3, 3, 3, 0.16) 42%,
                rgba(3, 3, 3, 0.70) 100%
            );
    }

    .layers-map-title {
        top: 8%;
        right: 24px;
        left: 24px;
        width: auto;
    }

    .layers-map-title h2 {
        font-size: clamp(2rem, 7vw, 3.6rem);
    }

    .layer-hotspot {
        left: 0;
        right: 0;
        min-height: 108px;
        padding-right: 24px;
        padding-left: 24px;
        background: rgba(0, 0, 0, 0.08);
    }

    .layer-hotspot--01 {
        --spot-y: 30%;
    }

    .layer-hotspot--02 {
        --spot-y: 43%;
    }

    .layer-hotspot--03 {
        --spot-y: 56%;
    }

    .layer-hotspot--04 {
        --spot-y: 69%;
    }

    .layer-hotspot--05 {
        --spot-y: 82%;
    }

    .layer-hotspot__number {
        min-width: 60px;
        font-size: clamp(2rem, 7vw, 3.6rem);
    }

    .layer-hotspot__content strong {
        font-size: clamp(1.28rem, 4.5vw, 2.2rem);
        white-space: normal;
    }
}

@media (max-width: 767px) {
    .layers-image-section {
        min-height: 900px;
    }

    .layers-map-title {
        top: 7%;
        right: 18px;
        left: 18px;
    }

    .layers-map-title .section-eyebrow {
        margin-bottom: 8px;
    }

    .layers-map-title h2 {
        font-size: 2.1rem;
        line-height: 1.28;
    }

    .layer-hotspot {
        min-height: 98px;
        gap: 14px;
        padding-right: 18px;
        padding-left: 18px;
    }

    .layer-hotspot::before {
        background:
            linear-gradient(
                to left,
                rgba(244, 189, 72, 0.22) 0%,
                rgba(244, 189, 72, 0.08) 52%,
                transparent 100%
            );
    }

    .layer-hotspot__number {
        min-width: 48px;
        font-size: 2.05rem;
        letter-spacing: -1px;
    }

    .layer-hotspot__content small {
        font-size: 0.78rem;
    }

    .layer-hotspot__content small::before {
        width: 24px;
    }

    .layer-hotspot__content strong {
        font-size: 1.2rem;
        line-height: 1.45;
    }
}

@media (max-width: 480px) {
    .layers-image-section {
        min-height: 820px;
    }

    .layers-image-section .section-bg img {
        object-position: 30% center;
    }

    .layers-map-title h2 {
        font-size: 1.75rem;
    }

    .layer-hotspot {
        min-height: 88px;
    }

    .layer-hotspot__number {
        min-width: 42px;
        font-size: 1.72rem;
    }

    .layer-hotspot__content strong {
        font-size: 1.04rem;
    }
}

/* =========================================================
   Mine Layers | Vertical Alignment Fix
   عنوان بزرگ حذف شده و آیتم‌ها با خطوط تصویر هماهنگ می‌شوند
   ========================================================= */

.layers-map-title--compact {
    top: 5.2%;
    right: clamp(24px, 6.5vw, 128px);
    width: auto;
    max-width: 520px;
}

.layers-map-title--compact .section-eyebrow {
    margin-bottom: 0;
    padding: 10px 18px;
    border: 1px solid rgba(244, 189, 72, 0.28);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.layers-map-title--compact h2 {
    display: none;
}


/* جای‌گذاری جدید ردیف‌ها؛ همه یک پله بالاتر */

.layer-hotspot--01 {
    --spot-y: 17.2%;
}

.layer-hotspot--02 {
    --spot-y: 35.8%;
}

.layer-hotspot--03 {
    --spot-y: 53.7%;
}

.layer-hotspot--04 {
    --spot-y: 71.2%;
}

.layer-hotspot--05 {
    --spot-y: 86.1%;
}

/* =========================================================
   تنظیم سایز فونت‌ها - نسخه جمع‌وجورتر
   ========================================================= */

/* عنوان اصلی هیرو */
.hero-content h1 {
    font-size: clamp(4.2rem, 8vw, 8.8rem);
    letter-spacing: -5px;
}

/* زیرعنوان هیرو */
.hero-content h2 {
    font-size: clamp(1.3rem, 2.4vw, 2.65rem);
    line-height: 1.45;
}

/* h2 سکشن‌ها */
.insight-statement h2 {
    font-size: clamp(1.75rem, 3.2vw, 3.45rem);
}

.layers-heading h2 {
    font-size: clamp(1.7rem, 3vw, 3.2rem);
}

.process-heading h2 {
    font-size: clamp(1.7rem, 3vw, 3.25rem);
}

.reports-title h2 {
    font-size: clamp(1.55rem, 2.5vw, 2.65rem);
}

.final-title h2 {
    font-size: clamp(1.55rem, 2.5vw, 2.65rem);
}

/* متن توضیحات سکشن‌ها */
.hero-content p,
.insight-statement p,
.layers-heading p,
.process-heading p,
.reports-title p,
.final-panel p {
    font-size: 0.92rem;
    line-height: 2.05;
}

/* عنوان کارت‌ها */
.insight-card h3,
.process-step h3,
.poster-card h3 {
    font-size: 1rem;
}

/* متن کارت‌ها */
.insight-card p,
.process-step p,
.poster-card p {
    font-size: 0.78rem;
    line-height: 1.9;
}

/* ابرو/لیبل بالای عنوان‌ها */
.section-eyebrow {
    font-size: 0.82rem;
}
