@font-face {
    font-family: "IRANSansFaNum";
    src: url("../fonts/iransans/woff2/IRANSansWeb(FaNum).woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "IRANSansFaNum";
    src: url("../fonts/iransans/woff2/IRANSansWeb(FaNum)_Medium.woff2") format("woff2");
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "IRANSansFaNum";
    src: url("../fonts/iransans/woff2/IRANSansWeb(FaNum)_Bold.woff2") format("woff2");
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "IRANSansFaNum";
    src: url("../fonts/iransans/woff2/IRANSansWeb(FaNum)_Black.woff2") format("woff2");
    font-weight: 900;
    font-display: swap;
}

:root {
    --navy-950: #050d1d;
    --navy-900: #071328;
    --navy-800: #0b1d39;
    --navy-700: #102c53;
    --blue-700: #233f8e;
    --blue-600: #2b4da5;
    --blue-500: #3e68cb;
    --blue-400: #6690ed;
    --cyan: #67c6ff;
    --ink: #10213a;
    --muted: #607088;
    --muted-light: #91a1b7;
    --paper: #ffffff;
    --canvas: #f4f7fb;
    --canvas-blue: #eef3fb;
    --line: #dce4ef;
    --success: #12a36d;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --shadow-sm: 0 12px 34px rgba(15, 38, 75, 0.08);
    --shadow-md: 0 24px 70px rgba(11, 34, 73, 0.14);
    --ease: cubic-bezier(.2, .75, .25, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "IRANSansFaNum", Tahoma, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.9;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid rgba(103, 198, 255, .8);
    outline-offset: 4px;
}

::selection {
    color: #fff;
    background: var(--blue-600);
}

.shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.section-pad {
    padding: 110px 0;
}

.skip-link {
    position: fixed;
    top: -80px;
    right: 22px;
    z-index: 9999;
    padding: 10px 18px;
    border-radius: 0 0 12px 12px;
    color: #fff;
    background: var(--blue-600);
    transition: top .2s ease;
}

.skip-link:focus {
    top: 0;
    color: #fff;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: 92px;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
    background: linear-gradient(180deg, rgba(4, 13, 29, .86), rgba(4, 13, 29, .42));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: height .3s ease, background .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
    height: 78px;
    background: rgba(5, 15, 33, .94);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .2);
}

.nav-shell {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff;
}

.brand:hover {
    color: #fff;
}

.brand-logo {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 9px 24px rgba(0, 0, 0, .17);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-copy strong {
    font-size: 23px;
    font-weight: 900;
    letter-spacing: -.7px;
}

.brand-copy small {
    margin-top: 7px;
    color: rgba(255, 255, 255, .63);
    font-size: 9.5px;
    font-weight: 500;
}

.main-nav {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(15px, 1.8vw, 27px);
    margin-inline: auto;
}

.main-nav a {
    position: relative;
    padding: 14px 0;
    color: rgba(255, 255, 255, .73);
    font-size: 12.5px;
    font-weight: 700;
    white-space: nowrap;
    transition: color .25s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 7px;
    width: 0;
    height: 2px;
    border-radius: 99px;
    background: var(--cyan);
    transition: width .25s var(--ease);
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
}

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

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 11px 24px;
    border: 1px solid transparent;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
    box-shadow: 0 13px 30px rgba(43, 77, 165, .28);
    font-weight: 800;
    line-height: 1.4;
    cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease;
}

.button:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(43, 77, 165, .36);
}

.button i {
    font-size: 13px;
}

.button-sm {
    min-height: 44px;
    padding: 9px 17px;
    border-radius: 12px;
    font-size: 12px;
}

.header-cta {
    flex: 0 0 auto;
}

.button-ghost {
    border-color: rgba(255, 255, 255, .23);
    color: #fff;
    background: rgba(255, 255, 255, .055);
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.button-ghost:hover {
    border-color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .1);
    box-shadow: none;
}

.button-dark {
    color: #fff;
    background: var(--navy-900);
    box-shadow: 0 14px 30px rgba(7, 19, 40, .18);
}

.button-light {
    color: var(--blue-700);
    background: #fff;
    box-shadow: 0 15px 35px rgba(5, 13, 29, .19);
}

.button-light:hover {
    color: var(--blue-700);
    background: #f9fbff;
}

.nav-toggle {
    width: 44px;
    height: 44px;
    display: none;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, .07);
}

.nav-toggle span {
    width: 19px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 890px;
    padding: 158px 0 42px;
    color: #fff;
    overflow: hidden;
    background:
        linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px),
        radial-gradient(circle at 84% 16%, rgba(55, 96, 199, .34), transparent 28%),
        radial-gradient(circle at 12% 60%, rgba(21, 115, 183, .18), transparent 31%),
        linear-gradient(135deg, var(--navy-800), var(--navy-950) 68%);
    background-size: 72px 72px, 72px 72px, auto, auto, auto;
}

.hero::before {
    content: "";
    position: absolute;
    top: 104px;
    right: -170px;
    width: 530px;
    height: 530px;
    border: 1px solid rgba(102, 144, 237, .13);
    border-radius: 50%;
    box-shadow: inset 0 0 0 72px rgba(68, 107, 201, .025), inset 0 0 0 144px rgba(68, 107, 201, .025);
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -310px;
    left: 40%;
    width: 720px;
    height: 720px;
    border: 1px solid rgba(103, 198, 255, .08);
    border-radius: 50%;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}

