:root {
    --brand-950: #050816;
    --brand-900: #08101f;
    --brand-850: #0b1730;
    --brand-800: #102242;
    --brand-700: #183463;
    --brand-600: #2563eb;
    --brand-500: #4299e1;
    --brand-400: #7dd3fc;
    --brand-300: #bae6fd;
    --brand-200: #dbeafe;
    --slate-900: #0f172a;
    --slate-700: #334155;
    --slate-500: #64748b;
    --slate-300: #cbd5e1;
    --surface: rgba(10, 18, 38, 0.84);
    --surface-soft: rgba(15, 23, 42, 0.62);
    --surface-light: #f6fbff;
    --line: rgba(125, 211, 252, 0.16);
    --shadow-strong: 0 24px 80px rgba(2, 6, 23, 0.44);
    --shadow-soft: 0 20px 60px rgba(15, 23, 42, 0.14);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: min(1180px, calc(100% - 32px));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Lato", sans-serif;
    color: #fff;
    background:
        radial-gradient(circle at top left, rgba(66, 153, 225, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(125, 211, 252, 0.08), transparent 24%),
        linear-gradient(180deg, #020617, #071224 34%, #050816 100%);
}

section[id] {
    scroll-margin-top: 116px;
}

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

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

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

.page-shell {
    position: relative;
    overflow: clip;
}

.page-shell::before,
.page-shell::after {
    content: "";
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: -1;
    width: 34rem;
    height: 34rem;
    border-radius: 999px;
    filter: blur(30px);
    opacity: 0.45;
}

.page-shell::before {
    top: -8rem;
    left: -10rem;
    background: rgba(37, 99, 235, 0.2);
}

.page-shell::after {
    right: -10rem;
    bottom: 12rem;
    background: rgba(125, 211, 252, 0.12);
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--brand-300);
    background: rgba(15, 23, 42, 0.56);
    border: 1px solid rgba(125, 211, 252, 0.14);
}

.handwritten {
    font-family: "Nothing You Could Do", cursive;
    color: var(--brand-400);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    backdrop-filter: blur(18px);
    background: rgba(5, 8, 22, 0.72);
    border-bottom: 1px solid rgba(125, 211, 252, 0.08);
}

.site-header__inner {
    width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    min-height: 90px;
}

.brand-lockup {
    display: inline-flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

.brand-logo {
    width: clamp(170px, 16vw, 220px);
    filter: brightness(0) invert(1);
}

.brand-logo--dark {
    filter: none;
}

.brand-meta {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.68);
    text-transform: uppercase;
}

.site-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-nav__links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
}

.nav-item > a i {
    font-size: 0.76rem;
}

.site-nav__links a {
    position: relative;
    padding: 0.85rem 1rem;
    font-size: 0.96rem;
    font-weight: 700;
    color: rgba(226, 232, 240, 0.8);
    border-radius: 999px;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav__links a:hover,
.site-nav__links a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    z-index: 40;
    width: min(20rem, 82vw);
    padding: 0.55rem;
    border: 1px solid rgba(191, 229, 255, 0.42);
    border-radius: 22px;
    background:
        radial-gradient(circle at 16% 0%, rgba(186, 230, 253, 0.42), transparent 34%),
        linear-gradient(180deg, rgba(248, 253, 255, 0.96), rgba(218, 240, 255, 0.88)),
        rgba(239, 248, 255, 0.9);
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(24px) saturate(1.24);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 0.72rem 0.85rem;
    border-radius: 14px;
    color: #0b1b34;
    font-size: 0.9rem;
    line-height: 1.25;
    border: 1px solid transparent;
}

.nav-dropdown a:hover,
.nav-dropdown a.is-active {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(7, 89, 133, 0.94), rgba(56, 189, 248, 0.82)),
        #0ea5e9;
    border-color: rgba(14, 165, 233, 0.28);
    box-shadow: 0 10px 24px rgba(14, 165, 233, 0.22);
    transform: translateX(3px);
}

.nav-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(125, 211, 252, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    align-items: center;
    justify-content: center;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    border: 0;
    border-radius: 999px;
    padding: 0.95rem 1.45rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    color: #04111f;
    background: linear-gradient(135deg, #f8fdff, #bfe8ff);
    box-shadow: 0 16px 40px rgba(66, 153, 225, 0.25);
}

.button--primary:hover {
    box-shadow: 0 22px 48px rgba(66, 153, 225, 0.34);
}

.button--secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(125, 211, 252, 0.18);
}

.button--ghost {
    color: var(--brand-300);
    background: transparent;
    border: 1px solid rgba(125, 211, 252, 0.18);
}

.button__icon {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.hero {
    padding: 5.5rem 0 4rem;
}

.hero--cinematic {
    position: relative;
    min-height: min(760px, calc(100vh - 90px));
    display: flex;
    align-items: center;
    padding: 6rem 0 4.4rem;
    isolation: isolate;
    overflow: hidden;
    background: #071224;
}

.hero--cinematic::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background: linear-gradient(90deg, #071224, #0c1a30);
}

.hero-cinematic-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
    transform: scale(1.06);
    filter: saturate(1.16) contrast(1.07) brightness(1.06);
    animation: cinematic-drift 22s ease-in-out infinite alternate;
}

