:root {
    --ink: #101820;
    --ink-soft: #243340;
    --muted: #66737f;
    --line: #dfe6ec;
    --paper: #ffffff;
    --wash: #f5f8fb;
    --steel: #eaf0f5;
    --teal: #00a386;
    --teal-dark: #08745f;
    --blue: #2457ff;
    --gold: #f1a84b;
    --shadow: 0 24px 70px rgba(16, 24, 32, 0.14);
    --radius: 8px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

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

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

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

.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(223, 230, 236, 0.9);
    backdrop-filter: blur(18px);
}

.nav-container {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
}

.logo-mark {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    object-fit: contain;
    background: #fff;
    padding: 2px;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: var(--radius);
    color: var(--ink-soft);
    font-weight: 700;
    font-size: 0.94rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--teal-dark);
    background: rgba(0, 163, 134, 0.08);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 99px;
}

.hero {
    position: relative;
    min-height: min(740px, calc(100vh - 160px));
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background-image: url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1800&q=85");
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(9, 16, 23, 0.95) 0%, rgba(9, 16, 23, 0.82) 44%, rgba(9, 16, 23, 0.34) 100%),
        linear-gradient(0deg, rgba(9, 16, 23, 0.56), rgba(9, 16, 23, 0.05));
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 48px;
    padding: 48px 0 36px;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(2.6rem, 5.15vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: 0;
    max-width: 980px;
    overflow-wrap: break-word;
}

.hero-lede {
    max-width: 690px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1.02rem, 1.55vw, 1.18rem);
}

.hero-actions,
.cta-layout {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-actions {
    margin-top: 26px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-weight: 800;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
    color: #fff;
    background: var(--teal);
    box-shadow: 0 12px 30px rgba(0, 163, 134, 0.28);
}

.btn-primary:hover {
    background: var(--teal-dark);
}

.btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(16, 24, 32, 0.62);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.panel-label {
    display: block;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-panel strong {
    display: block;
    margin-top: 6px;
    color: #fff;
    font-size: 1.35rem;
    line-height: 1.25;
}

.signal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 22px;
}

.signal-grid span {
    min-height: 76px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.84);
    font-weight: 700;
    font-size: 0.9rem;
}

.signal-grid i {
    color: var(--gold);
    font-size: 1.1rem;
}

.section {
    padding: 88px 0;
}

.intro-band,
.product-section {
    background: var(--wash);
}

.intro-band {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(245, 248, 251, 0.96), rgba(234, 240, 245, 0.78)),
        radial-gradient(circle at 82% 18%, rgba(0, 163, 134, 0.16), transparent 34%),
        #f5f8fb;
}

.intro-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 24, 32, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 24, 32, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
    pointer-events: none;
}

.stack-bridge {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 56px;
    align-items: center;
}

.stack-copy {
    max-width: 620px;
}

.stack-copy p {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.stack-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 30px;
}

.stack-metrics span {
    min-height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(0, 163, 134, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink-soft);
    font-weight: 800;
    box-shadow: 0 18px 46px rgba(16, 24, 32, 0.07);
}

.stack-metrics strong {
    color: var(--teal-dark);
    font-size: 0.86rem;
}

