/* ==========================================================
   POSHESH RELEASE PAGES V1
   ========================================================== */

.pr-page {
    background: #fff;
    color: #173846;
}

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

.pr-eyebrow {
    display: inline-block;
    color: #099b91;
    font-size: 13px;
    font-weight: 800;
}

.pr-hero,
.pr-simple-hero {
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(21,171,161,.13),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #f1fbfa,
            #fbfdfd
        );
}

.pr-hero {
    padding: 105px 0 95px;
}

.pr-simple-hero {
    padding: 95px 0 85px;
    text-align: center;
}

.pr-simple-hero .poshesh-container {
    max-width: 850px;
}

.pr-simple-hero h1,
.pr-hero-copy h1 {
    margin: 12px 0 18px;
    color: #173846;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.45;
    font-weight: 850;
}

.pr-simple-hero h1 strong,
.pr-hero-copy h1 strong {
    display: block;
    color: #0a9e93;
}

.pr-simple-hero p,
.pr-hero-copy p {
    margin: 0;
    color: #687e85;
    line-height: 2.1;
    font-size: 15px;
}

.pr-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
}

.pr-actions {
    display: flex;
    align-items: center;
    gap: 23px;
    margin-top: 27px;
}

.pr-btn {
    display: inline-flex;
    min-height: 46px;
    padding: 11px 21px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
}

.pr-btn-primary {
    background: #0a9f95;
    color: #fff;
    box-shadow: 0 8px 20px rgba(10,159,149,.17);
}

.pr-btn-primary:hover {
    background: #087f78;
    color: #fff;
}

.pr-link {
    color: #20737a;
    font-weight: 800;
}


/* SERVICE ORBIT */

.pr-service-orbit {
    position: relative;
    min-height: 390px;
}

.pr-orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 175px;
    height: 175px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9ecea;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 25px 55px rgba(25,77,87,.09);
    transform: translate(-50%,-50%);
}

.pr-orbit-center strong {
    font-family: Arial,sans-serif;
    color: #173846;
    letter-spacing: 1px;
}

.pr-orbit-center span {
    margin-top: 6px;
    color: #819499;
    font-size: 10px;
}

.pr-orbit-item {
    position: absolute;
    min-width: 105px;
    padding: 11px 15px;
    border: 1px solid #deeeee;
    border-radius: 13px;
    background: rgba(255,255,255,.95);
    text-align: center;
    color: #355962;
    font-size: 12px;
    font-weight: 750;
    box-shadow: 0 10px 25px rgba(30,77,86,.055);
}

.oi1 { top: 11%; right: 5%; }
.oi2 { top: 11%; left: 5%; }
.oi3 { bottom: 11%; right: 5%; }
.oi4 { bottom: 11%; left: 5%; }


/* COMMON SECTIONS */

.pr-section {
    padding: 95px 0;
}

.pr-soft {
    background: #f5faf9;
}

.pr-section-head {
    max-width: 720px;
    margin: 0 auto 45px;
    text-align: center;
}

.pr-section-head > span {
    color: #099b91;
    font-size: 12px;
    font-weight: 800;
}

.pr-section-head h2 {
    margin: 8px 0 11px;
    color: #173846;
    font-size: clamp(28px,4vw,38px);
}

.pr-section-head p {
    margin: 0;
    color: #71858b;
    line-height: 2;
}


/* SERVICES */

.pr-services-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
}

.pr-service-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border: 1px solid #e0eeee;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(27,78,87,.045);
}

.pr-card-no {
    position: absolute;
    left: 18px;
    top: 8px;
    color: #eef5f5;
    font-family: Arial,sans-serif;
    font-size: 58px;
    font-weight: 900;
}

.pr-service-icon {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    margin-bottom: 19px;
    border-radius: 13px;
    background: #eaf8f6;
    color: #0a9f95;
    font-family: Arial,sans-serif;
    font-weight: 900;
}

.pr-service-card small {
    color: #0a9f95;
    font-weight: 750;
}

.pr-service-card h2 {
    margin: 6px 0 10px;
    color: #193b47;
    font-size: 24px;
}

.pr-service-card p {
    color: #6e8288;
    line-height: 2;
    font-size: 14px;
}

.pr-service-card ul {
    margin: 17px 0 0;
    padding: 0;
    list-style: none;
}

.pr-service-card li {
    margin-top: 7px;
    color: #526a71;
    font-size: 13px;
}

.pr-service-card li::before {
    content: "✓";
    margin-left: 7px;
    color: #0a9f95;
}


/* PROCESS */

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

.pr-process article {
    padding: 26px;
    border: 1px solid #deecea;
    border-radius: 18px;
    background: #fff;
}

