/* ─── HERO ───────────────────────────────────────── */
.hero {
    min-height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 5% 72px;
    overflow: hidden;
    margin: 0;
    background: var(--d);
}

.hbg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(14, 148, 110, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 148, 110, 0.035) 1px, transparent 1px);
    background-size: 55px 55px;
    animation: gridScroll 25s linear infinite
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    animation: orbF ease-in-out infinite
}

.orb1 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(14, 148, 110, 0.22), transparent 70%);
    top: -120px;
    right: -80px;
    animation-duration: 9s
}

.orb2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(14, 148, 110, 0.14), transparent 70%);
    bottom: 80px;
    left: 150px;
    animation-duration: 7s;
    animation-delay: -3s
}

.orb3 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(94, 240, 196, 0.12), transparent 70%);
    top: 40%;
    right: 28%;
    animation-duration: 11s;
    animation-delay: -6s
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding-top: 80px
}

.h-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(14, 148, 110, 0.08);
    border: 1px solid var(--pbr);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 30px;
    animation: fdD .8s ease .2s both
}

.h-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--pl);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 12px var(--pl)
}

.h-badge-txt {
    font-size: 12.5px;
    color: var(--pl);
    font-weight: 600
}

.h-title {
    font-size: clamp(36px, 5.5vw, 70px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 22px;
    animation: fdD .8s ease .4s both
}

.h-title .l1 {
    display: block;
    color: var(--t1)
}

.h-title .l2 {
    display: block;
    background: var(--gc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative
}

.h-title .l2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gc);
    animation: lineGrow 1.2s ease 1.2s forwards
}

.h-desc {
    font-size: 16.5px;
    color: var(--t2);
    line-height: 1.95;
    margin-bottom: 42px;
    max-width: 540px;
    font-weight: 300;
    animation: fdD .8s ease .6s both
}

.h-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    animation: fdD .8s ease .8s both
}

.btn-p {
    padding: 15px 34px;
    background: var(--gm);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: var(--tr);
    box-shadow: 0 8px 30px var(--pg);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden
}

.btn-p::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left .6s ease
}

.btn-p:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 55px var(--pg)
}

.btn-p:hover::before {
    left: 100%
}

.btn-s {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--t2);
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--tr);
    text-decoration: none;
    background: none;
    border: none;
    font-family: inherit
}

.btn-s-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--pbr);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr)
}

.btn-s:hover .btn-s-icon {
    border-color: var(--pl);
    transform: scale(1.12);
    box-shadow: 0 0 28px var(--pg)
}

.btn-s:hover {
    color: var(--pl)
}

.h-stats {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
    margin-top: 64px;
    animation: fdU .8s ease 1.2s both;
    flex-wrap: wrap
}

.h-stat {
    text-align: center
}

.h-stat-n {
    font-size: 30px;
    font-weight: 900;
    background: var(--gc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1
}

.h-stat-l {
    font-size: 11.5px;
    color: var(--tm);
    margin-top: 4px;
    letter-spacing: 0.5px
}

.h-stat-div {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, var(--pbr), transparent)
}



/* ─── TICKER ────────────────────────────────────── */
.ticker {
    background: var(--d3);
    border-top: 1px solid var(--pb);
    border-bottom: 1px solid var(--pb);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    margin-top: 30px;
}

.ticker::before,
.ticker::after {
    content: '';
    position: absolute;
    top: 0;
    width: 140px;
    height: 100%;
    z-index: 2
}

.ticker::before {
    right: 0;
    background: linear-gradient(to left, var(--d3), transparent)
}

.ticker::after {
    left: 0;
    background: linear-gradient(to right, var(--d3), transparent)
}

.tk-track {
    display: flex;
    animation: tkAnim 28s linear infinite;
    width: max-content
}

.tk-track:hover {
    animation-play-state: paused
}

.tk-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 36px;
    white-space: nowrap;
    color: var(--tm);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.8px
}

.tk-item:hover {
    color: var(--pl)
}

.tk-dot {
    width: 5px;
    height: 5px;
    background: var(--p);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--p)
}

/* ─── SERVICES ──────────────────────────────────── */
.services {
    background: var(--d2)
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 22px
}

.srv-card {
    background: var(--d3);
    border: 1px solid var(--pb);
    border-radius: 20px;
    padding: 34px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--tr);
    cursor: pointer
}

.srv-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2.5px;
    background: var(--gm);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s ease
}

.srv-card:hover {
    transform: translateY(-12px);
    border-color: var(--pbr);
    box-shadow: var(--sh), var(--sg)
}

.srv-card:hover::after {
    transform: scaleX(1);
    transform-origin: left
}

.srv-ico {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: var(--pu);
    border: 1px solid var(--pb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--pl);
    margin-bottom: 22px;
    transition: var(--tr)
}

.srv-card:hover .srv-ico {
    background: var(--p);
    border-color: var(--p);
    color: #fff;
    transform: rotate(-12deg) scale(1.12);
    box-shadow: 0 10px 30px var(--pg)
}

.srv-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 10px
}

.srv-desc {
    font-size: 13.5px;
    color: var(--t2);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 16px
}

.srv-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px
}

.srv-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--t2)
}

.srv-list li span.chk {
    color: var(--pl);
    font-size: 11px
}

.srv-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pl);
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--tr);
    opacity: 0;
    transform: translateX(-10px)
}

.srv-card:hover .srv-link {
    opacity: 1;
    transform: translateX(0)
}

/* ─── WHY US ─────────────────────────────────────── */
.why {
    background: var(--d)
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    background: var(--d3);
    border: 1px solid var(--pb);
    border-radius: 16px;
    transition: var(--tr)
}

