:root {
    --color-black: #0B0B0B;
    --color-anthracite: #1A1A1A;
    --color-white: #FFFFFF;
    --color-green: #2ECC71;
    --color-green-light: #7ED957;
    --color-ink: #111111;
    --color-muted: #656565;
    --color-surface: #F6F7F6;
    --color-border: rgba(255,255,255,0.12);
    --color-border-light: rgba(11,11,11,0.10);
    --shadow-panel: 0 24px 80px rgba(0,0,0,0.18);
    --font-heading: "Montserrat", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --container: 1280px;
    --header-container: 1880px;
    --header-height: 76px;
    --cut-corner: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Variable.woff2") format("woff2-variations");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Variable.woff2") format("woff2-variations");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    color-scheme: light;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-ink);
    background: var(--color-white);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.is-scroll-locked {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

::selection {
    color: var(--color-black);
    background: var(--color-green-light);
}

:focus-visible {
    outline: 3px solid var(--color-green-light);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1000;
    padding: 0.75rem 1rem;
    color: var(--color-black);
    background: var(--color-green-light);
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-140%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-main {
    min-height: 65vh;
    background: var(--color-white);
}

.section {
    position: relative;
    padding: 6rem 1.25rem;
}

.section--light {
    background: var(--color-white);
}

.section__inner {
    width: min(100%, var(--container));
    margin: 0 auto;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2.5rem;
}

.section-heading--dark {
    color: var(--color-white);
}

.section-heading h2,
.about-section h2,
.case-teaser h2,
.cta-band h2,
.page-hero h1 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 2.65rem;
    line-height: 1.08;
    font-weight: 850;
    letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.about-section p,
.case-teaser p,
.page-hero p {
    margin: 1rem 0 0;
    color: var(--color-muted);
    max-width: 66ch;
}

.section-heading--dark p:not(.eyebrow) {
    color: rgba(255,255,255,0.72);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1rem;
    color: var(--color-green);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-green), var(--color-green-light));
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.78rem 1.05rem;
    border: 1px solid transparent;
    border-radius: 4px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
    font-weight: 850;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    color: var(--color-black);
    background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
    box-shadow: 0 14px 36px rgba(46, 204, 113, 0.24);
}

.button--primary:hover {
    color: var(--color-black);
    box-shadow: 0 18px 44px rgba(46, 204, 113, 0.34);
}

.button--ghost {
    color: var(--color-white);
    border-color: rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.04);
}

.button--ghost:hover {
    border-color: var(--color-green);
    color: var(--color-green-light);
}

.button--ghost-light {
    color: var(--color-white);
    border-color: rgba(126,217,87,0.42);
    background: rgba(46,204,113,0.08);
}

.button--ghost-light:hover {
    color: var(--color-black);
    background: var(--color-green-light);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--color-black);
    font-weight: 850;
    text-decoration: none;
}

.text-link::after {
    content: ">";
    color: var(--color-green);
    transition: transform 160ms ease;
}

.text-link:hover::after {
    transform: translateX(3px);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--header-height);
    color: var(--color-white);
    background: #0B0B0B;
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(16px);
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    background: #0B0B0B;
    border-color: rgba(46,204,113,0.32);
    box-shadow: 0 16px 44px rgba(0,0,0,0.24);
}

.site-header__inner {
    width: min(100%, var(--header-container));
    min-height: var(--header-height);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 2vw, 2.5rem);
    display: flex;
    align-items: center;
    gap: clamp(1rem, 1.15vw, 1.55rem);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
    flex: 0 0 auto;
    min-width: 0;
    margin-right: clamp(0.5rem, 1.3vw, 2rem);
    color: var(--color-white);
    text-decoration: none;
}

.site-brand__mark {
    position: relative;
    width: 44px;
    height: 38px;
    display: inline-grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    flex: 0 0 auto;
}

.site-brand__mark--image {
    width: 58px;
    height: 52px;
    display: block;
    overflow: visible;
}

.site-brand__mark--image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: none;
    transform-origin: center;
}

.site-brand__mark span {
    display: block;
    height: 100%;
    background: var(--color-green);
    transform: skewX(-18deg);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 24% 100%);
}

.site-brand__mark span:nth-child(2) {
    background: var(--color-white);
    transform: skewX(18deg);
}

.site-brand__mark span:nth-child(3) {
    background: var(--color-green-light);
}

.site-brand__text {
    display: grid;
    line-height: 0.96;
}

.site-brand__name {
    font-family: var(--font-heading);
    font-size: 2.05rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.site-brand__tag {
    color: rgba(255,255,255,0.62);
    font-size: 0.76rem;
    font-weight: 700;
}

.site-header__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0.45rem 0.72rem;
    color: rgba(255,255,255,0.88);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.site-header__phone:hover {
    color: var(--color-green-light);
    border-color: rgba(46,204,113,0.36);
    background: rgba(46,204,113,0.08);
}

.site-header__phone i {
    color: var(--color-green-light);
}

.site-header__phone--mobile {
    display: none;
}

@media (max-width: 1260px) {
    .site-header__phone--desktop {
        display: none;
    }
}

.site-header__panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0.75rem, 1vw, 1.15rem);
    min-width: 0;
}

@media (min-width: 1025px) {
    .site-header__panel {
        background: transparent;
        box-shadow: none;
    }
}

.site-nav {
    flex: 0 1 auto;
    min-width: 0;
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: clamp(0.08rem, 0.32vw, 0.34rem);
}

.site-nav__item {
    position: relative;
}

.site-nav__link {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0.58rem clamp(0.62rem, 0.62vw, 0.86rem);
    color: rgba(255,255,255,0.78);
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap;
    transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav__link:hover,
.site-nav__item.is-active > .site-nav__link {
    color: var(--color-white);
    border-color: rgba(46,204,113,0.28);
    background: rgba(46,204,113,0.10);
}

.site-nav__sublist {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0;
    min-width: 210px;
    padding: 0.4rem;
    background: var(--color-anthracite);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-panel);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
}

.site-nav__item:hover > .site-nav__sublist,
.site-nav__item:focus-within > .site-nav__sublist {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 0;
    color: var(--color-white);
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--color-border);
    border-radius: 4px;
}

.menu-toggle__bar {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-menu-open .menu-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle__bar:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .menu-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-header__cta--mobile {
    display: none;
}

.site-header__cta--desktop {
    flex: 0 0 auto;
    white-space: nowrap;
}

/* Hero */

.hero-section {
    position: relative;
    isolation: isolate;
    min-height: 690px;
    padding: 5.2rem 1.25rem 3.4rem;
    color: var(--color-white);
    background:
        radial-gradient(circle at 82% 22%, rgba(46,204,113,0.15), transparent 34rem),
        linear-gradient(90deg, #090909 0%, #0A0A0A 54%, #0E1D13 100%);
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(126,217,87,0.78), transparent);
    z-index: 1;
}

.hero-section__inner {
    position: relative;
    width: min(100%, var(--container));
    min-height: 560px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(420px, 0.98fr) minmax(0, 0.92fr);
    align-items: center;
    gap: clamp(2.5rem, 5vw, 5rem);
}

.hero-section__content {
    position: relative;
    z-index: 2;
    grid-column: 2;
    max-width: 640px;
    justify-self: end;
}

.hero-section h1 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 4.15rem;
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: 0;
}

.hero-section__lead {
    margin: clamp(5.1rem, 6vw, 6.4rem) 0 0;
    color: var(--color-green-light);
    font-size: 1.35rem;
    font-weight: 850;
}

.hero-section__copy {
    max-width: 620px;
    margin: 1rem 0 0;
    color: rgba(255,255,255,0.76);
    font-size: 1.05rem;
}

.hero-section__lead,
.hero-section__copy {
    position: relative;
    display: table;
    margin-left: -0.35rem;
    padding: 0.04rem 0.35rem 0.12rem;
    background: linear-gradient(90deg, rgba(6,10,8,0.84), rgba(8,18,12,0.62), rgba(8,18,12,0.18));
    box-shadow: 0 0 26px rgba(6,10,8,0.5);
    text-shadow: 0 2px 10px rgba(0,0,0,0.65);
}

.hero-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 2rem 0 0;
}

.hero-values {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.hero-values li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 38px;
    padding: 0.45rem 0.65rem;
    color: rgba(255,255,255,0.88);
    background: rgba(6,10,8,0.54);
    border-right: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 0 18px rgba(6,10,8,0.34);
    border-radius: 0;
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-values li:last-child {
    border-right: 0;
}

.hero-values i {
    color: var(--color-green-light);
    font-size: 1.05rem;
}

.hero-system {
    position: absolute;
    inset: 0 auto 0 50%;
    z-index: 0;
    width: 100vw;
    min-height: 100%;
    margin-left: -50vw;
    overflow: visible;
    pointer-events: none;
    perspective: 900px;
    transform-style: preserve-3d;
}

.hero-cords {
    display: flex;
    align-items: center;
}

.hero-cords__svg {
    display: block;
    width: 100%;
    min-width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    overflow: visible;
}

.hero-cords__shadows path,
.hero-cord,
.hero-pulse {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-cords__shadows path {
    stroke: rgba(0,0,0,0.42);
    stroke-width: 8;
    opacity: 0.54;
}

.hero-cord {
    stroke-width: 3.4;
    opacity: 0.92;
    filter: saturate(1.08);
}

.hero-cord--blue {
    stroke: #236CFF;
}

.hero-cord--gold {
    stroke: #E7B92E;
}

.hero-cord--green {
    stroke: #24B565;
}

.hero-cord--red {
    stroke: #D73535;
}

.hero-cord--orange {
    stroke: #F07822;
}

.hero-pulse {
    stroke-width: 7;
    stroke-dasharray: 1.2 100;
    stroke-dashoffset: 104;
    opacity: 0;
    animation: hero-cord-pulse 11.8s cubic-bezier(0.55, 0, 0.32, 1) infinite;
    animation-delay: var(--pulse-delay, 0s);
}

.hero-pulse--blue {
    stroke: #AFC7FF;
}

.hero-pulse--gold {
    stroke: #FFE488;
}

.hero-pulse--green {
    stroke: #A5FFBE;
}

.hero-pulse--red {
    stroke: #FFA6A1;
}

.hero-pulse--orange {
    stroke: #FFC07C;
}

.hero-cords__target {
    transform-box: fill-box;
    transform-origin: center;
}

.hero-cords__logo {
    transform-box: fill-box;
    transform-origin: center;
}

@keyframes hero-cord-pulse {
    0% {
        stroke-dashoffset: 104;
        opacity: 0;
    }
    10% {
        opacity: 0;
    }
    22% {
        opacity: 0.95;
    }
    72% {
        opacity: 0.76;
    }
    100% {
        stroke-dashoffset: -10;
        opacity: 0;
    }
}

/* Cards and sections */

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 230px;
    padding: 1.35rem;
    color: inherit;
    text-decoration: none;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    clip-path: var(--cut-corner);
    box-shadow: 0 12px 38px rgba(0,0,0,0.06);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-green), var(--color-green-light));
    transition: width 190ms ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(46,204,113,0.45);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.service-card:focus-visible {
    outline: 3px solid var(--color-green-light);
    outline-offset: 4px;
}

.service-card:hover::before {
    width: 100%;
}

.service-card__code {
    color: rgba(11,11,11,0.22);
    font-family: var(--font-heading);
    font-size: 0.86rem;
    font-weight: 900;
}

.service-card__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 2rem 0 1.1rem;
    color: var(--color-green);
    background: rgba(46,204,113,0.08);
    border: 1px solid rgba(46,204,113,0.28);
    clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 0 100%);
    font-size: 1.45rem;
}

.service-card h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.18rem;
    line-height: 1.18;
}

.service-card p {
    margin: 0.8rem 0 0;
    color: var(--color-muted);
}

.service-card__note {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 0.85rem;
    padding: 0.38rem 0.55rem;
    color: var(--color-black);
    background: var(--color-green-light);
    font-size: 0.82rem;
    font-weight: 900;
    clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 0 100%);
}

.service-card__cta {
    display: inline-flex;
    margin-top: auto;
    padding-top: 1.2rem;
    color: var(--color-green);
    font-weight: 900;
    line-height: 1;
    transition: transform 160ms ease;
}

.service-card:hover .service-card__cta {
    transform: translateX(5px);
}

.about-section {
    color: var(--color-white);
    background:
        linear-gradient(rgba(126,217,87,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126,217,87,0.07) 1px, transparent 1px),
        var(--color-black);
    background-size: 40px 40px, 40px 40px, auto;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: min(38rem, 70%);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-green-light));
}

.about-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 3rem;
    align-items: center;
}

.about-section p {
    color: rgba(255,255,255,0.74);
}