.hero--cinematic::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.76) 44%, rgba(2, 6, 23, 0.26) 100%),
        radial-gradient(circle at 24% 38%, rgba(66, 153, 225, 0.2), transparent 30%),
        radial-gradient(circle at 72% 20%, rgba(125, 211, 252, 0.12), transparent 26%),
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: auto, auto, auto, 34px 34px, 34px 34px;
    animation: grid-drift 16s linear infinite;
}

@keyframes cinematic-drift {
    from {
        transform: scale(1.06) translate3d(-0.8%, 0, 0);
    }

    to {
        transform: scale(1.1) translate3d(0.8%, -0.8%, 0);
    }
}

@keyframes grid-drift {
    from {
        background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    }

    to {
        background-position: 0 0, 0 0, 0 0, 34px 34px, 34px 34px;
    }
}

.hero__cinematic-inner {
    min-height: 540px;
    display: flex;
    align-items: center;
}

.hero__copy--cinematic {
    width: min(720px, 100%);
}

.hero__copy--cinematic h1 {
    max-width: 15.5ch;
}

.hero__copy--cinematic p {
    max-width: 38rem;
    font-size: 1.08rem;
    line-height: 1.72;
}

.hero-metric-rail {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.45rem;
    max-width: 42rem;
}

.hero-metric-rail span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.72rem 0.95rem;
    border: 1px solid rgba(125, 211, 252, 0.16);
    border-radius: 999px;
    background: rgba(7, 18, 36, 0.56);
    box-shadow: 0 16px 34px rgba(2, 6, 23, 0.2);
    color: rgba(226, 232, 240, 0.78);
    backdrop-filter: blur(18px);
}

.hero-metric-rail strong {
    color: #ffffff;
    font-size: 1.08rem;
}

.hero--service {
    position: relative;
    padding: 5rem 0 3.8rem;
    overflow: hidden;
    isolation: isolate;
}

.hero--service::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 82% 24%, rgba(66, 153, 225, 0.2), transparent 32%),
        radial-gradient(circle at 12% 76%, rgba(125, 211, 252, 0.12), transparent 28%),
        linear-gradient(135deg, #06101f 0%, #0d1f36 100%);
}

.hero--service::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.95));
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 2rem;
    align-items: center;
}

.hero__copy h1 {
    margin: 1.2rem 0 1.25rem;
    font-size: clamp(2.8rem, 5vw, 5.3rem);
    line-height: 0.96;
    letter-spacing: 0;
}

.hero__copy p {
    max-width: 46rem;
    color: rgba(226, 232, 240, 0.82);
    font-size: 1.08rem;
    line-height: 1.9;
}

.hero__art {
    position: relative;
}

.hero--service .hero__art {
    align-self: stretch;
    opacity: 0.82;
    transform: translateY(10px);
}

.hero--service .art-frame--hero {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1.35rem, 2.4vw, 2rem);
    border-radius: 42px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(238, 247, 255, 0.96)),
        #ffffff;
    border-color: rgba(186, 230, 253, 0.58);
    box-shadow: 0 30px 78px rgba(2, 6, 23, 0.18);
}

.hero--service .art-frame--hero img {
    width: min(100%, 520px);
    max-height: 360px;
    object-fit: contain;
    transform: none;
    filter: drop-shadow(0 24px 42px rgba(56, 189, 248, 0.16));
}

.art-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
        linear-gradient(140deg, rgba(8, 16, 31, 0.96), rgba(17, 34, 66, 0.98));
    border: 1px solid rgba(125, 211, 252, 0.12);
    box-shadow: var(--shadow-strong);
}

.art-frame--hero {
    padding: 1.2rem;
}

.art-frame img {
    width: 100%;
    height: auto;
    border-radius: calc(var(--radius-xl) - 10px);
}

.hero-card {
    position: absolute;
    max-width: 16rem;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(4, 11, 26, 0.72);
    border: 1px solid rgba(125, 211, 252, 0.16);
    box-shadow: 0 18px 45px rgba(2, 6, 23, 0.32);
    backdrop-filter: blur(16px);
}

.hero-card strong {
    display: block;
    font-size: 1rem;
}

.hero-card span {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.9rem;
    color: rgba(191, 219, 254, 0.86);
    line-height: 1.55;
}

.hero-card--left {
    left: -1rem;
    bottom: 2rem;
}

.hero-card--right {
    right: -1rem;
    top: 2rem;
}

.stat-strip {
    padding: 1rem 0 2.5rem;
}

.stat-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.stat-card {
    padding: 1.3rem 1.35rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(125, 211, 252, 0.1);
    box-shadow: 0 12px 36px rgba(2, 6, 23, 0.2);
}