.why-item:hover {
    border-color: var(--pbr);
    transform: translateX(-10px);
    box-shadow: 6px 0 25px var(--pg)
}

.why-num {
    font-size: 28px;
    font-weight: 900;
    min-width: 48px;
    background: var(--gc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    padding-top: 2px
}

.why-txt h4 {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 5px
}

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

.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.why-card {
    background: var(--d3);
    border: 1px solid var(--pb);
    border-radius: 20px;
    padding: 28px 22px;
    text-align: center;
    transition: var(--tr)
}

.why-card:hover {
    border-color: var(--pbr);
    transform: translateY(-6px);
    box-shadow: var(--sg)
}

.wc-ico {
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    border-radius: 14px;
    background: var(--pu);
    border: 1px solid var(--pb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--pl);
    transition: var(--tr)
}

.why-card:hover .wc-ico {
    background: var(--p);
    border-color: var(--p);
    color: #fff;
    box-shadow: 0 8px 24px var(--pg)
}

.wc-num {
    font-size: 28px;
    font-weight: 900;
    display: block;
    background: var(--gc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px
}

.wc-lbl {
    font-size: 12px;
    color: var(--tm);
    font-weight: 500
}

/* ─── DASHBOARD ─────────────────────────────────── */
.dash {
    background: var(--d2);
    position: relative
}

.dash-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px
}

.dash-kpi {
    background: var(--d3);
    border: 1px solid var(--pb);
    border-radius: 16px;
    padding: 20px;
    transition: var(--tr)
}

.dash-kpi:hover {
    border-color: var(--pbr);
    transform: translateY(-4px)
}

.dk-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px
}

.dk-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--pu);
    border: 1px solid var(--pb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--pl)
}

.dk-trend {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px
}

.dk-trend.up {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1)
}

.dk-trend.dn {
    color: #f87171;
    background: rgba(248, 113, 113, 0.1)
}

.dk-val {
    font-size: 24px;
    font-weight: 900;
    color: var(--t1);
    line-height: 1;
    margin-bottom: 4px
}

.dk-lbl {
    font-size: 12px;
    color: var(--tm);
    margin-bottom: 10px
}

.dk-bar {
    height: 4px;
    background: var(--d4);
    border-radius: 2px;
    overflow: hidden
}

.dk-fill {
    height: 100%;
    background: var(--gm);
    border-radius: 2px;
    width: 0;
    transition: width 1.5s ease
}

.dash.vis .dk-fill {
    width: var(--w)
}

.dash-chart-wrap {
    background: var(--d3);
    border: 1px solid var(--pb);
    border-radius: 20px;
    padding: 28px
}

.dc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px
}

.dc-head h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--t1)
}

.dc-sel {
    background: var(--d4);
    border: 1px solid var(--pb);
    border-radius: 20px;
    padding: 6px 14px;
    color: var(--t2);
    font-size: 12px;
    font-family: inherit;
    outline: none;
    cursor: pointer
}

.chart-bars-wrap {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 140px;
    margin-bottom: 8px
}

.cb-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    height: 100%
}

.cb-bar-wrap {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: flex-end
}

.cb-bar {
    width: 100%;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(to top, var(--p), var(--pl));
    height: 0;
    transition: height 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer
}

.cb-bar:hover {
    filter: brightness(1.3)
}

.cb-lbl {
    font-size: 10px;
    color: var(--tm);
    white-space: nowrap
}

.dash-donuts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px
}

.dd-item {
    background: var(--d4);
    border: 1px solid var(--pb);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--tr)
}

.dd-item:hover {
    border-color: var(--pbr)
}

.dd-svg {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    transform: rotate(-90deg)
}

.dd-bg {
    fill: none;
    stroke: rgba(14, 148, 110, 0.12);
    stroke-width: 3
}

.dd-fill {
    fill: none;
    stroke: var(--pl);
    stroke-width: 3;
    stroke-linecap: round
}

.dd-pct {
    fill: var(--t1);
    font-size: 8px;
    font-weight: 700;
    text-anchor: middle;
    transform: rotate(90deg);
    transform-origin: 18px 18px
}

.dd-info span {
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: var(--pl)
}

.dd-info small {
    font-size: 11px;
    color: var(--tm)
}

/* ─── COUNTERS ──────────────────────────────────── */
.counters {
    background: var(--d3);
    border-top: 1px solid var(--pb);
    border-bottom: 1px solid var(--pb)
}

.cnt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0
}

.cnt-item {
    padding: 55px 30px;
    text-align: center;
    position: relative;
    transition: var(--tr);
    cursor: default
}

.cnt-item::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, var(--pb), transparent)
}

.cnt-item:last-child::after {
    display: none
}

.cnt-item:hover {
    background: var(--pu)
}

.cnt-ico {
    font-size: 28px;
    color: var(--pl);
    margin-bottom: 14px;
    display: block;
    transition: var(--tr)
}

.cnt-item:hover .cnt-ico {
    transform: scale(1.25) rotate(-10deg)
}

.cnt-num {
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 900;
    background: var(--gc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline
}

.cnt-suf {
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 900;
    background: var(--gc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.cnt-lbl {
    font-size: 13px;
    color: var(--tm);
    margin-top: 8px;
    font-weight: 500;
    letter-spacing: 0.5px
}

.cnt-bar {
    width: 50px;
    height: 2.5px;
    background: var(--gm);
    border-radius: 2px;
    margin: 12px auto 0;
    transform: scaleX(0);
    transition: transform .8s ease;
    box-shadow: 0 0 10px var(--pg)
}

.cnt-item.vis .cnt-bar {
    transform: scaleX(1)
}

/* ─── PORTFOLIO ─────────────────────────────────── */
.portfolio {
    background: var(--d2)
}

.pf-filter {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 44px;
    justify-content: center
}

.pf-btn {
    padding: 9px 22px;
    border-radius: 25px;
    border: 1.5px solid var(--pb);
    background: transparent;
    color: var(--t2);
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--tr)
}

.pf-btn:hover,
.pf-btn.act {
    background: var(--gm);
    border-color: var(--p);
    color: #fff;
    box-shadow: 0 6px 22px var(--pg)
}

.pf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px
}

.pf-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--d3);
    border: 1px solid var(--pb);
    transition: var(--tr)
}