.about-section__copy .button {
    margin-top: 1.1rem;
}

.about-points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.about-points li {
    position: relative;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255,255,255,0.055);
    border: 1px solid var(--color-border);
    clip-path: var(--cut-corner);
    font-weight: 800;
}

.about-points li::before {
    content: "";
    position: absolute;
    top: 1.1rem;
    left: 1rem;
    width: 16px;
    height: 16px;
    background: var(--color-green);
    clip-path: polygon(0 45%, 38% 100%, 100% 0, 100% 30%, 40% 100%, 0 58%);
}

.stats-section {
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-anthracite), #0E120F);
}

.stats-section__inner {
    padding: 2rem;
    border: 1px solid var(--color-border);
    clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
    background:
        linear-gradient(90deg, rgba(126,217,87,0.10) 1px, transparent 1px),
        linear-gradient(rgba(126,217,87,0.08) 1px, transparent 1px),
        rgba(255,255,255,0.035);
    background-size: 44px 44px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.stat-card {
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    background: rgba(11,11,11,0.36);
}

.stat-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 0.9rem;
    color: var(--color-green-light);
    border: 1px solid rgba(126,217,87,0.34);
    border-radius: 50%;
    font-size: 1.15rem;
}

.stat-card strong {
    display: block;
    color: var(--color-green-light);
    font-family: var(--font-heading);
    font-size: 2.35rem;
    line-height: 1;
    font-weight: 900;
}

.stat-card__headline {
    max-width: 12ch;
    font-size: clamp(1.55rem, 2vw, 2rem);
    line-height: 1.08;
}

.stat-card span {
    display: block;
    margin-top: 0.7rem;
    color: rgba(255,255,255,0.72);
    font-weight: 750;
}

.stat-card small {
    display: block;
    margin-top: 0.65rem;
    color: rgba(255,255,255,0.56);
    font-size: 0.92rem;
    line-height: 1.45;
}

.process-section {
    overflow: hidden;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding-top: 2.5rem;
}

.process-timeline::before,
.process-timeline::after {
    content: "";
    position: absolute;
    top: 1rem;
    left: 0;
    height: 2px;
}

.process-timeline::before {
    right: 0;
    background: rgba(11,11,11,0.12);
}

.process-timeline::after {
    width: var(--process-progress);
    background: linear-gradient(90deg, var(--color-green), var(--color-green-light));
    box-shadow: 0 0 18px rgba(46,204,113,0.45);
    transition: width 420ms ease;
}

.process-step {
    position: relative;
    padding: 1.25rem;
    border: 1px solid var(--color-border-light);
    background: var(--color-white);
    clip-path: var(--cut-corner);
}

.process-step__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-right: 0.75rem;
    color: var(--color-green);
    border: 1px solid rgba(46,204,113,0.28);
    background: rgba(46,204,113,0.06);
    clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 0 100%);
    font-size: 1.35rem;
}

.process-step::before {
    content: "";
    position: absolute;
    top: -1.9rem;
    left: 1.25rem;
    width: 18px;
    height: 18px;
    background: var(--color-white);
    border: 2px solid rgba(11,11,11,0.22);
    transform: rotate(45deg);
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.process-step.is-active::before {
    background: var(--color-green);
    border-color: var(--color-green-light);
    box-shadow: 0 0 22px rgba(46,204,113,0.52);
}

.process-step__number {
    color: var(--color-green);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.process-step h3 {
    margin: 0.75rem 0 0;
    font-family: var(--font-heading);
    font-size: 1.08rem;
    line-height: 1.22;
}

.process-step p {
    margin: 0.7rem 0 0;
    color: var(--color-muted);
}

.case-section {
    color: var(--color-white);
    background:
        linear-gradient(rgba(126,217,87,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126,217,87,0.08) 1px, transparent 1px),
        linear-gradient(135deg, var(--color-black), var(--color-anthracite));
    background-size: 32px 32px, 32px 32px, auto;
}

.case-teaser {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: end;
    padding: 2.2rem;
    border: 1px solid rgba(126,217,87,0.22);
    background: rgba(255,255,255,0.04);
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}

.case-teaser p {
    color: rgba(255,255,255,0.72);
}

.case-teaser--audience {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
}

.case-teaser__intro {
    max-width: 920px;
}

.case-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.case-audience-card {
    position: relative;
    min-height: 100%;
    padding: 1.1rem;
    color: var(--color-white);
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(126,217,87,0.22);
    clip-path: var(--cut-corner);
}

.case-audience-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 48%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-green), var(--color-green-light));
}

.case-audience-card h3 {
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.02rem;
    line-height: 1.18;
}

.case-audience-card p {
    margin: 0.72rem 0 0;
    font-size: 0.92rem;
    line-height: 1.5;
}

.cta-band {
    padding: 0 1.25rem 6rem;
    background: var(--color-white);
}

.cta-band__inner {
    position: relative;
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 2rem;
    align-items: center;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-black), var(--color-anthracite));
    border: 1px solid rgba(46,204,113,0.32);
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
    overflow: hidden;
}

.cta-band__watermark {
    position: absolute;
    right: 2.5rem;
    bottom: -4.2rem;
    width: 230px;
    max-width: 42%;
    opacity: 0.09;
    filter: grayscale(1);
    pointer-events: none;
}

.cta-band__inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: -30%;
    width: 44%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-green-light), transparent);
    animation: cta-scan 4.8s ease-in-out infinite;
}

.cta-band h2 {
    max-width: 720px;
}

.cta-band__text {
    max-width: 760px;
    margin: 1rem 0 0;
    color: rgba(255,255,255,0.72);
}

.cta-band__side {
    display: grid;
    gap: 1.1rem;
    justify-items: start;
}

.cta-band__benefits {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
    color: rgba(255,255,255,0.76);
}

.cta-band__benefits li::before {
    content: none;
}

.cta-band__benefits i {
    margin-right: 0.55rem;
    color: var(--color-green-light);
}

/* Problem flow */

.problem-flow-section {
    position: relative;
    overflow: hidden;
    color: var(--color-ink);
    background:
        linear-gradient(rgba(46,204,113,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46,204,113,0.07) 1px, transparent 1px),
        linear-gradient(180deg, #FFFFFF 0%, #F5F8F5 100%);
    background-size: 42px 42px, 42px 42px, auto;
}

.problem-flow-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(126,217,87,0.72), transparent);
}

.problem-flow {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

.problem-flow__heading {
    max-width: 980px;
    margin-bottom: 2.8rem;
    color: var(--color-ink);
}

.problem-flow__heading p:not(.eyebrow) {
    color: var(--color-muted);
}

.problem-flow__principle {
    display: inline-flex;
    margin-top: 1.2rem;
    padding: 0.75rem 0.9rem;
    color: var(--color-ink);
    background: rgba(46,204,113,0.11);
    border: 1px solid rgba(126,217,87,0.28);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
    font-weight: 850;
}

.problem-flow__desktop {
    position: relative;
    display: grid;
    grid-template-columns: minmax(620px, 1.45fr) minmax(320px, 0.62fr) minmax(340px, 0.68fr);
    gap: clamp(1.5rem, 3vw, 3.25rem);
    align-items: center;
    min-height: 860px;
}

.problem-flow__connectors {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.problem-flow__connector {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 4.2;
    opacity: 0.78;
    vector-effect: non-scaling-stroke;
}

.problem-flow__connector--messy {
    stroke-dasharray: 1 0;
    stroke-width: 4.4;
    opacity: 0.70;
}

.problem-flow__connector--clean {
    opacity: 0.76;
}

.problem-flow__connector--soft {
    opacity: 0.58;
}

.problem-flow__connector--blue {
    stroke: #236CFF;
}

.problem-flow__connector--gold {
    stroke: #E7B92E;
}

.problem-flow__connector--green {
    stroke: #24B565;
}

.problem-flow__connector--red {
    stroke: #D73535;
}

.problem-flow__connector--orange {
    stroke: #F07822;
}

.problem-flow__connector-pulse {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 7.2;
    stroke-dasharray: 1.4 100;
    stroke-dashoffset: 104;
    opacity: 0;
    vector-effect: non-scaling-stroke;
    pointer-events: none;
    animation: problem-flow-connector-pulse 9.4s cubic-bezier(0.55, 0, 0.32, 1) infinite;
    animation-delay: var(--connector-delay, 0s);
    animation-play-state: paused;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.72));
}

.problem-flow__desktop.is-connector-active .problem-flow__connector-pulse {
    animation-play-state: running;
}

.problem-flow__connector-pulse--messy {
    stroke-width: 7.6;
}

.problem-flow__connector-pulse--clean {
    stroke-width: 6.8;
}

.problem-flow__connector-pulse--blue {
    stroke: #8CB2FF;
}

.problem-flow__connector-pulse--gold {
    stroke: #FFE488;
}

.problem-flow__connector-pulse--green {
    stroke: #9EFFB9;
}

.problem-flow__connector-pulse--red {
    stroke: #FFA19B;
}

.problem-flow__connector-pulse--orange {
    stroke: #FFC07C;
}

@keyframes problem-flow-connector-pulse {
    0% {
        stroke-dashoffset: 104;
        opacity: 0;
    }
    12% {
        opacity: 0;
    }
    24% {
        opacity: 0.95;
    }
    70% {
        opacity: 0.78;
    }
    100% {
        stroke-dashoffset: -10;
        opacity: 0;
    }
}

.problem-flow__problems,
.problem-flow__center-card,
.problem-flow__results {
    position: relative;
    z-index: 1;
}

.problem-flow__problems {
    display: grid;
    grid-template-columns: repeat(14, minmax(0, 1fr));
    grid-auto-rows: 92px;
    gap: 0.85rem;
    align-content: center;
    padding: 5.6rem 0;
}

.problem-flow__problems .problem-flip-card:nth-child(1) {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
    transform: translate(6px, -128px) rotate(-1.25deg);
}

.problem-flow__problems .problem-flip-card:nth-child(2) {
    grid-column: 5 / 10;
    grid-row: 1 / 3;
    transform: translate(12px, -108px) rotate(0.55deg);
}

.problem-flow__problems .problem-flip-card:nth-child(3) {
    grid-column: 10 / 15;
    grid-row: 1 / 3;
    transform: translate(6px, -124px) rotate(1deg);
}

.problem-flow__problems .problem-flip-card:nth-child(4) {
    grid-column: 2 / 7;
    grid-row: 3 / 5;
    transform: translate(6px, 132px) rotate(-0.75deg);
}

.problem-flow__problems .problem-flip-card:nth-child(5) {
    grid-column: 7 / 11;
    grid-row: 3 / 5;
    transform: translate(-16px, 112px) rotate(0.35deg);
}

.problem-flow__problems .problem-flip-card:nth-child(6) {
    grid-column: 11 / 15;
    grid-row: 3 / 5;
    transform: translate(14px, 138px) rotate(-0.95deg);
}

.problem-flip-card {
    min-width: 0;
    min-height: 204px;
    height: 100%;
    perspective: 1100px;
}

.problem-flip-card[hidden] {
    display: none;
}

.problem-flip-card__button {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    color: inherit;
    cursor: pointer;
}

.problem-flip-card__button:focus-visible {
    outline: 3px solid var(--color-green-light);
    outline-offset: 4px;
}

.problem-flip-card__rotor {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    transform-style: preserve-3d;
    transition: transform 220ms ease;
}

.problem-flip-card.is-flipped .problem-flip-card__rotor {
    transform: rotateY(180deg);
}

.problem-flip-card__face {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    min-height: inherit;
    padding: 0.88rem;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.025)),
        #242424;
    border: 1px solid rgba(11,11,11,0.24);
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
    box-shadow: 0 14px 34px rgba(0,0,0,0.20);
    backface-visibility: hidden;
}

.problem-flip-card__face--front::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 42%;
    height: 3px;
    background: rgba(126,217,87,0.72);
}

.problem-flow__desktop .problem-flip-card__face--front::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 9px;
    height: 9px;
    background: var(--color-green-light);
    border: 1px solid rgba(11,11,11,0.4);
    transform: translateX(-50%) rotate(45deg);
}

.problem-flow__desktop .problem-flow__problems .problem-flip-card:nth-child(-n + 3) .problem-flip-card__face--front::after {
    bottom: -4px;
}

.problem-flow__desktop .problem-flow__problems .problem-flip-card:nth-child(n + 4) .problem-flip-card__face--front::after {
    top: -4px;
}

.problem-flip-card__face--back {
    color: var(--color-white);
    background:
        linear-gradient(145deg, rgba(46,204,113,0.20), rgba(255,255,255,0.05)),
        #0A0F0B;
    border-color: rgba(126,217,87,0.42);
    transform: rotateY(180deg);
}

