@font-face {
    font-family: Vazir;
    src: url(/assets/global/fonts/vazir/Vazir-Regular.eot);
    src: url('/assets/global/fonts/vazir/Vazir-Regular.eot?#iefix') format('embedded-opentype'), url(/assets/global/fonts/vazir/Vazir-Regular.woff2) format('woff2'), url(/assets/global/fonts/vazir/Vazir-Regular.woff) format('woff'), url(/assets/global/fonts/vazir/Vazir-Regular.ttf) format('truetype');
    font-weight: 400;
    font-display: swap
}

@font-face {
    font-family: Vazir;
    src: url(/assets/global/fonts/vazir/Vazir-Bold.eot);
    src: url('/assets/global/fonts/vazir/Vazir-Bold.eot?#iefix') format('embedded-opentype'), url(/assets/global/fonts/vazir/Vazir-Bold.woff2) format('woff2'), url(/assets/global/fonts/vazir/Vazir-Bold.woff) format('woff'), url(/assets/global/fonts/vazir/Vazir-Bold.ttf) format('truetype');
    font-weight: 700;
    font-display: swap
}

@font-face {
    font-family: Vazir;
    src: url(/assets/global/fonts/vazir/Vazir-Thin.eot);
    src: url('/assets/global/fonts/vazir/Vazir-Thin.eot?#iefix') format('embedded-opentype'), url(/assets/global/fonts/vazir/Vazir-Thin.woff2) format('woff2'), url(/assets/global/fonts/vazir/Vazir-Thin.woff) format('woff'), url(/assets/global/fonts/vazir/Vazir-Thin.ttf) format('truetype');
    font-weight: 100;
    font-display: swap
}

@font-face {
    font-family: Vazir;
    src: url(/assets/global/fonts/vazir/Vazir-Light.eot);
    src: url('/assets/global/fonts/vazir/Vazir-Light.eot?#iefix') format('embedded-opentype'), url(/assets/global/fonts/vazir/Vazir-Light.woff2) format('woff2'), url(/assets/global/fonts/vazir/Vazir-Light.woff) format('woff'), url(/assets/global/fonts/vazir/Vazir-Light.ttf) format('truetype');
    font-weight: 300;
    font-display: swap
}

@font-face {
    font-family: Vazir;
    src: url(/assets/global/fonts/vazir/Vazir-Medium.eot);
    src: url('/assets/global/fonts/vazir/Vazir-Medium.eot?#iefix') format('embedded-opentype'), url(/assets/global/fonts/vazir/Vazir-Medium.woff2) format('woff2'), url(/assets/global/fonts/vazir/Vazir-Medium.woff) format('woff'), url(/assets/global/fonts/vazir/Vazir-Medium.ttf) format('truetype');
    font-weight: 500;
    font-display: swap
}

@font-face {
    font-family: Vazir;
    src: url(/assets/global/fonts/vazir/Vazir-Black.eot);
    src: url('/assets/global/fonts/vazir/Vazir-Black.eot?#iefix') format('embedded-opentype'), url(/assets/global/fonts/vazir/Vazir-Black.woff2) format('woff2'), url(/assets/global/fonts/vazir/Vazir-Black.woff) format('woff'), url(/assets/global/fonts/vazir/Vazir-Black.ttf) format('truetype');
    font-weight: 900;
    font-display: swap
}

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

:root {
    --g: #1b7a4a;
    --g-mid: #2da063;
    --g-light: #e6f4ed;
    --g-dark: #0e5232;
    --g-xlight: #f2faf6;
    --gray-50: #f8f8f6;
    --gray-100: #eeede8;
    --gray-200: #dddcd5;
    --gray-400: #9c9b94;
    --gray-600: #5a5955;
    --gray-800: #2e2e2b;
    --white: #ffffff;
    --txt: #1a1a18;
    --txt-muted: #6a6a65;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --shadow-card: 0 2px 20px rgb(0 0 0 / .06)
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Vazir', sans-serif;
    background: var(--white);
    color: var(--txt);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden
}

.nav {
    top: 0;
    z-index: 200;
    background: rgb(255 255 255 / .95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-100);
    padding: 0 40px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow .3s
}

.nav.scrolled {
    box-shadow: 0 2px 24px rgb(0 0 0 / .07)
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none
}