.pf-card:hover {
    transform: translateY(-10px);
    border-color: var(--pbr);
    box-shadow: var(--sh), var(--sg)
}

.pf-card.hide {
    display: none
}

.pf-img {
    height: 220px;
    position: relative;
    overflow: hidden
}

.pf-img-bg {
    width: 100%;
    height: 100%;
    transition: transform .6s ease
}

.pf-card:hover .pf-img-bg {
    transform: scale(1.1)
}

.pf-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 12, 10, 0.95), rgba(5, 12, 10, 0.3), transparent);
    opacity: 0;
    transition: opacity .4s ease;
    display: flex;
    align-items: center;
    justify-content: center
}

.pf-card:hover .pf-ov {
    opacity: 1
}

.pf-ov-ico {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--pl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pl);
    font-size: 20px;
    transform: scale(0.6);
    transition: transform .4s ease .1s
}

.pf-card:hover .pf-ov-ico {
    transform: scale(1)
}

.pf-body {
    padding: 22px
}

.pf-cat {
    font-size: 11px;
    color: var(--pl);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 7px
}

.pf-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 8px
}

.pf-desc {
    font-size: 13px;
    color: var(--t2);
    line-height: 1.75;
    font-weight: 300
}

.pf-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--pb)
}

.pf-result {
    font-size: 12px;
    color: var(--pl);
    font-weight: 700
}

.pf-client {
    font-size: 11.5px;
    color: var(--tm)
}

/* ─── GROWTH ─────────────────────────────────────── */
.growth {
    background: var(--d)
}

.gr-wrap {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 70px;
    align-items: center
}

.gr-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px
}

.gr-stat {
    background: var(--d3);
    border: 1px solid var(--pb);
    border-radius: 16px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--tr)
}

.gr-stat:hover {
    border-color: var(--pbr);
    transform: translateX(-8px);
    box-shadow: 6px 0 25px var(--pg)
}

.gs-ico {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 14px;
    background: var(--pu);
    border: 1px solid var(--pb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--pl);
    transition: var(--tr)
}

.gr-stat:hover .gs-ico {
    background: var(--p);
    border-color: var(--p);
    color: #fff;
    box-shadow: 0 6px 22px var(--pg)
}

.gs-val {
    font-size: 28px;
    font-weight: 900;
    display: block;
    background: var(--gc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1
}

.gs-lbl {
    font-size: 13px;
    color: var(--t2);
    font-weight: 300
}

.gr-chart-card {
    background: var(--d3);
    border: 1px solid var(--pb);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden
}

.gr-chart-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 148, 110, 0.04), transparent);
    pointer-events: none
}

.gr-svg {
    width: 100%;
    overflow: visible
}

.gr-line {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: drawLine 2.5s ease 0.5s forwards
}

/* ─── PROCESS ────────────────────────────────────── */
.process {
    background: var(--d2)
}

.proc-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative
}

.proc-timeline::before {
    content: '';
    position: absolute;
    top: 44px;
    right: 10%;
    left: 10%;
    height: 1.5px;
    background: linear-gradient(to left, transparent, var(--pb), var(--pb), transparent);
    z-index: 0
}

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

.proc-num-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--d3);
    border: 2px solid var(--pb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: var(--pl);
    margin: 0 auto 22px;
    transition: var(--tr);
    position: relative
}

.proc-step:hover .proc-num-wrap {
    background: var(--p);
    border-color: var(--p);
    color: #fff;
    transform: scale(1.18);
    box-shadow: 0 0 30px var(--pg)
}

.proc-ico-lbl {
    font-size: 22px;
    color: var(--pl);
    margin-bottom: 14px;
    display: block;
    transition: var(--tr)
}

.proc-step:hover .proc-ico-lbl {
    transform: scale(1.2)
}

.proc-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 8px
}

.proc-desc {
    font-size: 12px;
    color: var(--t2);
    line-height: 1.8;
    font-weight: 300
}

/* ─── TESTIMONIALS ──────────────────────────────── */
.testi {
    background: var(--d);
    padding-bottom: 80px
}

.ts-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto 40px;
    max-width: 480px;
    padding: 0 5%
}

.ts-tab {
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 40px;
    border: 1.5px solid var(--pb);
    background: transparent;
    color: var(--t2);
    cursor: pointer;
    transition: var(--tr)
}

.ts-tab:hover {
    border-color: var(--pl);
    color: var(--pl)
}

.ts-tab.act {
    background: var(--gm);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 20px var(--pg)
}

.ts-catalog-wrap,
.ts-slider-wrap {
    padding: 0 5%;
    animation: tsFadeIn .4s ease
}

.ts-slider-wrap[hidden] {
    display: none !important
}

.ts-catalog-wrap[hidden] {
    display: none !important
}

@keyframes tsFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

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

/* فید یکپارچه — ترتیب ادمین حفظ می‌شود */
.ts-catalog {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1040px;
    margin: 0 auto;
    align-items: start;
    direction: rtl
}

.ts-card {
    background: var(--d3);
    border: 1px solid var(--pb);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--tr)
}

.ts-card:hover {
    border-color: var(--pl);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .2)
}

