:root {
    --poshesh-teal: #16a79d;
    --poshesh-teal-dark: #087f79;
    --poshesh-navy: #172235;
    --poshesh-text: #4f5d6d;
    --poshesh-soft: #f4fbfa;
    --poshesh-border: #dfecea;
}

.poshesh-header {
    position: relative;
    z-index: 50;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--poshesh-border);
}

.poshesh-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.poshesh-brand {
    color: var(--poshesh-navy);
    font-weight: 800;
    font-size: 24px;
}

.poshesh-brand img {
    max-height: 52px;
    width: auto;
}

.poshesh-navigation ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 0;
    margin: 0;
}

.poshesh-navigation a {
    font-size: 15px;
    font-weight: 600;
}

.poshesh-navigation a:hover {
    color: var(--poshesh-teal-dark);
}

.poshesh-content {
    padding-block: 55px;
}

.poshesh-footer {
    margin-top: 70px;
    background: var(--poshesh-navy);
    color: #fff;
}

.poshesh-footer-inner {
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.poshesh-footer ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 800px) {

    .poshesh-header-inner,
    .poshesh-footer-inner {
        flex-direction: column;
        justify-content: center;
        padding-block: 20px;
    }

    .poshesh-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }
}


/* ==========================================================
   POSHESH HOMEPAGE V1
   ========================================================== */

.poshesh-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(11,64,78,.07);
}

.poshesh-header-inner {
    min-height: 86px;
}

.poshesh-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    direction: ltr;
}

.poshesh-brand-mark {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: linear-gradient(135deg,#13b7a6,#087f9c);
    color: #fff;
    font-weight: 900;
    font-size: 22px;
    transform: skew(-5deg);
}

.poshesh-brand-name {
    font-family: Arial,sans-serif;
    font-weight: 900;
    letter-spacing: -.6px;
    color: #087d93;
    font-size: 22px;
}

.poshesh-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.poshesh-navigation a {
    position: relative;
    color: #263745;
    font-weight: 600;
    font-size: 15px;
    transition: .25s ease;
}

.poshesh-navigation a:hover {
    color: #0c9f94;
}

.poshesh-navigation a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    border-radius: 10px;
    background: #15ad9f;
    transition: .25s ease;
}

.poshesh-navigation a:hover::after {
    width: 100%;
}

.poshesh-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 16px;
    background: linear-gradient(135deg,#42c78d,#079bb2);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(10,162,153,.18);
}

.poshesh-menu-toggle {
    display: none;
}


/* HERO */

.poshesh-home-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 35%,rgba(51,211,218,.17),transparent 28%),
        radial-gradient(circle at 89% 72%,rgba(28,177,150,.12),transparent 28%),
        linear-gradient(135deg,#fbffff 0%,#f3fcfc 48%,#f8fdff 100%);
}

.poshesh-home-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    left: -180px;
    bottom: -260px;
    background: rgba(54,200,190,.10);
}

.poshesh-hero-pattern {
    position: absolute;
    right: 4%;
    bottom: 7%;
    width: 170px;
    height: 170px;
    opacity: .22;
    background-image:
        radial-gradient(circle,#09a69b 2px,transparent 2px);
    background-size: 19px 19px;
}

.poshesh-hero-grid {
    position: relative;
    z-index: 2;
    min-height: 650px;
    display: grid;
    grid-template-columns: 1fr 1.04fr;
    align-items: center;
    gap: 70px;
    padding-top: 60px;
    padding-bottom: 75px;
}

.poshesh-hero-content {
    order: 2;
}

.poshesh-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    margin-bottom: 20px;
    border-radius: 99px;
    background: #e3f8f4;
    color: #078d83;
    font-size: 13px;
    font-weight: 700;
}

.poshesh-hero-content h1 {
    margin: 0;
    max-width: 650px;
    color: #142b3d;
    font-size: clamp(39px,4.1vw,63px);
    line-height: 1.35;
    letter-spacing: -2px;
}

.poshesh-hero-content h1 span {
    display: block;
    color: #0ba390;
}

.poshesh-hero-lead {
    max-width: 650px;
    margin: 25px 0 0;
    color: #566a76;
    font-size: 17px;
    line-height: 2.05;
}

.poshesh-hero-actions {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 30px;
}

.poshesh-btn {
    min-height: 54px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 15px;
    font-weight: 700;
    transition: .25s ease;
}

.poshesh-btn-primary {
    color: #fff;
    background: linear-gradient(135deg,#23b991,#058fab);
    box-shadow: 0 14px 30px rgba(8,157,157,.18);
}

.poshesh-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(8,157,157,.23);
}

.poshesh-btn-secondary {
    border: 1px solid #abdeda;
    background: rgba(255,255,255,.8);
    color: #126a72;
}

.poshesh-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 25px;
    margin-top: 27px;
    color: #475a66;
    font-size: 14px;
}

.poshesh-hero-points span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.poshesh-hero-points b {
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: #ddf8ef;
    color: #0c9b81;
}


/* HERO ART */

.poshesh-hero-visual {
    order: 1;
    min-height: 470px;
    position: relative;
}

.poshesh-hero-visual::before {
    content: "";
    position: absolute;
    width: 370px;
    height: 370px;
    top: 54px;
    left: 60px;
    border-radius: 44% 56% 55% 45% / 58% 45% 55% 42%;
    background:
        linear-gradient(135deg,rgba(68,218,204,.55),rgba(52,174,220,.22));
    transform: rotate(-10deg);
}

.poshesh-browser {
    position: absolute;
    width: 410px;
    height: 278px;
    left: 40px;
    top: 100px;
    border: 8px solid #173e4b;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 35px 55px rgba(31,104,125,.16);
    transform: rotate(-2deg);
}

.poshesh-browser-top {
    height: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 12px;
    background: #eaf5f6;
}

.poshesh-browser-top i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8dc8cf;
}

.poshesh-browser-content {
    padding: 28px;
    text-align: center;
}

.poshesh-browser-logo {
    margin-bottom: 16px;
    color: #078ba0;
    font-family: Arial,sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.poshesh-browser-content strong {
    display: block;
    color: #183948;
    font-size: 21px;
    line-height: 1.6;
}

.poshesh-browser-content strong span {
    color: #08a593;
}

.poshesh-browser-lines {
    margin: 18px auto 20px;
}

.poshesh-browser-lines i {
    display: block;
    height: 7px;
    margin: 7px auto;
    border-radius: 20px;
    background: #e5f0f2;
}

.poshesh-browser-lines i:nth-child(1) {
    width: 74%;
}

.poshesh-browser-lines i:nth-child(2) {
    width: 57%;
}

.poshesh-browser-lines i:nth-child(3) {
    width: 41%;
}

.poshesh-browser-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
}

.poshesh-browser-cards i {
    height: 44px;
    border-radius: 9px;
    background: #f5fafb;
    border: 1px solid #dfedef;
}

.poshesh-phone {
    position: absolute;
    z-index: 5;
    width: 118px;
    height: 230px;
    left: 382px;
    top: 235px;
    border: 8px solid #153d48;
    border-radius: 29px;
    background: #fff;
    box-shadow: 0 25px 45px rgba(23,81,98,.18);
    transform: rotate(4deg);
}

.poshesh-phone-speaker {
    width: 43px;
    height: 6px;
    margin: 9px auto 13px;
    border-radius: 20px;
    background: #163c47;
}

.poshesh-phone-screen {
    padding: 12px;
}

.poshesh-phone-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin: 3px auto 17px;
    border-radius: 15px;
    background: linear-gradient(135deg,#c9f5ed,#d9f1fa);
    color: #079d93;
    font-weight: 900;
    font-size: 24px;
}

.poshesh-phone-screen i {
    display: block;
    height: 7px;
    margin: 8px 0;
    border-radius: 20px;
    background: #e7f0f2;
}

.poshesh-floating-card {
    position: absolute;
    z-index: 10;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(209,234,234,.9);
    box-shadow: 0 18px 40px rgba(32,100,117,.13);
}

.poshesh-card-growth {
    width: 145px;
    top: 55px;
    left: 333px;
    padding: 16px;
    border-radius: 17px;
}

.poshesh-card-growth small {
    display: block;
    color: #788b94;
}

.poshesh-card-growth strong {
    display: block;
    margin-top: 4px;
    color: #08a18f;
    font-size: 28px;
}

.poshesh-progress {
    height: 5px;
    margin-top: 9px;
    overflow: hidden;
    border-radius: 10px;
    background: #e4efef;
}

.poshesh-progress span {
    display: block;
    width: 88%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg,#15c18f,#06a3b2);
}

.poshesh-card-performance {
    left: 3px;
    bottom: 18px;
    padding: 13px 17px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.poshesh-card-performance > span {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: #e1f8f1;
    color: #0ca18d;
    font-size: 21px;
}

.poshesh-card-performance small,
.poshesh-card-performance strong {
    display: block;
}

.poshesh-card-performance small {
    color: #84949a;
    font-size: 11px;
}

.poshesh-card-performance strong {
    color: #264650;
    font-size: 13px;
}

.poshesh-orbit {
    position: absolute;
    border-radius: 50%;
}

.poshesh-orbit-one {
    width: 47px;
    height: 47px;
    left: 4px;
    top: 76px;
    background: rgba(22,187,171,.15);
}

.poshesh-orbit-two {
    width: 23px;
    height: 23px;
    left: 510px;
    top: 110px;
    background: rgba(39,154,211,.18);
}


/* SERVICES */

.poshesh-home-services {
    padding: 95px 0 105px;
    background: #fff;
}

.poshesh-section-heading {
    max-width: 680px;
    margin: 0 auto 46px;
    text-align: center;
}

.poshesh-section-heading > span {
    color: #0b9b8e;
    font-size: 14px;
    font-weight: 800;
}

.poshesh-section-heading h2 {
    margin: 8px 0 13px;
    color: #172e3e;
    font-size: clamp(30px,3vw,43px);
}

.poshesh-section-heading p {
    margin: 0;
    color: #6b7c85;
    font-size: 16px;
}

.poshesh-service-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.poshesh-service-card {
    position: relative;
    padding: 27px 23px;
    overflow: hidden;
    border: 1px solid #e2eeee;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(42,95,108,.06);
    transition: .28s ease;
}

.poshesh-service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 50px rgba(42,95,108,.11);
}

