
/* =========================================================
   01. BASE
========================================================= */

.services-page {
    width: 100%;
    overflow-x: hidden;
    background: var(--color-bg, #ffffff);
    color: var(--color-text, #252525);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}


/* =========================================================
   REVEAL ANIMATIONS
========================================================= */

.services-page [data-reveal] {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 45px, 0);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.8s;
    will-change: opacity, transform;
}

.services-page [data-reveal="left"] {
    transform: translate3d(-55px, 0, 0);
}

.services-page [data-reveal="right"] {
    transform: translate3d(55px, 0, 0);
}

.services-page [data-reveal="down"] {
    transform: translate3d(0, -45px, 0);
}

.services-page [data-reveal="scale"] {
    transform: scale(0.96) translate3d(0, 25px, 0);
}

.services-page [data-reveal].is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

.services-overview-grid [data-reveal]:nth-child(2),
.service-capability-list [data-reveal]:nth-child(2),
.services-method-grid [data-reveal]:nth-child(2) {
    transition-delay: 0.08s;
}

.services-overview-grid [data-reveal]:nth-child(3),
.service-capability-list [data-reveal]:nth-child(3),
.services-method-grid [data-reveal]:nth-child(3) {
    transition-delay: 0.16s;
}

.services-overview-grid [data-reveal]:nth-child(4),
.service-capability-list [data-reveal]:nth-child(4),
.services-method-grid [data-reveal]:nth-child(4) {
    transition-delay: 0.24s;
}


/* =========================================================
   HERO
========================================================= */

.services-hero-section {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    min-height: auto;
    padding-top: calc(var(--nav-height, 82px) + clamp(50px, 5vw, 75px));
    padding-bottom: clamp(70px, 8vw, 110px);
    background:
        radial-gradient(
            circle at 82% 42%,
            rgba(217, 71, 71, 0.075),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8f8f6 55%,
            #f3f3f1 100%
        );
    color: var(--color-text-dark, #111111);
}

.services-hero-background {
    position: absolute;
    inset: 0;
    z-index: -4;
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.028) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.028) 1px,
            transparent 1px
        );
    background-size: 72px 72px;
    mask-image:
        linear-gradient(
            to right,
            black,
            rgba(0, 0, 0, 0.55),
            transparent
        );
    -webkit-mask-image:
        linear-gradient(
            to right,
            black,
            rgba(0, 0, 0, 0.55),
            transparent
        );
}

.services-hero-section::after {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    right: -280px;
    top: 50%;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(217, 71, 71, 0.08),
            transparent 68%
        );
    transform: translateY(-50%);
    z-index: -3;
    pointer-events: none;
}


/* =========================================================
   HERO ORBITS
========================================================= */

.services-hero-orbit {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -2;
    will-change: transform;
}

.services-hero-orbit-one {
    width: 650px;
    height: 650px;
    right: -315px;
    top: 35px;
    border: 1px solid rgba(217, 71, 71, 0.16);
}

.services-hero-orbit-two {
    width: 390px;
    height: 390px;
    right: -185px;
    top: 165px;
    border: 1px solid rgba(0, 0, 0, 0.07);
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.services-hero-container {
    position: relative;
    z-index: 2;
    width: min(
        calc(100% - 48px),
        var(--container-wide, 1340px)
    );
    margin-inline: auto;
    padding-top: clamp(30px, 4vw, 55px);
    padding-bottom: clamp(20px, 3vw, 40px);
}


/* =========================================================
   HERO TOP
========================================================= */

.services-hero-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: clamp(40px, 5vw, 65px);
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.services-hero-top .section-kicker {
    margin: 0;
    color: #666c72;
    font-size: 12px;
    font-weight: var(--weight-bold, 700);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


/* =========================================================
   HERO GRID
========================================================= */

.services-hero-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(340px, 0.62fr);
    align-items: center;
    gap: clamp(50px, 7vw, 115px);
}

.services-hero-content {
    max-width: 790px;
}

.services-hero-content h1 {
    margin: 0;
    color: #111111;
    font-family: var(
        --font-display,
        var(--font-primary)
    );
    font-size: clamp(44px, 5.5vw, 78px);
    font-weight: var(--weight-semibold, 600);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.services-hero-content h1 span {
    display: block;
    color: var(--color-accent, #d94747);
}

.services-hero-description {
    max-width: 650px;
    margin: 28px 0 0;
    color: #555b61;
    font-size: clamp(15px, 1.25vw, 17px);
    line-height: 1.85;
}

.services-hero-description-secondary {
    max-width: 630px;
    margin: 16px 0 0;
    color: #6d7278;
    font-size: 14.5px;
    line-height: 1.8;
}


/* =========================================================
   HERO META
========================================================= */

.services-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.services-hero-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(0, 0, 0, 0.11);
    background: rgba(255, 255, 255, 0.68);
    color: #4f5459;
    font-size: 11.5px;
    font-weight: var(--weight-semibold, 600);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm, 4px);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.services-hero-visual {
    position: relative;
    min-height: clamp(320px, 34vw, 410px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.11);
    background: rgba(255, 255, 255, 0.72);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-sm, 4px);
}

.services-hero-visual::after {
    content: "";
    position: absolute;
    width: 285px;
    height: 285px;
    border: 1px solid rgba(217, 71, 71, 0.20);
    border-radius: 50%;
    pointer-events: none;
}

.services-hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.035) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
    pointer-events: none;
}