.stack-board {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 24px;
    border: 1px solid rgba(223, 230, 236, 0.9);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.stack-lane {
    display: grid;
    gap: 12px;
}

.lane-label {
    display: inline-flex;
    width: fit-content;
    min-height: 32px;
    align-items: center;
    padding: 0 12px;
    border-radius: var(--radius);
    color: var(--teal-dark);
    background: rgba(0, 163, 134, 0.1);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stack-lane-accent .lane-label {
    color: #1746c8;
    background: rgba(36, 87, 255, 0.1);
}

.stack-node {
    min-height: 118px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.stack-node i {
    display: inline-grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    color: #fff;
    background: linear-gradient(135deg, var(--teal), var(--blue));
}

.stack-node strong {
    display: block;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.25;
}

.stack-node span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.stack-connector {
    display: grid;
    place-items: center;
    gap: 10px;
    color: var(--teal-dark);
}

.stack-connector span {
    width: 1px;
    height: 54px;
    background: linear-gradient(transparent, rgba(0, 163, 134, 0.45), transparent);
}

.stack-connector i {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    background: var(--teal);
    box-shadow: 0 14px 32px rgba(0, 163, 134, 0.28);
}

.clientele-section {
    overflow: hidden;
    background: #fff;
}

.clientele-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 56px;
    align-items: end;
    margin-bottom: 34px;
}

.clientele-heading h2 {
    max-width: 760px;
}

.clientele-heading p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.client-slider {
    position: relative;
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
    overflow: hidden;
    padding: 10px 0 16px;
}

.client-slider::before,
.client-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: min(12vw, 150px);
    pointer-events: none;
}

.client-slider::before {
    left: 0;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.client-slider::after {
    right: 0;
    background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.client-track {
    display: flex;
    width: max-content;
    gap: 16px;
    animation: client-marquee 42s linear infinite;
    will-change: transform;
}

.client-slider:hover .client-track {
    animation-play-state: paused;
}

.client-card {
    flex: 0 0 clamp(250px, calc((100vw - 88px) / 4), 283px);
    height: 172px;
    display: grid;
    place-items: center;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 16px 42px rgba(16, 24, 32, 0.08);
}

.logo-client img {
    max-width: 100%;
    max-height: 108px;
    object-fit: contain;
}

.client-card-wide {
    flex-basis: clamp(250px, calc((100vw - 88px) / 4), 283px);
}

.client-card-wide img {
    max-height: 76px;
}

.client-card-tall {
    height: 172px;
}

.client-card-tall img {
    max-height: 138px;
}

.text-client {
    align-content: center;
    gap: 10px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(0, 163, 134, 0.08), rgba(36, 87, 255, 0.08)),
        #fff;
}

.text-client span {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: var(--radius);
    color: #fff;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    font-weight: 900;
    font-size: 1.05rem;
}

.text-client strong {
    color: var(--ink);
    font-size: 1.12rem;
    line-height: 1.2;
}

.ocean-client {
    color: #fff;
    background: #10243a;
}

.ocean-client span {
    color: #10243a;
    background: var(--gold);
}

.ocean-client strong {
    color: #fff;
}

@keyframes client-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 8px));
    }
}

@media (prefers-reduced-motion: reduce) {
    .client-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: auto;
    }

    .client-card[aria-hidden="true"] {
        display: none;
    }
}

.split-intro,
.story-layout,
.contact-layout,
.operations-layout,
.page-hero-layout,
.recommendation-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 56px;
    align-items: start;
}

h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1;
    letter-spacing: 0;
}

h3,
p {
    margin-top: 0;
}

.split-intro p,
.story-copy p,
.page-hero p,
.section-heading p,
.operations-layout p,
.recommendation-panel p,
.contact-info,
.contact-prompts {
    color: var(--muted);
    font-size: 1.05rem;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.section-heading h2 {
    margin-bottom: 18px;
}

.solution-grid,
.product-grid,
.values-grid,
.proof-grid {
    display: grid;
    gap: 18px;
}

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

.solution-card,
.product-grid article,
.values-grid article,
.metric,
.recommendation-panel,
.contact-form,
.contact-info,
.service-row {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.solution-card,
.product-grid article,
.values-grid article,
.metric {
    padding: 24px;
}

.solution-card h3,
.product-grid h3,
.values-grid h3 {
    margin: 18px 0 10px;
    font-size: 1.12rem;
    line-height: 1.2;
}

.solution-card p,
.product-grid p,
.values-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.icon-pill {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: var(--radius);
    color: var(--teal-dark);
    background: rgba(0, 163, 134, 0.12);
}

.dark-section {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(16, 24, 32, 0.96), rgba(16, 24, 32, 0.92)),
        url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
}

.dark-section h2,
.dark-section h3 {
    color: #fff;
}

.dark-section p,
.dark-section .section-heading p {
    color: rgba(255, 255, 255, 0.72);
}

.service-list {
    display: grid;
    gap: 12px;
}

.service-list a {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 64px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.88);
    font-weight: 800;
}