.problem-flip-card__category {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    align-self: flex-start;
    max-width: 100%;
    padding: 0.34rem 0.48rem;
    color: rgba(255,255,255,0.88);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.68rem;
    font-weight: 850;
    line-height: 1.15;
    text-transform: uppercase;
}

.problem-flip-card__category i {
    color: var(--color-green-light);
}

.problem-flip-card__category--solution {
    color: var(--color-black);
    background: var(--color-green-light);
    border-color: transparent;
}

.problem-flip-card__category--solution i {
    color: var(--color-black);
}

.problem-flip-card__title {
    display: block;
    margin-top: 0.75rem;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 850;
    line-height: 1.16;
    overflow-wrap: anywhere;
}

.problem-flip-card__text {
    display: block;
    margin-top: 0.52rem;
    color: rgba(255,255,255,0.72);
    font-size: 0.76rem;
    line-height: 1.38;
    overflow-wrap: break-word;
}

.problem-flip-card__result {
    display: block;
    margin-top: 0.58rem;
    padding: 0.55rem 0.6rem;
    color: rgba(255,255,255,0.84);
    background: rgba(255,255,255,0.055);
    border-left: 2px solid var(--color-green-light);
    font-size: 0.74rem;
    line-height: 1.34;
}

.problem-flip-card__result span {
    display: block;
    margin-bottom: 0.16rem;
    color: var(--color-green-light);
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.1;
    text-transform: uppercase;
}

.problem-flip-card__action {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    align-self: flex-end;
    margin-top: auto;
    color: var(--color-green-light);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.2;
}

.problem-flip-card__action--back {
    align-self: flex-start;
}

.problem-flow__center-card {
    min-height: 380px;
    padding: 1.6rem;
    display: grid;
    align-content: center;
    color: var(--color-white);
    background:
        linear-gradient(135deg, rgba(46,204,113,0.20), rgba(255,255,255,0.05)),
        #0B2314;
    border: 1px solid rgba(126,217,87,0.38);
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
    box-shadow: 0 22px 70px rgba(0,0,0,0.34);
}

.problem-flow__center-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 176px;
    height: 70px;
    margin-bottom: 1.1rem;
    padding: 0.45rem 0.7rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(126,217,87,0.34);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.problem-flow__center-mark img {
    width: 150px;
    max-width: 100%;
    height: auto;
    max-height: 54px;
    object-fit: contain;
}

.problem-flow__center-card .eyebrow {
    margin-bottom: 0.8rem;
}

.problem-flow__center-card h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 2.1vw, 2.15rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}

.problem-flow__center-card p {
    margin: 1rem 0 0;
    color: rgba(255,255,255,0.76);
}

.problem-flow__center-card strong {
    display: block;
    margin-top: 1.15rem;
    padding: 0.8rem 0.9rem;
    color: var(--color-black);
    background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
    font-weight: 900;
    line-height: 1.35;
}

.problem-flow__results {
    display: grid;
    gap: 0.72rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.problem-flow__results li {
    display: flex;
    gap: 0.72rem;
    align-items: flex-start;
    min-height: 82px;
    padding: 0.85rem;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
        #242424;
    border: 1px solid rgba(46,204,113,0.24);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
    box-shadow: 0 14px 32px rgba(0,0,0,0.16);
}

.problem-flow__results i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    color: var(--color-black);
    background: var(--color-green-light);
    clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 0 100%);
}

.problem-flow__results strong {
    display: block;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.98rem;
    line-height: 1.18;
}

.problem-flow__results small {
    display: block;
    margin-top: 0.25rem;
    color: rgba(255,255,255,0.66);
    font-size: 0.78rem;
    line-height: 1.34;
}

.problem-flow__more {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 1.2rem;
}

.problem-flow__mobile {
    display: none;
}

.problem-flow__mobile-heading {
    max-width: 760px;
    margin-bottom: 1.35rem;
}

.problem-flow__mobile-heading h3 {
    margin: 0;
    color: var(--color-ink);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0;
}

.problem-flow__mobile-heading p {
    margin: 0.85rem 0 0;
    color: var(--color-muted);
}

.problem-flow__mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.problem-flow__mobile .problem-flip-card {
    min-height: 300px;
}

.problem-flow__mobile .problem-flip-card__face {
    padding: 1.05rem;
}

.problem-flow__mobile .problem-flip-card__title {
    font-size: 1.08rem;
}

.problem-flow__mobile .problem-flip-card__text,
.problem-flow__mobile .problem-flip-card__result {
    font-size: 0.88rem;
}

/* Connected network page */

.network-page {
    color: var(--color-ink);
    background: var(--color-white);
}

.network-page .section__inner {
    width: min(100%, 1880px);
}

.network-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(5.5rem, 8vw, 8rem) 1.25rem clamp(4.75rem, 7vw, 7rem);
    color: var(--color-white);
    background:
        linear-gradient(rgba(46,204,113,0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46,204,113,0.08) 1px, transparent 1px),
        radial-gradient(circle at 78% 26%, rgba(126,217,87,0.18), transparent 30%),
        linear-gradient(135deg, #070707 0%, #111A13 54%, #050505 100%);
    background-size: 46px 46px, 46px 46px, auto, auto;
}

.network-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(126,217,87,0.7), transparent);
}

.network-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(520px, 0.72fr);
    gap: clamp(2.2rem, 4vw, 4.75rem);
    align-items: start;
}

.network-hero__copy {
    max-width: 790px;
}

.network-hero h1 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.85rem, 5vw, 5.75rem);
    font-weight: 950;
    line-height: 0.98;
    letter-spacing: 0;
}

.network-hero__lead {
    margin: 1.45rem 0 0;
    color: var(--color-green-light);
    font-size: clamp(1.08rem, 1.6vw, 1.28rem);
    font-weight: 850;
    line-height: 1.5;
}

.network-hero__copy p:not(.eyebrow):not(.network-hero__lead) {
    max-width: 680px;
    margin: 1rem 0 0;
    color: rgba(255,255,255,0.76);
}

.network-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.75rem;
}

.network-hero__diagram {
    position: relative;
    min-height: 430px;
    isolation: isolate;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
        rgba(11,11,11,0.64);
    border: 1px solid rgba(126,217,87,0.26);
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
    box-shadow: 0 30px 95px rgba(0,0,0,0.34);
}

.network-hero__wires {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.network-wire,
.network-connector {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.network-wire {
    stroke-width: 4.4;
    opacity: 0.82;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.16));
    animation: network-wire-flow 11s ease-in-out infinite;
}

.network-wire--messy {
    stroke-dasharray: 9 13;
}

.network-wire--blue,
.network-connector--blue {
    stroke: #236CFF;
}

.network-wire--gold,
.network-connector--gold {
    stroke: #E7B92E;
}

.network-wire--green,
.network-connector--green {
    stroke: #24B565;
}

.network-connector--red {
    stroke: #D73535;
}

.network-connector--orange {
    stroke: #F07822;
}

@keyframes network-wire-flow {
    0%, 100% {
        stroke-dashoffset: 0;
        opacity: 0.66;
    }
    50% {
        stroke-dashoffset: -34;
        opacity: 0.96;
    }
}

.network-hero-node {
    position: absolute;
    z-index: 1;
    display: inline-grid;
    place-items: center;
    min-width: 132px;
    min-height: 64px;
    padding: 0.8rem 0.9rem;
    color: var(--color-white);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025)),
        #202020;
    border: 1px solid rgba(255,255,255,0.12);
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
    font-family: var(--font-heading);
    font-size: 0.86rem;
    font-weight: 850;
    line-height: 1.18;
    text-align: center;
    box-shadow: 0 16px 42px rgba(0,0,0,0.26);
}

.network-hero-node--problem {
    top: 1.15rem;
    left: 1.25rem;
}

.network-hero-node--map {
    top: 1.15rem;
    right: 1.25rem;
}

.network-hero-node--core {
    top: 46%;
    left: 50%;
    min-width: 190px;
    min-height: 132px;
    color: var(--color-black);
    background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
    border-color: transparent;
    transform: translate(-50%, -50%);
}

.network-hero-node--result {
    right: 1.25rem;
    bottom: 1.25rem;
}

.hero-flow {
    --flow-blue: #236CFF;
    --flow-gold: #E7B92E;
    --flow-green: #24B565;
    --flow-red: #D73535;
    --flow-orange: #F07822;
    --flow-core-shadow: rgba(126,217,87,0.42);
    min-height: clamp(455px, 35vw, 560px);
    overflow: hidden;
}

.hero-flow::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(rgba(126,217,87,0.065) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126,217,87,0.05) 1px, transparent 1px),
        radial-gradient(circle at 50% 48%, rgba(126,217,87,0.18), transparent 26%);
    background-size: 24px 24px, 24px 24px, auto;
    opacity: 0.76;
}

.hero-flow::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 51%;
    width: 34%;
    aspect-ratio: 1;
    background: radial-gradient(circle, var(--flow-core-shadow), transparent 68%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-flow--webes-jelenlet {
    --flow-core-shadow: rgba(35,108,255,0.32);
}

.hero-flow--ceges-mukodes {
    --flow-core-shadow: rgba(240,120,34,0.34);
}

.hero-flow--it-partnerseg {
    --flow-core-shadow: rgba(231,185,46,0.34);
}

.hero-flow--szemlelet {
    --flow-core-shadow: rgba(126,217,87,0.48);
}

.hero-flow--kapcsolat {
    --flow-core-shadow: rgba(46,204,113,0.40);
}

.hero-flow__wires {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-flow__wire {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.hero-flow__wire--input {
    stroke-width: 3.2;
    opacity: 0.74;
    animation: hero-flow-input 8.5s ease-in-out infinite;
    animation-delay: calc(var(--flow-wire-index) * -0.42s);
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.14));
}

.hero-flow__wire--output {
    stroke-width: 4.4;
    opacity: 0.88;
    animation: hero-flow-output 8.8s cubic-bezier(0.55, 0, 0.26, 1) infinite;
    animation-delay: calc(var(--flow-wire-index) * -0.18s);
}

.hero-flow__wire--blue {
    stroke: var(--flow-blue);
}

.hero-flow__wire--gold {
    stroke: var(--flow-gold);
}

.hero-flow__wire--green {
    stroke: var(--flow-green);
}

.hero-flow__wire--red {
    stroke: var(--flow-red);
}

.hero-flow__wire--orange {
    stroke: var(--flow-orange);
}

.hero-flow__junction {
    fill: var(--color-green-light);
    opacity: 0.86;
}

.hero-flow__junction--input,
.hero-flow__junction--output {
    fill: rgba(255,255,255,0.72);
}

.hero-flow__nodes {
    display: contents;
}

.hero-flow__node,
.hero-flow__core {
    position: absolute;
    z-index: 2;
    clip-path: var(--cut-corner);
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.16;
    box-shadow: 0 18px 46px rgba(0,0,0,0.34);
}

.hero-flow__node {
    display: inline-grid;
    align-items: center;
    min-width: 126px;
    max-width: 168px;
    min-height: 48px;
    padding: 0.68rem 0.74rem;
    color: var(--color-white);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025)),
        #202020;
    border: 1px solid rgba(255,255,255,0.13);
    font-size: clamp(0.72rem, 0.9vw, 0.86rem);
    text-align: center;
}

.hero-flow__node::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 38%;
    height: 3px;
    background: var(--flow-green);
}

.hero-flow__node--input {
    width: min(25%, 168px);
    max-width: 168px;
    transform: rotate(var(--flow-rotate, 0deg));
}

.hero-flow__node--input::before {
    background: var(--flow-input-accent, var(--flow-green));
    box-shadow: 0 0 14px color-mix(in srgb, var(--flow-input-accent, var(--flow-green)) 55%, transparent);
}

.hero-flow__node--output {
    justify-items: start;
    width: min(28%, 178px);
    max-width: 188px;
    min-height: 54px;
    padding-left: 0.86rem;
    text-align: left;
    transform: none;
}

.hero-flow__node--output::before {
    width: 52%;
    background: var(--flow-green);
    box-shadow: 0 0 14px rgba(36,181,101,0.48);
}

.hero-flow__input--1 {
    top: 6.8%;
    left: 7.2%;
    --flow-rotate: -4deg;
    --flow-input-accent: var(--flow-blue);
}

.hero-flow__input--2 {
    top: 22%;
    left: 2.2%;
    --flow-rotate: 2.5deg;
    --flow-input-accent: var(--flow-gold);
}

.hero-flow__input--3 {
    top: 42%;
    left: 4.8%;
    --flow-rotate: -2.2deg;
    --flow-input-accent: var(--flow-red);
}