.stat-card__value {
    display: block;
    font-size: clamp(2.1rem, 4vw, 3rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.stat-card__label {
    display: block;
    margin-top: 0.5rem;
    color: rgba(226, 232, 240, 0.8);
    line-height: 1.55;
}

.section {
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.section > .container {
    position: relative;
    z-index: 1;
}

.section--light {
    color: var(--slate-900);
    background:
        radial-gradient(circle at top right, rgba(125, 211, 252, 0.14), transparent 26%),
        linear-gradient(180deg, #ffffff, #f7fbff 100%);
}

.section--light .eyebrow {
    color: #0b5f93;
    background: rgba(14, 116, 144, 0.07);
    border-color: rgba(14, 116, 144, 0.16);
}

.section--light .section-heading h2,
.section--light .industry-card h3,
.section--light .proof-card h3,
.section--light .comparison-card h3 {
    color: var(--slate-900);
}

.section--soft {
    background: linear-gradient(180deg, rgba(7, 18, 36, 0.94), rgba(5, 8, 22, 1));
}

.section-parallax-visual {
    position: absolute;
    z-index: 0;
    width: clamp(18rem, 28vw, 34rem);
    height: clamp(16rem, 24vw, 28rem);
    overflow: hidden;
    border-radius: 44px;
    opacity: 0.16;
    pointer-events: none;
    border: 1px solid rgba(125, 211, 252, 0.18);
    box-shadow: 0 30px 90px rgba(2, 6, 23, 0.22);
    mask-image: linear-gradient(135deg, transparent 0%, #000 18%, #000 72%, transparent 100%);
}

.section-parallax-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.06) contrast(1.02);
    transform: scale(1.06);
}

.section-parallax-visual--right {
    top: 5rem;
    right: max(1.5rem, 4vw);
}

.section-parallax-visual--left {
    left: max(1rem, 3vw);
    bottom: 3rem;
}

.section--light .section-parallax-visual {
    opacity: 0.12;
    border-color: rgba(14, 116, 144, 0.14);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}

.section-heading {
    max-width: 44rem;
}

.section-heading h2 {
    margin: 1rem 0 0.9rem;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.section-heading--compact {
    max-width: 58rem;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.58fr);
    gap: 1.4rem;
    align-items: end;
}

.section-heading--compact .eyebrow {
    grid-column: 1 / -1;
    justify-self: start;
}

.section-heading--compact h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 3.2vw, 3rem);
}

.section-heading--compact p {
    font-size: 1rem;
    line-height: 1.7;
}

.section-heading p {
    margin: 0;
    color: rgba(226, 232, 240, 0.78);
    font-size: 1.05rem;
    line-height: 1.85;
}

.section--light .section-heading p {
    color: var(--slate-500);
}

.section-intro-visual {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.55fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    margin-bottom: 2.4rem;
}

.section-intro-visual .section-heading {
    max-width: 54rem;
}

.section-inline-visual {
    position: relative;
    width: min(100%, 21.5rem);
    aspect-ratio: 1 / 1;
    justify-self: end;
    min-height: 0;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(125, 211, 252, 0.16);
    box-shadow: 0 26px 76px rgba(2, 6, 23, 0.28);
    background: rgba(8, 16, 31, 0.46);
}

.section-inline-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.18)),
        radial-gradient(circle at 14% 12%, rgba(125, 211, 252, 0.14), transparent 30%);
    pointer-events: none;
}

.section-inline-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.04) brightness(0.96);
    transform: scale(1.02);
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
    margin-top: 0;
}

.service-card {
    position: relative;
    overflow: hidden;
    padding: 1.25rem;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
        linear-gradient(145deg, rgba(8, 16, 31, 0.96), rgba(13, 28, 52, 0.98));
    border: 1px solid rgba(125, 211, 252, 0.14);
    box-shadow: 0 18px 48px rgba(2, 6, 23, 0.32);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

#capabilities .service-card {
    color: var(--slate-900);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 255, 0.96)),
        #ffffff;
    border-color: rgba(66, 153, 225, 0.16);
    box-shadow: 0 22px 60px rgba(2, 6, 23, 0.24);
}

#capabilities .service-card:hover {
    border-color: rgba(14, 165, 233, 0.32);
    box-shadow: 0 30px 80px rgba(2, 6, 23, 0.34);
}

#capabilities .service-card__number {
    color: #075985;
    background: rgba(14, 165, 233, 0.12);
}

#capabilities .service-card h3 {
    color: var(--slate-900);
}

#capabilities .service-card p,
#capabilities .service-card li {
    color: var(--slate-500);
}

#capabilities .service-card__link {
    color: #0369a1;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(125, 211, 252, 0.26);
    box-shadow: 0 26px 70px rgba(2, 6, 23, 0.42);
}

.service-card::after {
    content: "";
    position: absolute;
    inset: auto auto 0 -12%;
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.9), transparent);
}

.service-card__number {
    display: inline-flex;
    width: 2.35rem;
    height: 2.35rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(125, 211, 252, 0.1);
    color: var(--brand-300);
    font-weight: 900;
}