.hero-orb-one {
    top: 180px;
    left: 45%;
    width: 9px;
    height: 9px;
    background: var(--cyan);
    box-shadow: 0 0 28px 7px rgba(103, 198, 255, .42);
}

.hero-orb-two {
    top: 540px;
    right: 7%;
    width: 5px;
    height: 5px;
    background: var(--blue-400);
    box-shadow: 0 0 24px 6px rgba(102, 144, 237, .45);
}

.hero-grid {
    position: relative;
    z-index: 2;
    min-height: 548px;
    display: grid;
    grid-template-columns: 1fr 1.02fr;
    align-items: center;
    gap: 68px;
}

.hero-copy {
    padding-bottom: 26px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue-600);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .2px;
}

.eyebrow {
    margin-bottom: 21px;
    color: #a9c9ff;
}

.eyebrow span {
    width: 27px;
    height: 2px;
    border-radius: 99px;
    background: var(--cyan);
    box-shadow: 0 0 12px rgba(103, 198, 255, .7);
}

.hero h1 {
    max-width: 650px;
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(41px, 4.45vw, 66px);
    font-weight: 900;
    letter-spacing: -2.4px;
    line-height: 1.42;
}

.hero-copy > p {
    max-width: 615px;
    margin: 0 0 31px;
    color: rgba(225, 235, 250, .77);
    font-size: 16px;
    line-height: 2.05;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-wrap: wrap;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 31px;
    color: rgba(224, 234, 248, .73);
    font-size: 11px;
}

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

.hero-proof i {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(103, 198, 255, .35);
    border-radius: 50%;
    color: var(--cyan);
    font-size: 7px;
    background: rgba(103, 198, 255, .07);
}

.hero-visual {
    position: relative;
    min-width: 0;
    padding: 23px 18px 26px 0;
}

.hero-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border: 1px solid rgba(150, 186, 255, .24);
    border-radius: 32px 8px 32px 32px;
    background:
        linear-gradient(90deg, rgba(5, 13, 29, .05), rgba(5, 13, 29, .4)),
        var(--hero-image) center / cover no-repeat;
    box-shadow: 0 36px 100px rgba(0, 0, 0, .38), inset 0 0 0 9px rgba(255, 255, 255, .018);
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 19, 40, .06) 35%, rgba(7, 19, 40, .6));
    pointer-events: none;
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 24px 5px 24px 24px;
    pointer-events: none;
}

.visual-topline {
    position: absolute;
    top: 22px;
    right: 22px;
    left: 22px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .65);
    font-size: 9px;
}

.visual-topline span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
}

.visual-topline span:first-child {
    background: var(--cyan);
}

.visual-topline strong {
    margin-right: auto;
    font-weight: 500;
}

.visual-tag {
    position: absolute;
    z-index: 3;
    min-width: 145px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 15px;
    color: #fff;
    background: rgba(7, 23, 50, .77);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .27);
    backdrop-filter: blur(14px);
}

.visual-tag i {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: var(--cyan);
    background: rgba(103, 198, 255, .12);
}

.visual-tag span:not(.pulse-dot) {
    display: flex;
    flex-direction: column;
    line-height: 1.5;
}

.visual-tag small {
    color: rgba(255, 255, 255, .58);
    font-size: 8px;
}

.visual-tag strong {
    font-size: 13px;
    font-weight: 900;
}

.visual-tag-top {
    top: 78px;
    right: -23px;
}

.visual-tag-bottom {
    left: -22px;
    bottom: 60px;
}

.pulse-dot {
    width: 13px;
    height: 13px;
    border: 3px solid rgba(103, 198, 255, .25);
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 6px rgba(103, 198, 255, .1);
}

.hero-badge {
    position: absolute;
    right: -33px;
    bottom: 10px;
    z-index: 4;
    width: 144px;
    height: 144px;
    display: grid;
    place-content: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 50%;
    color: var(--navy-900);
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .28), inset 0 0 0 8px #eef3fb;
    transform: rotate(-5deg);
}

.hero-badge strong {
    color: var(--blue-600);
    font-size: 30px;
    font-weight: 900;
    line-height: 1.15;
}

.hero-badge span {
    margin-top: 5px;
    font-size: 9px;
    line-height: 1.7;
}

.hero-metrics {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr) 1.35fr;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    background: rgba(255, 255, 255, .045);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .18);
    backdrop-filter: blur(14px);
}

.hero-metrics > div {
    min-height: 101px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 17px 22px;
    border-left: 1px solid rgba(255, 255, 255, .09);
}

.hero-metrics > div:last-child {
    border-left: 0;
}

.hero-metrics strong {
    color: #fff;
    font-size: 27px;
    font-weight: 900;
    line-height: 1;
}

.hero-metrics strong span {
    color: var(--cyan);
    font-size: 17px;
}

.hero-metrics p {
    margin: 9px 0 0;
    color: rgba(225, 235, 250, .64);
    font-size: 10px;
}

.hero-metrics .metric-note {
    flex-direction: row;
    gap: 14px;
    align-items: center;
    justify-content: center;
}