.poshesh-service-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 16px;
    font-size: 22px;
    font-weight: 900;
}

.icon-blue {
    background: #e3f4ff;
    color: #258ac0;
}

.icon-green {
    background: #dff8ef;
    color: #109f83;
}

.icon-purple {
    background: #efe8ff;
    color: #7d5cd4;
}

.icon-orange {
    background: #fff0de;
    color: #e68a2b;
}

.poshesh-service-card h3 {
    margin: 0 0 11px;
    color: #213b48;
    font-size: 18px;
}

.poshesh-service-card p {
    min-height: 90px;
    margin: 0;
    color: #708089;
    font-size: 14px;
    line-height: 1.9;
}

.poshesh-service-card > span {
    display: inline-block;
    margin-top: 18px;
    color: #0b948c;
    font-size: 13px;
    font-weight: 700;
}


/* FOOTER */

.poshesh-footer {
    margin-top: 0;
}


/* RESPONSIVE */

@media (max-width: 1050px) {

    .poshesh-navigation {
        gap: 18px;
    }

    .poshesh-header-cta {
        display: none;
    }

    .poshesh-hero-grid {
        gap: 35px;
    }

    .poshesh-browser {
        width: 360px;
    }

    .poshesh-phone {
        left: 330px;
    }

    .poshesh-card-growth {
        left: 288px;
    }

    .poshesh-service-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 800px) {

    .poshesh-header-inner {
        flex-direction: row;
        padding-block: 0;
    }

    .poshesh-menu-toggle {
        display: grid;
        width: 44px;
        height: 44px;
        padding: 10px;
        border: 0;
        border-radius: 12px;
        background: #edf8f7;
    }

    .poshesh-menu-toggle span {
        display: block;
        height: 2px;
        margin: 3px 0;
        background: #187c80;
    }

    .poshesh-navigation {
        display: none;
    }

    .poshesh-navigation.is-open {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        top: 78px;
        right: 20px;
        left: 20px;
        padding: 15px;
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 18px 45px rgba(32,69,78,.17);
    }

    .poshesh-navigation.is-open a {
        padding: 11px 10px;
    }

    .poshesh-hero-grid {
        grid-template-columns: 1fr;
        padding-top: 45px;
        gap: 25px;
    }

    .poshesh-hero-content {
        order: 1;
        text-align: center;
    }

    .poshesh-hero-content h1 {
        margin-inline: auto;
        font-size: 39px;
    }

    .poshesh-hero-lead {
        margin-inline: auto;
    }

    .poshesh-hero-actions,
    .poshesh-hero-points {
        justify-content: center;
    }

    .poshesh-hero-visual {
        order: 2;
        width: 520px;
        max-width: 100%;
        margin-inline: auto;
    }

    .poshesh-service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {

    .poshesh-container {
        width: min(100% - 26px,1180px);
    }

    .poshesh-hero-content h1 {
        font-size: 33px;
        letter-spacing: -1px;
    }

    .poshesh-hero-lead {
        font-size: 15px;
    }

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

    .poshesh-btn {
        width: 100%;
    }

    .poshesh-hero-visual {
        min-height: 380px;
        transform: scale(.82);
        transform-origin: top center;
        margin-bottom: -60px;
    }

    .poshesh-browser {
        left: 5px;
    }

    .poshesh-phone {
        left: 305px;
    }

    .poshesh-card-growth {
        left: 270px;
    }
}


/* ==========================================================
   POSHESH HOMEPAGE HERO V2
   ========================================================== */

.poshesh-hero-grid {
    grid-template-columns: 1.03fr .97fr;
    min-height: 590px;
    gap: 55px;
    padding-top: 48px;
    padding-bottom: 62px;
}

/* فارسی: متن راست، تصویر چپ */
.poshesh-hero-content {
    order: 1;
}

.poshesh-hero-visual {
    order: 2;
    min-height: 465px;
}

.poshesh-hero-content h1 {
    max-width: 690px;
    font-size: clamp(41px,3.55vw,57px);
    line-height: 1.34;
    letter-spacing: -1.7px;
}

.poshesh-title-line {
    display: block;
}

.poshesh-title-main {
    color: #142b3d;
    white-space: nowrap;
}

.poshesh-title-growth {
    color: #0ba390;
}

.poshesh-hero-lead {
    max-width: 640px;
    margin-top: 22px;
}

.poshesh-hero-actions {
    margin-top: 26px;
}

.poshesh-hero-points {
    margin-top: 23px;
}


/* بزرگ‌تر شدن تصویر نمایشی */

.poshesh-hero-visual::before {
    width: 410px;
    height: 410px;
    top: 34px;
    left: 38px;
}

.poshesh-browser {
    width: 455px;
    height: 295px;
    left: 12px;
    top: 78px;
}

.poshesh-browser-content {
    padding: 27px 30px;
}

.poshesh-browser-content strong {
    font-size: 23px;
}

.poshesh-phone {
    width: 124px;
    height: 238px;
    left: 405px;
    top: 218px;
}

.poshesh-card-growth {
    top: 37px;
    left: 348px;
}

.poshesh-card-performance {
    left: -10px;
    bottom: 4px;
}

.poshesh-orbit-one {
    left: -12px;
    top: 54px;
}

.poshesh-orbit-two {
    left: 510px;
    top: 88px;
}


/* کمی قوی‌تر شدن Hero */

.poshesh-home-hero {
    border-bottom: 1px solid rgba(18,156,149,.07);
}

.poshesh-home-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -260px;
    top: -270px;
    border-radius: 50%;
    background: rgba(20,184,169,.055);
}


/* Desktop متوسط */

@media (max-width: 1150px) {

    .poshesh-title-main {
        white-space: normal;
    }

    .poshesh-browser {
        width: 405px;
    }

    .poshesh-phone {
        left: 355px;
    }

    .poshesh-card-growth {
        left: 305px;
    }
}


/* Tablet و Mobile */

@media (max-width: 800px) {

    .poshesh-hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 25px;
        padding-top: 45px;
        padding-bottom: 55px;
    }

    .poshesh-hero-content {
        order: 1;
    }

    .poshesh-hero-visual {
        order: 2;
        width: 540px;
        max-width: 100%;
        margin-inline: auto;
    }

    .poshesh-title-main {
        white-space: normal;
    }
}



/* ==========================================================
   POSHESH IDENTITY V1
   ========================================================== */

/* Iranian / geometric inspired subtle pattern */

.poshesh-home-hero .poshesh-hero-pattern {
    width: 210px;
    height: 210px;
    right: 4%;
    bottom: 3%;
    opacity: .17;
    background:
        linear-gradient(45deg,
            transparent 43%,
            #0ba797 44%,
            #0ba797 47%,
            transparent 48%),
        linear-gradient(-45deg,
            transparent 43%,
            #0ba797 44%,
            #0ba797 47%,
            transparent 48%);
    background-size: 28px 28px;
    mask-image: linear-gradient(
        135deg,
        transparent,
        #000 30%,
        #000 70%,
        transparent
    );
}


/* WHY POSHESH */

.poshesh-why {
    padding: 95px 0 105px;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fcfc 100%
        );
}

.poshesh-why-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.poshesh-why-card {
    position: relative;
    min-height: 250px;
    padding: 30px 25px;
    border: 1px solid #e1eeee;
    border-radius: 22px;
    background: rgba(255,255,255,.95);
    overflow: hidden;
    transition: .25s ease;
}

.poshesh-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(40,91,105,.09);
}

.poshesh-why-number {
    position: absolute;
    left: 18px;
    top: 10px;
    font-family: Arial,sans-serif;
    font-size: 54px;
    line-height: 1;
    font-weight: 900;
    color: rgba(9,165,151,.075);
}

.poshesh-why-card h3 {
    position: relative;
    margin: 42px 0 12px;
    color: #173846;
    font-size: 19px;
}

.poshesh-why-card h3::before {
    content: "";
    display: block;
    width: 35px;
    height: 4px;
    margin-bottom: 15px;
    border-radius: 10px;
    background: linear-gradient(90deg,#13b795,#209eca);
}

.poshesh-why-card p {
    position: relative;
    margin: 0;
    color: #6e7d85;
    font-size: 14px;
    line-height: 2;
}


/* EXPERIENCE */

.poshesh-experience {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background:
        radial-gradient(
            circle at 88% 30%,
            rgba(35,196,176,.12),
            transparent 28%
        ),
        #f1fbfa;
}

.poshesh-experience::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    left: -200px;
    bottom: -210px;
    border-radius: 50%;
    border: 55px solid rgba(20,171,160,.07);
}

.poshesh-experience-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 85px;
}

.poshesh-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: #0b988d;
    font-size: 14px;
    font-weight: 800;
}

.poshesh-experience-content h2 {
    margin: 0;
    color: #163545;
    font-size: clamp(31px,3.2vw,46px);
    line-height: 1.55;
}

.poshesh-experience-content h2 strong {
    display: block;
    color: #09a08f;
}

.poshesh-experience-content p {
    max-width: 610px;
    margin: 22px 0 0;
    color: #63757e;
    font-size: 15px;
    line-height: 2.15;
}

.poshesh-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 27px;
    color: #078f89;
    font-weight: 800;
}


/* HISTORY ART */

.poshesh-experience-visual {
    position: relative;
    min-height: 350px;
}

.poshesh-history-window {
    position: absolute;
    width: 470px;
    max-width: 100%;
    left: 0;
    top: 20px;
    border: 1px solid #cee8e6;
    border-radius: 25px;
    overflow: hidden;
    background: rgba(255,255,255,.93);
    box-shadow: 0 28px 55px rgba(35,93,107,.12);
    transform: rotate(-2deg);
}