.hero-flow__input--4 {
    top: 60.5%;
    left: 1.8%;
    --flow-rotate: 3deg;
    --flow-input-accent: var(--flow-orange);
}

.hero-flow__input--5 {
    top: 77%;
    left: 10.5%;
    --flow-rotate: -1.8deg;
    --flow-input-accent: var(--flow-green);
}

.hero-flow__output--1 {
    top: 10.2%;
    right: 5.4%;
}

.hero-flow__output--2 {
    top: 29.8%;
    right: 2.8%;
}

.hero-flow__output--3 {
    top: 51.6%;
    right: 5.4%;
}

.hero-flow__output--4 {
    top: 72%;
    right: 3.2%;
}

.hero-flow__core {
    top: 50%;
    left: 50.5%;
    z-index: 3;
    display: grid;
    place-items: center;
    gap: 0.25rem;
    width: min(37%, 250px);
    min-width: 205px;
    min-height: 166px;
    padding: 1.05rem;
    color: var(--color-black);
    text-align: center;
    background:
        linear-gradient(rgba(255,255,255,0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px),
        linear-gradient(135deg, var(--color-green), var(--color-green-light));
    background-size: 18px 18px, 18px 18px, auto;
    border: 1px solid rgba(255,255,255,0.28);
    transform: translate(-50%, -50%);
    overflow: hidden;
    font-size: clamp(1rem, 1.35vw, 1.32rem);
}

.hero-flow__core::before {
    content: "";
    position: absolute;
    inset: -34% -60%;
    background: linear-gradient(100deg, transparent 34%, rgba(255,255,255,0.30), transparent 66%);
    transform: translateX(-34%);
    animation: hero-flow-core-sweep 7.5s ease-in-out infinite;
}

.hero-flow__core span {
    position: relative;
    z-index: 1;
}

.hero-flow--ceges-mukodes .hero-flow__input--1,
.hero-flow--szemlelet .hero-flow__input--1 {
    left: 3.8%;
}

.hero-flow--ceges-mukodes .hero-flow__input--3,
.hero-flow--szemlelet .hero-flow__input--3 {
    left: 9%;
}

.hero-flow--it-partnerseg .hero-flow__output--2 {
    right: 6.2%;
}

.hero-flow--it-partnerseg .hero-flow__output--3 {
    right: 2.4%;
}

.hero-flow--kapcsolat .hero-flow__core {
    width: min(32%, 220px);
    min-height: 142px;
}

@keyframes hero-flow-input {
    0%, 100% {
        opacity: 0.62;
    }
    50% {
        opacity: 0.90;
    }
}

@keyframes hero-flow-output {
    0%, 100% {
        opacity: 0.78;
    }
    50% {
        opacity: 1;
    }
}

@keyframes hero-flow-core-sweep {
    0%, 52%, 100% {
        transform: translateX(-42%);
        opacity: 0;
    }
    62%, 82% {
        opacity: 1;
    }
    96% {
        transform: translateX(42%);
        opacity: 0;
    }
}

.network-section {
    position: relative;
    padding: clamp(4.5rem, 7vw, 7rem) 1.25rem;
    overflow: hidden;
}

.network-section--problems,
.network-section--services,
.network-section--results {
    background:
        linear-gradient(rgba(46,204,113,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46,204,113,0.055) 1px, transparent 1px),
        linear-gradient(180deg, #FFFFFF 0%, #F5F8F5 100%);
    background-size: 42px 42px, 42px 42px, auto;
}

.network-section--dark {
    color: var(--color-white);
    background:
        linear-gradient(rgba(126,217,87,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126,217,87,0.055) 1px, transparent 1px),
        #0B0B0B;
    background-size: 44px 44px, 44px 44px, auto;
}

.network-section--split,
.network-section--cost {
    background: var(--color-white);
}

.network-section--final {
    color: var(--color-white);
    background: linear-gradient(135deg, #08110B 0%, #0B0B0B 58%, #132117 100%);
}

.network-section__heading {
    max-width: 850px;
}

.network-section__heading h2,
.network-panel h2,
.network-cost-card h2,
.network-final-cta h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.2vw, 3.25rem);
    font-weight: 920;
    line-height: 1.08;
    letter-spacing: 0;
}

.network-card,
.network-panel,
.network-cost-card,
.network-final-cta {
    clip-path: var(--cut-corner);
}

.network-card {
    position: relative;
    min-width: 0;
    padding: 1.05rem;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.025)),
        #242424;
    border: 1px solid rgba(46,204,113,0.22);
    box-shadow: 0 16px 42px rgba(0,0,0,0.18);
}

.network-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 46%;
    height: 3px;
    background: var(--color-green-light);
}

.network-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 0.82rem;
    color: var(--color-black);
    background: var(--color-green-light);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
    font-size: 1.12rem;
}

.network-card h3,
.network-step h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.04rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0;
}

.network-card p,
.network-step p,
.network-panel p,
.network-cost-card p,
.network-final-cta p {
    margin: 0.62rem 0 0;
    line-height: 1.55;
}

.network-card p,
.network-step p {
    font-size: 0.9rem;
}

.network-problem-map {
    position: relative;
    min-height: 920px;
    margin: 1.4rem auto 0;
}

.network-problem-map__connectors {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.network-connector {
    stroke-width: 4;
    opacity: 0.72;
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.45));
}

.network-connector--messy {
    stroke-dasharray: 7 9;
}

.network-problem-map__node,
.network-problem-map__center {
    position: absolute;
    z-index: 1;
}

.network-card--problem {
    width: min(25%, 292px);
    min-height: 176px;
    color: var(--color-white);
}

.network-problem-map__node--1 {
    top: 0;
    left: 1.5%;
}

.network-problem-map__node--2 {
    top: 0;
    left: 32%;
    transform: translateY(-0.9rem);
}

.network-problem-map__node--3 {
    top: 0.8rem;
    right: 1.5%;
}

.network-problem-map__node--4 {
    top: 16.4rem;
    right: 0;
}

.network-problem-map__node--5 {
    right: 4.5%;
    bottom: 1.1rem;
}

.network-problem-map__node--6 {
    left: 39%;
    bottom: 0.2rem;
}

.network-problem-map__node--7 {
    left: 3.5%;
    bottom: 1.5rem;
}

.network-problem-map__node--8 {
    top: 17.4rem;
    left: 0;
}

.network-card--core {
    top: 50%;
    left: 50%;
    width: min(38%, 500px);
    min-height: 360px;
    padding: 1.55rem;
    color: var(--color-white);
    background:
        linear-gradient(135deg, rgba(46,204,113,0.22), rgba(255,255,255,0.05)),
        #0B2314;
    border-color: rgba(126,217,87,0.42);
    transform: translate(-50%, -50%);
    box-shadow: 0 28px 90px rgba(0,0,0,0.32);
}

.network-card--core::before {
    width: 62%;
}

.network-card--core h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 2.3vw, 2.25rem);
    font-weight: 920;
    line-height: 1.1;
    letter-spacing: 0;
}

.network-card--core p {
    color: rgba(255,255,255,0.76);
}

.network-card--core strong,
.network-cost-card strong {
    display: block;
    margin-top: 1rem;
    padding: 0.86rem 0.95rem;
    color: var(--color-black);
    background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
    font-weight: 900;
    line-height: 1.35;
}

.network-process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.network-process-grid::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 7%;
    right: 7%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(126,217,87,0.65), rgba(35,108,255,0.52), rgba(231,185,46,0.62), transparent);
}

.network-step {
    position: relative;
    min-height: 230px;
    padding: 1.18rem;
    color: var(--color-white);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
        #1D1D1D;
    border: 1px solid rgba(126,217,87,0.22);
    clip-path: var(--cut-corner);
    box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}

.network-step::before {
    content: var(--step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 0.85rem;
    color: var(--color-black);
    background: var(--color-green-light);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
    font-family: var(--font-heading);
    font-weight: 950;
    line-height: 1;
}

.network-step p {
    color: rgba(255,255,255,0.72);
}

.network-split {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1.25rem;
}

.network-split::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 47%;
    right: 47%;
    height: 4px;
    background: linear-gradient(90deg, #236CFF, var(--color-green-light), #E7B92E);
    transform: translateY(-50%);
}

.network-panel {
    position: relative;
    padding: clamp(1.35rem, 3vw, 2rem);
    background: var(--color-white);
    border: 1px solid rgba(11,11,11,0.10);
    box-shadow: 0 18px 55px rgba(0,0,0,0.10);
}

.network-panel--experience {
    background:
        linear-gradient(145deg, rgba(46,204,113,0.10), rgba(255,255,255,0.8)),
        #FFFFFF;
}

.network-panel--boundary {
    color: var(--color-white);
    background:
        linear-gradient(145deg, rgba(231,185,46,0.14), rgba(255,255,255,0.035)),
        #171717;
    border-color: rgba(231,185,46,0.28);
}

.network-panel p {
    color: var(--color-muted);
}

.network-panel--boundary p {
    color: rgba(255,255,255,0.74);
}

.network-service-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.network-service-grid::before,
.network-result-grid::before {
    content: "";
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(35,108,255,0.42), rgba(126,217,87,0.68), rgba(240,120,34,0.42), transparent);
    pointer-events: none;
}

.network-card--service,
.network-card--result {
    z-index: 1;
    color: var(--color-white);
}

.network-card--service:nth-child(3n + 2)::before {
    background: #236CFF;
}

.network-card--service:nth-child(3n)::before {
    background: #E7B92E;
}

.network-cost-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.58fr);
    gap: clamp(1.4rem, 4vw, 3rem);
    align-items: center;
    padding: clamp(1.4rem, 4vw, 2.6rem);
    color: var(--color-white);
    background:
        linear-gradient(135deg, rgba(46,204,113,0.18), rgba(255,255,255,0.035)),
        #111111;
    border: 1px solid rgba(126,217,87,0.26);
    box-shadow: 0 24px 80px rgba(0,0,0,0.20);
}

.network-cost-card p {
    color: rgba(255,255,255,0.74);
}

.network-cost-card strong {
    align-self: stretch;
    display: grid;
    place-items: center;
    min-height: 180px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.1vw, 1.8rem);
}

.field-discovery-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(135deg, rgba(46,204,113,0.18), rgba(35,108,255,0.08)),
        #101712;
    border-color: rgba(126,217,87,0.36);
    clip-path: var(--cut-corner);
}

.field-discovery-card::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 1.1rem;
    right: 1.1rem;
    bottom: 1.1rem;
    width: min(38%, 360px);
    border-top: 2px solid rgba(126,217,87,0.55);
    border-right: 2px solid rgba(35,108,255,0.28);
    border-bottom: 2px solid rgba(231,185,46,0.32);
    opacity: 0.85;
    pointer-events: none;
}

.field-discovery-card::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 50%;
    right: min(29%, 270px);
    width: 42px;
    height: 42px;
    background: var(--color-green-light);
    box-shadow:
        -76px -52px 0 -16px rgba(35,108,255,0.85),
        -132px 58px 0 -18px rgba(231,185,46,0.9);
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
}

.field-discovery-card > * {
    position: relative;
    z-index: 1;
}

.field-discovery-card h2 {
    max-width: 980px;
}

.field-discovery-card strong {
    color: var(--color-black);
    background:
        linear-gradient(135deg, rgba(126,217,87,0.96), rgba(46,204,113,0.88));
}

.field-discovery-card--operations {
    background:
        linear-gradient(135deg, rgba(46,204,113,0.18), rgba(240,120,34,0.08)),
        #101712;
}

.field-discovery-card--it {
    background:
        linear-gradient(135deg, rgba(46,204,113,0.16), rgba(231,185,46,0.12)),
        #11150F;
}

.field-discovery-card--mindset {
    background:
        linear-gradient(135deg, rgba(46,204,113,0.18), rgba(35,108,255,0.10)),
        #0D1711;
}

/* Connected contact page */

.contact-page .network-hero {
    background:
        linear-gradient(rgba(126,217,87,0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(35,108,255,0.055) 1px, transparent 1px),
        radial-gradient(circle at 76% 24%, rgba(126,217,87,0.18), transparent 29%),
        linear-gradient(135deg, #060706 0%, #111711 52%, #050505 100%);
    background-size: 46px 46px, 46px 46px, auto, auto;
}

.contact-hero__highlight {
    display: inline-flex;
    max-width: 720px;
    margin-top: 1.25rem;
    padding: 0.82rem 0.95rem;
    color: var(--color-black);
    background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
    clip-path: var(--cut-corner);
    font-weight: 900;
    line-height: 1.35;
}

.contact-hero__diagram {
    min-height: 405px;
}

.contact-selector-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(46,204,113,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46,204,113,0.045) 1px, transparent 1px),
        var(--color-white);
    background-size: 42px 42px, 42px 42px, auto;
}