.nav-logo img, .nav-logo svg {
    height: 36px;
    width: auto;
    display: block
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--txt-muted);
    text-decoration: none;
    transition: color .18s;
    position: relative
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--g);
    border-radius: 2px;
    transition: width .22s ease
}

.nav-links a:hover {
    color: var(--g)
}

.nav-links a:hover::after {
    width: 100%
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px
}

.nav-cta {
    background: var(--g);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: 'Vazir', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s, transform .14s, box-shadow .18s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    position: relative;
    overflow: hidden
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(255 255 255 / .15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .2s
}

.nav-cta:hover {
    background: var(--g-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgb(27 122 74 / .3)
}

.nav-cta:hover::before {
    opacity: 1
}

.nav-cta-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7fffc4;
    flex-shrink: 0;
    animation: ctaPulse 2.2s infinite
}

@keyframes ctaPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgb(127 255 196 / .5)
    }
    50% {
        opacity: .7;
        transform: scale(.85);
        box-shadow: 0 0 0 4px #fff0
    }
}

.hero {
    min-height: calc(100svh - 64px);
    background: var(--gray-50);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    padding: 72px 64px;
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgb(27 122 74 / .06) 0%, transparent 70%);
    pointer-events: none
}

.hero-left,
.hero-right {
    position: relative;
    z-index: 1
}

.hero-right {
    width: 100%
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--g-light);
    color: var(--g-dark);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1px solid rgb(27 122 74 / .2)
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--g);
    animation: pulse 2s infinite
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .5;
        transform: scale(.85)
    }
}

.hero h1 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.2;
    color: var(--txt);
    letter-spacing: -.8px;
    margin-bottom: 12px
}

.hero h1 .accent {
    color: var(--g);
    position: relative
}

.hero-sub {
    font-size: 16px;
    color: var(--txt-muted);
    max-width: 420px;
    line-height: 1.75
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn-primary,
.btn-ghost,
.btn-white,
.sticky-cta-btn {
    font-family: 'Vazir', sans-serif;
    cursor: pointer;
    text-decoration: none
}

.btn-primary {
    background: var(--g);
    color: #fff;
    border: none;
    padding: 15px 36px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 700;
    transition: all .18s;
    display: inline-block
}

.btn-primary:hover {
    background: var(--g-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(27 122 74 / .25)
}

.btn-ghost {
    background: #fff0;
    color: var(--g);
    border: 1.5px solid var(--g);
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 500;
    transition: all .18s
}

.btn-ghost:hover {
    background: var(--g-light)
}

.chart-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 24px 24px 20px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    contain: layout
}

.chart-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(27 122 74 / .07) 0%, transparent 70%);
    pointer-events: none
}

.chart-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 10px
}

.chart-badge-small,
.chart-badge-sm {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--g-light);
    color: var(--g-dark);
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 5px;
    letter-spacing: .2px
}

.chart-badge-small::before,
.chart-badge-sm::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--g);
    animation: pulse 2s infinite
}

.chart-main-title,
.chart-title-main {
    font-size: 13px;
    font-weight: 700;
    color: var(--txt);
    line-height: 1.3
}

.chart-main-subtitle,
.chart-title-sub {
    font-size: 11px;
    color: var(--txt-muted);
    margin-top: 2px
}

.chart-return-block {
    text-align: left;
    flex-shrink: 0
}

.chart-return-num,
.chart-big-num {
    font-size: 40px;
    font-weight: 900;
    color: var(--g);
    line-height: 1;
    letter-spacing: -1.5px;
    direction: ltr;
    text-align: left
}

.chart-return-label,
.chart-big-label {
    font-size: 10px;
    color: var(--txt-muted);
    text-align: left;
    margin-top: 3px
}

.chart-svg-wrap,
.chart-svg-canvas {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 14px
}

.chart-svg,
.chart-svg-canvas svg {
    width: 100%;
    height: 100%;
    overflow: visible
}

.chart-grid-line {
    stroke: var(--gray-100);
    stroke-width: 1
}

.chart-grid-label {
    fill: var(--txt-muted);
    font-size: 9px;
    font-family: 'Vazir', sans-serif
}

.line-exir,
.line-bourse,
.line-avg,
.line-path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round
}

.line-exir {
    stroke: var(--g);
    stroke-width: 2.5;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2s cubic-bezier(.4, 0, .2, 1)
}