.poshesh-history-top {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    background: #e9f6f5;
}

.poshesh-history-top i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #78c5c2;
}

.poshesh-history-top span {
    margin-right: auto;
    color: #238f91;
    font-family: Arial,sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.poshesh-history-body {
    padding: 45px 36px;
}

.poshesh-history-year small,
.poshesh-history-today small {
    display: block;
    color: #839298;
    font-size: 12px;
}

.poshesh-history-year strong {
    display: block;
    margin-top: 3px;
    color: #153d4a;
    font-size: 50px;
    line-height: 1.2;
}

.poshesh-history-line {
    position: relative;
    height: 3px;
    margin: 30px 0;
    border-radius: 20px;
    background:
        linear-gradient(90deg,#13b79c,#249bd0);
}

.poshesh-history-line::before,
.poshesh-history-line::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #12a59a;
    transform: translateY(-50%);
}

.poshesh-history-line::before {
    right: 0;
}

.poshesh-history-line::after {
    left: 0;
}

.poshesh-history-today strong {
    display: block;
    margin-top: 5px;
    color: #08a08f;
    font-size: 19px;
}

.poshesh-history-dot {
    position: absolute;
    border-radius: 50%;
}

.dot-one {
    width: 60px;
    height: 60px;
    right: 14px;
    top: 5px;
    background: rgba(15,181,169,.15);
}

.dot-two {
    width: 25px;
    height: 25px;
    right: 75px;
    bottom: 12px;
    background: rgba(38,147,208,.18);
}


@media (max-width: 950px) {

    .poshesh-why-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .poshesh-experience-grid {
        gap: 35px;
    }
}

@media (max-width: 800px) {

    .poshesh-experience-grid {
        grid-template-columns: 1fr;
    }

    .poshesh-experience-content {
        text-align: center;
    }

    .poshesh-experience-content p {
        margin-inline: auto;
    }

    .poshesh-experience-visual {
        width: 500px;
        max-width: 100%;
        margin-inline: auto;
    }
}

@media (max-width: 560px) {

    .poshesh-why-grid {
        grid-template-columns: 1fr;
    }

    .poshesh-why-card {
        min-height: auto;
    }

    .poshesh-history-body {
        padding: 35px 25px;
    }
}



/* ==========================================================
   POSHESH OFFICIAL LOGO
   ========================================================== */

.poshesh-brand .custom-logo-link {
    display: flex;
    align-items: center;
    line-height: 0;
}

.poshesh-brand .custom-logo {
    display: block;
    width: auto;
    height: 40px;
    max-width: 180px;
    object-fit: contain;
}

@media (max-width: 800px) {
    .poshesh-brand .custom-logo {
        height: 35px;
        max-width: 155px;
    }
}



/* ==========================================================
   POSHESH PORTFOLIO V1
   ========================================================== */

.poshesh-portfolio {
    padding: 105px 0;
    background: #fff;
}

.poshesh-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 23px;
}

.poshesh-project-card {
    overflow: hidden;
    border: 1px solid #e0eeee;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(35,83,96,.065);
    transition: .28s ease;
}

.poshesh-project-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 55px rgba(35,83,96,.11);
}