.contact-topic-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.95rem;
}

.contact-topic-grid::before {
    content: "";
    position: absolute;
    left: 1.4rem;
    right: 1.4rem;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(35,108,255,0.48), rgba(126,217,87,0.70), rgba(231,185,46,0.52), rgba(240,120,34,0.46), transparent);
    pointer-events: none;
}

.contact-topic-card {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 310px;
    padding: 1.05rem;
    color: var(--color-white);
    text-align: left;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
        #242424;
    border: 1px solid rgba(11,11,11,0.20);
    clip-path: var(--cut-corner);
    cursor: pointer;
    box-shadow: 0 16px 44px rgba(0,0,0,0.14);
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.contact-topic-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 42%;
    height: 3px;
    background: var(--color-green-light);
}

.contact-topic-card:nth-child(2n)::before {
    background: #236CFF;
}

.contact-topic-card:nth-child(3n)::before {
    background: #E7B92E;
}

.contact-topic-card:nth-child(4n)::before {
    background: #F07822;
}

.contact-topic-card:hover,
.contact-topic-card:focus-visible,
.contact-topic-card.is-active {
    transform: translateY(-4px);
    border-color: rgba(126,217,87,0.56);
    background:
        linear-gradient(135deg, rgba(46,204,113,0.18), rgba(35,108,255,0.08)),
        #121C15;
}

.contact-topic-card:focus-visible {
    outline: 3px solid var(--color-green-light);
    outline-offset: 4px;
}

.contact-topic-card.is-active::after {
    content: "Kiválasztva";
    position: absolute;
    right: 0.75rem;
    top: 0.75rem;
    padding: 0.28rem 0.42rem;
    color: var(--color-black);
    background: var(--color-green-light);
    font-size: 0.72rem;
    font-weight: 900;
}

.contact-topic-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--color-black);
    background: var(--color-green-light);
    clip-path: var(--cut-corner);
}

.contact-topic-card__body {
    display: grid;
    align-content: start;
    min-width: 0;
}

.contact-topic-card__title {
    display: block;
    margin-top: 1.1rem;
    font-family: var(--font-heading);
    font-size: 1.24rem;
    font-weight: 920;
    line-height: 1.1;
    letter-spacing: 0;
}

.contact-topic-card__text {
    display: block;
    margin-top: 0.72rem;
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
    line-height: 1.45;
}

.contact-topic-card__cta {
    display: block;
    margin-top: 1rem;
    color: var(--color-green-light);
    font-weight: 900;
    line-height: 1.24;
}

.contact-work-section {
    position: relative;
    overflow: hidden;
}

.contact-work-section::before {
    content: "";
    position: absolute;
    top: 4rem;
    left: 50%;
    width: min(38vw, 520px);
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(126,217,87,0.70), rgba(35,108,255,0.48), transparent);
    transform: translateX(-50%);
    pointer-events: none;
}

.contact-work-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.45fr);
    gap: clamp(1.3rem, 3vw, 2.4rem);
    align-items: start;
}

.contact-form-node,
.contact-form-gate,
.contact-direct-card,
.contact-company-card {
    position: relative;
    color: var(--color-white);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
        #151515;
    border: 1px solid rgba(126,217,87,0.24);
    clip-path: var(--cut-corner);
    box-shadow: 0 24px 80px rgba(0,0,0,0.24);
}

.contact-form-node {
    padding: clamp(1.2rem, 3vw, 2rem);
}

.contact-form-node[hidden],
.contact-form-gate[hidden] {
    display: none;
}

.contact-form-gate {
    display: grid;
    align-content: center;
    gap: 0.85rem;
    min-height: 430px;
    padding: clamp(1.35rem, 3vw, 2.2rem);
    overflow: hidden;
}

.contact-form-gate::before {
    content: "";
    position: absolute;
    inset: 1px;
    background:
        linear-gradient(rgba(126,217,87,0.075) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126,217,87,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.55;
    pointer-events: none;
}

.contact-form-gate > * {
    position: relative;
    z-index: 1;
}

.contact-form-gate__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: var(--color-black);
    background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
    clip-path: var(--cut-corner);
    font-size: 1.45rem;
    box-shadow: 0 14px 40px rgba(126,217,87,0.20);
}

.contact-form-gate .button {
    justify-self: start;
    margin-top: 0.45rem;
}

.contact-form-node__heading {
    max-width: 1040px;
    margin-bottom: 1.35rem;
}

.contact-form-node h2,
.contact-form-gate h2,
.contact-direct-card h2,
.contact-company-card h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.5vw, 3rem);
    font-weight: 940;
    line-height: 1.05;
    letter-spacing: 0;
}

.contact-form-node p,
.contact-form-gate p,
.contact-direct-card p,
.contact-company-card p {
    color: rgba(255,255,255,0.74);
}

.contact-form-status {
    display: none;
    grid-column: 1 / -1;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0.2rem;
    padding: clamp(1rem, 2vw, 1.25rem);
    border-left: 3px solid var(--color-green-light);
    border-top: 1px solid rgba(126,217,87,0.32);
    border-right: 1px solid rgba(126,217,87,0.22);
    border-bottom: 1px solid rgba(126,217,87,0.22);
    background: rgba(126,217,87,0.10);
    clip-path: var(--cut-corner);
    color: var(--color-white);
}

.contact-form-status.is-visible {
    display: flex;
}

.contact-form-status.is-error {
    border-color: #D73535;
    background: rgba(215,53,53,0.12);
}

.contact-form-status__icon {
    display: inline-grid;
    flex: 0 0 auto;
    width: 2.3rem;
    height: 2.3rem;
    place-items: center;
    color: var(--color-green-light);
    background: rgba(126,217,87,0.12);
    border: 1px solid rgba(126,217,87,0.35);
    border-radius: 50%;
}

.contact-form-status.is-error .contact-form-status__icon {
    color: #FF9B91;
    background: rgba(215,53,53,0.14);
    border-color: rgba(215,53,53,0.36);
}

.contact-form-status__copy {
    display: grid;
    gap: 0.35rem;
    min-width: 0;
}

.contact-form-status__copy strong {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 1.7vw, 1.32rem);
    font-weight: 900;
    line-height: 1.18;
}

.contact-form-status__copy span {
    color: rgba(255,255,255,0.76);
    line-height: 1.55;
}

.contact-selected-topic {
    display: grid;
    gap: 0.25rem;
    margin: 0 0 1rem;
    padding: 0.82rem 0.92rem;
    background: rgba(126,217,87,0.10);
    border: 1px solid rgba(126,217,87,0.25);
    clip-path: var(--cut-corner);
}

.contact-selected-topic span {
    color: var(--color-green-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-selected-topic strong {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    line-height: 1.2;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
}

.contact-field {
    display: grid;
    gap: 0.45rem;
    grid-column: 1 / -1;
    min-width: 0;
}

.contact-field--half {
    grid-column: span 1;
}

.contact-field label,
.contact-field legend,
.contact-question-group > legend {
    color: rgba(255,255,255,0.88);
    font-weight: 600;
    line-height: 1.25;
}

.contact-field fieldset,
.contact-question-group {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.contact-question-group {
    margin-top: 1.25rem;
    padding: 1rem;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(126,217,87,0.18);
    clip-path: var(--cut-corner);
}

.contact-question-group[aria-hidden="true"] {
    display: none;
}

.contact-question-group > legend {
    width: 100%;
    margin-bottom: 0.9rem;
    color: var(--color-green-light);
    font-family: var(--font-heading);
    font-size: 1.18rem;
}

.contact-field input[type="text"],
.contact-field input[type="email"],
.contact-field input[type="tel"],
.contact-field textarea {
    width: 100%;
    min-width: 0;
    padding: 0.8rem 0.88rem;
    color: var(--color-white);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 0;
    outline: 0;
}

.contact-field textarea {
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus,
.contact-option input:focus-visible,
.contact-check input:focus-visible {
    border-color: var(--color-green-light);
    box-shadow: 0 0 0 3px rgba(126,217,87,0.18);
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.contact-options--urgency {
    margin-bottom: 1rem;
}

.contact-option,
.contact-check {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.48rem;
    min-width: 0;
    padding: 0.62rem 0.7rem;
    color: rgba(255,255,255,0.78);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
    cursor: pointer;
}

.contact-check {
    display: flex;
}

.contact-option input,
.contact-check input {
    flex: 0 0 auto;
    margin-top: 0.18rem;
    accent-color: var(--color-green-light);
}

.contact-option:has(input:checked),
.contact-check:has(input:checked) {
    color: var(--color-white);
    border-color: rgba(126,217,87,0.52);
    background: rgba(126,217,87,0.12);
}

.contact-field__error {
    min-height: 1.1rem;
    color: #FF9B91;
    font-size: 0.84rem;
    font-weight: 800;
}

.contact-field.is-invalid input,
.contact-field.is-invalid textarea {
    border-color: #D73535;
}

.contact-form-submit {
    margin-top: 1.15rem;
}

.contact-form-submit i {
    margin-right: 0.35rem;
}

.contact-form-node.is-submitting {
    opacity: 0.74;
}

.contact-form-node__note {
    margin: 1rem 0 0;
    padding: 0.78rem 0.9rem;
    color: rgba(255,255,255,0.76);
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.12);
    clip-path: var(--cut-corner);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-honeypot {
    display: none;
}

.contact-side-stack {
    position: sticky;
    top: calc(var(--header-height) + 1.2rem);
    align-self: start;
    display: grid;
    gap: 1rem;
}

.contact-direct-card,
.contact-company-card {
    padding: clamp(1.2rem, 2.5vw, 1.7rem);
}

.contact-direct-card ul {
    display: grid;
    gap: 0.85rem;
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}

.contact-direct-card li {
    display: flex;
    gap: 0.72rem;
    align-items: flex-start;
    padding: 0.78rem;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.10);
    clip-path: var(--cut-corner);
}

.contact-direct-card li > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    color: var(--color-black);
    background: var(--color-green-light);
    clip-path: var(--cut-corner);
}

.contact-direct-card small {
    display: block;
    color: var(--color-green-light);
    font-weight: 900;
    text-transform: uppercase;
}

.contact-direct-card a,
.contact-direct-card strong {
    color: var(--color-white);
    font-weight: 900;
    text-decoration: none;
}

.contact-direct-card a:hover {
    color: var(--color-green-light);
}

.contact-company-card {
    overflow: hidden;
    background:
        linear-gradient(rgba(126,217,87,0.065) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126,217,87,0.055) 1px, transparent 1px),
        linear-gradient(145deg, rgba(46,204,113,0.14), rgba(255,255,255,0.025)),
        #101712;
    background-size: 26px 26px, 26px 26px, auto;
}

.contact-company-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 58%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-green-light), #236CFF, transparent);
}

.contact-company-card__header {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 0.8rem;
    align-items: center;
}

.contact-company-card__header .eyebrow {
    margin-bottom: 0.35rem;
}

.contact-company-card__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: var(--color-black);
    background: var(--color-green-light);
    clip-path: var(--cut-corner);
    box-shadow: 0 0 0 1px rgba(126,217,87,0.34), 0 12px 28px rgba(0,0,0,0.24);
    font-size: 1.25rem;
}

.contact-company-card h2 {
    font-size: clamp(1.35rem, 1.8vw, 1.75rem);
    line-height: 1.12;
}

.contact-company-card dl {
    display: grid;
    gap: 0.58rem;
    margin: 1.25rem 0 0;
}

.contact-company-card dl div {
    position: relative;
    display: grid;
    gap: 0.24rem;
    padding: 0.78rem 0.82rem 0.78rem 1.85rem;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
        rgba(11,11,11,0.34);
    border: 1px solid rgba(126,217,87,0.16);
    clip-path: var(--cut-corner);
}

.contact-company-card dl div::before {
    content: "";
    position: absolute;
    top: 1.05rem;
    left: 0.78rem;
    width: 8px;
    height: 8px;
    background: var(--color-green-light);
    box-shadow: 0 0 14px rgba(126,217,87,0.54);
    transform: rotate(45deg);
}

