:root {
    --ink-950: #071626;
    --ink-900: #0b1f33;
    --ink-800: #12304c;
    --slate-700: #3e5064;
    --slate-600: #596b7d;
    --slate-400: #91a0af;
    --line: #dce5ec;
    --surface: #ffffff;
    --surface-soft: #f4f8fb;
    --surface-blue: #eaf5fa;
    --brand: #087fae;
    --brand-dark: #05698f;
    --brand-light: #47bdd8;
    --accent: #ea343a;
    --header-height: 78px;
    --page-width: 1280px;
    --shadow-sm: 0 12px 36px rgba(11, 31, 51, 0.08);
    --shadow-lg: 0 28px 70px rgba(7, 22, 38, 0.18);
}

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

html {
    font-size: 17px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-top: var(--header-height);
    overflow-x: hidden;
    background: var(--surface);
    color: var(--ink-950);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
}

a:focus-visible,
[role="button"]:focus-visible {
    outline: 3px solid rgba(8, 127, 174, 0.34);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2000;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--ink-950);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-160%);
}

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

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: var(--header-height);
    border-bottom: 1px solid rgba(220, 229, 236, 0.9);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 6px 24px rgba(7, 22, 38, 0.04);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - 40px), var(--page-width));
    height: 100%;
    margin-inline: auto;
}

.brand-logo {
    width: 184px;
    height: auto;
    cursor: pointer;
}

.primary-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    position: relative;
    padding: 11px 14px;
    border-radius: 8px;
    color: var(--slate-700);
    font-size: 0.94rem;
    font-weight: 650;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: color 180ms ease, background-color 180ms ease;
}

.nav-links a:hover {
    background: var(--surface-soft);
    color: var(--ink-950);
}

.nav-links .nav-contact {
    margin-left: 8px;
    padding-inline: 18px;
    background: var(--ink-950);
    color: #ffffff;
}

.nav-links .nav-contact:hover {
    background: var(--brand-dark);
    color: #ffffff;
}

.hamburger {
    display: none;
    width: 46px;
    height: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    cursor: pointer;
    transition: border-color 180ms ease, background-color 180ms ease;
}

.hamburger span {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 99px;
    background: var(--ink-900);
    transition: transform 220ms ease, opacity 160ms ease;
}

.hamburger.active span:first-child {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:last-child {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-banner {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    max-height: calc(100vh - var(--header-height));
    padding: 12px 24px 24px;
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.99);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    visibility: hidden;
    transition:
        opacity 200ms ease,
        transform 200ms ease,
        visibility 0s linear 200ms;
}

.nav-banner.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
}

.nav-banner a {
    display: block;
    padding: 14px 2px;
    border-bottom: 1px solid var(--line);
    color: var(--ink-900);
    font-size: 1rem;
    font-weight: 650;
    text-decoration: none;
}

.nav-banner a:last-child {
    border-bottom: 0;
    color: var(--brand-dark);
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(76px, 10vw, 126px) 0 clamp(72px, 9vw, 112px);
    background:
        radial-gradient(circle at 8% 12%, rgba(71, 189, 216, 0.2), transparent 28%),
        radial-gradient(circle at 95% 84%, rgba(8, 127, 174, 0.11), transparent 25%),
        linear-gradient(135deg, #f8fbfd 0%, #ffffff 55%, #eff7fa 100%);
}

.hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(11, 31, 51, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 31, 51, 0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    align-items: center;
    gap: clamp(52px, 7vw, 92px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    color: var(--brand-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background: var(--accent);
    content: "";
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--ink-950);
    font-size: clamp(3rem, 5.6vw, 5.25rem);
    font-weight: 760;
    letter-spacing: -0.06em;
    line-height: 0.99;
}

.hero-lead {
    max-width: 650px;
    margin: 28px 0 0;
    color: var(--slate-600);
    font-size: clamp(1.05rem, 1.45vw, 1.2rem);
    line-height: 1.72;
}

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

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 750;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
    background: var(--brand);
    box-shadow: 0 12px 28px rgba(8, 127, 174, 0.22);
    color: #ffffff;
}

.button-primary:hover {
    background: var(--brand-dark);
    box-shadow: 0 16px 32px rgba(8, 127, 174, 0.26);
}

.button-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.84);
    color: var(--ink-900);
}