.pr-process b {
    color: #c5e8e4;
    font-family: Arial,sans-serif;
    font-size: 31px;
}

.pr-process h3 {
    margin: 8px 0;
    color: #193c48;
}

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


/* CTA */

.pr-cta-wrap {
    padding: 20px 0 100px;
}

.pr-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 45px;
    padding: 42px 50px;
    border-radius: 25px;
    background:
        radial-gradient(
            circle at 10% 30%,
            rgba(10,159,149,.14),
            transparent 32%
        ),
        #eff9f8;
}

.pr-cta > div {
    max-width: 700px;
}

.pr-cta span {
    color: #0a9f95;
    font-size: 12px;
    font-weight: 800;
}

.pr-cta h2 {
    margin: 7px 0 8px;
    color: #193b47;
    font-size: 28px;
}

.pr-cta p {
    margin: 0;
    color: #6e8389;
    line-height: 1.9;
}


/* PORTFOLIO */

.pr-portfolio-grid {
    display: grid;
    gap: 28px;
}

.pr-project {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    overflow: hidden;
    border: 1px solid #e1eeee;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(28,76,86,.05);
}

.pr-project:nth-child(even) .pr-project-image {
    order: 2;
}

.pr-project-image {
    display: block;
    min-height: 340px;
    overflow: hidden;
    background: #f1f7f7;
}

.pr-project-image img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    display: block;
    object-fit: cover;
    object-position: top center;
    transition: transform .35s ease;
}

.pr-project:hover img {
    transform: scale(1.02);
}

.pr-project-copy {
    padding: 48px;
    align-self: center;
}

.pr-project-copy > span {
    color: #0a9f95;
    font-size: 12px;
    font-weight: 800;
}

.pr-project-copy h2 {
    margin: 7px 0 11px;
    color: #193b47;
    font-size: 29px;
}

.pr-project-copy p {
    color: #6c8188;
    line-height: 2;
}

.pr-project-copy a {
    display: inline-block;
    margin-top: 12px;
    color: #0a9188;
    font-weight: 800;
}

.pr-portfolio-note {
    max-width: 700px;
    margin: 65px auto 0;
    text-align: center;
}

.pr-portfolio-note span {
    color: #0a9f95;
    font-size: 12px;
    font-weight: 800;
}

.pr-portfolio-note h2 {
    margin: 8px 0;
    color: #193b47;
}

.pr-portfolio-note p {
    color: #71858b;
    line-height: 2;
}


/* ABOUT */

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

.pr-about-intro h2 {
    margin: 8px 0 15px;
    color: #193b47;
    font-size: 35px;
}

.pr-about-intro p {
    color: #6e8389;
    line-height: 2.1;
}

.pr-history-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 270px;
    padding: 30px;
    border: 1px solid #e0eeee;
    border-radius: 25px;
    background: #f7fbfb;
}

.pr-history-logos figure {
    width: 42%;
    margin: 0;
    text-align: center;
}

.pr-history-logos img {
    width: 100%;
    max-width: 170px;
    height: 90px;
    object-fit: contain;
}

.pr-history-logos figcaption {
    margin-top: 10px;
    color: #73868c;
    font-size: 11px;
}

.pr-history-logos > span {
    color: #e6a047;
    font-size: 24px;
}

.pr-about-timeline {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 13px;
}

.pr-about-timeline article {
    padding: 23px;
    border: 1px solid #dfeceb;
    border-radius: 17px;
    background: #fff;
}

.pr-about-timeline b {
    color: #cae8e4;
    font-family: Arial,sans-serif;
    font-size: 29px;
}

.pr-about-timeline span {
    display: block;
    margin-top: 10px;
    color: #0a9f95;
    font-size: 10px;
    font-weight: 800;
}

.pr-about-timeline h3 {
    margin: 5px 0 8px;
    color: #193b47;
    font-size: 17px;
}

.pr-about-timeline p {
    margin: 0;
    color: #72858b;
    line-height: 1.9;
    font-size: 12px;
}