.service-card h3 {
    margin: 0.95rem 0 0.7rem;
    font-size: 1.42rem;
}

.service-card p {
    margin: 0;
    color: rgba(226, 232, 240, 0.78);
    line-height: 1.62;
}

.service-card ul {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 1rem;
    margin-top: 0.55rem;
    color: rgba(226, 232, 240, 0.84);
    line-height: 1.55;
}

.service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-300), var(--brand-500));
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
    font-weight: 800;
    color: var(--brand-300);
}

.comparison-grid,
.proof-grid,
.industry-grid,
.related-grid,
.outcome-grid,
.process-grid,
.fit-grid,
.detail-grid {
    display: grid;
    gap: 1.35rem;
}

.comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2rem;
}

.comparison-card,
.proof-card,
.industry-card,
.detail-card,
.process-card,
.fit-card,
.related-card,
.sticky-nav,
.booking-panel,
.contact-prompt {
    border-radius: 28px;
    border: 1px solid rgba(125, 211, 252, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
        rgba(5, 13, 27, 0.46);
    box-shadow: 0 14px 36px rgba(2, 6, 23, 0.16);
    backdrop-filter: blur(16px);
}

.comparison-card {
    padding: 1.5rem;
}

.comparison-card h3 {
    margin: 0;
    font-size: 1.55rem;
}

.comparison-card p {
    margin: 0.9rem 0 0;
    color: rgba(226, 232, 240, 0.78);
    line-height: 1.75;
}

.comparison-card--light {
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    border-color: rgba(66, 153, 225, 0.1);
    color: var(--slate-900);
}

.comparison-card--light p {
    color: var(--slate-500);
}

.comparison-card--success {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(34, 197, 94, 0.14), transparent 34%),
        linear-gradient(180deg, #f0fdf4, #ffffff 78%);
    border-color: rgba(34, 197, 94, 0.24);
    box-shadow: 0 18px 52px rgba(22, 101, 52, 0.12);
}

.comparison-card__icon {
    display: inline-flex;
    width: 2.05rem;
    height: 2.05rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    box-shadow: 0 12px 28px rgba(22, 163, 74, 0.24);
}

.section--light .proof-card,
.section--light .industry-card,
.section--light .detail-card,
.section--light .fit-card,
.section--light .related-card {
    color: var(--slate-900);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.96)),
        #ffffff;
    border-color: rgba(66, 153, 225, 0.13);
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.process-grid {
    margin-top: 2rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card {
    position: relative;
    padding: 1.2rem 1.25rem 1.25rem;
}

.process-card__step {
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-300);
    font-weight: 800;
}

.process-card h3,
.fit-card h3,
.proof-card h3,
.industry-card h3,
.detail-card h3,
.related-card h3 {
    margin: 0.9rem 0 0.65rem;
    font-size: 1.28rem;
}

.process-card p,
.fit-card p,
.proof-card p,
.industry-card p,
.detail-card p,
.related-card p,
.sticky-nav p,
.booking-panel p,
.contact-prompt p {
    margin: 0;
    color: rgba(226, 232, 240, 0.78);
    line-height: 1.58;
}

.section--light .process-card p,
.section--light .fit-card p,
.section--light .proof-card p,
.section--light .industry-card p,
.section--light .detail-card p,
.section--light .related-card p,
.section--light .booking-panel p,
.section--light .contact-prompt p {
    color: var(--slate-500);
}

.process-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(125, 211, 252, 0.7), transparent);
    opacity: 0.8;
}

#process .process-grid {
    gap: 0.95rem;
}

#process .process-card {
    min-height: auto;
    border-radius: 24px;
}