.poshesh-project-preview {
    min-height: 255px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.project-industrial {
    background:
        radial-gradient(circle at 18% 20%,rgba(36,168,212,.18),transparent 28%),
        linear-gradient(135deg,#eaf8fb,#effcf8);
}

.project-commerce {
    background:
        radial-gradient(circle at 82% 28%,rgba(128,90,220,.13),transparent 28%),
        linear-gradient(135deg,#f5f1ff,#f0fbfa);
}

.project-corporate {
    background:
        radial-gradient(circle at 20% 75%,rgba(23,181,149,.15),transparent 28%),
        linear-gradient(135deg,#ecfbf7,#f2f8fd);
}

.project-browser-bar {
    position: absolute;
    top: 27px;
    left: 37px;
    right: 37px;
    height: 30px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 14px 14px 0 0;
    background: #e2f1f2;
}

.project-browser-bar i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #78b9bf;
}

.project-screen {
    position: absolute;
    top: 57px;
    left: 37px;
    right: 37px;
    bottom: 25px;
    padding: 35px 25px 20px;
    border-radius: 0 0 17px 17px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 20px 35px rgba(41,91,104,.08);
    text-align: center;
}

.project-screen > span {
    color: #11a291;
    font-family: Arial,sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.project-screen strong {
    display: block;
    margin-top: 14px;
    color: #173b49;
    font-size: 18px;
}

.project-screen > div:not(.project-products) {
    width: 68%;
    height: 7px;
    margin: 22px auto 0;
    border-radius: 20px;
    background: #deeded;
}

.project-products {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
    margin-top: 20px;
}

.project-products i {
    height: 49px;
    border-radius: 9px;
    background: #eff8f7;
    border: 1px solid #dcecea;
}

.poshesh-project-info {
    padding: 25px 25px 28px;
}

.poshesh-project-info > span {
    color: #08a08f;
    font-size: 12px;
    font-weight: 800;
}

.poshesh-project-info h3 {
    margin: 6px 0 9px;
    color: #193945;
    font-size: 20px;
}

.poshesh-project-info p {
    margin: 0;
    color: #718188;
    font-size: 14px;
    line-height: 1.95;
}

.poshesh-portfolio-action {
    margin-top: 37px;
    text-align: center;
}


/* ==========================================================
   CONSULTATION / AVATAR PLACEHOLDER
   ========================================================== */

.poshesh-consultation {
    padding: 30px 0 110px;
    background: #fff;
}

.poshesh-consultation-box {
    min-height: 390px;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    overflow: hidden;
    border: 1px solid #d7ecea;
    border-radius: 30px;
    background:
        radial-gradient(circle at 15% 40%,rgba(26,187,182,.15),transparent 28%),
        linear-gradient(135deg,#f0fbfa,#f6fcff);
}

.poshesh-consultation-art {
    position: relative;
    min-height: 390px;
}

.poshesh-avatar-placeholder {
    position: absolute;
    width: 330px;
    height: 350px;
    left: 45px;
    bottom: 0;
}

.avatar-head {
    position: absolute;
    z-index: 2;
    width: 115px;
    height: 125px;
    left: 110px;
    top: 26px;
    border-radius: 48% 48% 44% 44%;
    background:
        linear-gradient(145deg,#d7c2b0,#bd9c85);
}

.avatar-body {
    position: absolute;
    width: 240px;
    height: 220px;
    left: 50px;
    bottom: -35px;
    border-radius: 48% 48% 10% 10%;
    background:
        linear-gradient(145deg,#159aab,#126e88);
}

.avatar-card {
    position: absolute;
    z-index: 5;
    width: 175px;
    height: 105px;
    left: 5px;
    bottom: 35px;
    padding: 21px;
    border-radius: 17px;
    transform: rotate(-8deg);
    background: linear-gradient(135deg,#079f96,#087a94);
    color: #fff;
    box-shadow: 0 22px 35px rgba(16,92,110,.22);
}

.avatar-card span,
.avatar-card strong {
    display: block;
}

.avatar-card span {
    font-family: Arial,sans-serif;
    font-size: 11px;
    letter-spacing: 1.4px;
}

.avatar-card strong {
    margin-top: 7px;
    font-size: 18px;
}

.poshesh-consultation-content {
    padding: 55px 65px;
}

.poshesh-consultation-content > span {
    color: #079b8e;
    font-size: 13px;
    font-weight: 800;
}

.poshesh-consultation-content h2 {
    margin: 8px 0 15px;
    color: #173846;
    font-size: clamp(30px,3vw,43px);
    line-height: 1.55;
}

.poshesh-consultation-content p {
    max-width: 650px;
    margin: 0;
    color: #667981;
    line-height: 2.05;
}

.poshesh-consultation-points {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 22px;
    margin: 22px 0 26px;
    color: #405961;
    font-size: 14px;
}

.poshesh-consultation-points span::first-letter {
    color: #0ba58f;
}


/* ==========================================================
   FOOTER V2
   ========================================================== */

.poshesh-footer {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding: 58px 0 35px;
    background:
        radial-gradient(circle at 90% 10%,rgba(20,164,157,.12),transparent 26%),
        #142238;
    color: #dce7ed;
}

.poshesh-footer::before {
    content: "POSHESH";
    position: absolute;
    left: -25px;
    bottom: -35px;
    font-family: Arial,sans-serif;
    font-size: 120px;
    font-weight: 900;
    letter-spacing: -5px;
    color: rgba(255,255,255,.025);
}

.poshesh-footer-inner {
    position: relative;
    z-index: 2;
    min-height: auto;
}

@media (max-width: 900px) {

    .poshesh-portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }

    .poshesh-consultation-box {
        grid-template-columns: 1fr;
    }

    .poshesh-consultation-art {
        order: 2;
    }

    .poshesh-consultation-content {
        text-align: center;
    }

    .poshesh-consultation-points {
        justify-content: center;
    }

    .poshesh-avatar-placeholder {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 620px) {

    .poshesh-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .poshesh-consultation-content {
        padding: 40px 24px;
    }
}


.poshesh-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.15fr;
    gap: 50px;
}

.poshesh-footer-brand {
    max-width: 330px;
}

.poshesh-footer-logo .custom-logo {
    height: 43px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .95;
}

.poshesh-footer-brand p,
.poshesh-footer-cta p {
    margin: 19px 0 0;
    color: #aebdca;
    font-size: 13px;
    line-height: 2;
}

.poshesh-footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.poshesh-footer-column h3 {
    margin: 0 0 9px;
    color: #fff;
    font-size: 15px;
}

.poshesh-footer-column a {
    color: #b8c7d1;
    font-size: 13px;
    transition: .2s ease;
}

.poshesh-footer-column a:hover {
    color: #39c5af;
}

.poshesh-footer-cta > a {
    display: inline-block;
    margin-top: 11px;
    color: #42cfb6;
    font-weight: 800;
}

.poshesh-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 45px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.09);
    color: #8698a7;
    font-size: 12px;
}

@media (max-width: 850px) {

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

@media (max-width: 540px) {

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

    .poshesh-footer-bottom {
        flex-direction: column;
    }
}



/* ==========================================================
   POSHESH REAL AVATAR V1
   ========================================================== */

.poshesh-consultation-art {
    position: relative;
    min-height: 390px;
    overflow: hidden;
}

.poshesh-consultation-avatar {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.poshesh-consultation-avatar-image {
    display: block;
    width: auto;
    height: 430px;
    max-width: none;
    margin-bottom: -25px;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(24,77,91,.10));
}

@media (max-width: 900px) {

    .poshesh-consultation-art {
        min-height: 390px;
    }

    .poshesh-consultation-avatar-image {
        height: 430px;
        margin-bottom: -25px;
    }
}

@media (max-width: 620px) {

    .poshesh-consultation-art {
        min-height: 350px;
    }

    .poshesh-consultation-avatar-image {
        height: 385px;
        margin-bottom: -20px;
    }
}



/* ==========================================================
   POSHESH REAL PORTFOLIO V1
   ========================================================== */

.poshesh-project-real {
    padding: 0;
    min-height: 0;
    aspect-ratio: 3 / 2;
    background: #edf7f7;
    overflow: hidden;
}

.poshesh-project-real > a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.poshesh-project-real img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .45s ease;
}

.poshesh-real-project:hover
.poshesh-project-real img {
    transform: scale(1.035);
}

.poshesh-real-project
.poshesh-project-info {
    display: flex;
    flex-direction: column;
    min-height: 240px;
}

.poshesh-project-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    margin-top: auto;
    padding-top: 18px;
    color: #079c91;
    font-size: 13px;
    font-weight: 800;
}

.poshesh-project-link b {
    font-size: 16px;
    font-weight: 400;
    transition: transform .2s ease;
}

.poshesh-project-link:hover b {
    transform: translateX(-4px);
}

@media (max-width: 620px) {

    .poshesh-real-project
    .poshesh-project-info {
        min-height: auto;
    }

}



/* ==========================================================
   POSHESH HISTORY TIMELINE V2
   ========================================================== */

.poshesh-brand-timeline {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 34px;
    border: 1px solid rgba(18,164,157,.16);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(26,184,176,.13),
            transparent 32%
        ),
        rgba(255,255,255,.82);
    box-shadow: 0 25px 55px rgba(33,83,94,.08);
}

.poshesh-timeline-start {
    text-align: center;
}

.poshesh-timeline-year {
    display: block;
    color: #119f94;
    font-size: 45px;
    font-weight: 900;
    line-height: 1;
}

.poshesh-timeline-start strong {
    display: block;
    margin-top: 8px;
    color: #183a48;
    font-size: 20px;
}

.poshesh-timeline-start small {
    display: block;
    margin-top: 6px;
    color: #819298;
    font-size: 12px;
}

.poshesh-timeline-path {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 27px 15px;
}

.poshesh-timeline-path::before {
    content: "";
    position: absolute;
    right: 6px;
    left: 6px;
    top: 50%;
    height: 3px;
    border-radius: 20px;
    background: linear-gradient(
        90deg,
        #168da2,
        #61c8c0,
        #0aa394
    );
}

.poshesh-timeline-path span,
.poshesh-timeline-path i {
    position: relative;
    z-index: 2;
    display: block;
    width: 14px;
    height: 14px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #0aa394;
    box-shadow: 0 0 0 2px rgba(10,163,148,.15);
}

.poshesh-timeline-path i {
    width: 11px;
    height: 11px;
    background: #57beb8;
}

.poshesh-timeline-era {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border-radius: 19px;
    background: rgba(244,250,250,.84);
}

.poshesh-history-logo {
    min-height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
}

.poshesh-history-logo.old img {
    display: block;
    width: 100px;
    height: 78px;
    object-fit: contain;
}

.poshesh-history-logo.current .custom-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.poshesh-history-logo.current .custom-logo {
    display: block;
    width: 105px;
    height: auto;
    max-height: 58px;
    object-fit: contain;
}

.poshesh-timeline-era-text strong {
    display: block;
    color: #173846;
    font-size: 16px;
}

.poshesh-timeline-era-text p {
    margin: 6px 0 0;
    color: #71868d;
    font-size: 12px;
    line-height: 1.95;
}

.poshesh-timeline-evolution {
    position: relative;
    margin: 15px 0;
    padding: 11px 16px;
    text-align: center;
}

.poshesh-timeline-evolution::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 50%;
    width: 1px;
    background: #c5e4e1;
}

.poshesh-timeline-evolution span,
.poshesh-timeline-evolution small {
    position: relative;
    z-index: 2;
    display: table;
    margin: 0 auto;
    padding: 2px 10px;
    background: #f0fbfa;
}

.poshesh-timeline-evolution span {
    color: #078f86;
    font-size: 13px;
    font-weight: 800;
}

.poshesh-timeline-evolution small {
    margin-top: 5px;
    color: #82959b;
    font-size: 10px;
    line-height: 1.8;
}

@media (max-width: 620px) {

    .poshesh-brand-timeline {
        padding: 24px 18px;
    }

    .poshesh-timeline-year {
        font-size: 38px;
    }

    .poshesh-timeline-era {
        grid-template-columns: 92px 1fr;
        gap: 13px;
    }

    .poshesh-history-logo {
        min-height: 78px;
    }

    .poshesh-history-logo.old img {
        width: 75px;
        height: 62px;
    }

    .poshesh-history-logo.current .custom-logo {
        width: 82px;
    }
}



/* ==========================================================
   POSHESH AVATAR HISTORY BACKGROUND V1
   ========================================================== */

.poshesh-consultation-art::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: 280px;
    height: 220px;
    left: 50%;
    top: 50%;
    transform:
        translate(-50%,-50%)
        rotate(-7deg);

    background:
        url("https://poshesh.com/wp-content/uploads/2026/08/logo-old-poshesh.png")
        center / contain
        no-repeat;

    opacity: .055;
    filter: grayscale(1);
    pointer-events: none;
}

.poshesh-consultation-avatar {
    z-index: 2;
}

@media (max-width: 620px) {

    .poshesh-consultation-art::before {
        width: 225px;
        height: 180px;
        opacity: .05;
    }

}



/* ==========================================================
   POSHESH INTERACTIVE HISTORY V1
   ========================================================== */

.poshesh-history-interactive {
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
    padding: 30px;
    border: 1px solid rgba(12,157,148,.15);
    border-radius: 28px;
    background: rgba(255,255,255,.84);
    box-shadow: 0 25px 55px rgba(34,80,92,.08);
}

.poshesh-history-nav {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.poshesh-history-point {
    appearance: none;
    padding: 0;
    border: 0;
    background: transparent;
    color: #71858c;
    cursor: pointer;
    text-align: center;
}

.poshesh-history-point strong,
.poshesh-history-point span {
    display: block;
}

.poshesh-history-point strong {
    color: #38545e;
    font-size: 11px;
    line-height: 1.6;
}

.poshesh-history-point span {
    margin-top: 2px;
    color: #91a2a7;
    font-size: 9px;
}

.poshesh-history-point.is-active strong {
    color: #079b90;
}

.poshesh-history-range-wrap {
    position: relative;
    margin: 0 7px 27px;
}

.poshesh-history-range-wrap::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 4px;
    border-radius: 20px;
    background:
        linear-gradient(
            to left,
            #0aa394 0,
            #16aeb0 var(--history-progress),
            #d8ecea var(--history-progress),
            #d8ecea 100%
        );
    transform: translateY(-50%);
}

.poshesh-history-range {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 30px;
    margin: 0;
    appearance: none;
    background: transparent;
    cursor: grab;
}

.poshesh-history-range:active {
    cursor: grabbing;
}

.poshesh-history-range::-webkit-slider-runnable-track {
    height: 4px;
    background: transparent;
}

.poshesh-history-range::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
    margin-top: -10px;
    appearance: none;
    border: 5px solid #fff;
    border-radius: 50%;
    background: #0a9d95;
    box-shadow:
        0 0 0 2px rgba(10,157,149,.18),
        0 5px 14px rgba(15,99,104,.18);
}

.poshesh-history-range::-moz-range-track {
    height: 4px;
    background: transparent;
}

.poshesh-history-range::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border: 5px solid #fff;
    border-radius: 50%;
    background: #0a9d95;
}

.poshesh-history-stage {
    min-height: 265px;
}

.poshesh-history-slide {
    display: none;
    grid-template-columns: 145px 1fr;
    gap: 24px;
    align-items: center;
    min-height: 250px;
    padding: 22px;
    border-radius: 21px;
    background: #f6fbfb;
    animation: posheshHistoryIn .28s ease;
}

.poshesh-history-slide.is-active {
    display: grid;
}

@keyframes posheshHistoryIn {

    from {
        opacity: 0;
        transform: translateY(7px);
    }

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

.poshesh-history-media,
.poshesh-history-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 145px;
    overflow: hidden;
    border-radius: 19px;
    background: #fff;
}

.poshesh-history-media img {
    display: block;
    width: 125px;
    max-height: 125px;
    object-fit: contain;
}

.poshesh-history-media.current .custom-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.poshesh-history-media.current .custom-logo {
    width: 125px;
    height: auto;
    object-fit: contain;
}

.poshesh-history-graphic span {
    color: #0b9b94;
    font-family: Arial,sans-serif;
    font-size: 32px;
    font-weight: 800;
}

.poshesh-history-copy > span {
    color: #079b90;
    font-size: 12px;
    font-weight: 800;
}

.poshesh-history-copy h3 {
    margin: 7px 0 9px;
    color: #173946;
    font-size: 19px;
    line-height: 1.7;
}

.poshesh-history-copy p {
    margin: 0;
    color: #70858c;
    font-size: 12px;
    line-height: 2;
}

.poshesh-history-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 18px;
}