.metric-note > i {
    color: rgba(103, 198, 255, .35);
    font-size: 27px;
}

.hero-metrics .metric-note p {
    margin: 0;
    line-height: 1.9;
}

.hero-metrics .metric-note p strong {
    font-size: 11px;
}

.section-heading {
    margin-bottom: 48px;
}

.section-heading h2,
.process-intro h2,
.assessment-intro h2 {
    margin: 9px 0 0;
    color: var(--ink);
    font-size: clamp(30px, 3.2vw, 45px);
    font-weight: 900;
    letter-spacing: -1.4px;
    line-height: 1.55;
}

.section-heading > p,
.heading-split > p,
.heading-action p {
    margin: 13px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 2;
}

.heading-split {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    gap: 70px;
}

.heading-split > p,
.heading-action {
    max-width: 440px;
    justify-self: end;
}

.heading-center {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.challenge-section {
    position: relative;
    background: var(--paper);
}

.challenge-section::before {
    content: "";
    position: absolute;
    top: 80px;
    right: -90px;
    width: 240px;
    height: 240px;
    border: 50px solid var(--canvas-blue);
    border-radius: 50%;
    opacity: .52;
}

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

.challenge-card {
    position: relative;
    min-height: 313px;
    padding: 30px 25px 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 8px 30px rgba(17, 44, 84, .045);
    transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease;
}

.challenge-card::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-400), var(--blue-600));
    transition: width .35s var(--ease);
}

.challenge-card:hover {
    border-color: #c8d5ea;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.challenge-card:hover::after {
    width: 100%;
}

.card-index {
    position: absolute;
    top: 21px;
    left: 22px;
    color: #d2dbe8;
    font-size: 13px;
    font-weight: 900;
}

.icon-box {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid #d8e3f3;
    border-radius: 16px;
    color: var(--blue-600);
    background: var(--canvas-blue);
    font-size: 21px;
    transition: color .3s ease, background .3s ease, transform .3s var(--ease);
}

.challenge-card:hover .icon-box {
    color: #fff;
    background: var(--blue-600);
    transform: rotate(-5deg);
}

.challenge-card h3 {
    min-height: 58px;
    margin: 25px 0 10px;
    color: var(--ink);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.75;
}

.challenge-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 2;
}

.card-link {
    position: absolute;
    right: 25px;
    bottom: 21px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-600);
    font-size: 10px;
    font-weight: 800;
    opacity: .76;
}

.services {
    position: relative;
    background: var(--canvas);
}

.services::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .55;
    background-image: radial-gradient(#c5d4e8 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(to bottom, transparent, #000 25%, transparent 82%);
    pointer-events: none;
}

.services .shell {
    position: relative;
}

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

.service-card {
    overflow: hidden;
    border: 1px solid #dce4ee;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.service-media {
    position: relative;
    height: 223px;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    overflow: hidden;
    color: #fff;
    background-position: center;
    background-size: cover;
    transition: background-size .5s ease;
}

.service-media::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 23px 23px 0 0;
    pointer-events: none;
}

.service-media > div {
    position: relative;
    z-index: 2;
}

.service-media > div > span {
    color: #bbd3ff;
    font-size: 9px;
    font-weight: 700;
}

.service-media h3 {
    margin: 4px 0 0;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.6;
}

.service-number {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 12px;
    color: #fff;
    background: rgba(7, 19, 40, .48);
    backdrop-filter: blur(12px);
    font-size: 11px;
    font-weight: 900;
}

.service-body {
    padding: 25px 27px 27px;
}

.service-body > p {
    min-height: 55px;
    margin: 0 0 17px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.95;
}

.service-body ul {
    display: grid;
    gap: 8px;
    margin: 0 0 23px;
    padding: 17px 0;
    border-top: 1px solid #edf1f6;
    border-bottom: 1px solid #edf1f6;
    list-style: none;
    color: #41516a;
    font-size: 11px;
}

.service-body li::before {
    content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    margin-left: 9px;
    border-radius: 50%;
    background: var(--blue-500);
    box-shadow: 0 0 0 4px #eef3fb;
}

.service-body > a,
.read-more,
.text-link,
.text-link-light {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue-600);
    font-size: 11px;
    font-weight: 900;
}

.service-body > a i,
.read-more i,
.text-link i,
.text-link-light i {
    transition: transform .25s ease;
}

.service-body > a:hover i,
.read-more:hover i,
.text-link:hover i,
.text-link-light:hover i {
    transform: translateX(-5px);
}