.proof-grid {
    margin-top: 2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card,
.industry-card,
.detail-card,
.fit-card,
.related-card {
    padding: 1.4rem;
}

.industry-card {
    position: relative;
}

.industry-card__icon {
    display: inline-flex;
    width: 2.25rem;
    height: 2.25rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    border-radius: 14px;
    color: #075985;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.16);
    font-size: 1.05rem;
}

.proof-card__value {
    display: block;
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
}

.industry-grid,
.fit-grid,
.detail-grid,
.related-grid {
    margin-top: 2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-layout {
    display: grid;
    grid-template-columns: minmax(0, 270px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.sticky-nav {
    position: sticky;
    top: 110px;
    padding: 1.3rem;
    background: rgba(5, 11, 26, 0.78);
    backdrop-filter: blur(18px);
}

.sticky-nav h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.sticky-nav ul {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.sticky-nav li + li {
    margin-top: 0.45rem;
}

.sticky-nav a {
    display: block;
    padding: 0.75rem 0.9rem;
    border-radius: 16px;
    color: rgba(226, 232, 240, 0.76);
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.sticky-nav a:hover,
.sticky-nav a.is-current {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transform: translateX(4px);
}

.content-stack > section + section {
    margin-top: 1.4rem;
}

.content-block {
    padding: 1.75rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(125, 211, 252, 0.1);
}

.service-layout .sticky-nav {
    color: var(--slate-900);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96)),
        #ffffff;
    border-color: rgba(66, 153, 225, 0.14);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.09);
}

.service-layout .sticky-nav p {
    color: var(--slate-500);
}

.service-layout .sticky-nav a {
    color: var(--slate-600);
}

.service-layout .sticky-nav a:hover,
.service-layout .sticky-nav a.is-current {
    color: #fff;
    background: linear-gradient(135deg, #075985, #38bdf8);
}

.service-layout .content-block {
    color: var(--slate-900);
    background:
        radial-gradient(circle at 90% 8%, rgba(14, 165, 233, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 251, 255, 0.97)),
        #ffffff;
    border-color: rgba(66, 153, 225, 0.14);
    box-shadow: 0 22px 58px rgba(15, 23, 42, 0.08);
}

.service-layout .content-block:nth-child(even) {
    color: #fff;
    background:
        radial-gradient(circle at 86% 12%, rgba(56, 189, 248, 0.18), transparent 32%),
        linear-gradient(145deg, #071428 0%, #0b1b34 58%, #06101f 100%);
    border-color: rgba(125, 211, 252, 0.16);
    box-shadow: 0 24px 64px rgba(2, 6, 23, 0.2);
}

.service-layout .content-block > p {
    color: var(--slate-500);
}

.service-layout .content-block:nth-child(even) > p {
    color: rgba(226, 232, 240, 0.8);
}

.service-layout .content-block .pill {
    color: var(--slate-700);
    background: rgba(14, 165, 233, 0.08);
    border-color: rgba(14, 165, 233, 0.14);
}

.service-layout .content-block:nth-child(even) .pill {
    color: rgba(240, 249, 255, 0.94);
    background: rgba(125, 211, 252, 0.1);
    border-color: rgba(125, 211, 252, 0.16);
}

.service-layout .content-block .detail-card,
.service-layout .content-block .fit-card,
.service-layout .content-block .related-card,
.service-layout .content-block .mini-metric {
    color: var(--slate-900);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.96)),
        #ffffff;
    border-color: rgba(66, 153, 225, 0.13);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.service-layout .content-block .process-card {
    color: var(--slate-900);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 252, 255, 0.98)),
        #ffffff;
    border-color: rgba(66, 153, 225, 0.13);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.service-layout .content-block .process-card p {
    color: var(--slate-500);
}

.service-layout .content-block .process-card__step {
    color: #075985;
}

.service-layout .content-block .process-card::before {
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.62), rgba(186, 230, 253, 0));
}

.service-layout .content-block:nth-child(even) .detail-card,
.service-layout .content-block:nth-child(even) .fit-card,
.service-layout .content-block:nth-child(even) .related-card,
.service-layout .content-block:nth-child(even) .mini-metric {
    color: #fff;
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(125, 211, 252, 0.14);
    box-shadow: none;
}

.service-layout .content-block .detail-card p,
.service-layout .content-block .fit-card p,
.service-layout .content-block .related-card p,
.service-layout .content-block .mini-metric span {
    color: var(--slate-500);
}

.service-layout .content-block:nth-child(even) .detail-card p,
.service-layout .content-block:nth-child(even) .fit-card p,
.service-layout .content-block:nth-child(even) .related-card p,
.service-layout .content-block:nth-child(even) .mini-metric span {
    color: rgba(226, 232, 240, 0.76);
}

.service-layout .visual-proof-image {
    border-color: rgba(66, 153, 225, 0.16);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.11);
}

.content-block--light {
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    color: var(--slate-900);
    border-color: rgba(66, 153, 225, 0.1);
}

.content-block h2 {
    margin: 0;
    font-size: 2rem;
}

.content-block > p {
    margin: 1rem 0 0;
    color: rgba(226, 232, 240, 0.8);
    line-height: 1.8;
}

.content-block--light > p {
    color: var(--slate-500);
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.25rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.72rem 0.92rem;
    border-radius: 999px;
    background: rgba(125, 211, 252, 0.08);
    border: 1px solid rgba(125, 211, 252, 0.14);
    color: rgba(226, 232, 240, 0.9);
    font-weight: 700;
}

.content-block--light .pill {
    color: var(--slate-700);
    background: rgba(66, 153, 225, 0.08);
    border-color: rgba(66, 153, 225, 0.12);
}

.split-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
    gap: 1.3rem;
    align-items: center;
}

.split-panel__art {
    padding: 1rem;
    border-radius: 26px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent),
        linear-gradient(140deg, rgba(8, 16, 31, 0.96), rgba(13, 28, 52, 0.98));
    border: 1px solid rgba(125, 211, 252, 0.12);
}

.split-panel__art img {
    border-radius: 20px;
}

.booking-section {
    padding: 4.5rem 0 5.4rem;
}

.booking-section.section--light {
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(125, 211, 252, 0.08), transparent 24%),
        linear-gradient(180deg, #08101f, #0c1a30 44%, #071224 100%);
}