/* ویدیو: یک ردیف کامل، وسط‌چین */
.ts-card--video {
    grid-column: 1 / -1;
    max-width: 720px;
    width: 100%;
    justify-self: center
}

.ts-card--video:hover {
    transform: translateY(-4px)
}

/* نظر متنی: دو ستون در دسکتاپ */
.ts-card--text {
    display: flex;
    flex-direction: column;
    min-height: 100%
}

.ts-card--text:hover {
    transform: translateY(-3px)
}

.ts-quote-inner {
    padding: 28px 26px 24px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column
}

.ts-quote-inner::before {
    content: '"';
    position: absolute;
    top: 4px;
    right: 20px;
    font-size: 72px;
    color: rgba(14, 148, 110, 0.07);
    font-family: serif;
    line-height: 1;
    pointer-events: none
}

.ts-quote-text {
    font-size: 14.5px;
    color: var(--t2);
    line-height: 1.9;
    font-weight: 300;
    font-style: italic;
    margin: 0 0 auto;
    padding-bottom: 20px;
    flex: 1
}

/* فیلتر تب — فقط ویدیو */
.testi[data-ts-mode="video"] .ts-card--text {
    display: none
}

.ts-video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--d2)
}

.ts-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.ts-video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--d2), var(--d3));
    font-size: 48px;
    font-weight: 800;
    color: var(--pl);
    opacity: .35
}

.ts-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .35);
    border: none;
    cursor: pointer;
    color: #fff;
    transition: background .3s
}

.ts-play-btn:hover {
    background: rgba(0, 0, 0, .5)
}

.ts-play-ring {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(14, 148, 110, .85);
    backdrop-filter: blur(6px);
    transition: transform .3s
}

.ts-play-btn:hover .ts-play-ring {
    transform: scale(1.08)
}

.ts-play-btn svg {
    position: relative;
    z-index: 1
}

.ts-video-meta {
    padding: 18px 20px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px
}

.ts-av.sm {
    width: 40px;
    height: 40px;
    font-size: 15px
}

.ts-video-caption {
    width: 100%;
    margin: 4px 0 0;
    font-size: 13px;
    color: var(--tm);
    line-height: 1.7;
    font-weight: 300
}

.ts-empty {
    text-align: center;
    color: var(--tm);
    font-size: 14px;
    padding: 32px 0
}

.ts-video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, .92);
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(8px)
}

.ts-video-modal.open {
    display: flex
}

.ts-modal-body {
    width: min(960px, 100%);
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .8)
}

.ts-modal-body iframe,
.ts-modal-body video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    background: #000
}

.ts-modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background .3s
}

.ts-modal-close:hover {
    background: rgba(255, 255, 255, .2)
}

.ts-slider {
    position: relative;
    overflow: hidden
}

.ts-track {
    display: flex;
    transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ts-slide {
    min-width: 100%;
    padding: 0 10px
}

.ts-inner {
    background: var(--d3);
    border: 1px solid var(--pb);
    border-radius: 24px;
    padding: 44px;
    position: relative;
    overflow: hidden;
    max-width: 780px;
    margin: 0 auto
}

.ts-inner::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 30px;
    font-size: 160px;
    color: rgba(14, 148, 110, 0.06);
    font-family: serif;
    line-height: 1;
    pointer-events: none
}

.ts-stars,
.ts-stars.sm {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #f59e0b
}

.ts-stars.sm {
    margin-bottom: 14px;
    font-size: 13px
}

.ts-text {
    font-size: 16px;
    color: var(--t2);
    line-height: 2;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 28px
}

.ts-author {
    display: flex;
    align-items: center;
    gap: 16px
}

.ts-av {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    border: 2px solid var(--pbr);
    box-shadow: 0 0 18px var(--pg);
    flex-shrink: 0
}

.ts-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--t1)
}

.ts-role {
    font-size: 12.5px;
    color: var(--tm)
}

.ts-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px
}

.ts-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--pb);
    background: transparent;
    color: var(--t2);
    font-size: 20px;
    cursor: pointer;
    transition: var(--tr);
    display: flex;
    align-items: center;
    justify-content: center
}

.ts-btn:hover {
    border-color: var(--pl);
    color: var(--pl);
    background: var(--pu);
    box-shadow: 0 0 18px var(--pg)
}

.ts-dots {
    display: flex;
    gap: 8px
}

.ts-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pb);
    cursor: pointer;
    transition: var(--tr);
    border: none
}

.ts-dot.act {
    background: var(--pl);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 10px var(--pg)
}

@media (max-width: 720px) {
    .ts-catalog {
        grid-template-columns: 1fr
    }

    .ts-card--video {
        max-width: 100%
    }

    .ts-inner {
        padding: 28px 22px
    }
}

/* ─── CLIENTS ────────────────────────────────────── */
.clients {
    background: var(--d3);
    padding: 70px 5%
}

.cl-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0
}

.cl-item {
    padding: 36px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--pb);
    transition: var(--tr);
    cursor: pointer;
    position: relative;
    overflow: hidden
}

.cl-item:first-child {
    border-left: none
}

.cl-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--pu);
    opacity: 0;
    transition: opacity .3s ease
}

.cl-item:hover::before {
    opacity: 1
}

.cl-item:hover {
    transform: scale(1.06)
}

.cl-logo {
    font-size: 14px;
    font-weight: 800;
    color: var(--tm);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--tr);
    position: relative;
    z-index: 1
}

.cl-item:hover .cl-logo {
    color: var(--pl);
    text-shadow: 0 0 20px var(--pg)
}

/* ─── PRICING ────────────────────────────────────── */
.pricing {
    background: var(--d2)
}

.pr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1000px;
    margin: 0 auto
}

.pr-card {
    background: var(--d3);
    border: 1px solid var(--pb);
    border-radius: 24px;
    padding: 38px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--tr)
}