.services-hero-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.services-circle-one {
    width: 330px;
    height: 330px;
    border: 1px solid rgba(217, 71, 71, 0.18);
}

.services-circle-two {
    width: 205px;
    height: 205px;
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.services-hero-visual-top,
.services-hero-visual-bottom {
    position: absolute;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #777d83;
    font-size: 10.5px;
    font-weight: var(--weight-bold, 700);
    letter-spacing: 0.13em;
    text-transform: uppercase;
    z-index: 3;
}

.services-hero-visual-top {
    top: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.services-hero-visual-bottom {
    bottom: 18px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.services-hero-visual-center {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #666c72;
    font-size: 11.5px;
    font-weight: var(--weight-bold, 700);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.services-hero-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 116px;
    height: 116px;
    border: 1px solid rgba(217, 71, 71, 0.55);
    background: rgba(255, 255, 255, 0.92);
    color: #111111;
    font-family: var(
        --font-display,
        var(--font-primary)
    );
    font-size: 42px;
    font-weight: var(--weight-medium, 500);
    letter-spacing: -0.06em;
    border-radius: 50%;
    box-shadow:
        0 0 0 35px rgba(217, 71, 71, 0.035),
        0 0 0 70px rgba(217, 71, 71, 0.018);
}


/* =========================================================
   OVERVIEW
========================================================= */

.services-overview-section {
    position: relative;
    background: var(--color-bg-light, #f6f6f4);
    color: var(--color-text-dark, #111111);
    padding: clamp(85px, 8vw, 130px) 0;
}

.services-overview-section > .container {
    width: min(
        calc(100% - 48px),
        var(--container-wide, 1340px)
    );
    margin-inline: auto;
}

.services-overview-header {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, 0.65fr);
    align-items: end;
    gap: clamp(40px, 7vw, 100px);
    margin-bottom: clamp(48px, 6vw, 72px);
}

.services-overview-header h2 {
    max-width: 760px;
    margin: 16px 0 0;
    color: #111111;
    font-family: var(
        --font-display,
        var(--font-primary)
    );
    font-size: clamp(36px, 4.8vw, 68px);
    font-weight: var(--weight-semibold, 600);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.services-overview-header h2 span {
    display: block;
    color: var(--color-accent, #d94747);
}

.services-overview-header > p {
    max-width: 480px;
    margin: 0;
    color: var(--color-text-light, #686868);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   SERVICE CARDS
========================================================= */

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(
        4,
        minmax(0, 1fr)
    );
    gap: 16px;
}

.service-card {
    position: relative;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: var(--color-white, #ffffff);
    border: 1px solid var(--color-border, #e6e6e4);
    overflow: hidden;
    border-radius: var(--radius-sm, 4px);
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.25s ease,
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--color-accent, #d94747);
    transition:
        height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 71, 71, 0.35);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
    height: 100%;
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border, #e6e6e4);
    color: var(--color-text-muted, #888888);
    font-size: 11px;
    font-weight: var(--weight-bold, 700);
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.service-card-top span:first-child {
    color: var(--color-accent, #d94747);
}

.service-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-top: 28px;
}

.service-card-content h3 {
    margin: 0 0 14px;
    color: #111111;
    font-family: var(
        --font-display,
        var(--font-primary)
    );
    font-size: clamp(21px, 2vw, 26px);
    font-weight: var(--weight-semibold, 600);
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.service-card-content p {
    margin: 0;
    color: #333333;
    font-size: 14px;
    line-height: 1.75;
}

.service-card-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin: auto 0 0;
    padding: 22px 0 0;
    list-style: none;
}

.service-card-points li {
    position: relative;
    padding-left: 14px;
    color: #555555;
    font-size: 12.5px;
    line-height: 1.5;
}

.service-card-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-accent, #d94747);
}

.service-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 24px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border, #e6e6e4);
    color: #111111;
    font-size: 13px;
    font-weight: var(--weight-semibold, 600);
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color 0.25s ease;
}

.service-card-link span {
    font-size: 15px;
    transition: transform 0.25s ease;
}

.service-card:hover .service-card-link {
    color: var(--color-accent, #d94747);
}

.service-card:hover .service-card-link span {
    transform: translate(3px, -3px);
}


/* =========================================================
   DETAIL SECTIONS
========================================================= */

.service-detail-section {
    position: relative;
    overflow: hidden;
    padding: clamp(90px, 9vw, 135px) 0;
    border-top: 1px solid var(--color-border, #e6e6e4);
}

.service-detail-section:nth-of-type(even) {
    background: var(--color-bg-light, #f6f6f4);
}

.service-detail-section:nth-of-type(odd) {
    background: var(--color-white, #ffffff);
}

.service-detail-container {
    position: relative;
    width: min(
        calc(100% - 48px),
        var(--container-wide, 1340px)
    );
    margin-inline: auto;
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(320px, 0.75fr);
    align-items: center;
    gap: clamp(50px, 8vw, 120px);
}

.service-detail-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.service-detail-content h2 {
    margin: 16px 0 22px;
    color: #111111;
    font-family: var(
        --font-display,
        var(--font-primary)
    );
    font-size: clamp(36px, 4.5vw, 62px);
    font-weight: var(--weight-semibold, 600);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.service-detail-content h2 span {
    display: inline-flex;
    color: var(--color-accent, #d94747);
}

.service-detail-content > p {
    max-width: 650px;
    margin: 0;
    color: #252525;
    font-size: 15.5px;
    line-height: 1.85;
}

.service-detail-secondary {
    margin-top: 16px !important;
    color: #686868 !important;
    font-size: 14px !important;
}


/* =========================================================
   CAPABILITY LIST
========================================================= */

.service-capability-list {
    position: relative;
    z-index: 2;
    border-top: 1.5px solid var(--color-border, #e6e6e4);
}

.service-capability {
    min-height: 78px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(150px, 0.55fr);
    align-items: center;
    gap: 24px;
    padding: 17px 4px;
    border-bottom: 1px solid var(--color-border, #e6e6e4);
    transition:
        padding-left 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.25s ease;
}

.service-capability:hover {
    padding-left: 14px;
    background: rgba(0, 0, 0, 0.025);
}

.service-capability strong {
    color: #111111;
    font-family: var(
        --font-display,
        var(--font-primary)
    );
    font-size: 16px;
    font-weight: var(--weight-semibold, 600);
    line-height: 1.4;
}

.service-capability span {
    color: #777777;
    font-size: 11.5px;
    font-weight: var(--weight-semibold, 600);
    line-height: 1.5;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: right;
}


/* =========================================================
   HOW WE HELP
========================================================= */

.services-method-section {
    position: relative;
    overflow: hidden;
    background: #f6f6f4;
    padding: clamp(90px, 9vw, 135px) 0;
    border-top: 1px solid var(--color-border, #e6e6e4);
}

.services-method-section > .container {
    width: min(
        calc(100% - 48px),
        var(--container-wide, 1340px)
    );
    margin-inline: auto;
}

.services-method-header {
    max-width: 850px;
    margin-bottom: clamp(48px, 6vw, 72px);
}

.services-method-header h2 {
    margin: 16px 0 20px;
    color: #111111;
    font-family: var(
        --font-display,
        var(--font-primary)
    );
    font-size: clamp(38px, 4.8vw, 68px);
    font-weight: var(--weight-semibold, 600);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.services-method-header h2 span {
    display: inline-flex;
    color: var(--color-accent, #d94747);
}

.services-method-header p {
    max-width: 650px;
    margin: 0;
    color: #686868;
    font-size: 15.5px;
    line-height: 1.85;
}

.services-method-grid {
    display: grid;
    grid-template-columns: repeat(
        4,
        minmax(0, 1fr)
    );
    gap: 16px;
}

.services-method-card {
    position: relative;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: #ffffff;
    border: 1px solid var(--color-border, #e6e6e4);
    border-radius: var(--radius-sm, 4px);
    overflow: hidden;
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.25s ease,
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-method-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--color-accent, #d94747);
    transition:
        height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-method-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 71, 71, 0.35);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.08);
}

.services-method-card:hover::before {
    height: 100%;
}

.services-method-icon {
    display: inline-flex;
    width: fit-content;
    margin-bottom: auto;
    padding-bottom: 16px;
    color: var(--color-accent, #d94747);
    font-size: 10.5px;
    font-weight: var(--weight-bold, 700);
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.services-method-card h3 {
    margin: 28px 0 12px;
    color: #111111;
    font-family: var(
        --font-display,
        var(--font-primary)
    );
    font-size: 21px;
    font-weight: var(--weight-semibold, 600);
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.services-method-card p {
    margin: 0;
    color: #555555;
    font-size: 13.5px;
    line-height: 1.75;
}


/* =========================================================
   CONNECTED CAPABILITIES
========================================================= */

.services-connect-section {
    position: relative;
    overflow: hidden;
    background: #090a0c;
    color: var(--color-white, #ffffff);
    padding: clamp(90px, 9vw, 135px) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services-connect-section > .container {
    width: min(
        calc(100% - 48px),
        var(--container-wide, 1340px)
    );
    margin-inline: auto;
}

.services-connect-header {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin-bottom: clamp(50px, 6vw, 75px);
}

.services-connect-header .section-kicker {
    color: #a0a6ad;
}

.services-connect-header h2 {
    margin: 16px 0 20px;
    color: #ffffff;
    font-family: var(
        --font-display,
        var(--font-primary)
    );
    font-size: clamp(38px, 4.8vw, 68px);
    font-weight: var(--weight-semibold, 600);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.services-connect-header h2 span {
    display: block;
    color: var(--color-accent, #d94747);
}

.services-connect-header p {
    max-width: 680px;
    margin: 0;
    color: #cccccc;
    font-size: 15.5px;
    line-height: 1.85;
}


/* Connected Visual */

.services-connect-visual {
    position: relative;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.services-connect-item {
    position: relative;
    flex: 1;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    color: #e5e5e5;
    font-size: 13.5px;
    font-weight: var(--weight-bold, 700);
    letter-spacing: 0.10em;
    text-transform: uppercase;
    text-align: center;
    transition:
        color 0.25s ease,
        background 0.25s ease;
}

.services-connect-item + .services-connect-item {
    border-left: 1px solid rgba(255, 255, 255, 0.10);
}

.services-connect-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent, #d94747);
    transform: translate(-50%, -3px);
    box-shadow:
        0 0 8px var(--color-accent, #d94747);
}

.services-connect-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}


/* Connect footer */

.services-connect-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 45px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.services-connect-footer span {
    color: #ffffff;
    font-size: 13px;
    font-weight: var(--weight-semibold, 600);
}

.services-connect-footer p {
    margin: 0;
    color: #9aa2ab;
    font-size: 12px;
    letter-spacing: 0.06em;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .services-hero-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(300px, 0.68fr);
        gap: 55px;
    }

    .services-overview-grid,
    .services-method-grid {
        grid-template-columns: repeat(
            2,
            minmax(0, 1fr)
        );
    }

    .service-detail-container {
        gap: 55px;
    }

}


@media (max-width: 850px) {

    .services-hero-grid,
    .services-overview-header,
    .service-detail-container {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .services-hero-content,
    .services-overview-header > p {
        max-width: 100%;
    }

    .services-hero-visual {
        max-width: 100%;
        min-height: clamp(300px, 55vw, 380px);
    }

    .services-method-grid {
        grid-template-columns: repeat(
            2,
            minmax(0, 1fr)
        );
    }

    .services-connect-visual {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        min-height: auto;
    }

    .services-connect-item {
        min-height: 85px;
    }

    .services-connect-item:nth-child(3) {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.10);
    }

    .services-connect-item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.10);
    }

    .services-connect-item:nth-child(5) {
        grid-column: 1 / -1;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.10);
    }

}


@media (max-width: 600px) {

    .services-hero-section {
        padding-top:
            calc(
                var(--nav-mobile-height, 68px) + 30px
            );
        padding-left: 20px;
        padding-right: 20px;
    }

    .services-hero-container,
    .services-overview-section > .container,
    .service-detail-container,
    .services-method-section > .container,
    .services-connect-section > .container {
        width: calc(100% - 32px);
    }

    .services-overview-section,
    .service-detail-section,
    .services-method-section,
    .services-connect-section {
        padding: 70px 0;
    }

    .services-hero-content h1,
    .services-overview-header h2,
    .service-detail-content h2,
    .services-method-header h2,
    .services-connect-header h2 {
        font-size: clamp(34px, 8.5vw, 48px);
    }

    .services-overview-grid,
    .services-method-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
        padding: 24px;
    }

    .service-capability {
        grid-template-columns: 1fr;
        gap: 7px;
        padding: 17px 4px;
    }

    .service-capability span {
        text-align: left;
    }

    .services-connect-visual {
        grid-template-columns: 1fr;
    }

    .services-connect-item + .services-connect-item {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.10);
    }

    .services-connect-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

}


@media (max-width: 420px) {

    .services-hero-content h1 {
        font-size: 34px;
    }

    .services-hero-visual {
        min-height: 280px;
    }

    .services-hero-mark {
        width: 86px;
        height: 86px;
        font-size: 34px;
    }

    .services-hero-visual-top,
    .services-hero-visual-bottom {
        font-size: 9px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .services-page [data-reveal],
    .services-hero-orbit,
    .service-card,
    .service-capability,
    .services-method-card,
    .services-connect-item {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: none !important;
    }

}