.cases {
    position: relative;
    color: #fff;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(62, 104, 203, .28), transparent 29%),
        linear-gradient(135deg, #0b1d39, #050d1d 70%);
}

.cases::before {
    content: "";
    position: absolute;
    top: -190px;
    left: -130px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(103, 198, 255, .11);
    border-radius: 50%;
    box-shadow: inset 0 0 0 70px rgba(103, 198, 255, .015), inset 0 0 0 140px rgba(103, 198, 255, .015);
}

.cases-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 62px 62px;
    mask-image: linear-gradient(to bottom, transparent, #000 35%, #000);
}

.cases .shell {
    position: relative;
    z-index: 2;
}

.heading-light h2 {
    color: #fff;
}

.heading-light .section-kicker {
    color: #9cc3ff;
}

.heading-light p {
    color: rgba(225, 235, 250, .63);
}

.heading-action {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.heading-action p {
    margin: 0;
}

.text-link-light {
    color: #b8d3ff;
}

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

.case-card {
    position: relative;
    min-height: 282px;
    padding: 28px 28px 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 22px;
    color: #fff;
    background: rgba(255, 255, 255, .045);
    backdrop-filter: blur(10px);
    transition: transform .3s var(--ease), border-color .3s ease, background .3s ease;
}

.case-card::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    border: 30px solid rgba(103, 198, 255, .035);
    border-radius: 50%;
}

.case-card:hover {
    color: #fff;
    border-color: rgba(103, 198, 255, .4);
    background: rgba(255, 255, 255, .075);
    transform: translateY(-7px);
}

.case-card-highlight {
    border-color: rgba(102, 144, 237, .38);
    background: linear-gradient(145deg, rgba(62, 104, 203, .22), rgba(255, 255, 255, .055));
}

.case-label {
    display: inline-flex;
    padding: 6px 11px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 99px;
    color: #a9c9ff;
    background: rgba(255, 255, 255, .04);
    font-size: 9px;
    font-weight: 700;
}

.case-metric {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 30px 0 14px;
}

.case-metric strong {
    color: #fff;
    font-size: 39px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
}

.case-metric span {
    max-width: 112px;
    color: #d5e4fb;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.8;
}

.case-card p {
    max-width: 270px;
    margin: 0;
    color: rgba(225, 235, 250, .63);
    font-size: 11px;
    line-height: 2;
}

.case-arrow {
    position: absolute;
    left: 24px;
    bottom: 24px;
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    color: #c6dbff;
    background: rgba(255, 255, 255, .045);
    transition: color .25s ease, background .25s ease, transform .25s ease;
}

.case-card:hover .case-arrow {
    color: var(--blue-700);
    background: #fff;
    transform: translateX(-4px);
}

.process-section {
    background: #fff;
}

.process-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    align-items: start;
    gap: 90px;
}

.process-intro {
    position: sticky;
    top: 125px;
    padding-top: 15px;
}

.process-intro h2 {
    margin-bottom: 18px;
}

.process-intro > p {
    margin: 0 0 30px;
    color: var(--muted);
    font-size: 13px;
    line-height: 2.05;
}

.process-list {
    position: relative;
    display: grid;
    gap: 13px;
}

.process-list::before {
    content: "";
    position: absolute;
    top: 50px;
    right: 30px;
    bottom: 50px;
    width: 1px;
    border-right: 1px dashed #b9c9de;
}

.process-list article {
    position: relative;
    min-height: 118px;
    display: grid;
    grid-template-columns: 62px 1fr 54px;
    align-items: center;
    gap: 21px;
    padding: 20px 22px;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: #fff;
    box-shadow: 0 7px 25px rgba(15, 38, 75, .04);
    transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}

.process-list article:hover {
    border-color: #c6d6eb;
    box-shadow: var(--shadow-sm);
    transform: translateX(-7px);
}

.process-list article > span {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border: 7px solid var(--canvas-blue);
    border-radius: 50%;
    color: #fff;
    background: var(--blue-600);
    box-shadow: 0 10px 23px rgba(43, 77, 165, .25);
    font-size: 11px;
    font-weight: 900;
}

.process-list h3 {
    margin: 0 0 5px;
    color: var(--ink);
    font-size: 16px;
    font-weight: 900;
}

.process-list p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.9;
}

.process-list article > i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--blue-600);
    background: var(--canvas-blue);
    font-size: 17px;
}

.why-section {
    background: var(--canvas);
}

.why-layout {
    display: grid;
    grid-template-columns: .93fr 1.07fr;
    align-items: center;
    gap: 83px;
}

.why-visual {
    position: relative;
    padding: 24px 0 34px 34px;
}

.why-visual::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 64%;
    height: 66%;
    border: 1px solid #cad8eb;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(62, 104, 203, .06), transparent);
}

.why-image {
    position: relative;
    height: 496px;
    overflow: hidden;
    border-radius: 28px 8px 28px 28px;
    box-shadow: var(--shadow-md);
    background: var(--navy-900);
}

.why-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(7, 19, 40, .5));
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-stamp {
    position: absolute;
    left: -20px;
    bottom: 0;
    z-index: 3;
    width: 142px;
    height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 8px solid var(--canvas);
    border-radius: 23px;
    color: #fff;
    background: var(--blue-600);
    box-shadow: 0 17px 38px rgba(43, 77, 165, .26);
}

.why-stamp strong {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
}

.why-stamp span {
    font-size: 10px;
}

.why-copy .section-heading {
    margin-bottom: 29px;
}

.reason-list {
    display: grid;
    gap: 13px;
}

.reason-list article {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 18px;
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 18px;
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.reason-list article:hover {
    border-color: var(--line);
    background: #fff;
    transform: translateX(-4px);
}

.reason-list h3 {
    margin: 0 0 4px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 900;
}

.reason-list p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.9;
}