.pr-card.pop {
    border-color: var(--p);
    box-shadow: 0 0 50px var(--pg), var(--sh);
    transform: scale(1.04)
}

.pr-pop-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    background: var(--gm);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 14px var(--pg)
}

.pr-card:hover:not(.pop) {
    transform: translateY(-10px);
    border-color: var(--pbr);
    box-shadow: var(--sh)
}

.pr-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--tm);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px
}

.pr-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px
}

.pr-val {
    font-size: 46px;
    font-weight: 900;
    color: var(--t1);
    line-height: 1
}

.pr-curr {
    font-size: 13px;
    color: var(--tm);
    margin-bottom: 2px
}

.pr-per {
    font-size: 13px;
    color: var(--tm)
}

.pr-desc {
    font-size: 13px;
    color: var(--t2);
    margin-bottom: 28px;
    line-height: 1.7
}

.pr-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--pb), transparent);
    margin-bottom: 24px
}

.pr-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px
}

.pr-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--t2)
}

.pr-features li.off {
    color: var(--tm);
    text-decoration: line-through
}

.pr-cta {
    width: 100%;
    padding: 13px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: var(--tr)
}

.pr-cta.outline {
    background: transparent;
    border: 1.5px solid var(--pbr);
    color: var(--pl)
}

.pr-cta.outline:hover {
    background: var(--pu);
    box-shadow: 0 0 22px var(--pg);
    transform: translateY(-3px)
}

.pr-cta.solid {
    background: var(--gm);
    border: none;
    color: #fff;
    box-shadow: 0 8px 28px var(--pg)
}

.pr-cta.solid:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 45px var(--pg)
}

/* ─── CONTACT ────────────────────────────────────── */
.contact {
    background: var(--d)
}

.ct-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 70px;
    align-items: start
}

.ct-form {
    background: var(--d3);
    border: 1px solid var(--pb);
    border-radius: 24px;
    padding: 40px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.form-group {
    margin-bottom: 18px
}

.form-group label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--tm);
    margin-bottom: 8px;
    letter-spacing: 0.5px
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--d4);
    border: 1.5px solid var(--pb);
    border-radius: 12px;
    padding: 13px 16px;
    color: var(--t1);
    font-size: 14px;
    font-family: inherit;
    transition: var(--tr);
    outline: none;
    resize: none
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--p);
    box-shadow: 0 0 0 3px rgba(14, 148, 110, 0.12), 0 0 20px rgba(14, 148, 110, 0.1)
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--tm)
}

.form-group select option {
    background: var(--d3)
}

.form-group textarea {
    height: 130px
}

.form-submit {
    width: 100%;
    padding: 15px;
    background: var(--gm);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: var(--tr);
    box-shadow: 0 8px 28px var(--pg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.form-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px var(--pg)
}

.ct-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px
}

.ct-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--d3);
    border: 1px solid var(--pb);
    border-radius: 14px;
    transition: var(--tr)
}

.ct-item:hover {
    border-color: var(--pbr);
    transform: translateX(8px);
    box-shadow: -6px 0 22px var(--pg)
}

.ct-ico {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 11px;
    background: var(--pu);
    border: 1px solid var(--pb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pl);
    font-size: 18px;
    transition: var(--tr)
}

.ct-item:hover .ct-ico {
    background: var(--p);
    border-color: var(--p);
    color: #fff;
    box-shadow: 0 6px 20px var(--pg)
}

.ct-txt h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 3px
}

.ct-txt p {
    font-size: 13px;
    color: var(--t2);
    font-weight: 300
}

.ct-social {
    margin-top: 28px;
    padding: 24px;
    background: var(--d3);
    border: 1px solid var(--pb);
    border-radius: 16px
}

.ct-social h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 16px
}

.ct-soc-links {
    display: flex;
    gap: 10px
}

.ct-soc {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1.5px solid var(--pb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tm);
    font-size: 18px;
    text-decoration: none;
    transition: var(--tr)
}

.ct-soc:hover {
    border-color: var(--pl);
    color: var(--pl);
    background: var(--pu);
    transform: translateY(-4px);
    box-shadow: 0 8px 22px var(--pg)
}


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

    .why-grid,
    .gr-wrap,
    .ct-grid {
        grid-template-columns: 1fr
    }

    .pr-grid {
        grid-template-columns: 1fr;
        max-width: 480px
    }

    .pr-card.pop {
        transform: scale(1)
    }

    .dash-kpis {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:900px) {
    .cnt-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .cl-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .cl-item:nth-child(4) {
        border-left: none
    }

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

    .proc-timeline::before {
        display: none
    }

    .dash-donuts {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:600px) {
    section {
        padding: 70px 5%
    }

    .h-stats {
        gap: 24px
    }

    .h-stat-div {
        display: none
    }

    .cnt-grid {
        grid-template-columns: 1fr 1fr
    }

    .cl-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .cl-item:nth-child(3) {
        border-left: none
    }

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

    .proc-timeline {
        grid-template-columns: 1fr
    }

    .dash-kpis {
        grid-template-columns: 1fr 1fr
    }

    .dash-donuts {
        grid-template-columns: 1fr
    }

    .why-cards {
        grid-template-columns: 1fr 1fr
    }

    .pr-grid {
        max-width: 100%
    }

    .hero-content {
        padding-top: 40px;
    }

    .h-badge-txt {
        font-size: 11px;
    }

    .h-title {
        font-size: clamp(28px, 7vw, 42px);
        margin-bottom: 18px;
    }

    .h-desc {
        font-size: 15px;
        line-height: 1.9;
        max-width: 100%;
    }

    .btn-p,
    .btn-s {
        font-size: 13px;
    }

    .h-stat-n {
        font-size: 26px;
    }

    .h-stat-l,
    .srv-desc,
    .why-txt h4,
    .why-txt p,
    .pf-name,
    .pf-desc,
    .ct-txt h4,
    .ct-txt p,
    .ts-text,
    .ts-name,
    .ts-role {
        font-size: 14px;
    }
}

/* ─── TEAM ──────────────────────────────────────── */
.team {
    background: var(--d); /* یا var(--d2) برای تنوع رنگ پس‌زمینه */
    padding: 80px 0; /* هماهنگ با سایر سکشن‌ها */
}

.team-img-wrap {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--pb);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: var(--tr);
    cursor: pointer;
}