.poshesh-history-prev,
.poshesh-history-next {
    width: 37px;
    height: 37px;
    border: 1px solid #d4e9e7;
    border-radius: 50%;
    background: #fff;
    color: #079b90;
    cursor: pointer;
    font-size: 17px;
    transition: .2s ease;
}

.poshesh-history-prev:hover,
.poshesh-history-next:hover {
    border-color: #0ba398;
    background: #eefaf8;
}

.poshesh-history-counter {
    min-width: 50px;
    color: #819299;
    text-align: center;
    font-size: 12px;
}

.poshesh-history-counter b {
    color: #079b90;
}

.poshesh-history-help {
    margin: 10px 0 0;
    color: #9aabad;
    text-align: center;
    font-size: 10px;
}

@media (max-width: 620px) {

    .poshesh-history-interactive {
        padding: 20px 15px;
    }

    .poshesh-history-nav {
        gap: 3px;
    }

    .poshesh-history-point strong {
        font-size: 9px;
    }

    .poshesh-history-point span {
        display: none;
    }

    .poshesh-history-slide,
    .poshesh-history-slide.is-active {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .poshesh-history-media,
    .poshesh-history-graphic {
        min-height: 120px;
    }

}



/* ==========================================================
   POSHESH HISTORY AFFORDANCE V1
   Make interactive timeline immediately discoverable
   ========================================================== */

.poshesh-history-range {
    cursor: ew-resize;
}


/* Main draggable handle */

.poshesh-history-range::-webkit-slider-thumb {
    width: 30px;
    height: 30px;
    margin-top: -13px;
    border: 5px solid #fff;
    background: #f3a044;
    box-shadow:
        0 0 0 3px rgba(243,160,68,.28),
        0 7px 18px rgba(93,70,31,.20);
    animation: posheshTimelineHint 1.15s ease-in-out 3;
}

.poshesh-history-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: 5px solid #fff;
    background: #f3a044;
    box-shadow:
        0 0 0 3px rgba(243,160,68,.28),
        0 7px 18px rgba(93,70,31,.20);
}


/* Active era is visibly selectable */

.poshesh-history-point strong {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 9px;
    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.poshesh-history-point.is-active strong {
    color: #644517;
    background: #fff0d9;
    transform: translateY(-2px);
}


/* Stronger previous / next buttons */

.poshesh-history-prev,
.poshesh-history-next {
    border-color: #0ba398;
    background: #0ba398;
    color: #fff;
    box-shadow: 0 6px 16px rgba(11,163,152,.16);
}

.poshesh-history-prev:hover,
.poshesh-history-next:hover {
    background: #087f79;
    color: #fff;
}


/* More visible instruction */

.poshesh-history-help {
    margin-top: 12px;
    color: #536f77;
    font-size: 11px;
    font-weight: 700;
}

.poshesh-history-help::before {
    content: "↔";
    display: inline-block;
    margin-left: 6px;
    color: #f3a044;
    font-size: 17px;
    vertical-align: -2px;
}


@keyframes posheshTimelineHint {

    0%,
    100% {
        box-shadow:
            0 0 0 3px rgba(243,160,68,.25),
            0 7px 18px rgba(93,70,31,.18);
    }

    50% {
        box-shadow:
            0 0 0 10px rgba(243,160,68,.08),
            0 7px 20px rgba(93,70,31,.23);
    }
}


@media (prefers-reduced-motion: reduce) {

    .poshesh-history-range::-webkit-slider-thumb {
        animation: none;
    }

}



/* ==========================================================
   POSHESH HISTORY AFFORDANCE V2
   Triangle pointer + ruler timeline
   ========================================================== */

.poshesh-history-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background: transparent;
    cursor: ew-resize;
    position: relative;
    z-index: 2;
}


/* --------------------------
   RULER TRACK
   thick center line + thin side lines + tick marks
   -------------------------- */

.poshesh-history-range::-webkit-slider-runnable-track {
    height: 34px;
    border-radius: 999px;
    background:
        repeating-linear-gradient(
            to right,
            rgba(11,163,152,.22) 0 2px,
            transparent 2px 34px
        ),
        linear-gradient(
            to bottom,
            transparent 0 8px,
            rgba(11,163,152,.18) 8px 9px,
            transparent 9px 12px,
            #cfe1e0 12px 13px,
            #18b0a5 13px 17px,
            #cfe1e0 17px 18px,
            transparent 18px 21px,
            rgba(11,163,152,.18) 21px 22px,
            transparent 22px 100%
        );
}

.poshesh-history-range::-moz-range-track {
    height: 34px;
    border: none;
    border-radius: 999px;
    background:
        repeating-linear-gradient(
            to right,
            rgba(11,163,152,.22) 0 2px,
            transparent 2px 34px
        ),
        linear-gradient(
            to bottom,
            transparent 0 8px,
            rgba(11,163,152,.18) 8px 9px,
            transparent 9px 12px,
            #cfe1e0 12px 13px,
            #18b0a5 13px 17px,
            #cfe1e0 17px 18px,
            transparent 18px 21px,
            rgba(11,163,152,.18) 21px 22px,
            transparent 22px 100%
        );
}


/* --------------------------
   TRIANGLE POINTER
   رأس بالا برای اشاره به عنوان دوره
   -------------------------- */

.poshesh-history-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 34px;
    height: 34px;
    margin-top: 0;
    background: #f2a243;
    border: 4px solid #fff;
    clip-path: polygon(50% 0, 100% 62%, 80% 100%, 20% 100%, 0 62%);
    box-shadow:
        0 0 0 3px rgba(242,162,67,.22),
        0 8px 18px rgba(120,82,30,.18);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background .18s ease;
    animation: posheshTimelinePointerHint 1.15s ease-in-out 3;
}

.poshesh-history-range::-moz-range-thumb {
    width: 26px;
    height: 26px;
    border: 4px solid #fff;
    background: #f2a243;
    clip-path: polygon(50% 0, 100% 62%, 80% 100%, 20% 100%, 0 62%);
    box-shadow:
        0 0 0 3px rgba(242,162,67,.22),
        0 8px 18px rgba(120,82,30,.18);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}

.poshesh-history-range:hover::-webkit-slider-thumb,
.poshesh-history-range:focus::-webkit-slider-thumb {
    background: #e8922a;
    transform: scale(1.05);
    box-shadow:
        0 0 0 5px rgba(242,162,67,.18),
        0 10px 22px rgba(120,82,30,.22);
}

.poshesh-history-range:hover::-moz-range-thumb,
.poshesh-history-range:focus::-moz-range-thumb {
    background: #e8922a;
    transform: scale(1.05);
}


/* --------------------------
   ACTIVE TOP LABEL
   -------------------------- */

.poshesh-history-point strong {
    display: inline-block;
    padding: 4px 9px;
    border-radius: 10px;
    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.poshesh-history-point.is-active strong {
    color: #6d4918;
    background: #fff1dd;
    box-shadow: 0 4px 10px rgba(160,112,42,.10);
    transform: translateY(-2px);
}


/* --------------------------
   PREV / NEXT BUTTONS
   -------------------------- */

.poshesh-history-prev,
.poshesh-history-next {
    border-color: #0ba398;
    background: #0ba398;
    color: #fff;
    box-shadow: 0 6px 16px rgba(11,163,152,.16);
}

.poshesh-history-prev:hover,
.poshesh-history-next:hover {
    background: #087f79;
    color: #fff;
}


/* --------------------------
   HELP TEXT
   -------------------------- */

.poshesh-history-help {
    margin-top: 12px;
    color: #556f77;
    font-size: 11px;
    font-weight: 700;
}

.poshesh-history-help::before {
    content: "↔";
    display: inline-block;
    margin-left: 6px;
    color: #f2a243;
    font-size: 16px;
    vertical-align: -2px;
}


/* --------------------------
   HINT ANIMATION
   -------------------------- */

@keyframes posheshTimelinePointerHint {
    0%, 100% {
        box-shadow:
            0 0 0 3px rgba(242,162,67,.22),
            0 8px 18px rgba(120,82,30,.18);
    }
    50% {
        box-shadow:
            0 0 0 10px rgba(242,162,67,.08),
            0 10px 22px rgba(120,82,30,.22);
    }
}

@media (prefers-reduced-motion: reduce) {
    .poshesh-history-range::-webkit-slider-thumb {
        animation: none;
    }
}


/* --------------------------
   small screens
   -------------------------- */

@media (max-width: 767px) {

    .poshesh-history-range::-webkit-slider-thumb {
        width: 30px;
        height: 30px;
    }

    .poshesh-history-range::-moz-range-thumb {
        width: 22px;
        height: 22px;
    }

}



/* ==========================================================
   POSHESH INTERACTIVE HISTORY V3
   richer interaction + visual storytelling
   ========================================================== */

.poshesh-history-interactive {
    --history-accent: #0aa398;
    --history-soft: rgba(10,163,152,.08);

    position: relative;
    overflow: hidden;
    isolation: isolate;
}


/* soft ambient background */

.poshesh-history-interactive::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 270px;
    height: 270px;
    right: -130px;
    bottom: -145px;
    border-radius: 50%;
    background: var(--history-soft);
    transition: background .35s ease;
}


/* ----------------------------------------------------------
   ACTIVE PERIOD COLOR LANGUAGE
   ---------------------------------------------------------- */

.poshesh-history-interactive[data-history-active="0"] {
    --history-accent: #159c91;
    --history-soft: rgba(21,156,145,.09);
}

.poshesh-history-interactive[data-history-active="1"] {
    --history-accent: #288fa5;
    --history-soft: rgba(40,143,165,.09);
}

.poshesh-history-interactive[data-history-active="2"] {
    --history-accent: #6d72bd;
    --history-soft: rgba(109,114,189,.08);
}

.poshesh-history-interactive[data-history-active="3"] {
    --history-accent: #c78331;
    --history-soft: rgba(199,131,49,.09);
}

.poshesh-history-interactive[data-history-active="4"] {
    --history-accent: #079b90;
    --history-soft: rgba(7,155,144,.10);
}