.line-bourse {
    stroke: #6aab85;
    stroke-width: 1.8;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2.2s cubic-bezier(.4, 0, .2, 1) .2s
}

.line-avg {
    stroke: var(--gray-400);
    stroke-width: 1.5;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2.4s cubic-bezier(.4, 0, .2, 1) .4s
}

.line-path {
    stroke-width: 2.5;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    transition: stroke-dashoffset 1.4s cubic-bezier(.4, 0, .2, 1)
}

.line-path.draw {
    stroke-dashoffset: 0
}

.area-exir,
.area-path {
    opacity: 0
}

.area-exir {
    transition: opacity .8s ease 1.8s
}

.area-path {
    transition: opacity .5s ease
}

.area-path.show {
    opacity: 1
}

.chart-dot,
.chart-dot-b,
.chart-dot-c {
    stroke: var(--white);
    stroke-width: 2;
    opacity: 0
}

.chart-dot {
    r: 5;
    fill: var(--g);
    transition: opacity .3s ease 2s
}

.chart-dot-b {
    r: 4;
    fill: #6aab85;
    transition: opacity .3s ease 2.2s
}

.chart-dot-c {
    r: 3.5;
    fill: var(--gray-400);
    transition: opacity .3s ease 2.4s
}

.chart-endlabel,
.chart-end-tag {
    opacity: 0
}

.chart-endlabel {
    transition: opacity .4s ease 2.2s
}

.chart-end-tag {
    transition: opacity .3s ease .8s
}

.chart-end-tag.show {
    opacity: 1
}

.chart-endlabel rect {
    fill: var(--g);
    rx: 5
}

.chart-endlabel text {
    fill: #fff;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Vazir', sans-serif
}

.chart-legend {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
    flex-wrap: wrap
}

.chart-legend-item,
.legend-item {
    display: flex;
    align-items: center;
    gap: 6px
}

.chart-legend-line {
    width: 22px;
    height: 3px;
    border-radius: 2px;
    flex-shrink: 0
}

.legend-swatch {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    flex-shrink: 0
}

.chart-legend-name,
.legend-name {
    font-size: 11px;
    color: var(--txt-muted)
}

.chart-legend-val {
    font-size: 13px;
    font-weight: 800;
    color: var(--txt);
    margin-right: 2px
}

.chart-legend-val.green {
    color: var(--g)
}

.chart-stat-pills,
.stat-pills {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap
}

.chart-pill,
.stat-pill {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    padding: 7px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 60px
}

.stat-pill {
    gap: 0;
    cursor: default;
    transition: border-color .18s, transform .18s, box-shadow .18s
}

.stat-pill:first-child {
    border-color: rgb(27 122 74 / .3);
    background: var(--g-xlight)
}

.stat-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(0 0 0 / .07)
}

.chart-pill-num,
.pill-num {
    font-size: 16px;
    font-weight: 900;
    color: var(--txt);
    line-height: 1
}

.chart-pill-num.green,
.pill-num.green {
    color: var(--g)
}

.pill-delta {
    font-size: 9px;
    font-weight: 600;
    color: var(--g);
    margin-top: 1px;
    background: var(--g-light);
    border-radius: 4px;
    padding: 1px 5px
}

.chart-pill-label,
.pill-label {
    font-size: 9px;
    color: var(--txt-muted);
    margin-top: 3px;
    text-align: center;
    line-height: 1.3
}

.chart-month-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 4px;
    margin-top: -8px;
    margin-bottom: 12px
}

.chart-month-label {
    font-size: 9px;
    color: var(--txt-muted);
    text-align: center;
    flex: 1;
    line-height: 1
}

.chart-month-label.first {
    text-align: right
}

.chart-month-label.last {
    text-align: left
}

.bar-rect {
    transform-origin: bottom;
    transform: scaleY(0);
    transition: transform 0s
}

.chart-crosshair {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgb(27 122 74 / .2);
    pointer-events: none;
    opacity: 0;
    transition: opacity .12s
}

.chart-crosshair.show {
    opacity: 1
}

.chart-hover-panel {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 10px;
    padding: 10px 14px;
    box-shadow: 0 6px 24px rgb(0 0 0 / .1);
    font-size: 11px;
    min-width: 148px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .15s;
    z-index: 20;
    top: 0
}