.team-img-wrap:hover {
    border-color: var(--pbr);
    box-shadow: 0 15px 50px var(--pg);
    transform: translateY(-8px);
}

.team-hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.team-img-wrap:hover .team-hero-img {
    transform: scale(1.04);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 12, 10, 0.95) 0%, rgba(5, 12, 10, 0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.team-img-wrap:hover .team-overlay {
    opacity: 1;
}

.team-badge {
    background: var(--gm);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 8px 25px var(--pg);
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.team-img-wrap:hover .team-badge {
    transform: translateY(0);
}

/* ─── HERO MODERN CUSTOMIZATION ─────────────────── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #05100d; /* رنگ پایه تیره برای جلوگیری از پرش رنگ */
    justify-content: flex-start;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 45%; /* متن فقط ۴۵ درصد صفحه را می‌گیرد و بقیه برای عکس خالی می‌ماند */
    padding: 40px;
    
    /* ایجاد یک باکس شیشه‌ای ملایم پشت متن برای خوانایی عالی */
    background: rgba(5, 16, 13, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* لایه عکس با افکت زوم و سیاه و سفید در حالت عادی */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 10%;
    background-repeat: no-repeat;
    z-index: 0;
    
    /* افکت‌های اولیه (سیاه و سفید + زوم ملایم) */
    filter: grayscale(100%) contrast(1.2);
    transform: scale(1.05);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* لایه تاریک‌کننده برای خوانایی متن */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 16, 13, 0.9) 0%, rgba(14, 148, 110, 0.15) 100%);
    z-index: 1;
    transition: all 1s ease;
}

/* افکت جذاب هنگام هاور (بردن ماوس روی بخش هیرو) */
.hero:hover .hero-bg {
    filter: grayscale(0%) contrast(1.1); /* رنگی شدن عکس */
    transform: scale(1); /* برگشت به سایز اصلی */
}

.hero:hover .hero-overlay {
    background: linear-gradient(135deg, rgba(5, 16, 13, 0.8) 0%, rgba(14, 148, 110, 0.3) 100%);
}

.hbg-grid, .orb {
    z-index: 2; /* حباب‌ها روی عکس قرار می‌گیرند تا عمق ایجاد کنند */
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
    padding-top: 80px;
}

/* خوانایی بهتر متن */
.hero-content .h-title .l1,
.hero-content .h-desc,
.hero-content .h-badge-txt {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3); /* سایه نرم برای خوانایی عالی */
}

.hero-content .h-badge {
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px); /* افکت شیشه‌ای مدرن */
}

/* در موبایل افکت هاور معمولا کار نمیکند، پس عکس را نیمه رنگی نشان میدهیم */
@media (max-width: 600px) {
    .hero-bg {
        background-position: center 20%;
        filter: grayscale(40%) contrast(1.1);
    }
}


/* تنظیم کانتینر اصلی هیرو برای حالت دو ستونه */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 60px;
    position: relative;
    z-index: 10; /* برای قرار گرفتن روی حباب‌ها و بک‌گراند */
}

/* ستون متن */
.hero-text {
    flex: 1;
    max-width: 55%;
    display: flex;
    flex-direction: column;
}

/* ستون عکس */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* افکت شیشه‌ای و انیمیشن معلق برای باکس عکس */
.image-box {
    position: relative;
    border-radius: 24px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: floatImage 6s ease-in-out infinite;
}

.image-box img {
    width: 100%;
    max-width: 450px; /* اندازه عکس را می‌توانید تغییر دهید */
    height: auto;
    border-radius: 16px;
    display: block;
    filter: grayscale(100%); /* حالت اولیه سیاه و سفید (اختیاری) */
    transition: filter 0.5s ease;
}

/* رنگی شدن عکس با هاور کردن موس */
.image-box:hover img {
    filter: grayscale(0%);
}

/* انیمیشن معلق بودن */
@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* تنظیمات ریسپانسیو برای موبایل و تبلت */
@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding-top: 80px;
    }
    
    .hero-text {
        max-width: 100%;
        align-items: center; /* وسط‌چین کردن المان‌های داخلی در موبایل */
    }

    .h-actions {
        justify-content: center; /* وسط‌چین کردن دکمه‌ها */
    }

    .h-stats {
        justify-content: center; /* وسط‌چین کردن آمار */
    }
    
    .hero-image {
        width: 100%;
        margin-top: 20px;
    }
}