.industries {
    display: grid;
    grid-template-columns: 1.25fr repeat(6, 1fr);
    align-items: stretch;
    margin-top: 75px;
    overflow: hidden;
    border: 1px solid #d9e2ed;
    border-radius: 18px;
    background: rgba(255, 255, 255, .74);
}

.industries > span,
.industries > div {
    min-height: 81px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px;
    border-left: 1px solid #e2e8f0;
    color: #4b5e79;
    font-size: 10px;
    font-weight: 700;
}

.industries > span {
    color: #fff;
    background: var(--navy-900);
    font-weight: 900;
}

.industries > div:last-child {
    border-left: 0;
}

.industries i {
    color: var(--blue-600);
    font-size: 17px;
}

.assessment-section {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.assessment-section::before {
    content: "";
    position: absolute;
    right: -220px;
    bottom: -280px;
    width: 600px;
    height: 600px;
    border: 85px solid var(--canvas-blue);
    border-radius: 50%;
    opacity: .6;
}

.assessment-card {
    position: relative;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 28px 90px rgba(10, 34, 75, .14);
}

.assessment-intro {
    position: relative;
    padding: 55px 48px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(rgba(6, 20, 44, .78), rgba(5, 16, 35, .96)),
        url("../images/rahneshan/assessment-tablet.png") center / cover no-repeat;
}

.assessment-intro::after {
    content: "";
    position: absolute;
    top: -80px;
    left: -90px;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    box-shadow: inset 0 0 0 44px rgba(255, 255, 255, .015), inset 0 0 0 88px rgba(255, 255, 255, .015);
}

.section-kicker-light {
    color: #a9c9ff;
}

.assessment-intro h2 {
    position: relative;
    z-index: 2;
    margin: 12px 0 17px;
    color: #fff;
    font-size: 33px;
}

.assessment-intro > p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(225, 235, 250, .72);
    font-size: 12px;
    line-height: 2.1;
}

.assessment-intro ul {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 11px;
    margin: 27px 0;
    padding: 0;
    list-style: none;
    color: #e5eefc;
    font-size: 11px;
}

.assessment-intro li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.assessment-intro li i {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--cyan);
    background: rgba(103, 198, 255, .1);
    font-size: 7px;
}

.assessment-contact {
    position: absolute;
    right: 48px;
    bottom: 45px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 13px;
}

.assessment-contact > i {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 12px;
    color: var(--cyan);
    background: rgba(255, 255, 255, .06);
}

.assessment-contact span {
    display: flex;
    flex-direction: column;
    line-height: 1.65;
}

.assessment-contact small {
    color: rgba(255, 255, 255, .53);
    font-size: 8px;
}

.assessment-contact strong {
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.assessment-form-wrap {
    padding: 50px;
    background: #fff;
}

.assessment-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 19px 17px;
}

.field {
    display: grid;
    gap: 7px;
}

.field-wide {
    grid-column: 1 / -1;
}

.field label {
    margin: 0;
    color: #34465f;
    font-size: 10px;
    font-weight: 800;
}

.field label span {
    color: #e04e68;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 49px;
    padding: 10px 14px;
    border: 1px solid #dce4ee;
    border-radius: 12px;
    color: var(--ink);
    background: #f9fbfd;
    outline: none;
    font-size: 11px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field textarea {
    min-height: 96px;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #9ba8ba;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--blue-400);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(62, 104, 203, .08);
}

.form-submit {
    min-height: 52px;
    justify-self: start;
    border: 0;
}

.form-privacy {
    align-self: center;
    margin: 0;
    color: #8390a1;
    font-size: 9px;
}

.form-privacy i {
    margin-left: 6px;
    color: var(--success);
}

.form-alert {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 11px 14px;
    border: 1px solid;
    border-radius: 11px;
    font-size: 10px;
    font-weight: 700;
}

.form-alert.success {
    border-color: #bfe7d8;
    color: #08704a;
    background: #effbf6;
}

.form-alert.error {
    border-color: #f2c9d1;
    color: #a92742;
    background: #fff4f6;
}

.insights {
    background: var(--canvas);
}

.insights .heading-split {
    align-items: center;
}

.insights .text-link {
    justify-self: end;
}

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

.insight-card {
    padding: 9px 9px 25px;
    overflow: hidden;
    border: 1px solid #dae3ee;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 8px 26px rgba(15, 38, 75, .045);
    transition: transform .3s var(--ease), box-shadow .3s ease;
}

.insight-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-7px);
}

.insight-image {
    position: relative;
    height: 208px;
    display: block;
    overflow: hidden;
    border-radius: 15px;
    background: var(--navy-900);
}

.insight-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(7, 19, 40, .5));
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.insight-card:hover .insight-image img {
    transform: scale(1.055);
}

.insight-image span {
    position: absolute;
    right: 13px;
    bottom: 13px;
    z-index: 2;
    padding: 5px 11px;
    border-radius: 99px;
    color: #fff;
    background: rgba(7, 19, 40, .65);
    backdrop-filter: blur(8px);
    font-size: 8px;
    font-weight: 700;
}

.insight-card > div {
    padding: 20px 13px 0;
}

.insight-card small {
    color: #8795a8;
    font-size: 8px;
}

.insight-card h3 {
    min-height: 60px;
    margin: 7px 0 14px;
    color: var(--ink);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.85;
}