.chart-hover-panel.show {
    opacity: 1
}

.hover-month {
    font-weight: 700;
    color: var(--txt);
    margin-bottom: 7px;
    font-size: 12px
}

.hover-row {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 4px
}

.hover-dot {
    width: 9px;
    height: 9px;
    border-radius: 2px;
    flex-shrink: 0
}

.hover-name {
    color: var(--txt-muted);
    flex: 1;
    font-size: 10.5px
}

.hover-val {
    font-weight: 800;
    color: var(--txt);
    font-size: 11.5px
}

.hover-val.accent {
    color: var(--g)
}

.section {
    padding: 80px 64px
}

.section-alt {
    background: var(--gray-50)
}

.section-head {
    text-align: center;
    margin-bottom: 56px
}

.section-head h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 900;
    color: var(--txt);
    letter-spacing: -.4px;
    margin-bottom: 10px
}

.section-head p {
    font-size: 15px;
    color: var(--txt-muted);
    max-width: 480px;
    margin: 0 auto
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.why-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    transition: border-color .2s, transform .2s
}

.why-card:hover {
    border-color: var(--g);
    transform: translateY(-3px)
}

.why-icon {
    width: 48px;
    height: 48px;
    background: var(--g-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px
}

.why-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--g);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.why-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--txt);
    margin-bottom: 10px
}

.why-card p {
    font-size: 13px;
    color: var(--txt-muted);
    line-height: 1.75
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative
}

.steps-row::before {
    content: '';
    position: absolute;
    top: 28px;
    right: calc(12.5% + 24px);
    left: calc(12.5% + 24px);
    height: 2px;
    background: repeating-linear-gradient(to left, var(--g) 0, var(--g) 6px, transparent 6px, transparent 14px);
    z-index: 0
}

.step-item {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1
}

.step-circle {
    width: 56px;
    height: 56px;
    background: var(--g);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgb(27 122 74 / .3)
}

.step-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--txt);
    margin-bottom: 6px
}

.step-item p {
    font-size: 12px;
    color: var(--txt-muted)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px
}

.stat-cell {
    background: var(--white);
    padding: 40px 32px;
    text-align: center
}

.stat-num {
    font-size: 38px;
    font-weight: 900;
    color: var(--g);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px
}

.stat-label {
    font-size: 13px;
    color: var(--txt-muted);
    line-height: 1.5
}

.nav-fund-badge {
    background: var(--g-light);
    border: 1px solid rgb(27 122 74 / .2);
    border-radius: var(--radius-lg);
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap
}

.fund-info-item {
    text-align: center
}

.fund-info-label {
    font-size: 11px;
    color: var(--g-dark);
    font-weight: 500;
    margin-bottom: 4px
}

.fund-info-val {
    font-size: 20px;
    font-weight: 900;
    color: var(--g)
}

.fund-info-divider {
    width: 1px;
    height: 36px;
    background: rgb(27 122 74 / .2)
}

.faq-wrap {
    max-width: 680px;
    margin: 0 auto
}

.faq-item {
    border-bottom: 1px solid var(--gray-100)
}

.faq-q {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--txt);
    cursor: pointer;
    user-select: none;
    gap: 16px
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, transform .25s;
    font-size: 16px;
    color: var(--g);
    font-weight: 300
}

.faq-item.open .faq-icon {
    background: var(--g-light);
    transform: rotate(45deg)
}

.faq-a {
    font-size: 13px;
    color: var(--txt-muted);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s;
    line-height: 1.8
}

.faq-item.open .faq-a {
    max-height: 240px;
    padding-bottom: 20px
}

.cta-band {
    background: var(--g);
    padding: 80px 64px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-band::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgb(255 255 255 / .08) 0%, transparent 70%);
    pointer-events: none
}

.cta-band h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.5px;
    margin-bottom: 12px
}

.cta-band p {
    font-size: 16px;
    color: rgb(255 255 255 / .75);
    margin-bottom: 32px
}

.btn-white {
    background: #fff;
    color: var(--g);
    border: none;
    padding: 16px 48px;
    border-radius: var(--radius-sm);
    font-size: 17px;
    font-weight: 700;
    transition: all .18s;
    display: inline-block
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgb(0 0 0 / .2)
}