.booking-panel {
    padding: 2rem;
    color: #fff;
    background:
        radial-gradient(circle at top left, rgba(125, 211, 252, 0.16), transparent 28%),
        linear-gradient(145deg, rgba(8, 16, 31, 0.98), rgba(12, 25, 47, 0.98));
}

.booking-section.section--light .booking-panel {
    color: var(--slate-900);
    background:
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 255, 0.97));
    border-color: rgba(66, 153, 225, 0.14);
    box-shadow: 0 30px 90px rgba(2, 6, 23, 0.22);
}

.booking-panel h2 {
    margin: 0.9rem 0 0.75rem;
    font-size: clamp(2rem, 4vw, 3.4rem);
    color: #fff;
}

.booking-section.section--light .booking-panel h2 {
    color: var(--slate-900);
}

.booking-panel .eyebrow {
    color: var(--brand-300);
}

.booking-panel strong {
    color: #fff;
}

.booking-section.section--light .booking-panel strong {
    color: var(--slate-900);
}

.booking-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 1.4rem;
    align-items: start;
}

.booking-benefits {
    display: grid;
    gap: 0.9rem;
}

.booking-benefit {
    padding: 1rem 1rem 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(125, 211, 252, 0.12);
}

.booking-section.section--light .booking-benefit,
.booking-section.section--light .contact-prompt {
    background: #ffffff;
    border-color: rgba(66, 153, 225, 0.12);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.booking-benefit strong {
    display: block;
    margin-bottom: 0.35rem;
}

.booking-form {
    display: grid;
    gap: 0.95rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
}

.field {
    display: grid;
    gap: 0.48rem;
}

.field label {
    font-size: 0.88rem;
    font-weight: 800;
    color: rgba(191, 219, 254, 0.92);
}

.booking-section.section--light .field label {
    color: #075985;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid rgba(125, 211, 252, 0.16);
    border-radius: 18px;
    padding: 0.92rem 1rem;
    color: #fff;
    background: rgba(3, 11, 26, 0.82);
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.booking-section.section--light .field input,
.booking-section.section--light .field select,
.booking-section.section--light .field textarea {
    color: var(--slate-900);
    background: #ffffff;
    border-color: rgba(66, 153, 225, 0.16);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(125, 211, 252, 0.45);
    box-shadow: 0 0 0 4px rgba(66, 153, 225, 0.12);
}

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

.field__error {
    min-height: 1.05rem;
    font-size: 0.82rem;
    color: #fca5a5;
}

.form-status {
    min-height: 1.25rem;
    font-size: 0.92rem;
    color: rgba(191, 219, 254, 0.92);
}

.form-status.is-error {
    color: #fca5a5;
}

.form-status.is-success {
    color: #86efac;
}

.contact-prompt {
    margin-top: 1rem;
    padding: 1rem 1.15rem;
}

.contact-prompt strong {
    display: block;
    margin-bottom: 0.35rem;
}

.booking-panel a {
    color: var(--brand-300);
}

.booking-section.section--light .booking-panel a {
    color: #0369a1;
}

.site-footer {
    padding: 2rem 0 3rem;
    background: linear-gradient(180deg, #f8fbff, #eef6ff);
    color: var(--slate-900);
}

.site-footer__panel {
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid rgba(66, 153, 225, 0.12);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-soft);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 1.5rem;
}

.site-footer p,
.site-footer a,
.site-footer li {
    color: var(--slate-500);
    line-height: 1.75;
}

.site-footer h3 {
    margin: 0 0 0.8rem;
}

.footer-links {
    display: grid;
    gap: 0.55rem;
}

.footer-links a:hover {
    color: var(--brand-600);
}

.site-footer__meta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(66, 153, 225, 0.12);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-page-hero-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.3rem;
}

.service-page-hero-nav a {
    padding: 0.65rem 0.92rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(226, 232, 240, 0.84);
    font-size: 0.92rem;
    font-weight: 700;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
}

.modal.is-open {
    display: block;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(12px);
}

.modal__dialog {
    position: relative;
    width: min(860px, calc(100% - 24px));
    max-height: calc(100vh - 40px);
    margin: 20px auto;
    overflow: auto;
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(125, 211, 252, 0.18), transparent 26%),
        linear-gradient(180deg, rgba(8, 16, 31, 0.98), rgba(7, 18, 36, 0.98));
    border: 1px solid rgba(125, 211, 252, 0.14);
    box-shadow: var(--shadow-strong);
}

.modal__content {
    padding: 1.2rem;
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 999px;
    border: 1px solid rgba(125, 211, 252, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
}

.scroll-surface {
    position: relative;
}

.scroll-surface::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 40%, rgba(125, 211, 252, 0.05));
    pointer-events: none;
}

.reveal-up {
    transform: translateY(18px);
    opacity: 0;
    transition: transform 520ms ease, opacity 520ms ease;
}

.reveal-up.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.media-showcase {
    position: relative;
    overflow: hidden;
}

.media-showcase--slim {
    padding: 3.1rem 0 3.6rem;
}