.clients {
    padding: 36px 0;
    border-top: 1px solid #e1e7ef;
    background: #fff;
}

.clients-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
    gap: 38px;
}

.clients-row > p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.clients-row > p strong {
    display: block;
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
}

.client-list {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: center;
    gap: 12px;
}

.client-item {
    min-width: 0;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    border: 1px solid #e7ebf1;
    border-radius: 12px;
    color: #7b899b;
    background: #fbfcfe;
    font-size: 9px;
    filter: grayscale(1);
    transition: filter .25s ease, border-color .25s ease;
}

.client-item:hover {
    border-color: #cad8eb;
    filter: grayscale(0);
}

.client-item img {
    max-width: 86px;
    max-height: 35px;
    object-fit: contain;
}

.client-item > span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--blue-600);
    font-size: 11px;
    font-weight: 900;
}

.site-footer {
    position: relative;
    padding-top: 1px;
    color: #fff;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 60%, rgba(62, 104, 203, .18), transparent 26%),
        linear-gradient(135deg, var(--navy-800), var(--navy-950) 72%);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .5;
    background-image: linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
}

.footer-cta {
    position: relative;
    z-index: 2;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 58px;
    padding: 40px 48px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 26px;
    background: linear-gradient(120deg, rgba(62, 104, 203, .48), rgba(43, 77, 165, .2));
    box-shadow: 0 25px 65px rgba(0, 0, 0, .2);
}

.footer-cta span {
    color: #afc8f4;
    font-size: 10px;
    font-weight: 700;
}

.footer-cta h2 {
    max-width: 660px;
    margin: 6px 0 0;
    color: #fff;
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 900;
    line-height: 1.65;
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.55fr .8fr .95fr 1.2fr;
    gap: 66px;
    padding-top: 76px;
    padding-bottom: 56px;
}

.footer-brand {
    margin-bottom: 22px;
}

.footer-about > p {
    max-width: 350px;
    margin: 0;
    color: rgba(225, 235, 250, .59);
    font-size: 11px;
    line-height: 2.15;
}

.footer-grid h3 {
    position: relative;
    margin: 8px 0 23px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.footer-grid h3::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 25px;
    height: 2px;
    border-radius: 99px;
    background: var(--blue-400);
}

.footer-grid ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-grid li,
.footer-grid li a {
    color: rgba(225, 235, 250, .62);
    font-size: 10.5px;
    transition: color .2s ease, transform .2s ease;
}

.footer-grid li a:hover {
    color: #fff;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    width: 22px;
    padding-top: 4px;
    color: #a9c9ff;
    text-align: center;
}

.footer-socials {
    display: flex;
    gap: 9px;
    margin-top: 22px;
}

.footer-socials a {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 11px;
    color: #c7daf8;
    background: rgba(255, 255, 255, .04);
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.footer-socials a:hover {
    color: var(--blue-700);
    background: #fff;
    transform: translateY(-3px);
}

.copyright {
    position: relative;
    z-index: 2;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: rgba(225, 235, 250, .42);
    font-size: 9px;
}

.copyright > span:last-child {
    display: flex;
    gap: 22px;
}

.back-to-top {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 900;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 14px;
    color: #fff;
    background: var(--blue-600);
    box-shadow: 0 13px 30px rgba(31, 64, 144, .3);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease, background .25s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--navy-900);
}

.assessment-page-body {
    background: var(--canvas);
}

.assessment-page-hero {
    position: relative;
    min-height: 610px;
    padding: 165px 0 0;
    color: #fff;
    overflow: hidden;
    background:
        linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px),
        radial-gradient(circle at 82% 24%, rgba(62, 104, 203, .34), transparent 30%),
        linear-gradient(135deg, var(--navy-800), var(--navy-950) 72%);
    background-size: 68px 68px, 68px 68px, auto, auto;
}

.assessment-page-hero::before {
    content: "";
    position: absolute;
    top: 70px;
    right: -210px;
    width: 580px;
    height: 580px;
    border: 1px solid rgba(103, 198, 255, .1);
    border-radius: 50%;
    box-shadow: inset 0 0 0 75px rgba(103, 198, 255, .015), inset 0 0 0 150px rgba(103, 198, 255, .015);
}

.assessment-page-glow {
    position: absolute;
    top: 210px;
    left: 18%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 38px 10px rgba(103, 198, 255, .34);
}

.assessment-page-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 360px;
    align-items: center;
    gap: 85px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 27px;
    color: rgba(225, 235, 250, .52);
    font-size: 9px;
}

.breadcrumb a {
    transition: color .2s ease;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb i {
    color: rgba(103, 198, 255, .5);
}

.assessment-page-hero h1 {
    max-width: 760px;
    margin: 11px 0 20px;
    color: #fff;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.45;
}

.assessment-page-hero-grid > div:first-child > p {
    max-width: 720px;
    margin: 0;
    color: rgba(225, 235, 250, .7);
    font-size: 14px;
    line-height: 2.15;
}

.assessment-hero-note {
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: center;
    gap: 16px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 19px;
    background: rgba(255, 255, 255, .055);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .16);
    backdrop-filter: blur(13px);
}

.assessment-hero-note > i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(103, 198, 255, .23);
    border-radius: 15px;
    color: var(--cyan);
    background: rgba(103, 198, 255, .08);
    font-size: 20px;
}