.contact-company-card dt {
    color: var(--color-green-light);
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.contact-company-card dd {
    margin: 0;
    color: rgba(255,255,255,0.94);
    font-weight: 820;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.contact-company-card a {
    color: var(--color-white);
    text-decoration: none;
    border-bottom: 1px solid rgba(126,217,87,0.48);
}

.contact-company-card a:hover {
    color: var(--color-green-light);
}

.contact-trust-card {
    background:
        linear-gradient(135deg, rgba(46,204,113,0.16), rgba(35,108,255,0.07)),
        #101712;
    clip-path: var(--cut-corner);
}

.network-result-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.9rem;
}

.network-card--result {
    min-height: 238px;
}

.network-card--result:nth-child(2n)::before {
    background: #236CFF;
}

.network-card--result:nth-child(3n)::before {
    background: #E7B92E;
}

.network-final-cta {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(1.4rem, 4vw, 2.8rem);
    text-align: center;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
        #0B2314;
    border: 1px solid rgba(126,217,87,0.34);
    box-shadow: 0 26px 90px rgba(0,0,0,0.30);
}

.network-final-cta::before,
.network-final-cta::after {
    content: "";
    position: absolute;
    top: 50%;
    width: min(16vw, 180px);
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-green-light));
}

.network-final-cta::before {
    right: calc(100% + 1rem);
}

.network-final-cta::after {
    left: calc(100% + 1rem);
    transform: rotate(180deg);
}

.network-final-cta p:not(.eyebrow) {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.76);
}

.network-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.45rem;
}

/* Connected web presence page */

.web-presence-page .network-hero {
    background:
        linear-gradient(rgba(46,204,113,0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(35,108,255,0.07) 1px, transparent 1px),
        radial-gradient(circle at 78% 26%, rgba(35,108,255,0.18), transparent 30%),
        linear-gradient(135deg, #070707 0%, #101815 54%, #050505 100%);
    background-size: 46px 46px, 46px 46px, auto, auto;
}

.web-presence-page .network-hero-node--core {
    min-width: 210px;
}

.web-presence-page .network-card--core {
    background:
        linear-gradient(135deg, rgba(35,108,255,0.18), rgba(46,204,113,0.14)),
        #0B1D1D;
    border-color: rgba(126,217,87,0.38);
}

.network-panel__highlight {
    display: block;
    margin-top: 1rem;
    padding: 0.82rem 0.95rem;
    color: var(--color-black);
    background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
    font-weight: 900;
    line-height: 1.35;
}

.web-presence-page .network-service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.web-presence-page .network-result-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.web-presence-page .network-card--result {
    min-height: 220px;
}

.web-presence-page .network-card--service:nth-child(4n + 2)::before,
.web-presence-page .network-card--result:nth-child(4n + 2)::before {
    background: #236CFF;
}

.web-presence-page .network-card--service:nth-child(4n + 3)::before,
.web-presence-page .network-card--result:nth-child(4n + 3)::before {
    background: #E7B92E;
}

.web-presence-page .network-card--service:nth-child(4n)::before,
.web-presence-page .network-card--result:nth-child(4n)::before {
    background: #F07822;
}

/* Connected company operations page */

.company-operations-page .network-hero {
    background:
        linear-gradient(rgba(126,217,87,0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(240,120,34,0.08) 1px, transparent 1px),
        radial-gradient(circle at 78% 28%, rgba(240,120,34,0.18), transparent 30%),
        linear-gradient(135deg, #070707 0%, #151612 54%, #050505 100%);
    background-size: 44px 44px, 44px 44px, auto, auto;
}

.company-operations-page .network-hero-node--problem {
    min-width: 150px;
}

.company-operations-page .network-hero-node--core {
    min-width: 220px;
}

.company-operations-page .network-problem-map {
    min-height: 1030px;
}

.company-operations-page .network-card--problem {
    width: min(23%, 270px);
}

.company-operations-page .network-problem-map__node--1 {
    top: 0;
    left: 0;
}

.company-operations-page .network-problem-map__node--2 {
    top: 0;
    left: 25.5%;
    transform: translateY(-0.55rem);
}

.company-operations-page .network-problem-map__node--3 {
    top: 0;
    right: 25.5%;
}

.company-operations-page .network-problem-map__node--4 {
    top: 0.5rem;
    right: 0;
}

.company-operations-page .network-problem-map__node--5 {
    top: 17.1rem;
    right: 0;
    bottom: auto;
}

.company-operations-page .network-problem-map__node--6 {
    right: 0;
    bottom: 13rem;
    left: auto;
}

.company-operations-page .network-problem-map__node--7 {
    right: 4%;
    bottom: 0;
    left: auto;
}

.company-operations-page .network-problem-map__node--8 {
    right: 38%;
    bottom: 0;
    left: auto;
    top: auto;
}

.company-operations-page .network-problem-map__node--9 {
    bottom: 0.7rem;
    left: 10%;
}

.company-operations-page .network-problem-map__node--10 {
    top: 17.8rem;
    left: 0;
}

.company-operations-page .network-card--core {
    width: min(39%, 520px);
    min-height: 390px;
    background:
        linear-gradient(135deg, rgba(240,120,34,0.16), rgba(46,204,113,0.16)),
        #111B13;
    border-color: rgba(126,217,87,0.40);
}

.company-operations-page .network-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.company-operations-page .network-result-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.company-operations-page .network-card--result {
    min-height: 220px;
}

.company-operations-page .network-card--service:nth-child(3n + 2)::before,
.company-operations-page .network-card--result:nth-child(4n + 2)::before {
    background: #236CFF;
}

.company-operations-page .network-card--service:nth-child(3n)::before,
.company-operations-page .network-card--result:nth-child(4n + 3)::before {
    background: #E7B92E;
}

.company-operations-page .network-card--result:nth-child(4n)::before {
    background: #F07822;
}

/* Connected IT partnership page */

.it-partnership-page .network-hero {
    background:
        linear-gradient(rgba(126,217,87,0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(231,185,46,0.07) 1px, transparent 1px),
        radial-gradient(circle at 78% 24%, rgba(231,185,46,0.16), transparent 30%),
        linear-gradient(135deg, #060706 0%, #11160F 52%, #050505 100%);
    background-size: 46px 46px, 46px 46px, auto, auto;
}

.it-partnership-page .network-hero__copy {
    max-width: 880px;
}

.it-partnership-page .network-hero-node--problem {
    min-width: 150px;
}

.it-partnership-page .network-hero-node--core {
    min-width: 220px;
}

.it-hero-capacity {
    display: grid;
    gap: 0.26rem;
    width: min(100%, 520px);
    margin-top: 1.15rem;
    padding: 1rem 1.05rem;
    color: var(--color-white);
    background:
        linear-gradient(135deg, rgba(231,185,46,0.13), rgba(46,204,113,0.10)),
        rgba(255,255,255,0.045);
    border: 1px solid rgba(231,185,46,0.30);
    clip-path: var(--cut-corner);
}

.it-hero-capacity span {
    color: var(--color-green-light);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.it-hero-capacity strong {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 1.8vw, 1.8rem);
    font-weight: 950;
    line-height: 1.08;
}

.it-hero-capacity p {
    margin: 0;
    color: rgba(255,255,255,0.72);
    line-height: 1.45;
}

.it-partnership-page .network-card--core {
    background:
        linear-gradient(135deg, rgba(231,185,46,0.16), rgba(46,204,113,0.18)),
        #101B13;
    border-color: rgba(231,185,46,0.36);
}

.it-partnership-page .network-process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.it-partnership-page .network-service-grid,
.it-partnership-page .network-result-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.it-partnership-page .network-card--result {
    min-height: 220px;
}

.it-partnership-page .network-card--service:nth-child(4n + 2)::before,
.it-partnership-page .network-card--result:nth-child(4n + 2)::before {
    background: #236CFF;
}

.it-partnership-page .network-card--service:nth-child(4n + 3)::before,
.it-partnership-page .network-card--result:nth-child(4n + 3)::before {
    background: #E7B92E;
}

.it-partnership-page .network-card--service:nth-child(4n)::before,
.it-partnership-page .network-card--result:nth-child(4n)::before {
    background: #F07822;
}

.it-fit-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.3rem, 3vw, 2.4rem);
    align-items: start;
}

.it-fit-column .section-heading {
    max-width: none;
    margin-bottom: 1.25rem;
}

.it-fit-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.it-fit-card {
    position: relative;
    min-height: 190px;
    padding: 1.05rem;
    background: var(--color-white);
    border: 1px solid rgba(11,11,11,0.10);
    clip-path: var(--cut-corner);
    box-shadow: 0 16px 44px rgba(0,0,0,0.08);
}

.it-fit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 46%;
    height: 3px;
    background: var(--color-green-light);
}

.it-fit-card--no {
    color: var(--color-white);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
        #1E1E1E;
    border-color: rgba(231,185,46,0.24);
}

.it-fit-card--no::before {
    background: #E7B92E;
}

.it-fit-card h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.03rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0;
}

.it-fit-card p {
    margin: 0.58rem 0 0;
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.it-fit-card--no p {
    color: rgba(255,255,255,0.72);
}

.it-terms-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.2rem, 3vw, 2.2rem);
}

.it-terms-card {
    position: relative;
    min-height: 100%;
    padding: clamp(1.35rem, 3vw, 2rem);
    color: var(--color-white);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
        #151515;
    border: 1px solid rgba(126,217,87,0.22);
    clip-path: var(--cut-corner);
    box-shadow: 0 22px 70px rgba(0,0,0,0.24);
}

.it-terms-card--price {
    border-color: rgba(231,185,46,0.34);
}

.it-terms-card h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.6vw, 2.8rem);
    font-weight: 930;
    line-height: 1.08;
    letter-spacing: 0;
}

.it-terms-card__value {
    display: inline-flex;
    margin: 1.15rem 0 0.7rem;
    padding: 0.82rem 0.95rem;
    color: var(--color-black);
    background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.85rem);
    font-weight: 950;
    line-height: 1.1;
}

.it-terms-card--price .it-terms-card__value {
    background: linear-gradient(135deg, #E7B92E, var(--color-green-light));
}

.it-terms-card p {
    margin: 0.68rem 0 0;
    color: rgba(255,255,255,0.74);
    line-height: 1.55;
}

/* Connected mindset page */

.mindset-page .network-hero {
    background:
        linear-gradient(rgba(126,217,87,0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(35,108,255,0.055) 1px, transparent 1px),
        radial-gradient(circle at 76% 28%, rgba(126,217,87,0.16), transparent 30%),
        linear-gradient(135deg, #060706 0%, #111711 52%, #050505 100%);
    background-size: 46px 46px, 46px 46px, auto, auto;
}

.mindset-page .network-hero__copy {
    max-width: 910px;
}

.mindset-page .network-hero-node--core {
    min-width: 222px;
}

.mindset-page .network-card--core {
    background:
        linear-gradient(135deg, rgba(46,204,113,0.18), rgba(35,108,255,0.10)),
        #0D1C12;
    border-color: rgba(126,217,87,0.42);
}

.mindset-page .network-process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mindset-expect-grid,
.mindset-fit-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.3rem, 3vw, 2.4rem);
    align-items: start;
}

.mindset-expect-column .section-heading,
.mindset-fit-column .section-heading {
    max-width: none;
    margin-bottom: 1.25rem;
}

.mindset-expect-list,
.mindset-fit-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.mindset-expect-card,
.mindset-fit-card,
.mindset-story-card {
    position: relative;
    padding: 1.05rem;
    clip-path: var(--cut-corner);
}

.mindset-expect-card,
.mindset-fit-card {
    min-height: 184px;
    background: var(--color-white);
    border: 1px solid rgba(11,11,11,0.10);
    box-shadow: 0 16px 44px rgba(0,0,0,0.08);
}

.mindset-expect-card::before,
.mindset-fit-card::before,
.mindset-story-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 46%;
    height: 3px;
    background: var(--color-green-light);
}

.mindset-expect-card--you,
.mindset-fit-card--no {
    color: var(--color-white);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
        #1E1E1E;
    border-color: rgba(231,185,46,0.24);
}

.mindset-expect-card--you::before,
.mindset-fit-card--no::before {
    background: #E7B92E;
}

.mindset-expect-card h3,
.mindset-fit-card h3,
.mindset-story-card h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.04rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0;
}

.mindset-expect-card p,
.mindset-fit-card p,
.mindset-story-card p {
    margin: 0.58rem 0 0;
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.52;
}

.mindset-expect-card--you p,
.mindset-fit-card--no p {
    color: rgba(255,255,255,0.72);
}

.mindset-story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.mindset-story-card {
    min-height: 100%;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.9), rgba(246,247,246,0.94)),
        #FFFFFF;
    border: 1px solid rgba(11,11,11,0.10);
    box-shadow: 0 16px 44px rgba(0,0,0,0.08);
}

.mindset-story-card:nth-child(2n) {
    color: var(--color-white);
    background:
        linear-gradient(145deg, rgba(46,204,113,0.13), rgba(255,255,255,0.035)),
        #171717;
    border-color: rgba(126,217,87,0.26);
}

.mindset-story-card:nth-child(2n) p {
    color: rgba(255,255,255,0.74);
}

.mindset-story-card:nth-child(3n)::before {
    background: #236CFF;
}

