:root {
    --navy: #0b1f3a;
    --navy-deep: #071629;
    --blue: #1e4e8c;
    --accent: #3b82f6;
    --accent-bright: #60a5fa;
    --ink: #132238;
    --slate: #526174;
    --muted: #748196;
    --line: #dce3ec;
    --line-dark: rgba(255, 255, 255, 0.14);
    --surface: #f8fafc;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(11, 31, 58, 0.10);
    --container: 1200px;
    --header-height: 100px;
}

@media (max-width: 1024px) {
    :root {
        --header-height: 90px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 75px;
    }
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
textarea {
    font: inherit;
}

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

a {
    color: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--navy);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

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

.section {
    padding: 88px 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 16px;
    color: var(--white);
    background: var(--accent);
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 28px;
    height: 2px;
    background: var(--accent);
}

.eyebrow-light {
    color: #b8d1ee;
}

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

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

.split-heading {
    display: grid;
    gap: 25px;
}

.split-heading > p,
.centered-heading > p {
    margin-bottom: 0;
    color: var(--slate);
    font-size: 1.02rem;
}

.section-heading-light h2 {
    color: var(--white);
}

.section-heading-light > p {
    color: #afbdd0;
}

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

.centered-heading .eyebrow {
    justify-content: center;
}

.centered-heading > p {
    max-width: 600px;
    margin: 22px auto 0;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 13px 21px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 0.87rem;
    font-weight: 600;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.button svg,
.nav-cta svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
    transition: transform 0.25s ease;
}

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

.button:hover svg,
.nav-cta:hover svg {
    transform: translateX(4px);
}

.button-primary {
    color: var(--navy);
    background: var(--white);
}

.button-primary:hover {
    background: #eaf3ff;
}

.button-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.38);
}

.button-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.button-dark {
    color: var(--white);
    background: var(--navy);
}

.button-dark:hover {
    background: var(--blue);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--accent);
    color: var(--navy);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
}

.text-link span {
    transition: transform 0.2s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    height: var(--header-height);
    color: var(--white);
    background: #081424;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
    color: var(--white);
    background: #081424;
    box-shadow: 0 1px 0 rgba(11, 31, 58, 0.15);
    backdrop-filter: blur(14px);
}