.button-secondary:hover {
    border-color: #b7c8d5;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.button-arrow {
    font-size: 1.12rem;
    line-height: 1;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin: 28px 0 0;
    padding: 0;
    color: var(--slate-700);
    font-size: 0.86rem;
    font-weight: 650;
    list-style: none;
}

.hero-points li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-points li::before {
    display: inline-grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 50%;
    background: var(--surface-blue);
    color: var(--brand-dark);
    content: "✓";
    font-size: 0.68rem;
    font-weight: 900;
}

.hero-visual {
    position: relative;
}

.hero-visual::before {
    position: absolute;
    inset: 12% -8% -8% 16%;
    z-index: -1;
    border-radius: 50%;
    background: rgba(8, 127, 174, 0.22);
    filter: blur(54px);
    content: "";
}

.visual-frame {
    position: relative;
    min-height: 510px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 26px;
    background: var(--ink-900);
    box-shadow: var(--shadow-lg);
}

.visual-frame > img {
    width: 100%;
    height: 100%;
    min-height: 510px;
    object-fit: cover;
}

.visual-frame::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 21, 35, 0.04) 32%, rgba(4, 21, 35, 0.87) 100%);
    content: "";
}

.visual-status {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(7, 22, 38, 0.72);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #55dda8;
    box-shadow: 0 0 0 4px rgba(85, 221, 168, 0.16);
}

.visual-copy {
    position: absolute;
    right: 28px;
    bottom: 28px;
    left: 28px;
    z-index: 2;
    color: #ffffff;
}

.visual-kicker {
    margin: 0 0 5px;
    color: #94e5f3;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.visual-copy h2 {
    margin: 0;
    font-size: clamp(1.5rem, 2.5vw, 2.15rem);
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.visual-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.visual-tags span {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.1);
    color: #dcecf4;
    font-size: 0.72rem;
    font-weight: 650;
    backdrop-filter: blur(8px);
}

.proof-strip {
    border-block: 1px solid var(--line);
    background: #ffffff;
}

.proof-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
}

.proof-list li {
    min-height: 112px;
    padding: 26px 28px;
    border-right: 1px solid var(--line);
}

.proof-list li:first-child {
    padding-left: 0;
}

.proof-list li:last-child {
    padding-right: 0;
    border-right: 0;
}