.mindset-story-card:nth-child(2n)::before {
    background: #E7B92E;
}

.mindset-story-card strong {
    display: block;
    margin-top: 0.9rem;
    padding: 0.76rem 0.85rem;
    color: var(--color-black);
    background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
    font-weight: 900;
    line-height: 1.32;
}

@keyframes cta-scan {
    0%, 32% {
        transform: translateX(0);
        opacity: 0;
    }
    48% {
        opacity: 1;
    }
    100% {
        transform: translateX(310%);
        opacity: 0;
    }
}

/* Footer */

.site-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: rgba(255,255,255,0.74);
    background: var(--color-black);
    border-top: 1px solid rgba(46,204,113,0.22);
}

.site-footer::before {
    content: "";
    position: absolute;
    z-index: 0;
    right: 8%;
    bottom: 2.5rem;
    width: min(280px, 32vw);
    aspect-ratio: 1091 / 962;
    background: url("../assets/images/logo.png") center / contain no-repeat;
    opacity: 0.035;
    filter: grayscale(1);
    pointer-events: none;
}

.site-footer__grid,
.site-footer__bottom {
    position: relative;
    z-index: 1;
    width: min(100%, var(--container));
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.45fr) repeat(2, minmax(170px, 0.78fr)) minmax(260px, 1.05fr);
    gap: 2rem;
    padding-top: 4rem;
    padding-bottom: 3rem;
}

.site-footer__brand p {
    max-width: 34ch;
    margin: 1.2rem 0 0;
}

.site-brand--footer .site-brand__tag {
    color: rgba(255,255,255,0.62);
}

.site-footer h2 {
    margin: 0 0 1rem;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.98rem;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.site-footer a {
    color: rgba(255,255,255,0.74);
    text-decoration: none;
    transition: color 160ms ease;
}

.site-footer a:hover {
    color: var(--color-green-light);
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1.2rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.9rem;
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Module views */

.page-hero {
    padding: 5.5rem 1.25rem 4rem;
    color: var(--color-white);
    background:
        linear-gradient(rgba(126,217,87,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126,217,87,0.08) 1px, transparent 1px),
        linear-gradient(135deg, var(--color-black), var(--color-anthracite));
    background-size: 36px 36px, 36px 36px, auto;
}

.page-hero--compact {
    padding-bottom: 3.2rem;
}

.page-hero--article {
    padding-bottom: 4.2rem;
}

.page-hero h1 {
    max-width: 900px;
}

.page-hero p {
    color: rgba(255,255,255,0.74);
    font-size: 1.08rem;
}

.page-hero time,
.news-card time {
    display: inline-block;
    color: var(--color-green);
    font-size: 0.88rem;
    font-weight: 850;
}

.content-panel {
    width: min(100%, 880px);
    padding: 2rem;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
    box-shadow: 0 16px 60px rgba(0,0,0,0.08);
}

.home-content .content-panel {
    width: 100%;
}

.static-page__title {
    margin: 0 0 1rem;
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.15;
}

.static-page__content {
    color: #242424;
}

.static-page__content > *:first-child {
    margin-top: 0;
}

.static-page__content > *:last-child {
    margin-bottom: 0;
}

.static-page__content h2,
.static-page__content h3,
.static-page__content h4 {
    font-family: var(--font-heading);
    line-height: 1.18;
}

.static-page__content h2 {
    margin-top: 2.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(11,11,11,0.12);
    font-size: 1.72rem;
}

.static-page__content h3 {
    margin-top: 1.55rem;
    color: #087A3A;
    font-size: 1.22rem;
}

.static-page__content p,
.static-page__content li,
.static-page__content td,
.static-page__content th {
    line-height: 1.62;
}

.static-page__content ul,
.static-page__content ol {
    display: grid;
    gap: 0.42rem;
    margin: 1rem 0 1.35rem;
    padding-left: 1.35rem;
}

.static-page__content a {
    color: #087A3A;
    font-weight: 750;
}

.static-page__content .mw-text-section {
    position: relative;
    margin: 0 0 1.65rem;
    padding: 1.35rem;
    background:
        linear-gradient(rgba(46,204,113,0.065) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46,204,113,0.055) 1px, transparent 1px),
        #F8FBF8;
    background-size: 28px 28px, 28px 28px, auto;
    border: 1px solid rgba(46,204,113,0.18);
    clip-path: var(--cut-corner);
}

.static-page__content .mw-text-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 42%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-green), var(--color-green-light), transparent);
}

.static-page__content .mw-text-section--notice,
.static-page__content .mw-text-section--highlight {
    color: var(--color-white);
    background:
        linear-gradient(rgba(126,217,87,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126,217,87,0.07) 1px, transparent 1px),
        linear-gradient(135deg, var(--color-black), var(--color-anthracite));
    background-size: 30px 30px, 30px 30px, auto;
    border-color: rgba(126,217,87,0.26);
}

.static-page__content .mw-text-section__title {
    margin: 0 0 0.75rem;
    color: inherit;
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.1;
}

.static-page__content .mw-text-section__content > *:last-child {
    margin-bottom: 0;
}

.static-page__content .mw-text-section--notice p,
.static-page__content .mw-text-section--highlight p {
    color: rgba(255,255,255,0.78);
}

.static-page__content table {
    width: 100%;
    margin: 1rem 0 1.5rem;
    border-collapse: collapse;
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 10px 34px rgba(0,0,0,0.055);
}

.static-page__content th,
.static-page__content td {
    padding: 0.75rem;
    border: 1px solid var(--color-border-light);
    text-align: left;
    vertical-align: top;
}

.static-page__content th {
    color: var(--color-white);
    background: var(--color-anthracite);
    font-weight: 900;
}

.static-page__content td:first-child {
    width: 32%;
    color: #087A3A;
    font-weight: 900;
}

.news-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 2rem;
}

.news-categories a {
    padding: 0.55rem 0.75rem;
    color: var(--color-black);
    border: 1px solid var(--color-border-light);
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
}