.service-list i {
    color: var(--gold);
}

.proof-section {
    padding: 36px 0;
    background: var(--ink);
}

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

.metric {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.metric strong {
    display: block;
    color: var(--gold);
    font-size: 2rem;
}

.metric span {
    color: rgba(255, 255, 255, 0.74);
}

.cta-band {
    background: linear-gradient(135deg, var(--steel), #fff);
}

.cta-layout {
    justify-content: space-between;
}

.cta-layout h2 {
    max-width: 760px;
}

.page-hero {
    position: relative;
    padding: 112px 0 76px;
    overflow: hidden;
    color: #fff;
    background: var(--ink);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.26;
}

.services-hero::before {
    background-image: url("https://images.unsplash.com/photo-1563986768494-4dee2763ff3f?auto=format&fit=crop&w=1800&q=85");
}

.about-hero::before {
    background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=85");
}

.contact-hero::before {
    background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1800&q=85");
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 24, 32, 0.96), rgba(16, 24, 32, 0.72));
}

.page-hero-layout {
    position: relative;
    z-index: 1;
    align-items: end;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.services-stack {
    display: grid;
    gap: 18px;
}

.service-row {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) minmax(280px, 0.62fr);
    gap: 28px;
    align-items: start;
    padding: 28px;
}

.service-number {
    color: var(--teal);
    font-size: 1.35rem;
    font-weight: 800;
}

.service-row h2 {
    margin-top: 18px;
    font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.service-row p {
    margin: 14px 0 0;
    color: var(--muted);
}

.check-list,
.question-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list {
    display: grid;
    gap: 10px;
}

.check-list li,
.question-list li {
    position: relative;
    padding-left: 28px;
    color: var(--ink-soft);
    font-weight: 700;
}

.check-list li::before,
.question-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal);
}

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

.story-copy {
    border-left: 4px solid var(--teal);
    padding-left: 28px;
}

.values-layout {
    display: grid;
    gap: 32px;
}

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

.values-grid article {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.values-grid i {
    color: var(--gold);
    font-size: 1.3rem;
}

.recommendation-panel {
    padding: 34px;
    box-shadow: var(--shadow);
}

.capability-strip {
    display: grid;
    gap: 12px;
}

.capability-strip span {
    min-height: 62px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    border-left: 4px solid var(--teal);
    background: var(--wash);
    font-weight: 800;
}

.contact-layout {
    grid-template-columns: 0.85fr 1.15fr;
}

.contact-info,
.contact-form {
    padding: 30px;
}

.contact-info {
    display: grid;
    gap: 16px;
    align-content: start;
}

.contact-info h2 {
    margin-bottom: 4px;
}

.contact-logo {
    width: min(220px, 100%);
    height: auto;
    margin-bottom: 6px;
}

.contact-info a,
.contact-info span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink-soft);
    font-weight: 700;
}

.contact-info i {
    color: var(--teal);
}

.contact-note {
    margin-top: 12px;
    padding: 18px;
    border-radius: var(--radius);
    background: var(--wash);
}

.contact-note p {
    margin: 8px 0 0;
}

.contact-form {
    display: grid;
    gap: 18px;
    box-shadow: var(--shadow);
}

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

.hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

label {
    color: var(--ink-soft);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: #fff;
    font: inherit;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(0, 163, 134, 0.18);
    border-color: var(--teal);
}

.contact-prompts {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 42px;
}

.question-list {
    display: grid;
    gap: 16px;
}

.question-list li {
    color: rgba(255, 255, 255, 0.84);
}

.footer {
    color: rgba(255, 255, 255, 0.72);
    background: #0c131a;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(160px, 0.45fr) minmax(220px, 0.55fr);
    gap: 34px;
    padding: 54px 0;
}

.footer-logo {
    color: #fff;
}

.footer p {
    max-width: 440px;
    margin: 18px 0 0;
}

.footer h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 0.98rem;
}