.assessment-hero-note div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.assessment-hero-note strong {
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.assessment-hero-note span {
    color: rgba(225, 235, 250, .57);
    font-size: 9px;
    line-height: 1.9;
}

.assessment-steps-strip {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 30px 1fr 30px 1fr;
    align-items: center;
    margin-top: 70px;
    padding: 22px 30px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 21px 21px 0 0;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(14px);
}

.assessment-steps-strip > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
}

.assessment-steps-strip > div > span {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(103, 198, 255, .28);
    border-radius: 12px;
    color: var(--cyan);
    background: rgba(103, 198, 255, .07);
    font-size: 10px;
    font-weight: 900;
}

.assessment-steps-strip p {
    display: flex;
    flex-direction: column;
    margin: 0;
    line-height: 1.75;
}

.assessment-steps-strip strong {
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.assessment-steps-strip small {
    color: rgba(225, 235, 250, .48);
    font-size: 8px;
}

.assessment-steps-strip > i {
    color: rgba(103, 198, 255, .3);
    text-align: center;
}

.assessment-page-content {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.assessment-page-content::before {
    content: "";
    position: absolute;
    right: -220px;
    bottom: -250px;
    width: 560px;
    height: 560px;
    border: 82px solid var(--canvas-blue);
    border-radius: 50%;
    opacity: .55;
}

.assessment-card-standalone {
    min-height: 650px;
}

.assessment-card-standalone .assessment-intro {
    min-height: 650px;
}

.assessment-card-standalone .assessment-form-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.assessment-next {
    background: var(--canvas);
}

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

.assessment-next-grid article {
    position: relative;
    min-height: 280px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 9px 30px rgba(15, 38, 75, .045);
    transition: transform .3s var(--ease), box-shadow .3s ease;
}

.assessment-next-grid article:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-7px);
}

.assessment-next-grid article > span {
    position: absolute;
    top: 24px;
    left: 26px;
    color: #d5deea;
    font-size: 22px;
    font-weight: 900;
}

.assessment-next-grid h3 {
    margin: 24px 0 9px;
    color: var(--ink);
    font-size: 17px;
    font-weight: 900;
}

.assessment-next-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 2;
}

.assessment-page-footer {
    color: #fff;
    background: var(--navy-950);
}

