@font-face {
    font-family: "Gotham Pro";
    src: url("/static/assets/fonts/GothamPro/GothamPro.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham Pro";
    src: url("/static/assets/fonts/GothamPro/GothamPro-Medium.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham Pro";
    src: url("/static/assets/fonts/GothamPro/GothamPro-Bold.woff") format("woff");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Alumni Sans";
    src: url("/static/assets/fonts/Alumni_Sans/AlumniSans-SemiBold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --ink: #101820;
    --ink-2: #152230;
    --ink-3: #203040;
    --paper: #f5f1e8;
    --paper-2: #ebe6db;
    --white: #ffffff;
    --text: #17202a;
    --text-soft: #66717d;
    --text-inverse: #f8f3ea;
    --muted-inverse: #b9c4ce;
    --line: rgba(18, 28, 38, 0.14);
    --line-dark: rgba(255, 255, 255, 0.14);
    --orange: #f06f22;
    --orange-2: #c94f13;
    --amber: #ffb15c;
    --steel: #7d8b97;
    --green: #56c271;
    --shadow-soft: 0 24px 70px rgba(16, 24, 32, 0.14);
    --shadow-dark: 0 28px 90px rgba(0, 0, 0, 0.36);
    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --container: 1220px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.gt-page {
    margin: 0;
    width: 100%;
    max-width: 100vw;
    color: var(--text);
    background:
        radial-gradient(circle at 14% 8%, rgba(240, 111, 34, 0.08), transparent 26rem),
        linear-gradient(180deg, #fbf8f1 0%, var(--paper) 100%);
    font-family: "Gotham Pro", "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.gt-page.is-locked {
    overflow: hidden;
}

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

a {
    color: inherit;
}

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

button:disabled {
    cursor: wait;
    opacity: 0.7;
}

:focus-visible {
    outline: 3px solid rgba(240, 111, 34, 0.52);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 16px;
    z-index: 3000;
    padding: 12px 16px;
    border-radius: 999px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

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

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

.section {
    padding: 118px 0;
}

.section-dark {
    position: relative;
    color: var(--text-inverse);
    background:
        radial-gradient(circle at 78% 14%, rgba(240, 111, 34, 0.22), transparent 24rem),
        radial-gradient(circle at 14% 78%, rgba(125, 139, 151, 0.18), transparent 26rem),
        linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 52%, #0b1219 100%);
    overflow: hidden;
}

.section-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 86%);
}

.hero__blueprint {
    position: absolute;
    inset: auto -12vw -18vw auto;
    width: 44vw;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    opacity: 0.55;
}

.hero__blueprint::before,
.hero__blueprint::after {
    content: "";
    position: absolute;
    inset: 15%;
    border: 1px dashed rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.hero__blueprint::after {
    inset: 31%;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(16, 24, 32, 0.72);
    border-bottom: 1px solid var(--line-dark);
    backdrop-filter: blur(18px);
    transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(16, 24, 32, 0.94);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.site-header__inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    min-width: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: max-content;
    color: var(--text-inverse);
    text-decoration: none;
}

.brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    padding: 4px;
    border-radius: 14px;
    background: var(--white);
}

.brand strong {
    display: block;
    font-size: 19px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.brand small {
    display: block;
    margin-top: 5px;
    color: #aeb8c3;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav a,
.header-cta {
    color: #dbe3eb;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.site-nav a {
    position: relative;
    color: #c2ccd6;
    transition: color 160ms ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--white);
}

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

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(240, 111, 34, 0.55);
    border-radius: 999px;
    color: var(--white);
    background: rgba(240, 111, 34, 0.16);
    transition: background 160ms ease, transform 160ms ease;
}

.header-cta:hover {
    background: rgba(240, 111, 34, 0.26);
    transform: translateY(-1px);
}

.site-nav__toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line-dark);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    padding: 10px;
    cursor: pointer;
}

.site-nav__toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 99px;
    background: var(--white);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button--primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
    box-shadow: 0 18px 40px rgba(240, 111, 34, 0.28);
}

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

.button--outline {
    color: var(--ink);
    border-color: rgba(16, 24, 32, 0.18);
    background: rgba(255, 255, 255, 0.64);
}

.hero {
    min-height: min(100svh, 980px);
    padding: 142px 0 86px;
    display: flex;
    align-items: center;
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    align-items: center;
    gap: clamp(44px, 5.2vw, 82px);
    min-width: 0;
}

.hero__content {
    max-width: 640px;
    min-width: 0;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    margin-bottom: 24px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 999px;
    color: var(--amber);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.hero__eyebrow svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero__eyebrow span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.policy-hero h1 {
    margin: 0;
    font-family: "Alumni Sans", "Gotham Pro", sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.hero h1 {
    max-width: 640px;
    font-size: clamp(56px, 5.7vw, 88px);
    line-height: 0.88;
}

.hero p {
    max-width: 590px;
    margin: 30px 0 0;
    color: #d0d8df;
    font-size: clamp(18px, 1.35vw, 21px);
    overflow-wrap: break-word;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.hero__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    max-width: 590px;
    margin: 50px 0 0;
    padding: 0;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-md);
    background: var(--line-dark);
    overflow: hidden;
}

.hero__facts div {
    padding: 22px;
    background: rgba(255, 255, 255, 0.055);
}

.hero__facts dt {
    margin: 0;
    color: var(--white);
    font-family: "Alumni Sans", "Gotham Pro", sans-serif;
    font-size: 44px;
    line-height: 0.9;
}

.hero__facts dd {
    margin: 9px 0 0;
    color: var(--muted-inverse);
    font-size: 13px;
}

.hero__visual {
    position: relative;
    justify-self: end;
    width: min(100%, 640px);
}

.technical-frame {
    position: relative;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-dark);
}

.technical-frame::before {
    content: "";
    position: absolute;
    inset: 27px;
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 24px;
}

.technical-frame img {
    width: 100%;
    aspect-ratio: 1.08 / 1;
    object-fit: cover;
    border-radius: 24px;
    filter: saturate(0.82) contrast(1.08);
}

.frame-corner {
    position: absolute;
    z-index: 3;
    width: 88px;
    height: 88px;
    border-color: var(--orange);
    opacity: 0.92;
}

.frame-corner--top {
    top: 26px;
    left: 26px;
    border-top: 2px solid;
    border-left: 2px solid;
}

.frame-corner--bottom {
    right: 26px;
    bottom: 26px;
    border-right: 2px solid;
    border-bottom: 2px solid;
}

.hero-note {
    position: absolute;
    z-index: 4;
    display: grid;
    gap: 3px;
    max-width: 280px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    color: var(--white);
    background: rgba(16, 24, 32, 0.78);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
}

.hero-note span {
    color: var(--amber);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-note strong {
    font-size: 14px;
}

.hero-note--top {
    top: 34px;
    right: -28px;
}

.hero-note--bottom {
    left: -34px;
    bottom: 38px;
}

.proof-strip {
    position: relative;
    z-index: 3;
    margin-top: -1px;
    background: var(--ink);
    color: var(--text-inverse);
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

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

.proof-strip__grid div {
    display: grid;
    gap: 8px;
    min-height: 128px;
    padding: 28px 26px;
    border-right: 1px solid var(--line-dark);
}

.proof-strip__grid div:first-child {
    border-left: 1px solid var(--line-dark);
}

.proof-strip span {
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.proof-strip strong {
    max-width: 210px;
    font-size: 18px;
    line-height: 1.25;
}

.section-heading {
    max-width: 860px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-heading--left {
    margin-left: 0;
    text-align: left;
}

.section-heading--split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
    gap: 44px;
    align-items: end;
    text-align: left;
}

.section-heading span {
    display: block;
    margin-bottom: 13px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-heading h2 {
    color: inherit;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.92;
}

.section-heading p {
    margin: 22px 0 0;
    color: var(--text-soft);
    font-size: 18px;
}

.section-dark .section-heading p,
.designer__content p,
.knowledge .section-heading p {
    color: #c8d2dc;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 344px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.74)),
        var(--white);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: auto -30% -36% 30%;
    height: 160px;
    background: radial-gradient(circle, rgba(240, 111, 34, 0.16), transparent 70%);
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(240, 111, 34, 0.34);
    box-shadow: var(--shadow-soft);
}

.service-card__index {
    color: var(--steel);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.service-card svg {
    width: 48px;
    height: 48px;
    margin: 34px 0 28px;
    fill: none;
    stroke: var(--orange);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.service-card h3,
.project-card h3,
.contact-form h3 {
    margin: 0;
    color: inherit;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.service-card p {
    position: relative;
    z-index: 1;
    margin: 17px 0 0;
    color: var(--text-soft);
    font-size: 15px;
}

.designer__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(360px, 0.94fr) minmax(0, 1fr);
    align-items: center;
    gap: 70px;
}

.designer {
    padding-bottom: 82px;
}

.designer__media {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.07);
    padding: 12px;
    box-shadow: var(--shadow-dark);
}

.designer__media img {
    width: 100%;
    aspect-ratio: 1.15 / 1;
    object-fit: cover;
    border-radius: 24px;
}

.designer__metric {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    display: grid;
    gap: 5px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    background: rgba(16, 24, 32, 0.78);
    backdrop-filter: blur(12px);
}

.designer__metric strong {
    color: var(--white);
    font-size: 18px;
}

.designer__metric span {
    color: var(--muted-inverse);
    font-size: 13px;
}

.designer__content p {
    margin: 24px 0 0;
    font-size: 18px;
}

.check-list {
    display: grid;
    gap: 13px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 32px;
    color: #eef4fa;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52em;
    width: 16px;
    height: 10px;
    border-left: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: rotate(-45deg);
}

.pricing-compact {
    position: relative;
    z-index: 1;
    margin-top: 58px;
}

.pricing-compact__head {
    display: grid;
    grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr) minmax(280px, 0.7fr);
    gap: 24px;
    align-items: end;
    margin-bottom: 18px;
}

.pricing-compact__head span {
    color: var(--amber);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.pricing-compact__head h2 {
    margin: 0;
    color: var(--white);
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.pricing-compact__head p {
    margin: 0;
    color: var(--muted-inverse);
    font-size: 14px;
    line-height: 1.45;
}

.pricing-compact__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.tariff-card {
    display: grid;
    align-content: start;
    min-height: 184px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.tariff-card:hover {
    transform: translateY(-4px);
    border-color: rgba(240, 111, 34, 0.44);
    background: rgba(255, 255, 255, 0.1);
}

.tariff-card--accent {
    border-color: rgba(240, 111, 34, 0.5);
    background: linear-gradient(180deg, rgba(240, 111, 34, 0.18), rgba(255, 255, 255, 0.07));
}

.tariff-card > span {
    min-height: 34px;
    color: var(--amber);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tariff-card strong {
    display: block;
    margin-top: 13px;
    color: var(--white);
    font-family: "Alumni Sans", "Gotham Pro", sans-serif;
    font-size: 34px;
    line-height: 0.95;
}

.tariff-card > small {
    display: block;
    margin-top: 5px;
    color: var(--muted-inverse);
    font-size: 12px;
}

.tariff-card dl {
    display: grid;
    gap: 8px;
    margin: 18px 0 0;
}

.tariff-card dl div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tariff-card dt,
.tariff-card dd {
    margin: 0;
    font-size: 12px;
    line-height: 1.25;
}

.tariff-card dt {
    color: #aeb9c3;
}

.tariff-card dd {
    color: #edf3f8;
    font-weight: 800;
    text-align: right;
}

.split,
.supply__grid,
.knowledge__grid,
.contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1fr);
    gap: 66px;
    align-items: start;
}

.supply {
    background:
        linear-gradient(90deg, rgba(16, 24, 32, 0.045) 1px, transparent 1px),
        linear-gradient(0deg, rgba(16, 24, 32, 0.04) 1px, transparent 1px),
        var(--paper);
    background-size: 64px 64px;
}

.supply__grid {
    grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
    align-items: start;
}

.supply__copy .section-heading {
    margin-bottom: 28px;
}

.supply-features {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.supply-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    padding: 14px 16px;
    border: 1px solid rgba(16, 24, 32, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.68);
    font-weight: 800;
}

.supply-feature svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    color: var(--orange);
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.supply__panel {
    display: grid;
    gap: 22px;
}

.process-list {
    display: grid;
    gap: 14px;
}

.process-item {
    position: relative;
    display: grid;
    grid-template-columns: 84px 1fr;
    align-items: center;
    min-height: 104px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.process-item::before {
    content: "";
    position: absolute;
    left: 82px;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background: var(--line);
}

.process-item strong {
    color: var(--orange);
    font-family: "Alumni Sans", "Gotham Pro", sans-serif;
    font-size: 42px;
    line-height: 1;
}

.process-item span {
    padding-left: 20px;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.25;
}

.supply-brands {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.74) inset;
}

.supply-brands h3 {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: 22px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.brand-item {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 104px;
    padding: 14px;
    border: 1px solid rgba(16, 24, 32, 0.12);
    border-radius: 16px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.brand-item:hover {
    transform: translateY(-3px);
    border-color: rgba(240, 111, 34, 0.36);
    box-shadow: 0 14px 34px rgba(16, 24, 32, 0.1);
}

.brand-item img {
    width: 76px;
    height: 54px;
    object-fit: contain;
}

.brand-item span {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.brand-item strong {
    color: var(--ink);
    font-size: 14px;
    line-height: 1.25;
}

.brand-item small {
    color: var(--orange-2);
    font-size: 12px;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.portfolio {
    background: #efe9dc;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(270px, auto);
    gap: 18px;
}

.project-card {
    position: relative;
    min-height: 360px;
    border-radius: var(--radius-md);
    color: var(--white);
    background: var(--ink);
    overflow: hidden;
    box-shadow: 0 20px 54px rgba(16, 24, 32, 0.18);
}

.project-card--large {
    grid-column: span 2;
    grid-row: span 2;
}

.project-card--wide {
    grid-column: span 2;
}

.project-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    opacity: 0.78;
    transform: scale(1.01);
    transition: transform 260ms ease, opacity 260ms ease;
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 30%, rgba(16, 24, 32, 0.9) 100%),
        linear-gradient(135deg, rgba(240, 111, 34, 0.18), transparent 48%);
}

.project-card:hover img {
    transform: scale(1.055);
    opacity: 0.92;
}

.project-card div {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 24px;
}

.project-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--amber);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.project-card h3 {
    max-width: 540px;
}

.knowledge__grid {
    position: relative;
    z-index: 1;
    align-items: center;
}

.knowledge-list {
    display: grid;
    gap: 14px;
}

.knowledge-list a {
    display: grid;
    gap: 7px;
    min-height: 92px;
    padding: 22px 24px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-md);
    color: var(--white);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.07);
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.knowledge-list a.knowledge-link {
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    column-gap: 16px;
}

.knowledge-list a:hover {
    transform: translateX(6px);
    border-color: rgba(240, 111, 34, 0.45);
    background: rgba(255, 255, 255, 0.1);
}

.knowledge-list > a:not(.knowledge-link) > span,
.knowledge-link__label {
    color: var(--amber);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.knowledge-link__body {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.knowledge-link__icon {
    width: 46px;
    height: 46px;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    color: var(--white);
    fill: currentColor;
    background: rgba(255, 255, 255, 0.08);
}

.knowledge-list strong {
    font-size: 18px;
    line-height: 1.25;
}

.contact {
    background:
        radial-gradient(circle at 78% 18%, rgba(240, 111, 34, 0.12), transparent 24rem),
        linear-gradient(180deg, #f8f4ec, var(--paper));
}

.contact-details {
    display: grid;
    gap: 13px;
    margin-top: 36px;
    font-style: normal;
    color: var(--text-soft);
}

.contact-details a {
    color: var(--text);
    font-weight: 800;
    text-decoration: none;
}

.contact-form {
    padding: 34px;
    border: 1px solid rgba(16, 24, 32, 0.14);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
}

.contact-form h3 {
    margin-bottom: 20px;
    font-size: 28px;
}

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

.form-row label {
    color: var(--ink-3);
    font-size: 13px;
    font-weight: 800;
}

.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    min-height: 52px;
    padding: 13px 16px;
    border: 1px solid rgba(16, 24, 32, 0.16);
    border-radius: 16px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.94);
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-row textarea {
    min-height: 128px;
    resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    border-color: rgba(240, 111, 34, 0.72);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(240, 111, 34, 0.13);
}

.consent {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    margin: 19px 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.45;
}

.consent input {
    width: 19px;
    height: 19px;
    margin-top: 2px;
    accent-color: var(--orange);
}

.consent a {
    color: var(--text);
    font-weight: 800;
}

.captcha-row {
    min-height: 82px;
    margin-bottom: 20px;
}

.site-footer {
    padding: 54px 0 26px;
    color: #d5dde5;
    background: #0b1118;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) 1fr 1fr;
    gap: 42px;
}

.site-footer strong {
    display: block;
    color: var(--white);
    font-size: 24px;
}

.site-footer p {
    max-width: 560px;
    margin: 12px 0 0;
    color: #98a5b2;
}

.site-footer nav,
.site-footer__contacts {
    display: grid;
    gap: 10px;
    align-content: start;
}

.site-footer a {
    color: #d5dde5;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--white);
}

.site-footer__bottom {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #8a96a3;
    font-size: 13px;
}

.toast {
    position: fixed;
    top: 96px;
    right: 24px;
    z-index: 2000;
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 13px;
    width: min(430px, calc(100% - 32px));
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    color: var(--text);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transform: translateX(calc(100% + 48px));
    transition: transform 220ms ease;
}

.toast.show {
    transform: translateX(0);
}

.toast__icon {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    border-radius: 50%;
    background: var(--green);
}

.toast.is-error .toast__icon {
    background: var(--orange);
}

.toast strong,
.toast small {
    display: block;
}

.toast small {
    color: var(--text-soft);
}

.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2100;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1010px;
    margin: 0 auto;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    color: var(--text-inverse);
    background: rgba(16, 24, 32, 0.92);
    box-shadow: var(--shadow-dark);
    backdrop-filter: blur(16px);
}

.cookie-banner.is-visible {
    display: flex;
}

.cookie-banner p {
    min-width: 0;
    margin: 0;
    color: #d2d9df;
}

.cookie-banner div {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.cookie-banner a {
    color: var(--amber);
    font-size: 13px;
    font-weight: 800;
}

.cookie-banner .button {
    min-width: 128px;
}

.policy-page {
    background: var(--paper);
}

.policy-hero {
    padding: 154px 0 70px;
}

.policy-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.policy-hero span {
    display: block;
    margin-bottom: 16px;
    color: var(--amber);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.policy-hero h1 {
    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.92;
}

.policy-hero p {
    max-width: 720px;
    margin: 24px auto 0;
    color: #d0d8df;
    font-size: 18px;
}

.policy-document {
    padding: 70px 0 112px;
}

.policy-document article {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(26px, 5vw, 56px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
}

.policy-document h2 {
    margin: 38px 0 14px;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.25;
}

.policy-document h2:first-child {
    margin-top: 0;
}

.policy-document p,
.policy-document li {
    color: #344353;
}

.policy-document ul {
    display: grid;
    gap: 8px;
    padding-left: 22px;
}

.policy-document a {
    color: var(--orange-2);
    font-weight: 800;
}

.reveal {
    animation: revealUp 620ms ease both;
}

.reveal--delay {
    animation-delay: 120ms;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 1120px) {
    .site-nav__list {
        gap: 16px;
    }

    .header-cta {
        display: none;
    }

    .hero__grid,
    .designer__grid,
    .split,
    .supply__grid,
    .knowledge__grid,
    .contact__grid,
    .section-heading--split {
        grid-template-columns: 1fr;
    }

    .hero__visual,
    .designer__media {
        max-width: 760px;
    }

    .service-grid,
    .brands-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-compact__head {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .pricing-compact__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .site-nav {
        order: 3;
    }

    .site-nav__toggle {
        display: block;
    }

    .site-nav__list {
        position: fixed;
        inset: 78px 16px auto;
        display: none;
        min-height: calc(100svh - 100px);
        padding: 26px;
        border: 1px solid var(--line-dark);
        border-radius: 24px;
        background: rgba(16, 24, 32, 0.97);
        flex-direction: column;
        align-items: flex-start;
        box-shadow: var(--shadow-dark);
    }

    .site-nav__list.is-open {
        display: flex;
    }

    .site-nav a {
        font-size: 21px;
    }

    .brand span {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 124px;
    }

    .hero h1 {
        max-width: min(100%, 430px);
        font-size: clamp(46px, 12.6vw, 58px);
    }

    .hero__facts,
    .proof-strip__grid,
    .service-grid,
    .brands-grid,
    .portfolio-grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .hero-note {
        position: static;
        max-width: none;
        margin-top: 12px;
    }

    .technical-frame::before,
    .frame-corner {
        display: none;
    }

    .project-card,
    .project-card--large,
    .project-card--wide {
        grid-column: auto;
        grid-row: auto;
        min-height: 330px;
    }

    .pricing-compact {
        margin-top: 42px;
    }

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

    .tariff-card {
        min-height: 0;
        padding: 15px;
    }

    .tariff-card > span {
        min-height: 0;
        font-size: 11px;
        letter-spacing: 0.06em;
    }

    .tariff-card strong {
        font-size: 30px;
    }

    .section {
        padding: 82px 0;
    }

    .designer {
        padding-bottom: 66px;
    }

    .contact-form {
        padding: 24px;
        border-radius: 26px;
    }

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        align-items: stretch;
        flex-direction: column;
        border-radius: 22px;
    }

    .cookie-banner div {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .cookie-banner .button {
        flex: 1 1 150px;
    }
}

@media (max-width: 540px) {
    .container {
        width: calc(100vw - 26px);
        max-width: calc(100vw - 26px);
    }

    .hero__grid,
    .hero__content,
    .hero p,
    .hero__facts,
    .technical-frame,
    .designer__media {
        width: 100%;
        max-width: 100%;
    }

    .hero__content {
        padding-inline: 4px;
    }

    .hero p {
        overflow-wrap: anywhere;
    }

    .hero__actions,
    .hero__actions .button,
    .contact-form .button {
        width: 100%;
    }

    .section-heading h2,
    .policy-hero h1 {
        font-size: clamp(40px, 14vw, 56px);
    }

    .process-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .process-item::before {
        display: none;
    }

    .process-item span {
        padding-left: 0;
    }

    .captcha-row {
        transform: scale(0.86);
        transform-origin: left top;
        min-height: 72px;
    }
}