.media-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(125, 211, 252, 0.12), transparent 26%),
        radial-gradient(circle at 82% 28%, rgba(66, 153, 225, 0.1), transparent 28%);
    pointer-events: none;
}

.media-showcase.section--light::before {
    background:
        radial-gradient(circle at 18% 18%, rgba(14, 165, 233, 0.1), transparent 26%),
        radial-gradient(circle at 82% 10%, rgba(30, 64, 175, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(226, 244, 255, 0.7));
}

.media-showcase .container {
    position: relative;
}

.media-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.35rem;
    margin-top: 2rem;
}

.media-grid--compact {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.media-grid--compact .media-stack {
    grid-template-columns: 1fr;
}

.media-stack {
    display: grid;
    gap: 1.35rem;
}

.media-spotlight {
    margin-top: 1.7rem;
}

.media-tile {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(125, 211, 252, 0.14);
    background: #08101f;
    box-shadow: 0 24px 70px rgba(2, 6, 23, 0.32);
    isolation: isolate;
}

.media-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.04), rgba(2, 6, 23, 0.16) 48%, rgba(2, 6, 23, 0.44)),
        radial-gradient(circle at 18% 20%, rgba(125, 211, 252, 0.14), transparent 28%);
    pointer-events: none;
}

.media-tile--tall {
    min-height: 430px;
}

.media-tile--wide {
    min-height: 360px;
    max-height: 460px;
    border-radius: 34px;
}

.media-tile img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.02);
    transform: scale(1.03);
    transition: transform 700ms ease, filter 700ms ease;
}

.media-tile:hover img {
    transform: scale(1.09);
    filter: saturate(1.14) contrast(1.06);
}

.media-tile__caption {
    position: absolute;
    inset: auto auto 1.05rem 1.05rem;
    z-index: 2;
    display: inline-grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.62rem;
    row-gap: 0.05rem;
    align-items: center;
    width: auto;
    max-width: min(74%, 18rem);
    padding: 0.58rem 0.72rem;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(3, 11, 26, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 14px 34px rgba(2, 6, 23, 0.2);
    backdrop-filter: blur(18px);
    animation: caption-float 5.4s ease-in-out infinite;
}

.media-tile__caption small {
    grid-row: 1 / 3;
    display: inline-flex;
    width: 1.85rem;
    height: 1.85rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #082f49;
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.7rem;
    font-weight: 900;
}

.media-tile__caption strong {
    display: block;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.1;
}

.media-tile__caption span {
    display: block;
    color: rgba(226, 232, 240, 0.76);
    font-size: 0.72rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.media-stack .media-tile:nth-child(2) .media-tile__caption {
    animation-delay: 550ms;
}

@keyframes caption-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -6px, 0);
    }
}

.flow-graphic {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
}

.flow-graphic::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 2.15rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.8), transparent);
}

.flow-node {
    position: relative;
    z-index: 1;
    padding: 1.2rem;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
        rgba(8, 16, 31, 0.9);
    border: 1px solid rgba(125, 211, 252, 0.14);
    box-shadow: 0 18px 50px rgba(2, 6, 23, 0.22);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease, border-color 220ms ease;
}

#process .flow-node {
    color: var(--slate-900);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 255, 0.95)),
        #ffffff;
    border-color: rgba(125, 211, 252, 0.18);
    box-shadow: 0 20px 52px rgba(2, 6, 23, 0.22);
}

#process .flow-node h3 {
    color: var(--slate-900);
}

#process .flow-node p {
    color: var(--slate-500);
}

#process .flow-node__dot {
    color: #075985;
    background: rgba(14, 165, 233, 0.12);
    border-color: rgba(14, 165, 233, 0.18);
}

.flow-graphic.is-visible .flow-node {
    opacity: 1;
    transform: translateY(0);
}

.flow-graphic.is-visible .flow-node:nth-child(2) {
    transition-delay: 80ms;
}

.flow-graphic.is-visible .flow-node:nth-child(3) {
    transition-delay: 160ms;
}

.flow-graphic.is-visible .flow-node:nth-child(4) {
    transition-delay: 240ms;
}

.flow-graphic.is-visible .flow-node:nth-child(5) {
    transition-delay: 320ms;
}

.flow-node:hover {
    border-color: rgba(125, 211, 252, 0.32);
    transform: translateY(-4px);
}

.flow-node__dot {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    margin-bottom: 1rem;
    color: #04111f;
    font-weight: 900;
    background: linear-gradient(135deg, #f8fdff, #9ddcff);
    box-shadow: 0 0 0 8px rgba(125, 211, 252, 0.12);
}

.flow-node h3 {
    margin: 0 0 0.55rem;
    font-size: 1.12rem;
}

.flow-node p {
    margin: 0;
    color: rgba(226, 232, 240, 0.78);
    line-height: 1.62;
}

.visual-proof-block {
    overflow: hidden;
}

.visual-proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.2rem;
    align-items: stretch;
}

.visual-proof-image {
    min-height: 340px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(125, 211, 252, 0.14);
}

.visual-proof-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 700ms ease;
}