/* ----------------------------------------------------------
   PERIOD LABELS
   ---------------------------------------------------------- */

.poshesh-history-point {
    position: relative;
    padding-bottom: 8px;
}

.poshesh-history-point::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--history-accent);
    transform: translateX(50%);
    transition: width .25s ease;
}

.poshesh-history-point.is-active::after {
    width: 32px;
}

.poshesh-history-point.is-active strong {
    color: #62451d;
    background: #fff1dc;
}


/* ----------------------------------------------------------
   TIMELINE / RULER
   ---------------------------------------------------------- */

.poshesh-history-range-wrap {
    margin-top: 3px;
    margin-bottom: 28px;
}

.poshesh-history-range-wrap::after {
    content: "";
    position: absolute;
    pointer-events: none;
    right: 0;
    left: 0;
    top: 50%;
    height: 34px;
    transform: translateY(-50%);
    opacity: .7;

    background:
        repeating-linear-gradient(
            to right,
            transparent 0 7.6%,
            rgba(16,151,148,.22) 7.6% 7.9%,
            transparent 7.9% 15.2%
        );
}


/* active portion stronger */

.poshesh-history-range-wrap::before {
    height: 5px;
    background:
        linear-gradient(
            to left,
            var(--history-accent) 0,
            var(--history-accent) var(--history-progress),
            #d7e9e8 var(--history-progress),
            #d7e9e8 100%
        );
}


/* ----------------------------------------------------------
   CONTENT STAGE
   ---------------------------------------------------------- */

.poshesh-history-stage {
    position: relative;
}

.poshesh-history-slide {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(18,92,101,.05);
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.94),
            var(--history-soft)
        );
}

.poshesh-history-slide::after {
    position: absolute;
    left: 20px;
    bottom: -18px;
    color: rgba(25,66,77,.035);
    font-family: Arial,sans-serif;
    font-size: 78px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}

.poshesh-history-slide[data-history-slide="0"]::after {
    content: "1381";
}

.poshesh-history-slide[data-history-slide="1"]::after {
    content: "WEB";
}

.poshesh-history-slide[data-history-slide="2"]::after {
    content: "CMS";
}

.poshesh-history-slide[data-history-slide="3"]::after {
    content: "SEO";
}

.poshesh-history-slide[data-history-slide="4"]::after {
    content: "NOW";
}


/* media reacts slightly */

.poshesh-history-media,
.poshesh-history-graphic {
    position: relative;
    border: 1px solid rgba(18,94,105,.07);
    box-shadow: 0 10px 30px rgba(26,74,84,.055);
}

.poshesh-history-slide.is-active
.poshesh-history-media,

.poshesh-history-slide.is-active
.poshesh-history-graphic {
    animation: posheshHistoryMediaIn .38s ease;
}

@keyframes posheshHistoryMediaIn {

    from {
        opacity: .45;
        transform: scale(.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}


/* text accent */

.poshesh-history-copy > span {
    color: var(--history-accent);
}

.poshesh-history-copy h3 {
    position: relative;
    padding-bottom: 9px;
}

.poshesh-history-copy h3::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    border-radius: 999px;
    background: var(--history-accent);
}


/* ----------------------------------------------------------
   CONTROLS
   ---------------------------------------------------------- */

.poshesh-history-prev,
.poshesh-history-next {
    border-color: var(--history-accent);
    background: var(--history-accent);
}

.poshesh-history-counter {
    direction: ltr;
    min-width: 62px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #f3f9f8;
    color: #637a81;
}

.poshesh-history-counter b {
    color: var(--history-accent);
}


/* ----------------------------------------------------------
   HELP / CTA
   ---------------------------------------------------------- */

.poshesh-history-help {
    margin-top: 14px;
}

.poshesh-history-more {
    margin-top: 15px;
    padding-top: 14px;
    border-top: 1px dashed #d4e7e5;
    text-align: center;
}

.poshesh-history-more a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #087f79;
    font-size: 12px;
    font-weight: 800;
}

.poshesh-history-more a span {
    transition: transform .2s ease;
}

.poshesh-history-more a:hover span {
    transform: translateX(-4px);
}


/* ----------------------------------------------------------
   MOBILE
   ---------------------------------------------------------- */

@media (max-width: 620px) {

    .poshesh-history-slide::after {
        font-size: 54px;
    }

    .poshesh-history-range-wrap::after {
        opacity: .5;
    }

}



/* ==========================================================
   POSHESH TYPOGRAPHY V1
   ========================================================== */

:root {
    --poshesh-font:
        "Vazirmatn",
        Tahoma,
        Arial,
        sans-serif;
}

html,
body {
    font-family: var(--poshesh-font);
}

body,
button,
input,
textarea,
select {
    font-family: var(--poshesh-font);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
strong,
small,
li {
    font-family: inherit;
}


/* Main headings */

h1,
.poshesh-hero h1 {
    font-weight: 800;
    letter-spacing: -.035em;
}

h2 {
    font-weight: 800;
    letter-spacing: -.025em;
}

h3 {
    font-weight: 700;
}


/* Navigation */

.poshesh-header a,
.poshesh-header-cta {
    font-weight: 600;
}


/* Body copy */

p {
    font-weight: 400;
}


/* Timeline */

.poshesh-history-point strong {
    font-family: var(--poshesh-font);
    font-weight: 700;
}

.poshesh-history-point span,
.poshesh-history-copy > span,
.poshesh-history-help {
    font-family: var(--poshesh-font);
}

.poshesh-history-copy h3 {
    font-weight: 800;
}


/* Buttons */

.poshesh-btn,
.poshesh-header-cta,
.poshesh-project-link {
    font-family: var(--poshesh-font);
    font-weight: 700;
}


/* Do not alter brand artwork */

.custom-logo,
.poshesh-history-logo img {
    font-family: initial;
}



/* ==========================================================
   POSHESH SERVICES PAGE V1
   ========================================================== */

.poshesh-services-page {
    background: #fff;
}

.poshesh-services-hero {
    padding: 105px 0 100px;
    background:
        radial-gradient(
            circle at 12% 25%,
            rgba(19,177,167,.13),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #f0fbfa,
            #f8fcfd
        );
}

.poshesh-services-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}

.poshesh-services-hero-copy h1 {
    margin: 12px 0 20px;
    color: #173846;
    font-size: clamp(40px,5vw,65px);
    line-height: 1.45;
}

.poshesh-services-hero-copy h1 strong {
    display: block;
    color: #0b9f91;
}

.poshesh-services-hero-copy p {
    max-width: 650px;
    margin: 0;
    color: #657981;
    line-height: 2.1;
}

.poshesh-services-hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 28px;
}


/* service map */

.poshesh-services-map {
    position: relative;
    min-height: 430px;
}

.service-map-center {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 190px;
    height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #d6ece9;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 25px 55px rgba(27,83,94,.10);
    transform: translate(-50%,-50%);
}

.service-map-center span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #0ba397;
    color: #fff;
    font-family: Arial,sans-serif;
    font-size: 23px;
    font-weight: 900;
}

.service-map-center strong {
    margin-top: 12px;
    color: #193d4a;
    font-family: Arial,sans-serif;
    letter-spacing: 1px;
}

.service-map-center small {
    margin-top: 5px;
    color: #82959b;
}

.service-map-node {
    position: absolute;
    z-index: 2;
    min-width: 115px;
    padding: 13px 18px;
    border: 1px solid #dceceb;
    border-radius: 14px;
    background: rgba(255,255,255,.92);
    color: #284a55;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(29,79,89,.07);
}

.service-map-node::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 1px;
    background: #bedfdb;
}

.node-1 {
    top: 12%;
    right: 4%;
}

.node-1::before {
    left: -75px;
    bottom: -30px;
    transform: rotate(-35deg);
}

.node-2 {
    top: 12%;
    left: 3%;
}

.node-2::before {
    right: -75px;
    bottom: -30px;
    transform: rotate(35deg);
}

.node-3 {
    bottom: 10%;
    right: 3%;
}

.node-3::before {
    left: -75px;
    top: -30px;
    transform: rotate(35deg);
}

.node-4 {
    bottom: 10%;
    left: 4%;
}

.node-4::before {
    right: -75px;
    top: -30px;
    transform: rotate(-35deg);
}


/* main services */

.poshesh-services-main {
    padding: 105px 0;
}

.poshesh-service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}

.poshesh-service-detail {
    position: relative;
    padding: 38px;
    overflow: hidden;
    border: 1px solid #e0eeee;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(30,77,89,.055);
}

.service-detail-index {
    position: absolute;
    left: 20px;
    top: 13px;
    color: #edf5f5;
    font-family: Arial,sans-serif;
    font-size: 60px;
    font-weight: 900;
}

.service-detail-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 14px;
    font-family: Arial,sans-serif;
    font-size: 19px;
    font-weight: 800;
}

.service-detail-icon.blue {
    color: #258db2;
    background: #e6f6fc;
}

.service-detail-icon.green {
    color: #129d7e;
    background: #e5f8f1;
}

.service-detail-icon.purple {
    color: #8068ca;
    background: #f0ebff;
}

.service-detail-icon.orange {
    color: #d6852f;
    background: #fff0df;
}

.poshesh-service-detail > span {
    color: #099b8f;
    font-size: 12px;
    font-weight: 700;
}

.poshesh-service-detail h2 {
    margin: 7px 0 11px;
    color: #183946;
    font-size: 25px;
}

.poshesh-service-detail > p {
    margin: 0;
    color: #6d8188;
    font-size: 14px;
    line-height: 2;
}

.service-detail-features {
    display: grid;
    gap: 7px;
    margin: 20px 0;
    color: #50686f;
    font-size: 13px;
}

.poshesh-service-detail > a {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    color: #079b90;
    font-size: 13px;
    font-weight: 800;
}


/* process */

.poshesh-services-process {
    padding: 100px 0;
    background: #f5fbfa;
}