.proof-label {
    display: block;
    color: var(--brand-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.proof-value {
    display: block;
    margin-top: 5px;
    color: var(--ink-900);
    font-size: 0.98rem;
    font-weight: 720;
    line-height: 1.35;
}

.section {
    padding: clamp(82px, 10vw, 132px) 0;
}

.section-soft {
    background: var(--surface-soft);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
    align-items: end;
    gap: 42px;
    margin-bottom: 48px;
}

.section-label {
    margin: 0 0 12px;
    color: var(--brand-dark);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.section-heading h2,
.story-copy h2,
.approach-heading h2,
.support-heading h2,
.cta-copy h2 {
    margin: 0;
    color: var(--ink-950);
    font-size: clamp(2.15rem, 4vw, 3.65rem);
    font-weight: 740;
    letter-spacing: -0.05em;
    line-height: 1.08;
}

.section-intro {
    margin: 0;
    color: var(--slate-600);
    font-size: 1.02rem;
    line-height: 1.75;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.solution-card {
    position: relative;
    display: flex;
    min-height: 280px;
    flex-direction: column;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
    color: inherit;
    text-decoration: none;
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.solution-card::after {
    position: absolute;
    right: -32px;
    bottom: -50px;
    width: 130px;
    height: 130px;
    border: 20px solid rgba(8, 127, 174, 0.05);
    border-radius: 50%;
    content: "";
}

.solution-card:hover {
    z-index: 1;
    border-color: #aac9d7;
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.card-number {
    display: inline-grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 10px;
    background: var(--surface-blue);
    color: var(--brand-dark);
    font-size: 0.75rem;
    font-weight: 850;
}

.solution-card h3 {
    margin: 32px 0 8px;
    color: var(--ink-900);
    font-size: 1.22rem;
    letter-spacing: -0.025em;
    line-height: 1.25;
}

.solution-card p {
    margin: 0;
    color: var(--slate-600);
    font-size: 0.96rem;
    line-height: 1.65;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 24px;
    color: var(--brand-dark);
    font-size: 0.82rem;
    font-weight: 800;
}

.approach {
    position: relative;
    overflow: hidden;
    background: var(--ink-950);
    color: #ffffff;
}

.approach::before {
    position: absolute;
    top: -280px;
    right: -220px;
    width: 650px;
    height: 650px;
    border: 110px solid rgba(71, 189, 216, 0.065);
    border-radius: 50%;
    content: "";
}

.approach-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr);
    gap: clamp(60px, 9vw, 120px);
}

.approach-heading {
    align-self: center;
}

.approach-heading .section-label {
    color: #66cce3;
}

.approach-heading h2 {
    color: #ffffff;
}

.approach-heading > p:not(.section-label) {
    max-width: 500px;
    margin: 24px 0 30px;
    color: #aebfcd;
    font-size: 1rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #82d8e9;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.text-link:hover {
    color: #ffffff;
}

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

.approach-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.055);
}

.approach-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(130, 216, 233, 0.28);
    border-radius: 11px;
    background: rgba(8, 127, 174, 0.18);
    color: #82d8e9;
    font-size: 0.75rem;
    font-weight: 850;
}

.approach-item h3 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 1.08rem;
}

.approach-item p {
    margin: 0;
    color: #aebfcd;
    font-size: 0.96rem;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
    align-items: center;
    gap: clamp(52px, 8vw, 104px);
}

.story-media {
    position: relative;
}

.story-media::before {
    position: absolute;
    top: -18px;
    left: -18px;
    width: 92px;
    height: 92px;
    border-top: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
    content: "";
}

.story-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.story-caption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    max-width: 240px;
    padding: 15px 17px;
    border-radius: 10px;
    background: rgba(7, 22, 38, 0.88);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 650;
    line-height: 1.45;
    backdrop-filter: blur(10px);
}

.story-copy > p:not(.section-label) {
    margin: 24px 0 0;
    color: var(--slate-600);
    font-size: 1rem;
}

.story-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0 32px;
}

.story-fact {
    padding: 17px;
    border-left: 3px solid var(--brand);
    border-radius: 0 9px 9px 0;
    background: var(--surface-soft);
}

.story-fact strong {
    display: block;
    color: var(--ink-900);
    font-size: 0.94rem;
}

.story-fact span {
    display: block;
    margin-top: 2px;
    color: var(--slate-600);
    font-size: 0.8rem;
}

.support-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    align-items: start;
    gap: clamp(48px, 8vw, 100px);
}

.support-heading p:last-child {
    max-width: 460px;
    margin: 22px 0 0;
    color: var(--slate-600);
}

.support-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.support-card {
    display: flex;
    min-height: 244px;
    flex-direction: column;
    padding: 29px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #ffffff;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.support-card:hover {
    border-color: #aac9d7;
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.support-card-label {
    color: var(--brand-dark);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.support-card h3 {
    margin: 30px 0 8px;
    color: var(--ink-900);
    font-size: 1.2rem;
}

.support-card p {
    margin: 0;
    color: var(--slate-600);
    font-size: 0.94rem;
}

.support-card .card-link {
    margin-top: auto;
}

.cta-section {
    padding: 0 0 clamp(82px, 10vw, 128px);
}

.cta-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 40px;
    padding: clamp(38px, 6vw, 68px);
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(120deg, var(--ink-950), var(--ink-800));
    box-shadow: var(--shadow-lg);
}

.cta-panel::after {
    position: absolute;
    right: -120px;
    bottom: -180px;
    width: 440px;
    height: 440px;
    border: 80px solid rgba(71, 189, 216, 0.09);
    border-radius: 50%;
    content: "";
}

.cta-copy {
    position: relative;
    z-index: 1;
}

.cta-copy .section-label {
    color: #72d0e4;
}

.cta-copy h2 {
    max-width: 720px;
    color: #ffffff;
}

.cta-copy p:last-child {
    max-width: 700px;
    margin: 18px 0 0;
    color: #b7c7d4;
}

.cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 210px;
}