.assessment-page-footer .shell {
    min-height: 116px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.assessment-page-footer p {
    margin: 0;
    color: rgba(225, 235, 250, .45);
    font-size: 9px;
}

.assessment-page-footer .shell > a:last-child {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #b9d1f7;
    font-size: 10px;
    font-weight: 800;
}

.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready [data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}

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

    .main-nav a {
        font-size: 11px;
    }

    .brand-copy small {
        display: none;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero-visual {
        padding-right: 0;
    }

    .hero-badge {
        right: -12px;
    }

    .visual-tag-top {
        right: -10px;
    }

    .visual-tag-bottom {
        left: -10px;
    }

    .challenge-card {
        padding-right: 21px;
        padding-left: 21px;
    }

    .process-layout {
        gap: 55px;
    }

    .why-layout {
        gap: 55px;
    }

    .footer-grid {
        gap: 38px;
    }
}

@media (max-width: 960px) {
    .section-pad {
        padding: 85px 0;
    }

    .site-header,
    .site-header.is-scrolled {
        height: 78px;
    }

    .nav-toggle {
        display: flex;
        margin-right: auto;
    }

    .header-cta {
        margin-right: 0;
    }

    .main-nav {
        position: fixed;
        top: 78px;
        right: 20px;
        left: 20px;
        display: grid;
        align-content: start;
        justify-content: stretch;
        gap: 3px;
        padding: 14px;
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 18px;
        background: rgba(5, 15, 33, .98);
        box-shadow: 0 28px 70px rgba(0, 0, 0, .38);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav a {
        padding: 11px 13px;
        border-radius: 10px;
        font-size: 12px;
    }

    .main-nav a:hover,
    .main-nav a.active {
        background: rgba(255, 255, 255, .06);
    }

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

    .hero {
        min-height: auto;
        padding-top: 130px;
    }

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

    .hero-copy {
        max-width: 750px;
        padding-bottom: 0;
    }

    .hero h1 {
        font-size: clamp(42px, 7.5vw, 64px);
    }

    .hero-visual {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }

    .hero-image {
        min-height: 470px;
    }

    .hero-metrics {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 42px;
    }

    .hero-metrics .metric-note {
        display: none;
    }

    .hero-metrics > div:nth-child(3) {
        border-left: 0;
    }

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

    .heading-split > p,
    .heading-action {
        max-width: 650px;
        justify-self: start;
    }

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

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

    .services-grid .service-card:last-child,
    .case-grid .case-card:last-child,
    .insights-grid .insight-card:last-child {
        grid-column: 1 / -1;
    }

    .process-layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .process-intro {
        position: static;
        max-width: 700px;
    }

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

    .why-visual {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }

    .why-copy {
        max-width: 750px;
    }

    .industries {
        grid-template-columns: repeat(4, 1fr);
    }

    .industries > span {
        grid-column: span 2;
    }

    .assessment-card {
        grid-template-columns: 1fr;
    }

    .assessment-intro {
        min-height: 450px;
    }

    .assessment-contact {
        position: static;
        margin-top: 35px;
    }

    .clients-row {
        grid-template-columns: 1fr;
    }

    .client-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .footer-about > p {
        max-width: 480px;
    }
}

@media (max-width: 680px) {
    .shell {
        width: min(100% - 28px, 1180px);
    }

    .section-pad {
        padding: 68px 0;
    }

    .header-cta {
        display: none;
    }

    .brand-logo {
        width: 45px;
        height: 45px;
        flex-basis: 45px;
        border-radius: 13px;
    }

    .brand-copy strong {
        font-size: 20px;
    }

    .hero {
        padding-top: 118px;
    }

    .hero h1 {
        font-size: clamp(35px, 11.5vw, 49px);
        letter-spacing: -1.6px;
    }

    .hero-copy > p {
        font-size: 13px;
    }

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

    .hero-actions .button {
        width: 100%;
    }

    .hero-proof {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .hero-visual {
        padding: 0 0 35px;
    }

    .hero-image {
        min-height: 390px;
        border-radius: 25px 7px 25px 25px;
    }

    .visual-tag {
        min-width: 126px;
        padding: 9px 11px;
    }

    .visual-tag-top {
        top: 65px;
        right: 8px;
    }

    .visual-tag-bottom {
        left: 8px;
        bottom: 38px;
    }

    .hero-badge {
        right: 10px;
        bottom: -4px;
        width: 112px;
        height: 112px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, .28), inset 0 0 0 6px #eef3fb;
    }

    .hero-badge strong {
        font-size: 24px;
    }

    .hero-badge span {
        font-size: 8px;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .hero-metrics > div {
        min-height: 85px;
        flex-direction: row;
        gap: 13px;
        border-bottom: 1px solid rgba(255, 255, 255, .09);
        border-left: 0;
    }

    .hero-metrics > div:last-of-type {
        border-bottom: 0;
    }

    .hero-metrics p {
        margin: 0;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading h2,
    .process-intro h2,
    .assessment-intro h2 {
        font-size: 29px;
    }

    .challenge-grid,
    .services-grid,
    .case-grid,
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .services-grid .service-card:last-child,
    .case-grid .case-card:last-child,
    .insights-grid .insight-card:last-child {
        grid-column: auto;
    }

    .challenge-card {
        min-height: 290px;
    }

    .service-media {
        height: 212px;
    }

    .case-card {
        min-height: 255px;
    }

    .process-list article {
        grid-template-columns: 54px 1fr;
        gap: 15px;
        padding: 17px;
    }

    .process-list article > span {
        width: 54px;
        height: 54px;
    }

    .process-list article > i {
        display: none;
    }

    .process-list::before {
        right: 27px;
    }

    .why-visual {
        padding-left: 17px;
    }

    .why-image {
        height: 400px;
    }

    .why-stamp {
        left: -7px;
    }

    .reason-list article {
        grid-template-columns: 54px 1fr;
        padding: 11px 0;
    }

    .industries {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 50px;
    }

    .industries > span {
        grid-column: 1 / -1;
    }

    .industries > span,
    .industries > div {
        min-height: 68px;
    }

    .assessment-card {
        width: calc(100% - 28px);
    }

    .assessment-intro,
    .assessment-form-wrap {
        padding: 36px 23px;
    }

    .assessment-intro {
        min-height: 470px;
    }

    .assessment-form {
        grid-template-columns: 1fr;
    }

    .field-wide {
        grid-column: auto;
    }

    .form-submit {
        width: 100%;
    }

    .form-privacy {
        text-align: center;
    }

    .insights .text-link {
        justify-self: start;
    }

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

    .footer-cta {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 28px;
        padding: 30px 24px;
    }

    .footer-cta .button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-top: 55px;
    }

    .copyright {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 18px 0;
    }

    .back-to-top {
        left: 14px;
        bottom: 14px;
    }
}

@media (max-width: 960px) {
    .assessment-page-hero {
        padding-top: 135px;
    }

    .assessment-page-hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .assessment-hero-note {
        max-width: 560px;
    }

    .assessment-steps-strip {
        margin-top: 50px;
    }

    .assessment-next-grid {
        grid-template-columns: 1fr;
    }

    .assessment-next-grid article {
        min-height: 245px;
    }
}

@media (max-width: 680px) {
    .assessment-page-hero {
        min-height: auto;
        padding-top: 118px;
    }

    .assessment-page-hero h1 {
        font-size: 37px;
        letter-spacing: -1.4px;
    }

    .assessment-page-hero-grid > div:first-child > p {
        font-size: 12px;
    }

    .assessment-steps-strip {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 40px;
        padding: 18px;
        border-radius: 18px 18px 0 0;
    }

    .assessment-steps-strip > div {
        justify-content: flex-start;
    }

    .assessment-steps-strip > i {
        display: none;
    }

    .assessment-card-standalone,
    .assessment-card-standalone .assessment-intro {
        min-height: 0;
    }

    .assessment-card-standalone .assessment-intro {
        min-height: 475px;
    }

    .assessment-next-grid article {
        min-height: 260px;
    }

    .assessment-page-footer .shell {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 28px;
        padding-bottom: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal-ready [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