.pr-values {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

.pr-values article {
    padding: 27px;
    border: 1px solid #e0eeee;
    border-radius: 18px;
}

.pr-values strong {
    color: #193b47;
}

.pr-values p {
    margin: 8px 0 0;
    color: #74868c;
    line-height: 1.8;
    font-size: 13px;
}


/* CONTACT */

.pr-contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.pr-contact-copy h2 {
    margin: 8px 0 15px;
    color: #193b47;
    font-size: 34px;
}

.pr-contact-copy > p {
    color: #6e8389;
    line-height: 2.1;
}

.pr-contact-points {
    display: grid;
    gap: 12px;
    margin-top: 27px;
}

.pr-contact-points > div {
    display: flex;
    gap: 13px;
    align-items: center;
    padding: 13px 16px;
    border: 1px solid #e0eeee;
    border-radius: 13px;
}

.pr-contact-points b {
    color: #bcdedb;
    font-family: Arial,sans-serif;
}

.pr-contact-points span {
    color: #536d74;
    font-size: 13px;
}

.pr-form-box {
    padding: 35px;
    border: 1px solid #dfedec;
    border-radius: 23px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(26,75,85,.055);
}

.pr-form-box form {
    display: grid;
    gap: 17px;
}

.pr-form-box label > span {
    display: block;
    margin-bottom: 7px;
    color: #415f67;
    font-size: 12px;
    font-weight: 750;
}

.pr-form-box input,
.pr-form-box textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dce9e8;
    border-radius: 11px;
    background: #fbfdfd;
    color: #294b54;
    font: inherit;
    outline: none;
}

.pr-form-box input:focus,
.pr-form-box textarea:focus {
    border-color: #58bdb6;
    box-shadow: 0 0 0 3px rgba(10,159,149,.07);
}

.pr-form-message {
    margin-bottom: 18px;
    padding: 12px 15px;
    border-radius: 11px;
    font-size: 13px;
}

.pr-form-message.success {
    background: #e9f8f1;
    color: #24715a;
}

.pr-form-message.error {
    background: #fff1ee;
    color: #9b5548;
}

.pr-honeypot {
    position: absolute !important;
    left: -9999px !important;
}


/* RESPONSIVE */

@media (max-width: 980px) {

    .pr-hero-grid,
    .pr-about-intro,
    .pr-contact-grid {
        grid-template-columns: 1fr;
    }

    .pr-service-orbit {
        min-height: 350px;
    }

    .pr-process,
    .pr-values {
        grid-template-columns: repeat(2,1fr);
    }

    .pr-about-timeline {
        grid-template-columns: repeat(2,1fr);
    }

}

@media (max-width: 720px) {

    .pr-hero,
    .pr-simple-hero,
    .pr-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .pr-services-grid,
    .pr-process,
    .pr-values,
    .pr-about-timeline {
        grid-template-columns: 1fr;
    }

    .pr-project,
    .pr-project:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .pr-project:nth-child(even) .pr-project-image {
        order: initial;
    }

    .pr-project-image,
    .pr-project-image img {
        min-height: 230px;
    }

    .pr-project-copy {
        padding: 28px;
    }

    .pr-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 25px;
    }

    .pr-service-orbit {
        min-height: 310px;
    }

    .pr-orbit-center {
        width: 140px;
        height: 140px;
    }

    .pr-orbit-item {
        min-width: 85px;
        font-size: 10px;
    }

    .pr-history-logos {
        gap: 10px;
        padding: 20px 12px;
    }

    .pr-form-box {
        padding: 25px 20px;
    }

}


/* =========================================================
   POSHESH SERVICES SIGNATURE V1
   ========================================================= */


/* HERO — stronger brand presence */

.pr-services-page .pr-hero-services {
    min-height: 610px;
    position: relative;
    overflow: hidden;
    color: #fff;

    background:
        radial-gradient(circle at 12% 22%, rgba(26,183,205,.30), transparent 26%),
        radial-gradient(circle at 78% 14%, rgba(20,183,158,.22), transparent 26%),
        radial-gradient(circle at 88% 82%, rgba(122,105,196,.18), transparent 28%),
        linear-gradient(125deg,#102b3c 0%,#12384a 48%,#142c48 100%) !important;
}

.pr-services-page .pr-hero-services::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .26;

    background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.06) 1px, transparent 1px);

    background-size: 46px 46px;
}

.pr-services-page .pr-hero-services::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -290px;
    top: -280px;

    border-radius: 50%;
    border: 80px solid rgba(242,162,67,.13);
}

.pr-services-page .pr-hero-grid {
    position: relative;
    z-index: 2;
}

.pr-services-page .pr-hero-copy h1 {
    color: #fff !important;
    font-size: clamp(3rem,4.6vw,5.1rem);
    line-height: 1.25;
    letter-spacing: -.055em;
}

.pr-services-page .pr-hero-copy h1 strong,
.pr-services-page .pr-hero-copy h1 span {
    color: #4cd3c4;
}

.pr-services-page .pr-hero-copy p {
    color: rgba(255,255,255,.72) !important;
    max-width: 650px;
}