/* ═══════════════════════════════════════════════════
   T-026 — prefers-reduced-motion
   اضافه شده به انتهای landing.css و loader.css
   ═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

    /* ─── keyframe animations OFF ─────────────────── */
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    /* ─── Hero ────────────────────────────────────── */
    .hbg-grid {
        animation: none;
    }

    .orb,
    .orb1,
    .orb2,
    .orb3 {
        animation: none;
    }

    .h-badge,
    .h-title,
    .h-desc,
    .h-actions,
    .h-stats {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .h-title .l2::after {
        animation: none;
        width: 100%;       /* نمایش خط زیر عنوان بدون انیمیشن */
    }

    .h-badge-dot {
        animation: none;
    }

    /* ─── image-box float ─────────────────────────── */
    .image-box {
        animation: none;
    }

    /* ─── hero-bg (grayscale/scale on hover) ──────── */
    .hero-bg,
    .hero-overlay {
        transition: none;
    }

    .image-box img {
        transition: none;
    }

    /* ─── ticker ──────────────────────────────────── */
    .tk-track {
        animation: none;
    }

    /* ─── charts & bars ───────────────────────────── */
    .dk-fill {
        transition: none;
        width: var(--w);  /* نمایش مستقیم مقدار نهایی */
    }

    .cb-bar {
        transition: none;
    }

    .gr-line {
        animation: none;
        stroke-dashoffset: 0;  /* نمایش کامل خط بدون کشیده شدن */
    }

    /* ─── counters ─────────────────────────────────── */
    .cnt-bar {
        transition: none;
        transform: scaleX(1);  /* نمایش مستقیم */
    }

    /* ─── testimonials fade ───────────────────────── */
    .ts-catalog-wrap,
    .ts-slider-wrap {
        animation: none;
    }

    .ts-track {
        transition: none;
    }

    /* ─── hover transforms ─────────────────────────── */
    .srv-card:hover,
    .why-item:hover,
    .gr-stat:hover,
    .why-card:hover,
    .pf-card:hover,
    .pr-card:hover,
    .dash-kpi:hover,
    .ct-item:hover,
    .cnt-item:hover,
    .cl-item:hover,
    .ts-card:hover,
    .team-img-wrap:hover {
        transform: none;
    }

    .srv-card:hover .srv-ico,
    .why-card:hover .wc-ico,
    .cnt-item:hover .cnt-ico,
    .proc-step:hover .proc-num-wrap {
        transform: none;
    }

    /* ─── button shimmer ──────────────────────────── */
    .btn-p::before {
        display: none;
    }

    /* ─── proc step hover scale ───────────────────── */
    .proc-step:hover .proc-ico-lbl {
        transform: none;
    }

    /* ─── portfolio overlay ───────────────────────── */
    .pf-card:hover .pf-img-bg {
        transform: none;
    }

    /* ─── srv-link slide ──────────────────────────── */
    .srv-card:hover .srv-link {
        opacity: 1;
        transform: none;
    }

    /* ─── loader ──────────────────────────────────── */
    #loader {
        transition: none;
    }

    .ld-bar {
        transition: none;
    }
}


/* ═══════════════════════════════════════════════════
   TEAM BANNER — بنر تیم زیر نوبار
   ═══════════════════════════════════════════════════ */

.team-banner {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    /* مستقیماً زیر navbar قرار می‌گیره، بدون فاصله */
    margin-top: 0;
}

.team-banner__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    display: block;
    /* در حالت عادی کمی سیاه‌وسفید — با هاور رنگی میشه */
    filter: grayscale(25%) contrast(1.08);
    transform: scale(0.96);
    transition: filter 1.2s ease, transform 1.2s ease;
}

.team-banner:hover .team-banner__img {
    filter: grayscale(0%) contrast(1.05);
    transform: scale(1);
}

/* fade بالا — ادغام با navbar */
.team-banner__fade-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 90px;
    background: linear-gradient(to bottom, var(--d, #050c0a), transparent);
    z-index: 2;
    pointer-events: none;
}

/* fade پایین — ادغام با بخش هیرو */
.team-banner__fade-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 110px;
    background: linear-gradient(to top, var(--d, #050c0a), transparent);
    z-index: 2;
    pointer-events: none;
}

/* overlay تاریک‌کننده ملایم */
.team-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 12, 10, 0.30);
    z-index: 1;
    pointer-events: none;
}