.footer {
    padding: 28px 64px;
    border-top: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap
}

.footer-brand {
    font-size: 14px;
    font-weight: 700;
    color: var(--g)
}

.footer-disc {
    font-size: 11px;
    color: var(--txt-muted);
    max-width: 420px;
    text-align: center;
    line-height: 1.6
}

.footer-link {
    font-size: 13px;
    color: var(--g);
    text-decoration: none
}

.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: rgb(255 255 255 / .63);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--gray-100);
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transform: translateY(100%);
    transition: transform .45s cubic-bezier(.34, 1.56, .64, 1);
    box-shadow: 0 -4px 32px rgb(0 0 0 / .08)
}

.sticky-cta-bar.visible {
    transform: translateY(0)
}

.sticky-cta-text {
    display: flex;
    flex-direction: column
}

.sticky-cta-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--txt);
    line-height: 1.2
}

.sticky-cta-sub {
    font-size: 12px;
    color: var(--txt-muted);
    margin-top: 2px
}

.sticky-cta-btn {
    background: var(--g);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: background .18s, transform .14s, box-shadow .18s;
    position: relative;
    overflow: hidden
}

.sticky-cta-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(255 255 255 / .15), transparent);
    opacity: 0;
    transition: opacity .2s
}

.sticky-cta-btn:hover {
    background: var(--g-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgb(27 122 74 / .35)
}

.sticky-cta-btn:hover::after {
    opacity: 1
}

.sticky-cta-arrow {
    transition: transform .2s;
    display: inline-block
}

.sticky-cta-btn:hover .sticky-cta-arrow {
    transform: translateX(-3px)
}

.container {
    width: 100%
}

.pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    box-shadow: 0 0 0 0 rgb(27 122 74 / .5);
    animation: btn-pulse 2.2s infinite;
    pointer-events: none
}

@keyframes btn-pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(27 122 74 / .45)
    }
    70%, 100% {
        box-shadow: 0 0 0 14px #fff0
    }
}

.heartbeat2 {
    animation: 1s infinite heartbeat2;
    transform: scale(.9) translateY(1%)
}

@keyframes heartbeat2 {
    20% {
        transform: scale(1) translateY(1%)
    }
}

.desktop-only {
    display: block
}

.mobile-only {
    display: none
}

.site-footer {
    width: 100%;
    background: #eee;
    padding: 28px 0
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center
}

.footer-logo svg {
    height: 60px
}

.footer-text {
    font-size: 16px;
    line-height: 1.9;
    color: #333
}

.footer-text .phone {
    font-weight: 700
}

@media (min-width: 1024px) {
    .hero-right {
        width: 75%
    }

    #why, .steps-row {
        width: 70%;
        margin: 0 auto
    }
}

@media (max-width: 900px) {
    .nav {
        padding: 0 20px
    }

    .nav-links {
        display: none
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 32px 16px 44px;
        gap: 32px;
        min-height: unset
    }

    .hero::before {
        width: 200px;
        height: 200px;
        top: -40px;
        left: -40px
    }

    .hero h1 {
        font-size: 30px
    }

    .hero-sub {
        font-size: 14px
    }

    .chart-card {
        padding: 16px 14px 14px
    }

    .chart-return-num,
    .chart-big-num {
        font-size: 32px
    }

    .chart-svg-wrap,
    .chart-svg-canvas {
        height: 160px
    }

    .chart-hover-panel {
        /*display: none !important*/
    }

    .chart-month-labels {
        display: none
    }

    .stat-pills {
        gap: 5px
    }

    .section {
        padding: 56px 20px
    }

    .section-head {
        margin-bottom: 36px
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .why-card {
        padding: 24px 20px
    }

    .steps-row {
        grid-template-columns: 1fr 1fr;
        gap: 24px
    }

    .steps-row::before {
        display: none
    }

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

    .stat-cell {
        padding: 28px 24px
    }

    .stat-num {
        font-size: 30px
    }

    .nav-fund-badge {
        gap: 16px;
        padding: 14px 16px
    }

    .fund-info-divider {
        display: none
    }

    .fund-info-val {
        font-size: 16px
    }

    .cta-band {
        padding: 56px 24px
    }

    .footer {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px 90px
    }

    .footer-disc {
        text-align: center
    }

    .sticky-cta-bar {
        padding: 12px 20px
    }

    .sticky-cta-text {
        display: none
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none
    }


    .footer-container {
        flex-direction: column;
        gap: 18px
    }

    .footer-logo svg {
        height: 50px
    }

    .footer-text {
        font-size: 15px
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        text-align: center
    }

    .btn-primary {
        padding: 15px 20px
    }

    .hero-actions {
        flex-direction: column
    }

    .chart-stat-pills {
        display: none
    }

    .stat-pills {
        flex-wrap: nowrap
    }

    .pill-num {
        font-size: 14px
    }

    .steps-row {
        grid-template-columns: 1fr
    }

    .nav-fund-badge {
        gap: 12px
    }
}

/****************/


/* ── VISUAL: SVG Canvas ── */
.chart-svg-canvas {
    width: 100%;
    height: 220px;
    margin-bottom: 14px;
    position: relative;
    direction: ltr; /* chart always left-to-right regardless of RTL page */
}

.chart-svg-canvas svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    direction: ltr
}