.cta-actions .button-primary {
    background: #ffffff;
    box-shadow: none;
    color: var(--ink-950);
}

.cta-actions .button-primary:hover {
    background: #eaf5fa;
}

.cta-actions .button-secondary {
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}

.site-footer {
    padding: 64px 0 28px;
    background: #06121f;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.5fr) 0.7fr 0.7fr;
    gap: 64px;
    padding-bottom: 50px;
}

.footer-brand-link {
    display: inline-block;
    padding: 0;
    border-radius: 8px;
    background: transparent;
}

.footer-logo {
    width: 164px;
    height: auto;
    filter: invert(1) hue-rotate(180deg);
}

.footer-brand p {
    max-width: 430px;
    margin: 22px 0 0;
    color: #91a7b8;
    font-size: 0.96rem;
}

.footer-column h2 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 0.75rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 9px;
}

.footer-links a {
    width: fit-content;
    color: #9fb2c0;
    font-size: 0.92rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #728a9d;
    font-size: 0.82rem;
}

.footer-bottom a {
    color: #9fb2c0;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffffff;
}

@media (max-width: 1020px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    body.banner-active {
        overflow: hidden;
    }

    .hero-grid,
    .story-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-visual {
        width: min(100%, 760px);
    }

    .visual-frame,
    .visual-frame > img {
        min-height: 480px;
    }

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

    .proof-list li,
    .proof-list li:first-child,
    .proof-list li:last-child {
        padding: 22px 0;
        border-right: 0;
    }

    .proof-list li:nth-child(odd) {
        padding-right: 26px;
        border-right: 1px solid var(--line);
    }

    .proof-list li:nth-child(even) {
        padding-left: 26px;
    }

    .proof-list li:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

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

    .approach-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }

    .approach-heading {
        max-width: 690px;
    }

    .story-media {
        width: min(100%, 780px);
    }

    .cta-panel {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        width: fit-content;
        min-width: 230px;
    }
}

@media (max-width: 720px) {
    :root {
        --header-height: 72px;
    }

    .container,
    .header-inner {
        width: min(calc(100% - 32px), var(--page-width));
    }

    .brand-logo {
        width: 158px;
    }

    .hero {
        padding-top: 64px;
    }

    .hero-grid {
        gap: 46px;
    }

    .hero h1 {
        font-size: clamp(2.65rem, 13vw, 4rem);
        letter-spacing: -0.055em;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .hero-points {
        display: grid;
        gap: 10px;
    }

    .visual-frame,
    .visual-frame > img {
        min-height: 400px;
    }

    .visual-copy {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .visual-tags span:last-child {
        display: none;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 34px;
    }

    .solutions-grid,
    .support-cards {
        grid-template-columns: 1fr;
    }

    .solution-card {
        min-height: 245px;
    }

    .approach-grid {
        gap: 44px;
    }

    .approach-item {
        grid-template-columns: 1fr;
    }

    .story-media::before {
        display: none;
    }

    .story-caption {
        right: 12px;
        bottom: 12px;
        left: 12px;
        max-width: none;
    }

    .story-facts {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        border-radius: 16px;
    }

    .cta-actions,
    .cta-actions .button {
        width: 100%;
    }

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .proof-list {
        grid-template-columns: 1fr;
    }

    .proof-list li,
    .proof-list li:first-child,
    .proof-list li:last-child,
    .proof-list li:nth-child(odd),
    .proof-list li:nth-child(even) {
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .proof-list li:last-child {
        border-bottom: 0;
    }

    .visual-frame,
    .visual-frame > img {
        min-height: 360px;
    }

    .visual-status {
        top: 14px;
        right: 14px;
    }

    .visual-tags {
        display: none;
    }
}

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

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