/* لیبل "THE TEAM" گوشه پایین راست */
.team-banner__label {
    position: absolute;
    bottom: 28px;
    right: 5%;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-banner__label-line {
    width: 26px;
    height: 1.5px;
    background: var(--pl, #5ef0c4);
    opacity: 0.7;
}

.team-banner__label-text {
    font-size: 10.5px;
    letter-spacing: 3.5px;
    color: var(--pl, #5ef0c4);
    font-weight: 700;
    opacity: 0.75;
}

/* ═══════════════════════════════════════════════════
   HERO — آپدیت: بدون ستون عکس، تمام‌عرض، وسط‌چین
   ═══════════════════════════════════════════════════ */

.hero {
    min-height: 70vh; /* چون بنر تیم بالاش هست، ارتفاع کمتره */
    padding: 0 5%;
    margin-top: -60px; /* بنر و هیرو با هم ادغام میشن */
    margin-bottom: 0;
    justify-content: center; /* وسط‌چین */
}

.hero-container {
    justify-content: center;
    text-align: center;
    padding: 40px 20px 60px;
    max-width: 860px; /* کمی باریک‌تر چون دو ستونه نیست */
}

/* ستون متن — تمام عرض، وسط‌چین */
.hero-text {
    max-width: 100%;
    align-items: center;
    flex: unset;
    width: 100%;
}

/* ستون عکس — حذف */
.hero-image {
    display: none !important;
}

/* آمار — وسط‌چین */
.h-stats {
    justify-content: center;
}

/* دکمه‌ها — وسط‌چین */
.h-actions {
    justify-content: center;
}

/* عنوان — کمی بزرگ‌تر چون فضا داره */
.h-title {
    font-size: clamp(38px, 6vw, 76px);
}

/* ═══════════════════════════════════════════════════
   TICKER — فاصله با هیرو حذف میشه
   ═══════════════════════════════════════════════════ */

.ticker {
    margin-top: 0;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .team-banner {
        height: 200px;
    }

    .team-banner__img {
        object-position: center 32%;
        /* در موبایل هاور نداریم، پس کمتر grayscale */
        filter: grayscale(10%) contrast(1.05);
    }

    .hero {
        min-height: 60vh;
        margin-top: -40px;
    }

    .hero-container {
        padding: 40px 10px 50px;
    }
}

@media (max-width: 480px) {
    .team-banner {
        height: 140px;
        margin-top: 60px;
    }

    .team-banner__fade-bottom {
        height: 80px;
    }

    .team-banner__label {
        bottom: 20px;
    }
}

/* ═══════════════════════════════════════════════════
   prefers-reduced-motion — اضافه به بخش موجود
   ═══════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
    .team-banner__img {
        transition: none;
        filter: grayscale(0%);
        transform: scale(1);
    }
}

/* ═══════════════════════════════════════════════════
   TEAM BANNER
   ═══════════════════════════════════════════════════ */
.team-banner {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.team-banner__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    display: block;
    filter: grayscale(25%) contrast(1.08);
    transform: scale(0.96);
    transition: filter 1.2s ease, transform 1.2s ease;
}

.team-banner:hover .team-banner__img {
    filter: grayscale(0%) contrast(1.05);
    transform: scale(1);
}

.team-banner__fade-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 90px;
    background: linear-gradient(to bottom, var(--d, #050c0a), transparent);
    z-index: 2;
    pointer-events: none;
}

.team-banner__fade-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 130px;
    background: linear-gradient(to top, var(--d, #050c0a), transparent);
    z-index: 2;
    pointer-events: none;
}

.team-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 12, 10, 0.30);
    z-index: 1;
    pointer-events: none;
}

.team-banner__label {
    position: absolute;
    bottom: 28px;
    right: 5%;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-banner__label-line {
    width: 26px;
    height: 1.5px;
    background: var(--pl, #5ef0c4);
    opacity: 0.7;
}

.team-banner__label-text {
    font-size: 10.5px;
    letter-spacing: 3.5px;
    color: var(--pl, #5ef0c4);
    font-weight: 700;
    opacity: 0.75;
}

/* ═══════════════════════════════════════════════════
   TICKER — نسخه هیرو (زیر بنر تیم، بدون margin-top)
   ═══════════════════════════════════════════════════ */
.ticker--hero {
    margin-top: 0 !important;
    position: relative;
    z-index: 5;
}

/* تیکر اصلی زیر هیرو — حذف میشه چون بالا تعریف شده */
/* اگر تیکر دوم وجود داشت hide بشه */
.hero + .ticker:not(.ticker--hero) {
    display: none;
}

/* ═══════════════════════════════════════════════════
   HERO — چیدمان جدید: وسط‌چین، بدون ستون عکس
   ═══════════════════════════════════════════════════ */
.hero {
    min-height: 80vh;
    padding: 0 5%;
    margin-top: 0;
    margin-bottom: 0;
    justify-content: center;
}

.hero-container {
    justify-content: center;
    text-align: center;
    padding: 50px 20px 60px;
    max-width: 900px;
}

.hero-text {
    max-width: 100%;
    align-items: center;
    flex: unset;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* ستون عکس — حذف */
.hero-image {
    display: none !important;
}

/* h-desc وسط‌چین */
.h-desc {
    text-align: center;
    max-width: 600px;
}

/* ─── کارت‌های خدمات سریع ─── */
.h-services-quick {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    animation: fdD .8s ease .7s both;
}

.h-sq-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(14, 148, 110, 0.06);
    border: 1px solid rgba(14, 148, 110, 0.18);
    border-radius: 50px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    transition: var(--tr);
    cursor: default;
}

.h-sq-card:hover {
    background: rgba(14, 148, 110, 0.14);
    border-color: var(--pbr);
    color: var(--pl);
    transform: translateY(-2px);
}

.h-sq-ico {
    font-size: 15px;
    line-height: 1;
}

/* ─── h-actions وسط‌چین ─── */
.h-actions {
    justify-content: center;
    margin-bottom: 28px;
}

/* ─── نوار اعتماد ─── */
.h-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    animation: fdU .8s ease 1s both;
}

.h-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.h-trust-item svg {
    color: var(--pl);
    flex-shrink: 0;
}

.h-trust-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(14,148,110,0.35);
}

/* ─── آمار وسط‌چین ─── */
.h-stats {
    justify-content: center;
    margin-top: 0;
    padding-top: 28px;
    border-top: 1px solid rgba(14,148,110,0.1);
    width: 100%;
}

/* ─── عنوان بزرگ‌تر ─── */
.h-title {
    font-size: clamp(38px, 6vw, 78px);
    text-align: center;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .team-banner { height: 200px; }

    .team-banner__img {
        object-position: center 32%;
        filter: grayscale(10%) contrast(1.05);
    }

    .hero { min-height: auto; }

    .hero-container { padding: 36px 10px 48px; }

    .h-services-quick { gap: 8px; }

    .h-sq-card {
        padding: 8px 14px;
        font-size: 12px;
    }

    .h-trust-bar { gap: 10px; }

    .h-trust-dot { display: none; }
}

@media (max-width: 480px) {
    .team-banner {
        height: 140px;
        margin-top: 60px;
    }

    .team-banner__fade-bottom { height: 80px; }

    .h-services-quick {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        width: 100%;
    }

    .h-sq-card {
        justify-content: center;
        border-radius: 12px;
    }
}

/* ═══════════════════════════════════════════════════
   prefers-reduced-motion
   ═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    .team-banner__img {
        transition: none;
        filter: grayscale(0%);
        transform: scale(1);
    }
    .h-services-quick,
    .h-trust-bar {
        animation: none;
        opacity: 1;
        transform: none;
    }
}