.visual-proof-block:hover .visual-proof-image img {
    transform: scale(1.08);
}

.visual-proof-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visual-proof-copy h2 {
    font-size: 2rem;
}

.mini-metric-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.mini-metric {
    padding: 0.95rem;
    border-radius: 18px;
    background: rgba(125, 211, 252, 0.08);
    border: 1px solid rgba(125, 211, 252, 0.12);
    transition: transform 220ms ease, background 220ms ease;
}

.mini-metric:hover {
    transform: translateY(-3px);
    background: rgba(125, 211, 252, 0.13);
}

.mini-metric strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1;
}

.parallax-section {
    position: relative;
    overflow: hidden;
}

[data-parallax-section] {
    position: relative;
}

[data-parallax-layer] {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .hero--cinematic {
        background-attachment: scroll;
    }

    .hero-cinematic-bg,
    .hero--cinematic::after,
    .media-tile__caption {
        animation: none;
    }

    [data-parallax-layer] {
        transform: none !important;
    }
}

.mini-metric span {
    display: block;
    margin-top: 0.45rem;
    color: rgba(226, 232, 240, 0.76);
    line-height: 1.4;
}

.reveal-up:nth-child(2) {
    transition-delay: 70ms;
}

.reveal-up:nth-child(3) {
    transition-delay: 140ms;
}

.reveal-up:nth-child(4) {
    transition-delay: 210ms;
}

@media (max-width: 1100px) {
    .hero__grid,
    .booking-grid,
    .split-panel,
    .section-intro-visual {
        grid-template-columns: 1fr;
    }

    .section-inline-visual {
        width: min(100%, 23rem);
        justify-self: start;
    }

    .capability-grid,
    .proof-grid,
    .industry-grid,
    .detail-grid,
    .fit-grid,
    .related-grid,
    .process-grid,
    .media-grid,
    .visual-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .sticky-nav {
        position: static;
    }

    .hero-card--left,
    .hero-card--right {
        position: static;
        margin-top: 1rem;
        max-width: none;
    }
}

@media (max-width: 820px) {
    .site-header__inner {
        min-height: 78px;
        flex-wrap: wrap;
        padding: 0.8rem 0;
    }

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

    .site-nav {
        width: 100%;
        margin-left: 0;
        display: block;
    }

    .site-nav__links {
        display: none;
        width: 100%;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(125, 211, 252, 0.1);
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav.is-open .site-nav__links {
        display: flex;
    }

    .site-nav__links a {
        padding: 0.85rem 0;
        border-radius: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-item > a {
        justify-content: space-between;
    }

    .nav-dropdown {
        position: static;
        width: 100%;
        padding: 0.15rem 0 0.55rem 0.85rem;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown a {
        padding: 0.52rem 0.75rem;
        border-radius: 14px;
        font-size: 0.9rem;
        color: rgba(240, 249, 255, 0.9);
    }

    .stat-strip__grid,
    .capability-grid,
    .comparison-grid,
    .proof-grid,
    .industry-grid,
    .detail-grid,
    .fit-grid,
    .related-grid,
    .process-grid,
    .site-footer__grid,
    .form-grid,
    .media-grid,
    .visual-proof-grid,
    .flow-graphic,
    .mini-metric-row {
        grid-template-columns: 1fr;
    }

    .flow-graphic::before {
        display: none;
    }

    .media-tile--tall,
    .media-tile {
        min-height: 340px;
    }

    .media-tile--wide {
        min-height: 300px;
    }

    .hero {
        padding-top: 4rem;
    }

    .hero--cinematic {
        min-height: auto;
        background-attachment: scroll;
    }

    .hero-cinematic-bg {
        object-position: 58% center;
        opacity: 0.62;
    }

    .hero__cinematic-inner {
        min-height: 520px;
    }

    .hero-metric-rail {
        gap: 0.5rem;
    }

    .hero-metric-rail span {
        width: 100%;
        justify-content: space-between;
    }

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

    .hero--service .hero__art {
        display: none;
    }

    .section-parallax-visual {
        display: none;
    }

    .hero__copy h1 {
        font-size: clamp(2.45rem, 11vw, 4.1rem);
    }

    .section-heading--compact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 20px, 100%);
    }

    .site-footer__panel,
    .booking-panel,
    .content-block,
    .comparison-card,
    .process-card,
    .proof-card,
    .industry-card,
    .detail-card,
    .fit-card,
    .related-card,
    .sticky-nav {
        border-radius: 24px;
    }

    .modal__dialog {
        width: calc(100% - 16px);
        margin: 8px auto;
        border-radius: 24px;
    }
}

.booking-section.section--light .booking-panel p,
.booking-section.section--light .booking-panel .booking-benefit span,
.booking-section.section--light .contact-prompt p,
.booking-section.section--light .booking-panel .form-status {
    color: var(--slate-500);
}

.booking-section.section--light .booking-panel .form-status.is-error {
    color: #dc2626;
}

.booking-section.section--light .booking-panel .form-status.is-success {
    color: #15803d;
}