.poshesh-process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.poshesh-process-grid article {
    position: relative;
    padding: 28px;
    border: 1px solid #deedeb;
    border-radius: 20px;
    background: #fff;
}

.poshesh-process-grid article > span {
    color: #c6eae5;
    font-family: Arial,sans-serif;
    font-size: 35px;
    font-weight: 900;
}

.poshesh-process-grid h3 {
    margin: 8px 0;
    color: #183946;
}

.poshesh-process-grid p {
    margin: 0;
    color: #71858c;
    font-size: 13px;
    line-height: 1.9;
}


/* final CTA */

.poshesh-services-final-cta {
    padding: 90px 0 110px;
}

.poshesh-services-final-box {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
    padding: 48px 55px;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 8% 40%,
            rgba(18,176,168,.17),
            transparent 30%
        ),
        #effaf9;
}

.poshesh-services-final-box > div {
    max-width: 720px;
}

.poshesh-services-final-box span {
    color: #089b90;
    font-size: 12px;
    font-weight: 700;
}

.poshesh-services-final-box h2 {
    margin: 8px 0 11px;
    color: #173846;
    font-size: 31px;
}

.poshesh-services-final-box p {
    margin: 0;
    color: #6a8087;
    line-height: 2;
}


@media (max-width: 900px) {

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

    .poshesh-services-map {
        min-height: 390px;
    }

    .poshesh-process-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 650px) {

    .poshesh-service-detail-grid,
    .poshesh-process-grid {
        grid-template-columns: 1fr;
    }

    .poshesh-services-hero {
        padding: 70px 0;
    }

    .poshesh-services-map {
        min-height: 340px;
    }

    .service-map-center {
        width: 150px;
        height: 150px;
    }

    .service-map-node {
        min-width: 90px;
        padding: 10px;
        font-size: 11px;
    }

    .service-map-node::before {
        display: none;
    }

    .poshesh-services-final-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 35px 25px;
    }

}



/* ==========================================================
   POSHESH HISTORY REAL STORY V4
   ========================================================== */

.poshesh-history-logo-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 175px;
    padding: 22px;
}

.poshesh-history-logo-frame > img {
    display: block;
    width: auto;
    max-width: 190px;
    max-height: 100px;
    object-fit: contain;
}


/* technology pills */

.poshesh-history-tech-mini {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.poshesh-history-tech-mini span {
    padding: 5px 9px;
    border: 1px solid rgba(10,145,137,.12);
    border-radius: 999px;
    background: rgba(255,255,255,.88);
    color: #55747b;
    font-family: Arial,sans-serif;
    font-size: 9px;
    font-weight: 700;
}


/* history fact chips */

.poshesh-history-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 15px;
}

.poshesh-history-facts span {
    padding: 6px 10px;
    border-radius: 9px;
    background: rgba(10,159,149,.07);
    color: #537078;
    font-size: 10px;
    font-weight: 700;
}


/* ----------------------------------------------------------
   STATIC TO DYNAMIC ROAD
   ---------------------------------------------------------- */

.poshesh-history-tech-road {
    min-height: 175px;
    padding: 25px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.history-road-item {
    min-width: 75px;
    padding: 13px 8px;
    border-radius: 13px;
    background: #fff;
    border: 1px solid #dcebea;
    text-align: center;
    box-shadow: 0 8px 22px rgba(25,74,83,.06);
}

.history-road-item b {
    display: block;
    color: #158e94;
    font-family: Arial,sans-serif;
    font-size: 12px;
}

.history-road-item small {
    display: block;
    margin-top: 4px;
    color: #7f9297;
    font-size: 9px;
}

.poshesh-history-tech-road > i {
    color: #ef9e3f;
    font-size: 18px;
    font-style: normal;
}


/* ----------------------------------------------------------
   E LOGO ERA
   ---------------------------------------------------------- */

.history-e-era > img {
    max-width: 150px;
    max-height: 100px;
}


/* ----------------------------------------------------------
   ASP / ASP.NET CODE ERA
   ---------------------------------------------------------- */

.poshesh-history-code-era {
    min-height: 175px;
    padding: 24px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            #143a48,
            #0d5960
        );
}

.history-code-label {
    display: block;
    margin-bottom: 16px;
    color: rgba(255,255,255,.48);
    font-family: Arial,sans-serif;
    font-size: 9px;
    letter-spacing: 1.5px;
}

.history-code-stack {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.history-code-stack b {
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 9px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-family: Arial,sans-serif;
    font-size: 13px;
}

.history-code-stack b:nth-child(2) {
    background: rgba(242,162,67,.18);
    border-color: rgba(242,162,67,.35);
    color: #ffd39a;
}

.history-code-lines {
    display: grid;
    gap: 6px;
    margin-top: 20px;
}

.history-code-lines span {
    display: block;
    height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
}

.history-code-lines span:nth-child(1) {
    width: 82%;
}

.history-code-lines span:nth-child(2) {
    width: 55%;
}

.history-code-lines span:nth-child(3) {
    width: 72%;
}

.history-code-lines span:nth-child(4) {
    width: 42%;
}


/* ----------------------------------------------------------
   TODAY
   ---------------------------------------------------------- */

.history-now-era {
    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(16,168,157,.12),
            transparent 58%
        ),
        rgba(255,255,255,.84);
}


/* slide watermark update */

.poshesh-history-slide[data-history-slide="0"]::after {
    content: "1381";
}

.poshesh-history-slide[data-history-slide="1"]::after {
    content: "WEB";
}

.poshesh-history-slide[data-history-slide="2"]::after {
    content: "CMS";
}

.poshesh-history-slide[data-history-slide="3"]::after {
    content: "ASP";
}

.poshesh-history-slide[data-history-slide="4"]::after {
    content: "NOW";
}


/* slightly stronger active stage */

.poshesh-history-slide.is-active {
    box-shadow:
        0 15px 35px rgba(31,78,88,.07);
}


/* mobile */

@media (max-width: 620px) {

    .poshesh-history-tech-road {
        gap: 5px;
        padding: 18px 10px;
    }

    .history-road-item {
        min-width: 62px;
        padding: 10px 5px;
    }

    .history-road-item b {
        font-size: 10px;
    }

    .poshesh-history-facts {
        gap: 5px;
    }

}



/* ==========================================================
   POSHESH LOCAL VAZIRMATN V1
   ========================================================== */

@font-face {
    font-family: "Vazirmatn";
    src:
        url("../fonts/Vazirmatn-Variable.woff2")
        format("woff2-variations");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}



/* ==========================================================
   POSHESH 404 RELEASE V1
   ========================================================== */

.poshesh-404 {
    min-height: 68vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(13,163,153,.12),
            transparent 30%
        ),
        #f7fbfb;
}

.poshesh-404-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.poshesh-404-code {
    display: block;
    color: #bde5e1;
    font-family: Arial, sans-serif;
    font-size: clamp(80px,15vw,150px);
    line-height: 1;
    font-weight: 900;
}

.poshesh-404 h1 {
    margin: 10px 0 12px;
    color: #173846;
    font-size: 34px;
}

.poshesh-404 p {
    max-width: 540px;
    margin: 0 auto;
    color: #6e8288;
    line-height: 2;
}

.poshesh-404-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin-top: 27px;
}

.poshesh-404-actions a {
    color: #167b76;
    text-decoration: none;
    font-weight: 800;
}

.poshesh-404-actions .poshesh-404-primary {
    padding: 11px 20px;
    border-radius: 12px;
    background: #0a9f95;
    color: #fff;
}

@media (max-width: 600px) {

    .poshesh-404-actions {
        flex-direction: column;
    }

}


/* ==========================================================
   POSHESH MOBILE HERO QA FIX V1
   ========================================================== */

@media (max-width: 800px) {

    .poshesh-hero-grid {
        width: 100%;
        min-width: 0;
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
    }

    .poshesh-hero-content {
        width: 100%;
        min-width: 0;
    }

    .poshesh-hero-content h1 {
        width: 100%;
        max-width: 100%;
        font-size: clamp(32px, 9vw, 40px);
        line-height: 1.45;
        letter-spacing: -.6px;
        overflow-wrap: break-word;
    }

    .poshesh-title-line,
    .poshesh-title-main,
    .poshesh-title-growth {
        max-width: 100%;
        white-space: normal !important;
    }

    .poshesh-hero-badge {
        max-width: 100%;
        flex-wrap: wrap;
    }

    .poshesh-hero-actions {
        flex-wrap: wrap;
    }

    .poshesh-hero-visual {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: 350px;
        margin-inline: auto;
        overflow: hidden;
    }

    .poshesh-hero-visual::before {
        width: 330px;
        height: 330px;
        left: 50%;
        top: 20px;
        transform: translateX(-50%) rotate(-10deg);
    }

    .poshesh-browser {
        width: 330px;
        max-width: calc(100% - 10px);
        height: 214px;
        left: 50%;
        top: 70px;
        transform: translateX(-50%);
    }
}


@media (max-width: 480px) {

    .poshesh-hero-grid {
        padding-top: 32px;
        padding-bottom: 40px;
    }

    .poshesh-hero-badge {
        padding: 7px 11px;
        font-size: 11px;
    }

    .poshesh-hero-content h1 {
        font-size: clamp(30px, 8.6vw, 35px);
        line-height: 1.5;
    }

    .poshesh-hero-lead {
        font-size: 15px;
        line-height: 1.95;
    }

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

    .poshesh-hero-actions .poshesh-btn {
        width: 100%;
    }

    .poshesh-hero-visual {
        min-height: 330px;
    }

    .poshesh-orbit,
    .poshesh-floating-card {
        display: none;
    }
}



/* ==========================================================
   POSHESH MOBILE TIMELINE QA FIX V1
   ========================================================== */