.news-categories a:hover {
    border-color: var(--color-green);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.news-card {
    display: grid;
    min-height: 100%;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    clip-path: var(--cut-corner);
    box-shadow: 0 14px 42px rgba(0,0,0,0.06);
    overflow: hidden;
}

.news-card__image {
    display: block;
    aspect-ratio: 16 / 9;
    background: var(--color-anthracite);
    overflow: hidden;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.news-card:hover .news-card__image img {
    transform: scale(1.035);
}

.news-card__body {
    padding: 1.3rem;
}

.news-card h2 {
    margin: 0.55rem 0 0;
    font-family: var(--font-heading);
    font-size: 1.18rem;
    line-height: 1.22;
}

.news-card h2 a {
    text-decoration: none;
}

.news-card p {
    margin: 0.75rem 0 1rem;
    color: var(--color-muted);
}

.empty-state {
    color: var(--color-muted);
}

.back-link {
    display: inline-flex;
    margin-bottom: 1.2rem;
    color: var(--color-green-light);
    font-weight: 850;
    text-decoration: none;
}

.back-link::before {
    content: "<";
    margin-right: 0.4rem;
}

.news-article__inner {
    display: grid;
    justify-items: center;
}

.news-article__image {
    width: min(100%, 920px);
    margin: 0 0 2rem;
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.news-article__image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.news-article__back {
    width: min(100%, 880px);
    margin: 1.5rem 0 0;
}

/* Responsive */

@media (max-width: 1380px) {
    .problem-flow__desktop {
        grid-template-columns: minmax(500px, 1.1fr) minmax(285px, 0.62fr) minmax(285px, 0.68fr);
        gap: 1.3rem;
    }

    .problem-flow__problems {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: auto;
        gap: 0.9rem;
        padding: 0;
    }

    .problem-flow__problems .problem-flip-card:nth-child(1),
    .problem-flow__problems .problem-flip-card:nth-child(2),
    .problem-flow__problems .problem-flip-card:nth-child(3),
    .problem-flow__problems .problem-flip-card:nth-child(4),
    .problem-flow__problems .problem-flip-card:nth-child(5),
    .problem-flow__problems .problem-flip-card:nth-child(6) {
        grid-column: auto;
        grid-row: auto;
        min-height: 190px;
        transform: none;
    }
}

@media (max-width: 1180px) {
    .problem-flow__desktop {
        grid-template-columns: minmax(420px, 1fr) minmax(260px, 0.7fr) minmax(240px, 0.68fr);
        gap: 1rem;
        min-height: 720px;
    }

    .problem-flow__problems {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.9rem;
    }

    .problem-flow__problems .problem-flip-card {
        min-height: 190px;
    }

    .problem-flow__center-card {
        min-height: 350px;
        padding: 1.35rem;
    }
}

@media (max-width: 1180px) {
    .service-grid,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1024px) {
    .problem-flow__desktop {
        display: none;
    }

    .problem-flow__mobile {
        display: block;
    }

    .problem-flow__heading {
        margin-bottom: 2rem;
    }

    .hero-section {
        min-height: auto;
        padding-top: 5.5rem;
    }

    .hero-section__inner {
        grid-template-columns: 1fr;
        gap: 2.6rem;
        min-height: 0;
    }

    .hero-section h1 {
        font-size: 3.45rem;
    }

    .hero-section__content {
        order: 1;
        grid-column: 1;
        max-width: 760px;
        justify-self: start;
    }

    .hero-section__lead {
        margin-top: 1.4rem;
    }

    .hero-system {
        display: none;
    }

    .about-section__grid,
    .cta-band__inner,
    .case-teaser,
    .case-audience-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        padding: 0 0 0 2rem;
    }

    .process-timeline::before,
    .process-timeline::after {
        top: 0;
        left: 0.6rem;
        width: 2px;
    }

    .process-timeline::before {
        bottom: 0;
        right: auto;
        height: auto;
    }

    .process-timeline::after {
        height: var(--process-progress);
        max-height: 100%;
        transition: height 420ms ease;
    }

    .process-step::before {
        top: 1.25rem;
        left: -1.85rem;
    }

    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    :root {
        --header-height: 68px;
    }

    .site-header__inner {
        position: relative;
    }

    .site-brand {
        margin-right: 0;
    }

    .menu-toggle {
        display: inline-block;
    }

    .site-header__panel {
        position: absolute;
        top: 100%;
        left: 1.25rem;
        right: 1.25rem;
        display: grid;
        align-items: stretch;
        justify-content: stretch;
        gap: 1rem;
        max-height: 0;
        padding: 0 1rem;
        overflow: hidden;
        background: var(--color-anthracite);
        border: 0 solid rgba(46,204,113,0.28);
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: max-height 220ms ease, padding 220ms ease, border-width 220ms ease, opacity 160ms ease, visibility 160ms ease;
    }

    .site-header.is-menu-open .site-header__panel {
        max-height: calc(100vh - var(--header-height) - 1rem);
        padding: 1rem;
        border-width: 1px;
        overflow-y: auto;
        box-shadow: var(--shadow-panel);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .site-nav__list,
    .site-nav__sublist {
        display: grid;
        gap: 0.2rem;
    }

    .site-nav__link {
        width: 100%;
        min-height: 48px;
        justify-content: flex-start;
        white-space: normal;
    }

    .site-nav__sublist {
        position: static;
        min-width: 0;
        padding: 0.25rem 0 0.25rem 1rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .site-header__cta--desktop {
        display: none;
    }

    .site-header__phone--desktop {
        display: none;
    }

    .site-header__phone--mobile {
        display: inline-flex;
        width: 100%;
        justify-content: center;
    }

    .site-header__cta--mobile {
        display: inline-flex;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4.25rem 1rem;
    }

    .problem-flow__principle {
        display: block;
    }

    .problem-flow__mobile-grid {
        grid-template-columns: 1fr;
    }

    .case-audience-grid {
        gap: 0.75rem;
    }

    .problem-flow__mobile .problem-flip-card {
        min-height: 280px;
    }

    .section-heading h2,
    .about-section h2,
    .case-teaser h2,
    .cta-band h2,
    .page-hero h1 {
        font-size: 2.05rem;
    }

    .hero-section {
        padding: 4.5rem 1rem 4rem;
    }

    .hero-section h1 {
        font-size: 2.7rem;
    }

    .hero-section__lead {
        font-size: 1.12rem;
    }

    .hero-system {
        min-height: 330px;
    }

    .service-grid,
    .stats-grid,
    .news-grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .stats-section__inner,
    .content-panel,
    .case-teaser,
    .cta-band__inner {
        padding: 1.35rem;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .problem-flow__mobile-heading h3 {
        font-size: 1.65rem;
    }

    .problem-flow__mobile .problem-flip-card {
        min-height: 305px;
    }

    .problem-flow__mobile .problem-flip-card__face {
        padding: 0.95rem;
    }

    .site-header__inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .site-brand__tag {
        display: none;
    }

    .site-brand__name {
        font-size: 1.36rem;
    }

    .site-brand__mark {
        width: 44px;
        height: 40px;
    }

    .site-brand__mark--image {
        width: 44px;
        height: 40px;
    }

    .site-header__panel {
        left: 1rem;
        right: 1rem;
    }

    .hero-section h1 {
        font-size: 2.22rem;
    }

    .hero-section__actions,
    .hero-values {
        display: grid;
    }

    .hero-section__actions .button {
        width: 100%;
    }

    .hero-system {
        min-height: 270px;
    }

    .cta-band__watermark,
    .site-footer::before {
        display: none;
    }
}

/* Connected network page responsive */

@media (max-width: 1180px) {
    .network-hero__inner {
        grid-template-columns: minmax(0, 1fr) minmax(440px, 0.78fr);
        gap: 2rem;
    }

    .hero-flow {
        min-height: 430px;
    }

    .hero-flow__node {
        min-width: 112px;
        max-width: 146px;
        padding: 0.62rem 0.66rem;
    }

    .hero-flow__node--output {
        width: min(31%, 158px);
    }

    .hero-flow__core {
        min-width: 185px;
        min-height: 150px;
        font-size: 0.98rem;
    }

    .network-problem-map {
        min-height: 1040px;
    }

    .network-card--problem {
        width: min(31%, 310px);
    }

    .network-card--core {
        width: min(46%, 500px);
    }

    .network-problem-map__node--2 {
        left: 34%;
    }

    .network-problem-map__node--4 {
        top: 18.5rem;
    }

    .network-problem-map__node--8 {
        top: 19.5rem;
    }

    .network-result-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .network-result-grid::before {
        display: none;
    }

    .web-presence-page .network-service-grid,
    .web-presence-page .network-result-grid,
    .company-operations-page .network-service-grid,
    .company-operations-page .network-result-grid,
    .it-partnership-page .network-service-grid,
    .it-partnership-page .network-result-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .it-partnership-page .network-process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mindset-page .network-process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mindset-story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-topic-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .company-operations-page .network-problem-map {
        min-height: 1020px;
    }

    .company-operations-page .network-card--problem {
        width: min(29%, 302px);
    }

    .company-operations-page .network-problem-map__node--3 {
        top: 14rem;
        right: 0;
    }

    .company-operations-page .network-problem-map__node--4 {
        top: 28rem;
    }

    .company-operations-page .network-problem-map__node--5 {
        top: auto;
        bottom: 13rem;
    }

    .company-operations-page .network-problem-map__node--8 {
        right: 36%;
    }

    .company-operations-page .network-problem-map {
        display: grid;
        gap: 0.85rem;
        min-height: 0;
        padding-left: 1.55rem;
    }

    .company-operations-page .network-problem-map::before {
        content: "";
        position: absolute;
        top: 0.4rem;
        bottom: 0.4rem;
        left: 0.42rem;
        width: 3px;
        background: linear-gradient(180deg, #236CFF, #E7B92E, var(--color-green-light), #F07822);
    }

    .company-operations-page .network-problem-map__connectors {
        display: none;
    }

    .company-operations-page .network-problem-map__node,
    .company-operations-page .network-problem-map__center,
    .company-operations-page .network-card--core {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        min-height: 0;
        transform: none;
    }

    .company-operations-page .network-card--problem,
    .company-operations-page .network-card--core {
        width: 100%;
    }

    .company-operations-page .network-card--problem::after,
    .company-operations-page .network-card--core::after {
        content: "";
        position: absolute;
        top: 1.35rem;
        left: -1.27rem;
        width: 12px;
        height: 12px;
        background: var(--color-green-light);
        border: 2px solid var(--color-black);
        transform: rotate(45deg);
    }
}

@media (max-width: 1024px) {
    .network-hero__inner,
    .network-cost-card,
    .network-split,
    .it-fit-grid,
    .it-terms-grid,
    .contact-work-grid,
    .mindset-expect-grid,
    .mindset-fit-grid {
        grid-template-columns: 1fr;
    }

    .contact-side-stack {
        position: relative;
        top: auto;
    }

    .network-hero__diagram:not(.hero-flow) {
        display: none;
    }

    .network-hero__diagram.hero-flow {
        display: none;
    }

    .network-split::before {
        top: 50%;
        left: 1.4rem;
        right: auto;
        width: 4px;
        height: 70px;
        background: linear-gradient(180deg, #236CFF, var(--color-green-light), #E7B92E);
    }

    .network-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .web-presence-page .network-service-grid,
    .web-presence-page .network-result-grid,
    .company-operations-page .network-service-grid,
    .company-operations-page .network-result-grid,
    .it-partnership-page .network-service-grid,
    .it-partnership-page .network-result-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .network-service-grid::before {
        display: none;
    }
}

@media (max-width: 1024px) {
    .network-problem-map {
        display: grid;
        gap: 0.85rem;
        min-height: 0;
        padding-left: 1.55rem;
    }

    .network-problem-map::before {
        content: "";
        position: absolute;
        top: 0.4rem;
        bottom: 0.4rem;
        left: 0.42rem;
        width: 3px;
        background: linear-gradient(180deg, #236CFF, #E7B92E, var(--color-green-light), #F07822);
    }

    .network-problem-map__connectors {
        display: none;
    }

    .network-problem-map__node,
    .network-problem-map__center,
    .network-card--core {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        min-height: 0;
        transform: none;
    }

    .network-card--problem,
    .network-card--core {
        width: 100%;
    }

    .company-operations-page .network-problem-map {
        min-height: 0;
    }

    .company-operations-page .network-card--problem,
    .company-operations-page .network-card--core {
        width: 100%;
        min-height: 0;
    }

    .company-operations-page .network-problem-map__node {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        transform: none;
    }

    .network-card--problem::after,
    .network-card--core::after,
    .network-step::after {
        content: "";
        position: absolute;
        top: 1.35rem;
        left: -1.27rem;
        width: 12px;
        height: 12px;
        background: var(--color-green-light);
        border: 2px solid var(--color-black);
        transform: rotate(45deg);
    }

    .network-process-grid {
        grid-template-columns: 1fr;
        padding-left: 1.55rem;
    }

    .network-process-grid::before {
        top: 0.35rem;
        bottom: 0.35rem;
        left: 0.42rem;
        right: auto;
        width: 3px;
        height: auto;
        background: linear-gradient(180deg, #236CFF, #E7B92E, var(--color-green-light), #F07822);
    }

    .network-step {
        min-height: 0;
    }
}

@media (max-width: 768px) {
    .network-hero {
        padding: 4.8rem 1rem 4.25rem;
    }

    .network-hero h1 {
        font-size: 2.6rem;
    }

    .network-hero__diagram {
        min-height: 320px;
    }

    .hero-flow {
        min-height: 390px;
    }

    .hero-flow__node {
        min-width: 106px;
        max-width: 138px;
        min-height: 44px;
        padding: 0.56rem 0.6rem;
        font-size: 0.72rem;
    }

    .hero-flow__node--output {
        width: min(31%, 150px);
    }

    .hero-flow__core {
        min-width: 172px;
        min-height: 132px;
        padding: 0.88rem;
        font-size: 0.94rem;
    }

    .network-hero-node {
        min-width: 116px;
        min-height: 56px;
        padding: 0.65rem;
        font-size: 0.76rem;
    }

    .network-hero-node--problem {
        top: 1.2rem;
        left: 1rem;
    }

    .network-hero-node--map {
        top: 2rem;
        right: 1rem;
    }

    .network-hero-node--core {
        min-width: 158px;
        min-height: 112px;
    }

    .network-hero-node--result {
        right: 1rem;
        bottom: 1.2rem;
    }

    .network-section {
        padding: 4.25rem 1rem;
    }

    .network-section__heading h2,
    .network-panel h2,
    .network-cost-card h2,
    .network-final-cta h2 {
        font-size: 2rem;
    }

    .network-service-grid,
    .network-result-grid {
        grid-template-columns: 1fr;
    }

    .web-presence-page .network-service-grid,
    .web-presence-page .network-result-grid,
    .company-operations-page .network-service-grid,
    .company-operations-page .network-result-grid,
    .it-partnership-page .network-service-grid,
    .it-partnership-page .network-result-grid {
        grid-template-columns: 1fr;
    }

    .it-fit-list {
        grid-template-columns: 1fr;
    }

    .it-terms-card__value {
        display: block;
    }

    .mindset-expect-list,
    .mindset-fit-list,
    .mindset-story-grid {
        grid-template-columns: 1fr;
    }

    .contact-topic-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-topic-grid::before,
    .contact-work-section::before {
        display: none;
    }

    .contact-topic-card {
        min-height: 0;
    }

    .contact-field--half {
        grid-column: 1 / -1;
    }

    .network-cost-card strong {
        min-height: 0;
        place-items: start;
    }

    .network-final-cta::before,
    .network-final-cta::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-flow {
        display: grid;
        gap: 0.85rem;
        min-height: 0;
        padding: 1rem;
    }

    .hero-flow::before {
        background-size: 20px 20px, 20px 20px, auto;
    }

    .hero-flow::after,
    .hero-flow__wires {
        display: none;
    }

    .hero-flow__nodes {
        display: grid;
        gap: 0.52rem;
    }

    .hero-flow__nodes--inputs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-flow__input--5 {
        grid-column: 1 / -1;
    }

    .hero-flow__nodes--outputs {
        grid-template-columns: 1fr;
    }

    .hero-flow__node,
    .hero-flow__core {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        max-width: none;
        min-width: 0;
        min-height: 0;
        transform: none;
    }

    .hero-flow__node {
        justify-items: start;
        padding: 0.72rem 0.76rem;
        font-size: 0.78rem;
        text-align: left;
    }

    .hero-flow__core {
        justify-items: start;
        gap: 0.12rem;
        min-height: 0;
        padding: 0.95rem;
        font-size: 1.02rem;
        text-align: left;
    }

    .hero-flow__core::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .network-hero h1 {
        font-size: 2.18rem;
    }

    .network-hero__lead {
        font-size: 1rem;
    }

    .network-hero__actions,
    .network-final-cta__actions {
        display: grid;
    }

    .network-hero__actions .button,
    .network-final-cta__actions .button {
        width: 100%;
    }

    .network-hero__diagram {
        min-height: 285px;
    }

    .hero-flow {
        min-height: 0;
    }

    .network-hero-node--map {
        top: 5.2rem;
        right: 0.8rem;
    }

    .network-hero-node--core {
        min-width: 142px;
        min-height: 104px;
    }

    .network-card,
    .network-step,
    .network-panel,
    .network-cost-card,
    .network-final-cta {
        padding: 1rem;
    }
}

/* Reduced motion and print */

@media (prefers-reduced-motion: reduce) {
    html:not(.motion-override) *,
    html:not(.motion-override) *::before,
    html:not(.motion-override) *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    html:not(.motion-override) .reveal {
        opacity: 1;
        transform: none;
    }

    html:not(.motion-override) .button:hover,
    html:not(.motion-override) .service-card:hover,
    html:not(.motion-override) .news-card:hover .news-card__image img {
        transform: none;
    }

    html:not(.motion-override) .problem-flip-card__rotor,
    html:not(.motion-override) .problem-flip-card.is-flipped .problem-flip-card__rotor,
    html:not(.motion-override) .problem-flip-card__face,
    html:not(.motion-override) .problem-flip-card__face--back {
        transform: none !important;
    }

    html:not(.motion-override) .problem-flip-card__face {
        backface-visibility: visible;
    }

    html:not(.motion-override) .problem-flip-card__face--back {
        opacity: 0;
        visibility: hidden;
    }

    html:not(.motion-override) .problem-flip-card.is-flipped .problem-flip-card__face--front {
        opacity: 0;
        visibility: hidden;
    }

    html:not(.motion-override) .problem-flip-card.is-flipped .problem-flip-card__face--back {
        opacity: 1;
        visibility: visible;
    }

    html:not(.motion-override) .hero-pulse,
    html:not(.motion-override) .problem-flow__connector-pulse,
    html:not(.motion-override) .hero-flow__wire--input,
    html:not(.motion-override) .hero-flow__wire--output {
        animation-duration: 16s !important;
        animation-iteration-count: infinite !important;
    }

    html:not(.motion-override) .problem-flow__connector-pulse {
        stroke-dasharray: 0.9 100;
    }

}

@media print {
    .site-header,
    .site-footer,
    .hero-system,
    .cta-band {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    .section,
    .page-hero {
        padding: 1rem 0;
        color: #000;
        background: #fff;
    }

    a {
        text-decoration: underline;
    }
}