.navbar {
    display: flex;
    min-height: var(--header-height);
    height: var(--header-height);
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.site-logo {
    display: block;
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-brand .site-logo {
    height: 50px;
}

@media (max-width: 1024px) {
    .site-logo {
        height: 65px;
    }

    .footer-brand .site-logo {
        height: 42px;
    }
}

@media (max-width: 768px) {
    .site-logo {
        height: 50px;
    }

    .footer-brand .site-logo {
        height: 36px;
    }
}

.brand-mark {
    position: relative;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
}

.brand-mark span {
    position: absolute;
    width: 22px;
    height: 8px;
    border: 2px solid currentColor;
    transform: skewX(-26deg);
}

.brand-mark span:first-child {
    top: 3px;
    left: 5px;
}

.brand-mark span:nth-child(2) {
    top: 11px;
    left: 1px;
    opacity: 0.72;
}

.brand-mark span:last-child {
    top: 19px;
    left: 5px;
    opacity: 0.45;
}

.brand-name {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.menu-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    left: 11px;
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: top 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle span:first-child {
    top: 14px;
}

.menu-toggle span:nth-child(2) {
    top: 21px;
}

.menu-toggle span:last-child {
    top: 28px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
    top: 21px;
    transform: rotate(45deg);
}

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

.menu-toggle[aria-expanded="true"] span:last-child {
    top: 21px;
    transform: rotate(-45deg);
}

.nav-panel {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    padding: 36px 20px;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--navy);
    background: var(--white);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: visibility 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

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

.nav-links {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.nav-links li {
    border-bottom: 1px solid var(--line);
}

.nav-links a {
    display: block;
    padding: 18px 0;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
}

.nav-cta {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    color: var(--white);
    background: var(--navy);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
}

/* Hero */
.hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    padding: calc(var(--header-height) + 70px) 0 32px;
    color: var(--white);
    background: var(--navy-deep);
}

.hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 34%;
    height: 5px;
    background: var(--accent);
    content: "";
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.13;
    background-image: linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to right, black, transparent 75%);
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(96, 165, 250, 0.14);
    border-radius: 50%;
}

.hero-orbit-one {
    top: -290px;
    right: -320px;
    width: 760px;
    height: 760px;
}

.hero-orbit-two {
    right: -110px;
    bottom: -450px;
    width: 680px;
    height: 680px;
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 56px;
    align-items: center;
}

.hero-content {
    max-width: 720px;
}

.hero h1 {
    margin-bottom: 25px;
    color: var(--white);
    font-size: clamp(2.75rem, 12vw, 5.35rem);
    font-weight: 500;
    letter-spacing: -0.055em;
}

.hero h1 em {
    color: #88bfff;
    font-style: normal;
}

.hero-copy {
    max-width: 650px;
    margin-bottom: 35px;
    color: #c2cfdf;
    font-size: clamp(1rem, 2.5vw, 1.18rem);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

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

.visual-frame {
    position: relative;
    min-height: 420px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(10, 36, 66, 0.7);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
}

.visual-frame::before,
.visual-frame::after {
    position: absolute;
    width: 28px;
    height: 28px;
    content: "";
}

.visual-frame::before {
    top: -1px;
    left: -1px;
    border-top: 2px solid var(--accent-bright);
    border-left: 2px solid var(--accent-bright);
}

.visual-frame::after {
    right: -1px;
    bottom: -1px;
    border-right: 2px solid var(--accent-bright);
    border-bottom: 2px solid var(--accent-bright);
}

.visual-topline {
    display: flex;
    justify-content: space-between;
    color: #97aac1;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.status {
    display: flex;
    align-items: center;
    gap: 7px;
}

.status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #58caa5;
    box-shadow: 0 0 0 4px rgba(88, 202, 165, 0.12);
}

.visual-core {
    position: relative;
    width: 290px;
    height: 290px;
    margin: 34px auto 20px;
}

.core-ring {
    position: absolute;
    border: 1px solid rgba(125, 181, 244, 0.22);
    border-radius: 50%;
}

.ring-one {
    inset: 25px;
    animation: slow-spin 26s linear infinite;
}

.ring-two {
    inset: 66px;
    border-style: dashed;
    animation: slow-spin 18s linear infinite reverse;
}

.ring-one::before,
.ring-one::after,
.ring-two::before {
    position: absolute;
    width: 8px;
    height: 8px;
    border: 3px solid #0d294b;
    border-radius: 50%;
    background: var(--accent-bright);
    content: "";
}

.ring-one::before {
    top: 22px;
    right: 32px;
}

.ring-one::after {
    bottom: 8px;
    left: 54px;
}

.ring-two::before {
    top: 50%;
    left: -5px;
}

.core-center {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 74px;
    height: 74px;
    border: 1px solid rgba(96, 165, 250, 0.5);
    place-items: center;
    background: #102f56;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.22);
    transform: translate(-50%, -50%) rotate(45deg);
}

.core-center svg {
    width: 35px;
    fill: none;
    stroke: #8fc2fc;
    stroke-width: 1.2;
    transform: rotate(-45deg);
}

.node {
    position: absolute;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #cfdef0;
    background: #0e2949;
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.node-sap {
    top: 5px;
    left: 44%;
}

.node-cloud {
    top: 48%;
    right: -9px;
}

.node-devops {
    bottom: 7px;
    left: 37%;
}

.node-data {
    top: 48%;
    left: -2px;
}

.visual-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.visual-footer div {
    padding-top: 15px;
    color: #9eb0c7;
    font-size: 0.64rem;
    letter-spacing: 0.04em;
}

.visual-footer div + div {
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.visual-footer span {
    display: block;
    margin-bottom: 2px;
    color: var(--accent-bright);
    font-size: 0.58rem;
}

.hero-principles {
    position: relative;
    z-index: 1;
    display: none;
    margin-top: 78px;
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: #8fa2b9;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-principles p {
    margin: 0;
}

.hero-principles div {
    display: flex;
    gap: 35px;
}

.hero-principles span {
    position: relative;
}

.hero-principles span + span::before {
    position: absolute;
    top: 50%;
    left: -20px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    content: "";
    transform: translateY(-50%);
}

@keyframes slow-spin {
    to { transform: rotate(360deg); }
}

/* Capabilities */
.capabilities {
    background: var(--surface);
}

.capability-grid {
    display: grid;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.capability-card {
    position: relative;
    min-height: 330px;
    padding: 28px 25px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.capability-card:hover {
    z-index: 1;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: #a7b2c0;
    font-size: 0.66rem;
    font-weight: 700;
}

.icon-box {
    display: grid;
    width: 50px;
    height: 50px;
    margin-bottom: 42px;
    place-items: center;
    color: var(--blue);
    background: #edf4fc;
}

.icon-box svg,
.service-icon svg,
.industry-list svg,
.location svg {
    width: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.4;
}

.capability-card h3 {
    margin-bottom: 14px;
    font-size: 1.4rem;
}

.capability-card p {
    margin-bottom: 25px;
    color: var(--slate);
    font-size: 0.9rem;
}

.capability-card a {
    display: inline-flex;
    gap: 9px;
    color: var(--blue);
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 700;
}

/* Services */
.services {
    color: var(--white);
    background: var(--navy);
}

.services-list {
    border-top: 1px solid var(--line-dark);
}

.service-row {
    position: relative;
    display: grid;
    grid-template-columns: 36px 44px 1fr;
    gap: 14px;
    align-items: start;
    padding: 26px 0;
    border-bottom: 1px solid var(--line-dark);
    transition: background-color 0.25s ease, padding 0.25s ease;
}

.service-row:hover {
    padding-right: 14px;
    padding-left: 14px;
    background: rgba(255, 255, 255, 0.035);
}

.service-index {
    padding-top: 12px;
    color: #6e89aa;
    font-size: 0.64rem;
    font-weight: 700;
}

.service-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #8dc1fb;
    background: rgba(59, 130, 246, 0.12);
}

.service-icon svg {
    width: 21px;
}

.service-copy h3 {
    margin: 0 0 8px;
    color: var(--white);
    font-size: 1.24rem;
}

.service-copy p {
    margin: 0;
    color: #aebdd0;
    font-size: 0.88rem;
}

.service-arrow {
    display: none;
    color: #7795b8;
    font-size: 1.3rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.service-row:hover .service-arrow {
    color: var(--accent-bright);
    transform: translate(3px, -3px);
}

/* Technology strip */
.technology-strip {
    padding: 76px 0;
    background: var(--surface);
    border-top: 1px solid var(--line);
}

.technology-strip-heading {
    display: grid;
    gap: 18px;
    margin-bottom: 36px;
}

.technology-strip-heading h2 {
    margin: 0;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
}

.technology-strip-heading > p {
    max-width: 520px;
    margin: 0;
    color: var(--slate);
    font-size: 0.92rem;
}

.technology-strip-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-top: 32px;
}

@media (max-width: 1024px) {
    .technology-strip-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .technology-strip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.tech-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    min-height: 192px;
    padding: 28px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
    transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.tech-card:hover,
.tech-card:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(11, 31, 58, 0.12);
    border-color: rgba(11, 31, 58, 0.08);
}

.tech-card:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(38, 132, 255, 0.18);
}

.tech-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
}

.tech-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.tech-icon svg {
    width: 56px;
    height: 56px;
    display: block;
}

.tech-card strong {
    color: var(--navy);
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.tech-card svg path,
.tech-card svg circle,
.tech-card svg rect,
.tech-card svg polygon,
.tech-card svg line,
.tech-card svg polyline {
    vector-effect: non-scaling-stroke;
}

/* Industries */
.industries {
    background: var(--surface);
}

.industries-layout {
    display: grid;
    gap: 55px;
}

.industries-intro h2 {
    margin-bottom: 22px;
    font-size: clamp(2rem, 7vw, 3.65rem);
}

.industries-intro > p:not(.eyebrow) {
    margin-bottom: 28px;
    color: var(--slate);
}

.industry-list {
    border-top: 1px solid var(--line);
}

.industry-list article {
    display: grid;
    grid-template-columns: 30px 1fr 28px;
    gap: 14px;
    align-items: center;
    padding: 23px 0;
    border-bottom: 1px solid var(--line);
}

.industry-number {
    color: #97a4b3;
    font-size: 0.64rem;
    font-weight: 700;
}

.industry-list h3 {
    margin-bottom: 5px;
    font-size: 1.12rem;
}

.industry-list p {
    margin: 0;
    color: var(--muted);
    font-size: 0.76rem;
}

.industry-list svg {
    width: 24px;
    color: var(--blue);
}

/* Trust */
.trust-section {
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.trust-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    height: 100%;
    opacity: 0.08;
    background-image: linear-gradient(30deg, transparent 49%, white 50%, transparent 51%);
    background-size: 44px 44px;
    mask-image: linear-gradient(to left, black, transparent);
}

.trust-section .container {
    position: relative;
}

.trust-heading {
    max-width: 760px;
    margin-bottom: 50px;
}

.trust-heading h2 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: clamp(2rem, 7vw, 3.7rem);
}

.trust-heading > p:not(.eyebrow) {
    max-width: 650px;
    margin: 0;
    color: #afbdd0;
}

.trust-grid {
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.trust-grid article {
    position: relative;
    min-height: 260px;
    padding: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.trust-grid article:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-3px);
}

.trust-number {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #9fc9f5;
    font-size: 0.66rem;
    font-weight: 700;
}

.trust-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 48px;
    place-items: center;
    color: #8fc2fc;
    background: rgba(59, 130, 246, 0.14);
}

.trust-icon svg {
    width: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.4;
}

.trust-grid h3 {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 1.18rem;
    letter-spacing: -0.025em;
}

.trust-grid p {
    margin: 0;
    color: #c2d3e6;
    font-size: 0.83rem;
}

/* About */
.about {
    background: var(--white);
}

.about-layout {
    display: grid;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
    min-height: 420px;
    background: #e9f0f8;
}

.about-visual::before {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image: linear-gradient(rgba(11, 31, 58, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 31, 58, 0.08) 1px, transparent 1px);
    background-size: 42px 42px;
    content: "";
}

.about-block {
    position: absolute;
}

.about-block-main {
    top: 56px;
    right: 28px;
    left: 28px;
    z-index: 1;
    min-height: 245px;
    padding: 34px;
    color: var(--white);
    background: var(--navy);
}

.about-block-main p {
    margin-bottom: 58px;
    color: #8eb6e3;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.about-block-main strong,
.about-block-main span {
    display: block;
    font-size: clamp(1.9rem, 8vw, 3.4rem);
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 1.03;
}

.about-block-main span {
    color: #82bafa;
}

.about-block-accent {
    right: 0;
    bottom: 0;
    z-index: 2;
    display: grid;
    width: 125px;
    height: 125px;
    place-items: center;
    color: var(--white);
    background: var(--accent);
}

.about-block-accent svg {
    width: 58px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1;
}

.about-block-small {
    bottom: 21px;
    left: 0;
    z-index: 2;
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    color: var(--blue);
    background: var(--white);
    box-shadow: var(--shadow);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.about-copy h2 {
    margin-bottom: 25px;
    font-size: clamp(2rem, 7vw, 3.65rem);
}

.about-copy > p:not(.eyebrow) {
    color: var(--slate);
}

.about-copy .about-lead {
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 500;
}

.about-copy .text-link {
    margin-top: 8px;
}

/* Contact */
.contact {
    padding: 88px 0;
    color: var(--white);
    background: var(--navy-deep);
}

.contact-layout {
    display: grid;
    gap: 55px;
}

.contact-intro h2 {
    margin-bottom: 25px;
    color: var(--white);
    font-size: clamp(2.2rem, 8vw, 4.3rem);
}

.contact-intro > p:not(.eyebrow) {
    max-width: 550px;
    color: #aebed1;
}

.location {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 38px;
    padding-top: 24px;
    border-top: 1px solid var(--line-dark);
}

.location svg {
    width: 27px;
    color: #8dc1fb;
}

.location span {
    display: block;
    margin-bottom: 2px;
    color: #7e91a9;
    font-size: 0.67rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.location strong {
    color: #dbe6f2;
    font-size: 0.87rem;
    font-weight: 500;
}

.contact-form {
    padding: 28px 24px;
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.form-row {
    display: grid;
    gap: 22px;
}

.field {
    margin-bottom: 22px;
}

.field label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
    font-size: 0.74rem;
    font-weight: 700;
}

.field input,
.field textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #cdd5df;
    border-radius: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
    transition: border-color 0.2s ease;
}

.field input {
    height: 45px;
}

.field textarea {
    min-height: 110px;
    padding-top: 10px;
    resize: vertical;
}

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

.field input:focus,
.field textarea:focus {
    border-color: var(--accent);
}

.field.has-error input,
.field.has-error textarea {
    border-color: #c83f4d;
}

.field-error {
    display: none;
    margin-top: 5px;
    color: #b52f3d;
    font-size: 0.68rem;
}

.field.has-error .field-error {
    display: block;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.contact-form .button {
    border: 0;
    cursor: pointer;
}

.form-note {
    max-width: 240px;
    margin: 0;
    color: var(--muted);
    font-size: 0.67rem;
    line-height: 1.45;
}

.form-status {
    min-height: 20px;
    margin: 17px 0 0;
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 600;
}

/* Footer */
.site-footer {
    padding: 72px 0 24px;
    color: #a9b8ca;
    background: #081424;
}

.footer-main {
    display: grid;
    gap: 42px;
    padding-bottom: 56px;
}

.brand-light {
    color: var(--white);
}

.footer-brand .brand {
    align-items: flex-start;
}

.footer-brand .brand-name {
    max-width: 180px;
    line-height: 1.25;
}

.footer-brand p {
    max-width: 310px;
    margin: 22px 0 0;
    color: #aebed0;
    font-size: 0.8rem;
    line-height: 1.7;
}

.footer-column h2 {
    margin-bottom: 17px;
    color: var(--white);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column p {
    display: block;
    width: fit-content;
    margin: 0 0 10px;
    color: #c1ccda;
    text-decoration: none;
    font-size: 0.79rem;
    line-height: 1.6;
}

.footer-column a {
    position: relative;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--accent-bright);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: var(--white);
    transform: translateX(3px);
}

.footer-column a:hover::after,
.footer-column a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-contact a {
    overflow-wrap: anywhere;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: #8191a6;
    font-size: 0.68rem;
}

/* Legal pages */
.legal-page {
    min-height: 100vh;
    background: var(--surface);
}

.legal-header {
    color: var(--white);
    background: #081424;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-header .navbar {
    justify-content: space-between;
    min-height: var(--header-height);
    align-items: center;
}

.legal-header-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
}

.legal-main {
    padding: 80px 0 110px;
}

.legal-content {
    max-width: 820px;
}

.legal-content h1 {
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 8vw, 4.7rem);
}

.legal-content .legal-intro {
    margin-bottom: 45px;
    color: var(--slate);
    font-size: 1.05rem;
}

.legal-content article {
    padding: 32px 0;
    border-top: 1px solid var(--line);
}

.legal-content article h2 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    letter-spacing: -0.025em;
}

.legal-content article p {
    margin-bottom: 0;
    color: var(--slate);
}

/* Reveal animation */
[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

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

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

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

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

@media (min-width: 600px) {
    .container {
        width: min(calc(100% - 64px), var(--container));
    }

    .section,
    .contact {
        padding: 105px 0;
    }

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

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

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

    .form-footer {
        flex-direction: row;
        align-items: center;
    }

    .contact-form {
        padding: 40px;
    }

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 800px) {
    .technology-strip-heading {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
        align-items: end;
    }

    .industries-layout,
    .about-layout,
    .contact-layout {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }

    .industries-intro {
        position: sticky;
        top: calc(var(--header-height) + 40px);
        align-self: start;
        padding-right: 45px;
    }

    .about-layout {
        gap: 80px;
    }

}

@media (min-width: 980px) {
    :root {
        --header-height: 82px;
    }

    .section {
        padding: 125px 0;
    }

    .menu-toggle {
        display: none;
    }

    .nav-panel {
        position: static;
        display: flex;
        width: auto;
        height: auto;
        padding: 0;
        overflow: visible;
        align-items: center;
        gap: 38px;
        color: inherit;
        background: transparent;
        visibility: visible;
        opacity: 1;
        transform: none;
    }

    .nav-links {
        display: flex;
        gap: 31px;
        margin: 0;
    }

    .nav-links li {
        border: 0;
    }

    .nav-links a {
        position: relative;
        padding: 29px 0;
        font-size: 0.78rem;
        font-weight: 500;
    }

    .nav-links a::after {
        position: absolute;
        right: 0;
        bottom: 20px;
        left: 0;
        height: 1px;
        background: currentColor;
        content: "";
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.25s ease;
    }

    .nav-links a:hover::after,
    .nav-links a.is-active::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .nav-cta {
        min-height: 42px;
        color: var(--navy);
        background: var(--white);
    }

    .hero {
        min-height: 840px;
        padding-top: calc(var(--header-height) + 92px);
    }

    .hero-layout {
        grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
        gap: 70px;
    }

    .hero h1 {
        font-size: clamp(4.5rem, 7vw, 5.65rem);
    }

    .hero-principles {
        display: flex;
        justify-content: space-between;
    }

    .visual-frame {
        min-height: 480px;
        padding: 24px;
    }

    .visual-core {
        width: 340px;
        height: 340px;
    }

    .split-heading {
        grid-template-columns: 1.45fr 0.55fr;
        align-items: end;
    }

    .split-heading > p {
        padding-bottom: 5px;
    }

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

    .capability-card {
        min-height: 390px;
        padding: 34px 30px;
    }

    .service-row {
        grid-template-columns: 55px 54px minmax(240px, 0.7fr) minmax(330px, 1fr) 35px;
        gap: 20px;
        align-items: center;
        padding: 28px 0;
    }

    .service-index {
        padding-top: 0;
    }

    .service-icon {
        width: 48px;
        height: 48px;
    }

    .service-copy {
        display: contents;
    }

    .service-copy h3 {
        margin: 0;
        font-size: 1.42rem;
    }

    .service-copy p {
        padding-right: 55px;
    }

    .service-arrow {
        display: block;
    }

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

    .trust-grid article {
        min-height: 285px;
        padding: 32px;
    }

    .technology-strip {
        padding: 88px 0;
    }

    .technology-strip-grid {
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }

    .tech-badge {
        min-height: 132px;
    }

    .footer-main {
        grid-template-columns: minmax(250px, 1.6fr) repeat(4, minmax(120px, 1fr));
        gap: 45px;
    }

    .about-visual {
        min-height: 540px;
    }

    .about-block-main {
        top: 70px;
        right: 54px;
        left: 54px;
        min-height: 330px;
        padding: 45px;
    }

    .about-block-main p {
        margin-bottom: 85px;
    }

    .about-block-accent {
        width: 165px;
        height: 165px;
    }

    .about-block-small {
        bottom: 32px;
        width: 105px;
        height: 105px;
    }

    .contact {
        padding: 120px 0;
    }

    .contact-layout {
        grid-template-columns: minmax(0, 0.92fr) minmax(480px, 0.78fr);
        gap: 105px;
        align-items: center;
    }
}

@media (min-width: 1200px) {
    .hero-layout {
        gap: 100px;
    }

    .section-heading h2,
    .industries-intro h2,
    .about-copy h2 {
        font-size: 3.7rem;
    }
}