.footer a,
.footer span {
    display: block;
    margin: 9px 0;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    text-align: center;
    font-size: 0.9rem;
}

.form-result-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px;
    background:
        linear-gradient(135deg, rgba(16, 24, 32, 0.94), rgba(16, 24, 32, 0.72)),
        url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1800&q=85");
    background-size: cover;
    background-position: center;
}

.form-result-card {
    width: min(100%, 560px);
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    color: #fff;
    background: rgba(16, 24, 32, 0.76);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.form-result-card > i {
    color: var(--teal);
    font-size: 2.6rem;
    margin-top: 22px;
}

.form-result-card.error > i {
    color: var(--gold);
}

.form-result-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    padding: 3px;
    border-radius: var(--radius);
    background: #fff;
}

.form-result-card h1 {
    margin: 16px 0 12px;
    font-size: clamp(2rem, 5vw, 3.1rem);
    line-height: 1;
}

.form-result-card p {
    color: rgba(255, 255, 255, 0.76);
}

.btn-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 980px) {
    .hero {
        min-height: auto;
    }

    .hero-layout,
    .split-intro,
    .stack-bridge,
    .clientele-heading,
    .story-layout,
    .contact-layout,
    .operations-layout,
    .page-hero-layout,
    .recommendation-layout,
    .contact-prompts {
        grid-template-columns: 1fr;
    }

    .hero-layout {
        align-items: start;
        padding: 90px 0 56px;
    }

    .hero-panel {
        max-width: 520px;
    }

    .stack-copy {
        max-width: 760px;
    }

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

    .service-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .proof-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 76px;
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        box-shadow: var(--shadow);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu a {
        min-height: 48px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(2.1rem, 8.8vw, 2.55rem);
        line-height: 1.02;
    }

    .hero-copy,
    .hero-panel {
        min-width: 0;
    }

    .hero .eyebrow {
        max-width: 320px;
    }

    .hero-panel strong {
        font-size: 1.12rem;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(9, 16, 23, 0.95), rgba(9, 16, 23, 0.68));
    }

    .section {
        padding: 64px 0;
    }

    .page-hero {
        padding: 86px 0 58px;
    }

    .solution-grid,
    .product-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .signal-grid {
        grid-template-columns: 1fr;
    }

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

    .stack-connector {
        grid-template-columns: 1fr auto 1fr;
        gap: 12px;
    }

    .stack-connector span {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(0, 163, 134, 0.45), transparent);
    }

    .stack-connector i {
        transform: rotate(90deg);
    }

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

    .client-card {
        flex-basis: calc((100vw - 56px) / 2);
        height: 154px;
    }

    .client-card-wide {
        flex-basis: calc((100vw - 56px) / 2);
    }

    .logo-client img {
        max-height: 92px;
    }

    .client-card-tall img {
        max-height: 118px;
    }

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

    .btn {
        width: 100%;
    }

    .story-copy {
        padding-left: 18px;
    }

    .contact-info,
    .contact-form,
    .recommendation-panel,
    .service-row {
        padding: 22px;
    }

    .client-slider {
        width: min(100% - 28px, var(--container));
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .client-slider::-webkit-scrollbar {
        display: none;
    }

    .client-slider::before,
    .client-slider::after {
        display: none;
    }

    .client-track {
        width: max-content;
        animation: none;
        gap: 12px;
        padding-inline: 2px;
    }

    .client-card[aria-hidden="true"] {
        display: none;
    }

    .client-card,
    .client-card-wide {
        flex-basis: min(82vw, 320px);
        height: 152px;
        padding: 22px;
        scroll-snap-align: center;
        box-shadow: 0 14px 34px rgba(16, 24, 32, 0.1);
    }

    .client-card-tall {
        height: 152px;
    }

    .logo-client img {
        max-height: 90px;
    }

    .client-card-tall img {
        max-height: 106px;
    }

    .client-card-wide img {
        max-height: 64px;
    }

    .text-client span {
        width: 50px;
        height: 50px;
    }

    .text-client strong {
        font-size: 1rem;
    }
}