.pr-services-page .pr-hero-copy h1::after {
    width: 110px;
    height: 6px;
    background: linear-gradient(90deg,#34c8bd,#34a7d0,#f2a243);
}


/* HERO ORBIT */

.pr-services-page .pr-service-orbit {
    transform: scale(1.08);
    filter: drop-shadow(0 34px 60px rgba(0,0,0,.20));
}

.pr-services-page .pr-service-orbit::before {
    inset: -72px;

    background:
        radial-gradient(circle,
            rgba(255,255,255,.98) 0 26%,
            rgba(52,200,189,.20) 27% 28%,
            transparent 29% 47%,
            rgba(60,164,204,.19) 48% 49%,
            transparent 50%);
}

.pr-services-page .pr-service-orbit::after {
    inset: -110px;
    opacity: 1;

    background:
        radial-gradient(circle at 18% 28%,#37c9bd 0 5px,transparent 6px),
        radial-gradient(circle at 82% 22%,#4da4cf 0 5px,transparent 6px),
        radial-gradient(circle at 79% 79%,#f1a044 0 5px,transparent 6px),
        radial-gradient(circle at 20% 78%,#8174c3 0 5px,transparent 6px);
}


/* MAIN SERVICE AREA */

.pr-services-page > .pr-section:not(.pr-soft) {
    background:
        radial-gradient(circle at 3% 0%,rgba(52,167,208,.055),transparent 21%),
        #fff;
}

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


/* SERVICE CARDS */

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

.pr-services-page .pr-service-card {
    min-height: 320px;
    padding: 34px !important;
    border-radius: 30px !important;

    background:
        radial-gradient(circle at 105% -10%,rgba(22,167,157,.10),transparent 30%),
        #fff !important;

    border: 1px solid rgba(25,75,95,.11) !important;

    box-shadow:
        0 22px 55px rgba(19,55,72,.085) !important;
}

.pr-services-page .pr-service-card:nth-child(2) {
    background:
        radial-gradient(circle at 105% -10%,rgba(54,153,201,.11),transparent 30%),
        #fff !important;
}

.pr-services-page .pr-service-card:nth-child(3) {
    background:
        radial-gradient(circle at 105% -10%,rgba(121,109,190,.10),transparent 30%),
        #fff !important;
}

.pr-services-page .pr-service-card:nth-child(4) {
    background:
        radial-gradient(circle at 105% -10%,rgba(242,162,67,.12),transparent 30%),
        #fff !important;
}

.pr-services-page .pr-service-card::before {
    width: 76px;
    height: 6px;
    right: 34px;
    left: auto;
    top: 0;
    border-radius: 0 0 10px 10px;
}

.pr-services-page .pr-service-card:hover {
    transform: translateY(-10px) scale(1.008);
}

.pr-services-page .pr-card-no {
    position: absolute;
    left: 28px;
    top: 19px;

    font-size: 4.3rem;
    line-height: 1;
    color: rgba(13,52,69,.055) !important;
}

.pr-services-page .pr-service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
}


/* PROCESS — turn it into a visual journey */

.pr-services-page .pr-section.pr-soft {
    background:
        radial-gradient(circle at 10% 20%,rgba(53,157,200,.09),transparent 25%),
        radial-gradient(circle at 88% 80%,rgba(118,104,187,.07),transparent 27%),
        linear-gradient(180deg,#eef6f8 0%,#f6f9fa 100%) !important;
}

.pr-services-page .pr-process {
    position: relative;
    gap: 20px;
}

.pr-services-page .pr-process::before {
    content: "";
    position: absolute;
    top: 34px;
    right: 8%;
    left: 8%;
    height: 3px;

    background:
        linear-gradient(90deg,#f2a243,#7770bd,#2998bd,#0a9f95);

    opacity: .28;
}

.pr-services-page .pr-process > * {
    padding-top: 70px !important;

    border: 0 !important;
    background: rgba(255,255,255,.88) !important;

    box-shadow:
        0 18px 40px rgba(22,65,82,.07) !important;
}

.pr-services-page .pr-process > *::before {
    width: 38px;
    height: 38px;
    top: 17px;
    right: 24px;

    border-radius: 50%;

    box-shadow:
        0 0 0 7px rgba(10,159,149,.08);
}


/* CTA — editorial / premium */

.pr-services-page .pr-cta-wrap {
    padding-top: 62px;
    padding-bottom: 100px;
}

.pr-services-page .pr-cta {
    min-height: 210px;
    border-radius: 34px !important;

    background:
        radial-gradient(circle at 10% 30%,rgba(47,166,204,.32),transparent 27%),
        radial-gradient(circle at 86% 72%,rgba(22,180,154,.24),transparent 25%),
        linear-gradient(120deg,#102b3e,#152d48 62%,#192844) !important;
}

.pr-services-page .pr-cta::before {
    content: "POSHESH";
    position: absolute;
    left: 30px;
    bottom: -28px;

    font-size: 7rem;
    font-weight: 900;

    color: rgba(255,255,255,.025);
    letter-spacing: -.06em;
}

.pr-services-page .pr-cta::after {
    border-color: rgba(242,162,67,.18);
}


/* END POSHESH SERVICES SIGNATURE V1 */


/* =========================================================
   POSHESH SERVICES EDITORIAL V1
   ========================================================= */


/* HERO BRAND SIGNATURE */

.pr-services-page .pr-hero-services {
    min-height: 640px;
}

.pr-services-page .pr-hero-services .poshesh-container::after {
    content: "از ۱۳۸۱ تا امروز";
    position: absolute;
    left: 48px;
    bottom: -42px;

    padding: 9px 17px;
    border-radius: 999px;

    font-size: .82rem;
    font-weight: 700;

    color: rgba(255,255,255,.82);
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.13);
    backdrop-filter: blur(8px);
}

.pr-services-page .pr-hero-services::before {
    background-image:
        linear-gradient(135deg,rgba(255,255,255,.025) 25%,transparent 25%),
        linear-gradient(225deg,rgba(255,255,255,.025) 25%,transparent 25%),
        linear-gradient(45deg,rgba(255,255,255,.025) 25%,transparent 25%),
        linear-gradient(315deg,rgba(255,255,255,.025) 25%,transparent 25%);
    background-size: 38px 38px;
    background-position: 19px 0,19px 0,0 0,0 0;
}


/* SERVICE GRID — less template-like */

.pr-services-page .pr-services-grid {
    align-items: stretch;
}

.pr-services-page .pr-service-card {
    min-height: 335px;
    padding: 38px 38px 34px !important;
}

.pr-services-page .pr-service-card:nth-child(1),
.pr-services-page .pr-service-card:nth-child(4) {
    transform: translateY(-10px);
}

.pr-services-page .pr-service-card:nth-child(2),
.pr-services-page .pr-service-card:nth-child(3) {
    transform: translateY(10px);
}

.pr-services-page .pr-service-card:hover {
    transform: translateY(-14px) !important;
}

.pr-services-page .pr-service-card h2 {
    font-size: 1.55rem;
    line-height: 1.55;
}

.pr-services-page .pr-service-card p {
    line-height: 2;
}

.pr-services-page .pr-service-card .pr-card-no {
    font-size: 5.1rem;
    opacity: .9;
}


/* colored editorial corner */

.pr-services-page .pr-service-card::after {
    width: 190px;
    height: 190px;
    left: -112px;
    bottom: -122px;
}

.pr-services-page .pr-service-card:nth-child(1)::after {
    background: rgba(10,159,149,.085);
}

.pr-services-page .pr-service-card:nth-child(2)::after {
    background: rgba(41,152,189,.085);
}

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

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


/* PROCESS — stronger horizontal narrative */

.pr-services-page .pr-section.pr-soft {
    padding-top: 115px;
    padding-bottom: 120px;
}

.pr-services-page .pr-process {
    margin-top: 52px;
    gap: 24px;
}

.pr-services-page .pr-process::before {
    top: 30px;
    right: 4%;
    left: 4%;
    height: 4px;
    opacity: .38;
}

.pr-services-page .pr-process > * {
    min-height: 200px;
    padding: 82px 28px 28px !important;
    border-radius: 26px !important;
}

.pr-services-page .pr-process > *::before {
    width: 46px;
    height: 46px;
    top: 9px;
    right: 25px;

    border: 5px solid #eef6f8;
}


/* section title distinction */

.pr-services-page .pr-section > .poshesh-container > h2,
.pr-services-page .pr-section .pr-section-head h2 {
    letter-spacing: -.035em;
}

.pr-services-page .pr-section .pr-section-head::after {
    content: "";
    display: block;
    width: 52px;
    height: 4px;
    margin: 18px auto 0;

    border-radius: 999px;
    background:
        linear-gradient(90deg,#0a9f95,#2998bd,#f2a243);
}


/* CTA — slightly more premium */

.pr-services-page .pr-cta {
    min-height: 235px;
    padding-top: 52px !important;
    padding-bottom: 52px !important;
}

.pr-services-page .pr-cta h2 {
    font-size: 2rem;
}

.pr-services-page .pr-cta::before {
    font-size: 8.5rem;
    bottom: -42px;
}


/* END POSHESH SERVICES EDITORIAL V1 */