@media (max-width: 620px) {

    .poshesh-history-interactive {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 18px 12px;
        box-sizing: border-box;
    }

    .poshesh-history-nav {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 2px;
    }

    .poshesh-history-point {
        min-width: 0;
        overflow: hidden;
    }

    .poshesh-history-point strong {
        max-width: 100%;
        padding: 3px 2px;
        font-size: 8px;
        line-height: 1.45;
        white-space: nowrap;
    }

    .poshesh-history-point span {
        display: none;
    }

    .poshesh-history-range-wrap {
        width: calc(100% - 4px);
        max-width: 100%;
        min-width: 0;
        margin-right: 2px;
        margin-left: 2px;
    }

    .poshesh-history-stage,
    .poshesh-history-slide,
    .poshesh-history-copy,
    .poshesh-history-media,
    .poshesh-history-graphic {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .poshesh-history-stage {
        min-height: 0;
    }

    .poshesh-history-slide,
    .poshesh-history-slide.is-active {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
        min-height: 0;
        padding: 14px;
    }

    .poshesh-history-copy h3,
    .poshesh-history-copy p {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .poshesh-history-media,
    .poshesh-history-graphic {
        min-height: 120px;
    }

    .poshesh-history-controls {
        max-width: 100%;
        flex-wrap: wrap;
        gap: 10px;
    }

    .poshesh-history-slide::after {
        font-size: 46px;
    }
}



/* ==========================================================
   POSHESH FULLPAGE PORTFOLIO SCROLL V1
   ========================================================== */

.poshesh-project-real {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #edf7f7;
}

.poshesh-project-real > a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.poshesh-project-real img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: initial;
    object-position: initial;
    transform: translate3d(0,0,0);
    transition: transform 1.5s ease-out;
    will-change: transform;
}


/* Mouse desktop: Header -> Footer */

@media (hover: hover) and (pointer: fine) {

    .poshesh-real-project:hover .poshesh-project-real img {
        transform: translate3d(0,-46.65%,0);
        transition-duration: 5.5s;
        transition-timing-function: linear;
    }

    .poshesh-project-real {
        cursor: pointer;
    }
}


/* Touch devices: no unwanted animation while page scrolls */

@media (hover: none), (pointer: coarse) {

    .poshesh-project-real img {
        transform: none;
        transition: none;
        will-change: auto;
    }
}



/* ==========================================================
   POSHESH MOBILE EXPERIENCE WIDTH FIX V1
   ========================================================== */

@media (max-width: 800px) {

    .poshesh-experience-grid {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        grid-template-columns: minmax(0, 1fr);
    }

    .poshesh-experience-content,
    .poshesh-experience-visual {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .poshesh-experience-content h2,
    .poshesh-experience-content p {
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .poshesh-history-interactive {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-inline: 0;
        box-sizing: border-box;
    }
}



/* =========================================================
   POSHESH VISUAL V2
   Desktop-first visual identity refinement
   ========================================================= */

.pr-page {
    --pv2-navy: #123348;
    --pv2-deep: #0d293b;
    --pv2-teal: #0b9f96;
    --pv2-cyan: #2299bd;
    --pv2-blue: #4a78c8;
    --pv2-violet: #7770bd;
    --pv2-orange: #f1a044;
    --pv2-paper: #f7fafc;
}


/* HERO */

.pr-page .pr-hero-services {
    min-height: 560px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(circle at 12% 22%, rgba(34,153,189,.18), transparent 25%),
        radial-gradient(circle at 87% 14%, rgba(11,159,150,.13), transparent 28%),
        radial-gradient(circle at 78% 88%, rgba(119,112,189,.11), transparent 28%),
        linear-gradient(135deg,#f9fcfd 0%,#edf8f9 52%,#f5f4fb 100%) !important;
}

.pr-page .pr-hero-services::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: -230px;
    bottom: -315px;
    border-radius: 50%;
    border: 76px solid rgba(241,160,68,.09);
    pointer-events: none;
}

.pr-page .pr-hero-services h1 {
    color: var(--pv2-deep);
    text-shadow: 0 1px 0 rgba(255,255,255,.7);
}


/* ORBIT / HERO VISUAL */

.pr-page .pr-service-orbit {
    position: relative;
    isolation: isolate;
    filter: drop-shadow(0 26px 40px rgba(20,71,89,.10));
}

.pr-page .pr-service-orbit::before {
    content: "";
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    z-index: -2;

    background:
        radial-gradient(circle at center,
            rgba(255,255,255,.98) 0 31%,
            rgba(34,153,189,.08) 32% 33%,
            transparent 34% 52%,
            rgba(11,159,150,.10) 53% 54%,
            transparent 55%);
}

.pr-page .pr-service-orbit::after {
    content: "";
    position: absolute;
    inset: -78px;
    border-radius: 50%;
    z-index: -3;
    opacity: .7;

    background:
        radial-gradient(circle at 20% 28%, rgba(34,153,189,.75) 0 3px, transparent 4px),
        radial-gradient(circle at 82% 25%, rgba(119,112,189,.65) 0 3px, transparent 4px),
        radial-gradient(circle at 80% 76%, rgba(241,160,68,.72) 0 3px, transparent 4px),
        radial-gradient(circle at 22% 78%, rgba(11,159,150,.72) 0 3px, transparent 4px);
}


/* SECTION HEADINGS */

.pr-page .pr-section {
    padding-top: 92px;
    padding-bottom: 92px;
}

.pr-page .pr-section h2 {
    color: var(--pv2-navy);
}

.pr-page .pr-section.pr-soft {
    background:
        radial-gradient(circle at 8% 18%, rgba(34,153,189,.06), transparent 24%),
        radial-gradient(circle at 91% 81%, rgba(119,112,189,.055), transparent 24%),
        linear-gradient(180deg,#f7fafc 0%,#f2f7f9 100%) !important;
}


/* SERVICE CARDS */

.pr-page .pr-services-grid {
    gap: 24px;
}

.pr-page .pr-service-card {
    position: relative;
    overflow: hidden;
    min-height: 285px;

    border: 1px solid rgba(32,91,111,.12) !important;
    border-radius: 28px !important;

    background:
        linear-gradient(145deg,#ffffff 0%,#fbfdfd 100%) !important;

    box-shadow:
        0 18px 44px rgba(24,71,88,.075),
        0 3px 8px rgba(24,71,88,.025) !important;

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;
}

.pr-page .pr-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;

    background:
        linear-gradient(90deg,var(--pv2-teal),var(--pv2-cyan));
}

.pr-page .pr-service-card::after {
    content: "";
    position: absolute;
    width: 155px;
    height: 155px;
    left: -75px;
    bottom: -92px;
    border-radius: 50%;
    background: rgba(34,153,189,.055);
    pointer-events: none;
}

.pr-page .pr-service-card:nth-child(2)::before {
    background: linear-gradient(90deg,var(--pv2-cyan),var(--pv2-blue));
}

.pr-page .pr-service-card:nth-child(2)::after {
    background: rgba(74,120,200,.055);
}

.pr-page .pr-service-card:nth-child(3)::before {
    background: linear-gradient(90deg,var(--pv2-violet),#ad78aa);
}

.pr-page .pr-service-card:nth-child(3)::after {
    background: rgba(119,112,189,.06);
}

.pr-page .pr-service-card:nth-child(4)::before {
    background: linear-gradient(90deg,var(--pv2-orange),#ef7957);
}

.pr-page .pr-service-card:nth-child(4)::after {
    background: rgba(241,160,68,.07);
}

.pr-page .pr-service-card:hover {
    transform: translateY(-7px);

    border-color: rgba(34,135,163,.24) !important;

    box-shadow:
        0 30px 60px rgba(24,71,88,.13),
        0 6px 15px rgba(24,71,88,.04) !important;
}

.pr-page .pr-card-no {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(18,51,72,.07) !important;
}

.pr-page .pr-service-icon {
    border-radius: 15px !important;
    background: rgba(11,159,150,.10) !important;
    color: var(--pv2-teal) !important;
}

.pr-page .pr-service-card:nth-child(2) .pr-service-icon {
    background: rgba(34,153,189,.11) !important;
    color: var(--pv2-cyan) !important;
}

.pr-page .pr-service-card:nth-child(3) .pr-service-icon {
    background: rgba(119,112,189,.11) !important;
    color: var(--pv2-violet) !important;
}

.pr-page .pr-service-card:nth-child(4) .pr-service-icon {
    background: rgba(241,160,68,.13) !important;
    color: #c97b21 !important;
}


/* PROCESS */

.pr-page .pr-process {
    position: relative;
}

.pr-page .pr-process > * {
    position: relative;
    overflow: hidden;

    border-radius: 24px !important;
    border: 1px solid rgba(25,83,104,.11) !important;

    background: rgba(255,255,255,.96) !important;

    box-shadow:
        0 15px 34px rgba(25,71,87,.065) !important;
}

.pr-page .pr-process > *::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: var(--pv2-teal);
}

.pr-page .pr-process > *:nth-child(2)::before {
    background: var(--pv2-cyan);
}

.pr-page .pr-process > *:nth-child(3)::before {
    background: var(--pv2-violet);
}

.pr-page .pr-process > *:nth-child(4)::before {
    background: var(--pv2-orange);
}


/* CTA */

.pr-page .pr-cta-wrap {
    padding-top: 26px;
    padding-bottom: 82px;
}

.pr-page .pr-cta {
    position: relative;
    overflow: hidden;

    border-radius: 30px !important;

    background:
        radial-gradient(circle at 12% 18%, rgba(34,153,189,.28), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(11,159,150,.22), transparent 27%),
        linear-gradient(135deg,#163b50 0%,#102d42 55%,#192b48 100%) !important;

    border: 1px solid rgba(255,255,255,.08) !important;

    box-shadow:
        0 30px 65px rgba(18,49,67,.20) !important;
}

.pr-page .pr-cta::after {
    content: "";
    position: absolute;

    width: 255px;
    height: 255px;

    left: -100px;
    top: -145px;

    border-radius: 50%;

    border: 48px solid rgba(241,160,68,.12);

    pointer-events: none;
}

.pr-page .pr-cta h2,
.pr-page .pr-cta p {
    color: #fff !important;
}

.pr-page .pr-cta p {
    opacity: .76;
}


/* END POSHESH VISUAL V2 */