/* Month labels row below SVG */
.chart-month-labels {
    position: relative;
    height: 16px;
    padding: 0 4px;
    margin-top: 4px;
    margin-bottom: 12px;
    direction: ltr; /* labels follow chart L→R direction */
}

.chart-month-label {
    font-size: 9px;
    color: var(--txt-muted);
    text-align: center;
    line-height: 1;
    position: absolute;
    white-space: nowrap;
    transform: translateX(-50%); /* anchor from left since direction:ltr */
}

.chart-month-label.first {
    text-align: left;
    transform: none
}

.chart-month-label.last {
    text-align: right;
    transform: translateX(-100%)
}


/* Time period tabs */
.chart-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
    background: var(--gray-50);
    border-radius: 8px;
    padding: 3px;
}

.chart-tab {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--txt-muted);
    padding: 6px 4px;
    border-radius: 6px;
    cursor: pointer;
    transition: all .18s;
    white-space: nowrap;
}

.chart-tab:hover {
    color: var(--g)
}

.chart-tab.active {
    background: var(--white);
    color: var(--g);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 900px) {


    .stats-grid {
        background: none;
    }

    .nav {
        padding: 0 16px;
        height: 60px
    }

    .nav-links {
        display: none
    }

    .nav-logo svg {
        height: 30px
    }

    .hero {
        grid-template-columns:1fr;
        padding: 32px 16px 44px;
        gap: 32px;
        min-height: unset;
    }

    .hero::before {
        width: 200px;
        height: 200px;
        top: -40px;
        left: -40px
    }

    .hero h1 {
        font-size: 28px
    }

    .hero-sub {
        font-size: 14px;
        margin-bottom: 28px
    }

    .chart-card {
        padding: 16px 14px 14px
    }

    .chart-big-num {
        font-size: 32px
    }

    .chart-svg-canvas {
        height: 180px
    }

    .chart-hover-panel {
        font-size: 10px;
        min-width: 130px;
        padding: 8px 10px;
        max-width: 150px;
    }

    .chart-month-labels {
        display: block;
        height: 16px;
        margin-bottom: 8px
    }

    .chart-month-label {
        font-size: 8px
    }

    .section {
        padding: 52px 16px
    }

    .section-head {
        margin-bottom: 36px
    }

    .why-grid {
        grid-template-columns:1fr;
        gap: 12px
    }

    .why-card {
        padding: 22px 18px
    }

}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 25px
    }

    .btn-primary {
        width: 100%;
        text-align: center;
        padding: 14px 20px
    }

    .btn-ghost {
        width: 100%;
        text-align: center
    }

    .hero-actions {
        flex-direction: column
    }

    .steps-row {
        grid-template-columns:1fr
    }

    .stat-pills {
        flex-wrap: nowrap
    }

    .pill-num {
        font-size: 14px
    }

    .chart-svg-canvas {
        height: 160px
    }

    .chart-header {
        gap: 6px
    }

    .chart-big-num {
        font-size: 28px;
        letter-spacing: -1px
    }

    .chart-big-label {
        font-size: 9px
    }

    .chart-hover-panel {
        max-width: 140px;
        min-width: 120px;
        font-size: 9.5px
    }

    .hover-val {
        font-size: 10px
    }

    .hover-val-m {
        font-size: 8px
    }
}
