/*
.infra-setup,
.infra-nav-link {
    display: none !important;
}
*/

:root {
    --aw-bg-hero: #06100C;
    --aw-bg-hero-2: #102019;
    --aw-bg-section: #F4F7F5;
    --aw-surface-dark: #12221B;
    --aw-text-dark: #F6FAF7;
    --aw-muted-dark: #AEBBB2;
    --aw-text-light: #111815;
    --aw-muted-light: #5E6A63;
    --aw-line-dark: rgba(255, 255, 255, 0.15);
    --aw-line-light: #D9E3DD;
    --aw-accent: #39C07F;
    --aw-accent-strong: #7BE3AE;
    --aw-accent-deep: #168853;
    --aw-warning: #F2B84B;
    --aw-danger: #E04F5F;
    --aw-white: #FFFFFF;
    --aw-black: #050607;
    --aw-graphite-900: #0A0F12;
    --aw-graphite-800: #11191D;
    --aw-graphite-700: #1C272C;
    --aw-gray-100: #F4F6F7;
    --aw-gray-200: #E7ECEF;
    --aw-gray-500: #66737A;
    --aw-gray-900: #11181C;
    --shadow-soft: 0 28px 80px rgba(5, 6, 7, 0.28);
    --aw-glass: rgba(255, 255, 255, 0.07);
    --aw-glass-strong: rgba(255, 255, 255, 0.1);
    --aw-glass-hover: rgba(57, 192, 127, 0.12);
    --aw-gradient-accent:
        repeating-linear-gradient(128deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 4px),
        radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.055) 0 1px, transparent 2px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.23) 0%, rgba(255, 255, 255, 0.075) 18%, transparent 42%),
        radial-gradient(ellipse 86% 135% at 24% 10%, rgba(190, 255, 222, 0.22) 0%, rgba(123, 227, 174, 0.1) 30%, transparent 62%),
        radial-gradient(ellipse 110% 125% at 44% 92%, rgba(3, 40, 26, 0.43) 0%, transparent 58%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, transparent 20%, transparent 82%, rgba(2, 24, 16, 0.22) 100%),
        linear-gradient(135deg, #083020 0%, #126b43 38%, #1a9a60 62%, #0d4f35 100%);
    --aw-gradient-accent-hover:
        repeating-linear-gradient(128deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 4px),
        radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.065) 0 1px, transparent 2px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.27) 0%, rgba(255, 255, 255, 0.095) 18%, transparent 42%),
        radial-gradient(ellipse 90% 138% at 22% 10%, rgba(210, 255, 232, 0.26) 0%, rgba(123, 227, 174, 0.13) 32%, transparent 64%),
        radial-gradient(ellipse 112% 128% at 44% 92%, rgba(3, 40, 26, 0.38) 0%, transparent 58%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, transparent 20%, transparent 82%, rgba(2, 24, 16, 0.2) 100%),
        linear-gradient(135deg, #0a3928 0%, #168853 38%, #24aa6c 62%, #126b43 100%);
    --aw-gradient-text: linear-gradient(135deg, var(--aw-white) 12%, var(--aw-accent-strong) 52%, var(--aw-muted-dark) 100%);
    --radius: 8px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--aw-text-dark);
    background:
        radial-gradient(circle at 80% 0, rgba(57, 192, 127, 0.12), transparent 34%),
        linear-gradient(180deg, var(--aw-bg-hero), var(--aw-graphite-900) 42%, var(--aw-bg-hero-2));
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.5;
    letter-spacing: 0;
    overflow-x: hidden;
}

body.is-menu-open {
    overflow: visible;
}

body.is-login-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    color: var(--aw-text-dark);
    background: rgba(6, 16, 12, 0.76);
    border-bottom: 1px solid var(--aw-line-dark);
    backdrop-filter: blur(18px);
}

.header-shell {
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    align-items: center;
    gap: 24px;
    min-height: 72px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--aw-white);
    font-size: 26px;
    font-weight: 850;
    line-height: 1;
    white-space: nowrap;
}

.brand-accent {
    color: transparent;
    background: linear-gradient(135deg, #39c07f 0%, #20a96b 46%, #168853 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter:
        drop-shadow(0 0 5px rgba(57, 192, 127, 0.3))
        drop-shadow(0 1px 0 rgba(123, 227, 174, 0.16));
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 22px;
    color: var(--aw-muted-dark);
    font-size: 14px;
}

.main-nav a {
    transition: color 0.18s ease;
}

.main-nav a:hover {
    color: var(--aw-text-dark);
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
}

.header-login,
.header-phone,
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    white-space: nowrap;
    border-radius: var(--radius);
    font-family: Arial, "Segoe UI", sans-serif;
    font-weight: 750;
    font-size: 14px;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.header-phone {
    min-height: auto;
    color: var(--aw-text-dark);
    background: transparent;
    border: 0;
    font-weight: 760;
}

.header-phone:hover {
    color: var(--aw-accent-strong);
}

.header-login {
    gap: 7px;
    padding: 0 12px;
    color: var(--aw-text-dark);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--aw-line-dark);
}

.header-login svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-login-text {
    font-size: 13px;
    line-height: 1;
}

.header-login:hover {
    color: var(--aw-accent-strong);
    background: rgba(57, 192, 127, 0.1);
    border-color: rgba(57, 192, 127, 0.38);
    transform: translateY(-1px);
}

.header-cta {
    padding: 0 18px;
    color: var(--aw-white);
    background: var(--aw-gradient-accent);
    border: 1px solid transparent;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.32),
        inset 0 0 0 1px rgba(190, 255, 222, 0.035),
        inset 8px 0 14px rgba(255, 255, 255, 0.04),
        inset -8px 0 14px rgba(2, 24, 16, 0.16),
        inset 0 -11px 18px rgba(3, 40, 26, 0.22),
        0 10px 24px rgba(18, 107, 67, 0.14);
    text-shadow:
        0 1px 1px rgba(28, 39, 44, 0.62),
        0 0 1px rgba(28, 39, 44, 0.78);
}

.header-cta:hover {
    background: var(--aw-gradient-accent-hover);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.36),
        inset 0 0 0 1px rgba(190, 255, 222, 0.045),
        inset 8px 0 14px rgba(255, 255, 255, 0.05),
        inset -8px 0 14px rgba(2, 24, 16, 0.14),
        inset 0 -11px 18px rgba(3, 40, 26, 0.19),
        0 16px 36px rgba(57, 192, 127, 0.22);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--aw-line-dark);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--aw-text-dark);
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: 130px 0 48px;
    color: var(--aw-text-dark);
    background:
        url("assets/images/hero-background.webp") center 4px / max(100vw, 200vh) auto no-repeat,
        linear-gradient(135deg, var(--aw-bg-hero), var(--aw-bg-hero-2));
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 690px);
    align-items: center;
    min-height: calc(100vh - 178px);
}

.hero-copy {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--aw-accent);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0;
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 26px;
    height: 1px;
    background: currentColor;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 680px;
    margin-bottom: 22px;
    font-size: clamp(38px, 4.9vw, 62px);
    line-height: 1.02;
    letter-spacing: 0;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.hero h1 {
    color: transparent;
    background: var(--aw-gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero h1 span {
    display: inline;
}

.hero-title-brand {
    display: block !important;
    white-space: nowrap;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 660px;
    margin-bottom: 28px;
    color: var(--aw-muted-dark);
    font-size: 19px;
}

.hero-actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-family: Arial, "Segoe UI", sans-serif;
    font-size: 15px;
    font-weight: 740;
    line-height: 1.15;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    color: var(--aw-white);
    background: var(--aw-gradient-accent);
    border-color: transparent;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.32),
        inset 0 0 0 1px rgba(190, 255, 222, 0.035),
        inset 9px 0 16px rgba(255, 255, 255, 0.04),
        inset -9px 0 16px rgba(2, 24, 16, 0.18),
        inset 0 -12px 20px rgba(3, 40, 26, 0.24),
        0 14px 32px rgba(18, 107, 67, 0.18);
    text-shadow:
        0 1px 1px rgba(28, 39, 44, 0.62),
        0 0 1px rgba(28, 39, 44, 0.78);
}

.button-primary:hover {
    background: var(--aw-gradient-accent-hover);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.36),
        inset 0 0 0 1px rgba(190, 255, 222, 0.045),
        inset 9px 0 16px rgba(255, 255, 255, 0.05),
        inset -9px 0 16px rgba(2, 24, 16, 0.15),
        inset 0 -12px 20px rgba(3, 40, 26, 0.2),
        0 18px 40px rgba(57, 192, 127, 0.24);
}

.button-secondary {
    color: var(--aw-text-dark);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(13, 79, 53, 0.16);
    border-color: rgba(123, 227, 174, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -10px 16px rgba(3, 40, 26, 0.12);
}

.button-secondary:hover {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
        rgba(22, 136, 83, 0.2);
    border-color: rgba(123, 227, 174, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -10px 16px rgba(3, 40, 26, 0.1),
        0 12px 28px rgba(57, 192, 127, 0.14);
}

.button-ghost {
    color: var(--aw-accent-strong);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
    border-color: rgba(123, 227, 174, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button-ghost:hover {
    color: var(--aw-accent-strong);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
        rgba(57, 192, 127, 0.08);
    border-color: rgba(123, 227, 174, 0.2);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 10px 24px rgba(57, 192, 127, 0.1);
}

.button-light {
    color: var(--aw-accent-strong);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022)),
        rgba(13, 79, 53, 0.13);
    border-color: rgba(123, 227, 174, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -10px 16px rgba(3, 40, 26, 0.1);
}

.button-light:hover {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
        rgba(22, 136, 83, 0.19);
    border-color: rgba(123, 227, 174, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -10px 16px rgba(3, 40, 26, 0.1),
        0 12px 28px rgba(57, 192, 127, 0.12);
}

.section {
    padding: 92px 0;
}

.section-light {
    color: var(--aw-text-dark);
    background:
        radial-gradient(circle at 10% 0, rgba(57, 192, 127, 0.08), transparent 32%),
        linear-gradient(180deg, var(--aw-graphite-900), var(--aw-bg-hero-2));
}

.section-head {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.section-head p {
    margin-bottom: 0;
    color: var(--aw-muted-dark);
    font-size: 17px;
}

.section-head-dark {
    color: var(--aw-text-dark);
}

.section-head-dark p {
    color: var(--aw-muted-dark);
}

.align-left {
    margin-left: 0;
    text-align: left;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.feature-card,
.integration-card,
.launch-grid article {
    padding: 24px;
    background: var(--aw-glass);
    border: 1px solid var(--aw-line-dark);
    border-radius: var(--radius);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 60px rgba(5, 6, 7, 0.18);
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.feature-card:hover,
.integration-card:hover,
.launch-grid article:hover {
    background: var(--aw-glass-strong);
    border-color: rgba(57, 192, 127, 0.32);
    transform: translateY(-2px);
}

.feature-card {
    min-height: 260px;
}

.card-index {
    display: block;
    margin-bottom: 42px;
    color: var(--aw-accent);
    font-weight: 850;
}

.feature-card p,
.integration-card p,
.launch-grid p {
    margin-bottom: 0;
    color: var(--aw-muted-dark);
}

.section-packages,
.section-scenes,
.section-service,
.request-section,
.site-footer {
    color: var(--aw-text-dark);
    background:
        radial-gradient(circle at 84% 10%, rgba(57, 192, 127, 0.16), transparent 30%),
        linear-gradient(145deg, var(--aw-bg-hero), var(--aw-graphite-900));
}

.package-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.package-card {
    position: relative;
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    min-height: 548px;
    padding: 24px;
    overflow: hidden;
    color: var(--aw-muted-dark);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.045);
    border: 1px solid var(--aw-line-dark);
    border-radius: var(--radius);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 18px 52px rgba(5, 6, 7, 0.18);
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.package-label {
    display: inline-flex;
    justify-self: end;
    width: max-content;
    max-width: 100%;
    min-height: 24px;
    align-items: center;
    margin-bottom: 16px;
    padding: 5px 9px;
    color: var(--aw-accent-strong);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055) 34%, rgba(255, 255, 255, 0.018)),
        radial-gradient(ellipse 90% 120% at 50% -35%, rgba(123, 227, 174, 0.34), transparent 62%),
        rgba(57, 192, 127, 0.08);
    border: 1px solid rgba(123, 227, 174, 0.16);
    border-radius: var(--radius);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 0 0 1px rgba(123, 227, 174, 0.06),
        0 -12px 28px rgba(123, 227, 174, 0.18),
        0 0 22px rgba(57, 192, 127, 0.1),
        0 8px 20px rgba(57, 192, 127, 0.08);
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.package-card[data-package-card="pro"] .package-label {
    color: var(--aw-white);
    background: var(--aw-gradient-accent);
    border-color: transparent;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        inset 0 0 0 1px rgba(190, 255, 222, 0.08),
        inset 0 -8px 14px rgba(3, 40, 26, 0.18),
        0 -14px 34px rgba(123, 227, 174, 0.32),
        0 0 30px rgba(57, 192, 127, 0.2),
        0 10px 24px rgba(57, 192, 127, 0.12);
    text-shadow:
        0 1px 1px rgba(28, 39, 44, 0.58),
        0 0 1px rgba(28, 39, 44, 0.72);
}

.package-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(123, 227, 174, 0.18);
    opacity: 0.75;
}

.package-card[data-package-card="pro"] {
    background:
        radial-gradient(ellipse 85% 70% at 50% 0, rgba(123, 227, 174, 0.16), transparent 58%),
        linear-gradient(180deg, rgba(57, 192, 127, 0.105), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.045);
    border-color: rgba(123, 227, 174, 0.36);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(57, 192, 127, 0.05),
        0 22px 62px rgba(57, 192, 127, 0.13),
        0 18px 52px rgba(5, 6, 7, 0.18);
}

.package-card[data-package-card="pro"]::before {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--aw-accent-strong), var(--aw-accent), transparent);
    opacity: 0.95;
}

.package-card.is-active,
.package-card:hover {
    background:
        radial-gradient(ellipse 80% 70% at 50% 0, rgba(123, 227, 174, 0.1), transparent 58%),
        linear-gradient(180deg, rgba(57, 192, 127, 0.09), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.045);
    border-color: rgba(123, 227, 174, 0.34);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 22px 60px rgba(57, 192, 127, 0.12),
        0 18px 52px rgba(5, 6, 7, 0.18);
    transform: translateY(-2px);
}

.package-card-head {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    margin-bottom: 18px;
    color: var(--aw-text-dark);
}

.package-card-head span {
    display: inline-grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: var(--aw-accent);
    background: rgba(57, 192, 127, 0.08);
    border: 1px solid rgba(123, 227, 174, 0.14);
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 850;
}

.package-card-head h3 {
    margin-bottom: 0;
}

.package-position {
    color: var(--aw-text-dark);
    font-weight: 760;
}

.package-card ul {
    display: grid;
    gap: 8px;
    margin: 22px 0 0;
    padding-left: 18px;
    align-self: end;
}

.package-card li::marker {
    color: var(--aw-accent);
}

.comparison-wrap {
    margin-top: 22px;
    overflow-x: auto;
    border: 1px solid var(--aw-line-dark);
    border-radius: var(--radius);
}

.comparison-table {
    width: 100%;
    min-width: 820px;
    border-collapse: collapse;
    color: var(--aw-text-dark);
    background: rgba(255, 255, 255, 0.05);
}

.comparison-table th,
.comparison-table td {
    padding: 17px 18px;
    text-align: left;
    border-bottom: 1px solid var(--aw-line-dark);
}

.comparison-table thead th {
    color: var(--aw-accent-strong);
    font-size: 13px;
    text-transform: uppercase;
}

.comparison-table tbody th {
    width: 24%;
    color: var(--aw-text-dark);
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
    border-bottom: 0;
}

.programs-grid,
.addons-grid,
.service-grid,
.faq-grid,
.request-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: 48px;
}

.program-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 22px;
    background: var(--aw-glass);
    border: 1px solid var(--aw-line-dark);
    border-radius: var(--radius);
    box-shadow: 0 18px 60px rgba(5, 6, 7, 0.22);
    backdrop-filter: blur(14px);
}

.program-panel span,
.addon-list span,
.service-list span {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 12px 14px;
    border: 1px solid var(--aw-line-light);
    border-radius: var(--radius);
    font-weight: 760;
}

.program-panel span,
.addon-list span {
    color: var(--aw-text-dark);
    background: rgba(255, 255, 255, 0.045);
    border-color: var(--aw-line-dark);
}

.program-panel span::before {
    content: "";
    width: 9px;
    height: 9px;
    margin-right: 10px;
    background: var(--aw-white);
    border: 2px solid var(--aw-accent);
    border-radius: 999px;
}

.program-panel .program-pause::before {
    border-color: var(--aw-danger);
}

.section-scenes {
    padding-bottom: 102px;
}

.scene-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.scene-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid var(--aw-line-dark);
    border-radius: var(--radius);
}

.scene-card h3,
.scene-card p {
    padding: 0 20px;
}

.scene-card h3 {
    margin-top: 20px;
    color: var(--aw-text-dark);
}

.scene-card p {
    padding-bottom: 22px;
    color: var(--aw-muted-dark);
}

.scene-visual {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 28%),
        radial-gradient(circle at 78% 22%, rgba(57, 192, 127, 0.18), transparent 36%),
        linear-gradient(145deg, var(--aw-graphite-800), var(--aw-surface-dark));
}

.scene-visual::before,
.scene-visual::after {
    content: "";
    position: absolute;
    border-radius: var(--radius);
}

.scene-site::before {
    left: 24px;
    right: 24px;
    bottom: 42px;
    height: 68px;
    background: linear-gradient(90deg, var(--aw-gray-200), var(--aw-white));
    transform: perspective(500px) rotateX(58deg);
}

.scene-site::after {
    left: 42px;
    bottom: 86px;
    width: 64%;
    height: 82px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(57, 192, 127, 0.12));
}

.scene-bay::before {
    left: 28px;
    bottom: 28px;
    width: 70px;
    height: 164px;
    background: linear-gradient(180deg, var(--aw-gray-100), var(--aw-graphite-700));
    box-shadow: 110px -32px 0 -22px rgba(255, 255, 255, 0.16);
}

.scene-bay::after {
    right: 34px;
    bottom: 54px;
    width: 42%;
    height: 86px;
    border-top: 4px solid var(--aw-accent);
    border-right: 4px solid var(--aw-accent);
}

.scene-tech::before {
    left: 26px;
    top: 34px;
    width: 35%;
    height: 170px;
    background: linear-gradient(180deg, var(--aw-gray-100), var(--aw-gray-200));
}

.scene-tech::after {
    right: 28px;
    top: 54px;
    width: 42%;
    height: 132px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background:
        repeating-linear-gradient(90deg, rgba(57, 192, 127, 0.24) 0 3px, transparent 3px 18px),
        rgba(255, 255, 255, 0.08);
}

.scene-visual img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.scene-visual picture {
    display: block;
    width: 100%;
    height: 100%;
}

.scene-visual::before {
    inset: 0;
    z-index: 1;
    width: auto;
    height: auto;
    background: linear-gradient(180deg, transparent 58%, rgba(6, 16, 12, 0.42));
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.scene-visual::after {
    display: none;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.integration-highlight {
    border-color: rgba(57, 192, 127, 0.35);
    box-shadow: inset 0 0 0 1px rgba(57, 192, 127, 0.15), 0 0 28px rgba(57, 192, 127, 0.12);
}

.text-link {
    display: inline-flex;
    margin-top: 16px;
    color: var(--aw-accent-strong);
    font-weight: 800;
}

.section-addons {
    color: var(--aw-text-dark);
    background:
        radial-gradient(circle at 80% 16%, rgba(57, 192, 127, 0.09), transparent 30%),
        linear-gradient(180deg, var(--aw-bg-hero-2), var(--aw-graphite-900));
}

.addon-list,
.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.steps article {
    min-height: 148px;
    padding: 20px;
    color: var(--aw-text-dark);
    background: var(--aw-glass);
    border: 1px solid var(--aw-line-dark);
    border-radius: var(--radius);
}

.steps span {
    display: block;
    margin-bottom: 34px;
    color: var(--aw-accent);
    font-weight: 850;
}

.section-actions {
    justify-content: center;
    margin-top: 28px;
}

.section-service h2,
.request-section h2 {
    color: var(--aw-text-dark);
}

.section-service p,
.request-section p {
    color: var(--aw-muted-dark);
    font-size: 18px;
}

.service-list span {
    color: var(--aw-text-dark);
    background: rgba(255, 255, 255, 0.065);
    border-color: var(--aw-line-dark);
}

.launch-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.section-faq {
    color: var(--aw-text-dark);
    background:
        radial-gradient(circle at 12% 12%, rgba(57, 192, 127, 0.08), transparent 30%),
        linear-gradient(180deg, var(--aw-graphite-900), var(--aw-bg-hero));
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    background: var(--aw-glass);
    border: 1px solid var(--aw-line-dark);
    border-radius: var(--radius);
}

.faq-item button {
    display: flex;
    width: 100%;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    color: var(--aw-text-dark);
    text-align: left;
    background: transparent;
    border: 0;
    font-weight: 830;
}

.faq-item i {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.faq-item i::before,
.faq-item i::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 18px;
    height: 2px;
    background: var(--aw-accent-deep);
}

.faq-item i::after {
    transform: rotate(90deg);
    transition: transform 0.18s ease;
}

.faq-item.is-open i::after {
    transform: rotate(0deg);
}

.faq-item p {
    display: none;
    margin: 0;
    padding: 0 20px 20px;
    color: var(--aw-muted-dark);
}

.faq-item.is-open p {
    display: block;
}

.request-grid {
    align-items: center;
}

.request-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 24px;
    color: var(--aw-text-dark);
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid var(--aw-line-dark);
    border-radius: var(--radius);
}

.request-form label {
    display: grid;
    gap: 8px;
}

.request-form label > span {
    color: var(--aw-muted-dark);
    font-size: 14px;
}

.request-form input,
.request-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 13px;
    color: var(--aw-text-dark);
    background: rgba(5, 6, 7, 0.3);
    border: 1px solid var(--aw-line-dark);
    border-radius: var(--radius);
    outline: 0;
    transition: border-color 0.18s ease, background 0.18s ease;
}

.request-form textarea {
    resize: vertical;
}

.request-form input:focus,
.request-form textarea:focus {
    background: rgba(5, 6, 7, 0.48);
    border-color: var(--aw-accent);
}

.request-form.is-sending input,
.request-form.is-sending textarea,
.request-form.is-sending button {
    cursor: wait;
}

.request-form.is-sending button {
    opacity: 0.76;
}

.form-wide {
    grid-column: 1 / -1;
}

.form-check {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center;
    gap: 10px !important;
}

.form-check input {
    width: 18px;
    min-height: 18px;
    accent-color: var(--aw-accent);
}

.form-status {
    display: none;
    margin: 0;
    padding: 12px 14px;
    border: 1px solid var(--aw-line-dark);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 740;
}

.form-status.is-visible {
    display: block;
}

.form-status.is-sending {
    color: var(--aw-accent-strong);
    background: rgba(57, 192, 127, 0.08);
    border-color: rgba(123, 227, 174, 0.22);
}

.form-status.is-success {
    color: var(--aw-accent-strong);
    background: rgba(57, 192, 127, 0.11);
    border-color: rgba(123, 227, 174, 0.34);
}

.form-status.is-error {
    color: #ffd3d8;
    background: rgba(224, 79, 95, 0.12);
    border-color: rgba(224, 79, 95, 0.38);
}

.login-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
}

.login-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.login-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 6, 7, 0.68);
    backdrop-filter: blur(8px);
}

.login-dialog {
    position: relative;
    width: min(100%, 430px);
    padding: 30px;
    color: var(--aw-text-dark);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.045)),
        var(--aw-surface-dark);
    border: 1px solid var(--aw-line-dark);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.login-dialog h2 {
    margin: 8px 0 10px;
    font-size: 30px;
}

.login-dialog p {
    margin: 0;
    color: var(--aw-muted-dark);
}

.login-close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    padding: 0;
    color: var(--aw-text-dark);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--aw-line-dark);
    border-radius: var(--radius);
}

.login-close span {
    position: absolute;
    width: 16px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.login-close span:first-child {
    transform: rotate(45deg);
}

.login-close span:last-child {
    transform: rotate(-45deg);
}

.login-close:hover {
    color: var(--aw-accent-strong);
    background: rgba(57, 192, 127, 0.1);
    border-color: rgba(57, 192, 127, 0.38);
}

.login-form {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.login-form label {
    display: grid;
    gap: 8px;
    color: var(--aw-text-dark);
    font-weight: 720;
}

.login-form label > span {
    font-size: 13px;
    color: var(--aw-muted-dark);
}

.login-form input {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--aw-text-dark);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--aw-line-dark);
    border-radius: var(--radius);
    outline: none;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.login-form input:focus {
    background: rgba(57, 192, 127, 0.08);
    border-color: rgba(57, 192, 127, 0.58);
    box-shadow: 0 0 0 4px rgba(57, 192, 127, 0.12);
}

.login-status {
    display: none;
    margin: 0;
    padding: 12px 14px;
    color: #ffd3d8;
    background: rgba(224, 79, 95, 0.12);
    border: 1px solid rgba(224, 79, 95, 0.38);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 740;
}

.login-status.is-visible {
    display: block;
}

.login-form .button {
    width: 100%;
}

.site-footer {
    padding: 52px 0;
    border-top: 1px solid var(--aw-line-dark);
}

.footer-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 42px;
    align-items: start;
    justify-content: space-between;
    color: var(--aw-muted-dark);
}

.footer-main {
    max-width: 540px;
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-main p {
    margin-bottom: 8px;
}

.footer-phone {
    display: inline-flex;
    margin-top: 8px;
    color: var(--aw-accent-strong);
    font-weight: 820;
}

.footer-links {
    display: grid;
    gap: 8px;
    min-width: 240px;
    text-align: right;
}

.footer-links h3 {
    margin-bottom: 6px;
    color: var(--aw-text-dark);
    font-size: 15px;
}

.footer-links a {
    color: var(--aw-muted-dark);
    font-size: 14px;
    transition: color 0.18s ease;
}

.footer-links a:hover {
    color: var(--aw-accent-strong);
}

.subpage {
    color: var(--aw-text-dark);
    background: var(--aw-bg-hero);
}

.subpage-hero {
    min-height: 100vh;
    padding: 142px 0 82px;
    background:
        radial-gradient(circle at 72% 24%, rgba(57, 192, 127, 0.18), transparent 34%),
        linear-gradient(135deg, var(--aw-bg-hero), var(--aw-bg-hero-2) 58%, var(--aw-graphite-900));
}

.subpage-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    align-items: center;
    gap: 42px;
}

.subpage-hero h1 {
    max-width: 760px;
}

.subpage-panel {
    padding: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
        radial-gradient(circle at 80% 0, rgba(57, 192, 127, 0.16), transparent 40%);
    border: 1px solid var(--aw-line-dark);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.subpage-panel h2 {
    font-size: 30px;
}

.subpage-panel p {
    margin-bottom: 0;
    color: var(--aw-muted-dark);
}

.service-stub .subpage-hero {
    min-height: 100vh;
}

.service-stub .subpage-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
}

.service-meta {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.service-meta-row {
    display: grid;
    grid-template-columns: minmax(96px, auto) 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--aw-line-dark);
}

.service-meta-row:last-child {
    border-bottom: 0;
}

.service-meta-row span {
    color: var(--aw-muted-dark);
    font-size: 13px;
    font-weight: 760;
}

.service-meta-row strong {
    color: var(--aw-text-dark);
    font-size: 15px;
}

.status-pill {
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 0 11px;
    color: var(--aw-accent-strong);
    background: rgba(57, 192, 127, 0.12);
    border: 1px solid rgba(57, 192, 127, 0.28);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 850;
}

.status-pill::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--aw-accent);
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(57, 192, 127, 0.82);
}

.service-code {
    display: block;
    margin-top: 20px;
    padding: 14px;
    overflow-x: auto;
    color: var(--aw-accent-strong);
    background: rgba(5, 6, 7, 0.38);
    border: 1px solid var(--aw-line-dark);
    border-radius: var(--radius);
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 13px;
    line-height: 1.55;
    white-space: pre-wrap;
}

.panel-label {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 10px;
    color: var(--aw-accent-strong);
    background: rgba(57, 192, 127, 0.12);
    border: 1px solid rgba(57, 192, 127, 0.26);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 800;
}

.yandex-page .steps {
    grid-template-columns: repeat(4, 1fr);
}

.steps p {
    margin-bottom: 0;
    color: var(--aw-muted-dark);
}

.yandex-integration-page h1,
.yandex-integration-page h2,
.yandex-integration-page h3,
.yandex-integration-page p,
.yandex-integration-page span,
.yandex-integration-page a,
.yandex-integration-page label {
    overflow-wrap: anywhere;
}

.yandex-integration-hero {
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(6, 16, 12, 0.9) 0%, rgba(6, 16, 12, 0.74) 44%, rgba(6, 16, 12, 0.48) 100%),
        linear-gradient(180deg, rgba(6, 16, 12, 0.1) 0%, rgba(6, 16, 12, 0.62) 100%),
        image-set(
            url("assets/images/yandex-integration-hero.webp") type("image/webp")
        ) center / cover no-repeat,
        linear-gradient(135deg, var(--aw-bg-hero), var(--aw-bg-hero-2) 58%, var(--aw-graphite-900));
}

.yandex-hero-copy {
    min-width: 0;
}

.yandex-hero-note {
    max-width: 660px;
    margin: -10px 0 28px;
    color: var(--aw-text-dark);
    font-size: 17px;
}

.yandex-hero-visual {
    position: relative;
    min-height: 540px;
    padding: 0;
    overflow: hidden;
    background: var(--aw-graphite-900);
}

.yandex-hero-visual picture,
.yandex-hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 540px;
}

.yandex-hero-visual img {
    object-fit: cover;
}

.yandex-hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 16, 12, 0.02) 0%, rgba(6, 16, 12, 0.28) 54%, rgba(6, 16, 12, 0.84) 100%),
        linear-gradient(90deg, rgba(6, 16, 12, 0.24), transparent 42%);
}

.yandex-visual-card {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 1;
    padding: 22px;
    background: rgba(6, 16, 12, 0.78);
    border: 1px solid rgba(123, 227, 174, 0.22);
    border-radius: var(--radius);
    backdrop-filter: blur(16px);
}

.yandex-visual-card h2 {
    margin-bottom: 10px;
    font-size: 30px;
}

.yandex-visual-card p {
    margin-bottom: 0;
    color: var(--aw-muted-dark);
}

.yandex-benefit-grid,
.yandex-object-grid,
.yandex-partner-grid {
    display: grid;
    gap: 14px;
}

.yandex-benefit-grid {
    grid-template-columns: repeat(4, 1fr);
}

.yandex-benefit-grid .feature-card {
    min-height: 300px;
}

.yandex-object-visual {
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid var(--aw-line-dark);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.yandex-object-visual img {
    width: 100%;
    aspect-ratio: 3 / 1.25;
    object-fit: cover;
}

.yandex-object-grid {
    grid-template-columns: repeat(4, 1fr);
}

.yandex-object-card {
    min-height: 260px;
    padding: 22px;
    background: var(--aw-glass);
    border: 1px solid var(--aw-line-dark);
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(5, 6, 7, 0.18);
}

.yandex-object-card span {
    display: inline-flex;
    margin-bottom: 34px;
    padding: 6px 9px;
    color: var(--aw-accent-strong);
    background: rgba(57, 192, 127, 0.1);
    border: 1px solid rgba(57, 192, 127, 0.24);
    border-radius: var(--radius);
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
    text-transform: uppercase;
}

.yandex-object-card p {
    margin-bottom: 0;
    color: var(--aw-muted-dark);
}

.yandex-process {
    grid-template-columns: repeat(5, 1fr);
}

.yandex-process article {
    min-height: 210px;
}

.yandex-requirements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.yandex-requirements span {
    display: flex;
    min-height: 60px;
    align-items: center;
    padding: 13px 14px;
    color: var(--aw-text-dark);
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid var(--aw-line-dark);
    border-radius: var(--radius);
    font-weight: 760;
}

.yandex-partner-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
    gap: 34px;
    align-items: center;
}

.yandex-partner-layout > div:first-child > p {
    max-width: 720px;
    color: var(--aw-muted-dark);
    font-size: 18px;
}

.yandex-partner-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 26px;
}

.yandex-tech-visual {
    overflow: hidden;
    border: 1px solid var(--aw-line-dark);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.yandex-tech-visual img {
    width: 100%;
    min-height: 480px;
    object-fit: cover;
}

.request-form select {
    width: 100%;
    min-height: 48px;
    padding: 12px 13px;
    color: var(--aw-text-dark);
    background: rgba(5, 6, 7, 0.3);
    border: 1px solid var(--aw-line-dark);
    border-radius: var(--radius);
    outline: 0;
    transition: border-color 0.18s ease, background 0.18s ease;
}

.request-form select option {
    color: var(--aw-text-light);
    background: var(--aw-white);
}

.request-form select:focus {
    background: rgba(5, 6, 7, 0.48);
    border-color: var(--aw-accent);
}

.request-form.is-sending select {
    cursor: wait;
}

@media (max-width: 1120px) {
    .header-shell {
        gap: 16px;
    }

    .main-nav {
        gap: 14px;
    }

    .header-phone {
        display: none;
    }

    .hero-grid,
    .programs-grid,
    .addons-grid,
    .service-grid,
    .faq-grid,
    .request-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 780px;
    }

    .feature-grid,
    .package-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card,
    .package-card {
        min-height: auto;
    }

    .integration-grid,
    .launch-grid,
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .yandex-benefit-grid,
    .yandex-object-grid,
    .yandex-process,
    .yandex-partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .yandex-partner-layout {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 861px) and (max-width: 1366px), (min-width: 861px) and (max-height: 820px) {
    .hero {
        background:
            url("assets/images/hero-background.webp") right center / max(100vw, 200vh) auto no-repeat,
            linear-gradient(135deg, var(--aw-bg-hero), var(--aw-bg-hero-2));
    }
}

@media (max-width: 860px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .header-shell {
        grid-template-columns: auto 1fr auto auto;
        min-height: 66px;
    }

    .main-nav {
        position: fixed;
        top: 66px;
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 10px;
        background: rgba(6, 16, 12, 0.96);
        border: 1px solid var(--aw-line-dark);
        border-radius: var(--radius);
        box-shadow: var(--shadow-soft);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 14px;
        border-radius: var(--radius);
    }

    .main-nav a:hover {
        background: rgba(255, 255, 255, 0.07);
    }

    .header-actions {
        justify-self: end;
        gap: 8px;
    }

    .header-login,
    .header-cta {
        min-height: 40px;
        font-size: 13px;
    }

    .header-cta {
        padding: 0 12px;
    }

    .header-login {
        width: 40px;
        padding: 0;
    }

    .header-login-text {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: 760px;
        padding-top: 104px;
        background:
            linear-gradient(90deg, rgba(6, 16, 12, 0.82) 0, rgba(6, 16, 12, 0.56) 56%, rgba(6, 16, 12, 0.12) 100%),
            url("assets/images/hero-background.webp") 88% center / auto 100% no-repeat,
            linear-gradient(135deg, var(--aw-bg-hero), var(--aw-bg-hero-2));
    }

    .hero-grid {
        gap: 24px;
    }

    .section {
        padding: 68px 0;
    }

    .scene-grid {
        grid-template-columns: 1fr;
    }

    .subpage-hero-grid,
    .service-stub .subpage-hero-grid {
        grid-template-columns: 1fr;
    }

    .yandex-hero-visual,
    .yandex-hero-visual picture,
    .yandex-hero-visual img {
        min-height: 420px;
    }

    .yandex-integration-hero {
        background-position: 58% center;
    }

    .yandex-object-visual img {
        aspect-ratio: 16 / 9;
    }

    .comparison-wrap {
        overflow: visible;
        border: 0;
    }

    .comparison-table,
    .comparison-table thead,
    .comparison-table tbody,
    .comparison-table tr,
    .comparison-table th,
    .comparison-table td {
        display: block;
        min-width: 0;
        width: 100%;
    }

    .comparison-table {
        background: transparent;
    }

    .comparison-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
    }

    .comparison-table tr {
        margin-bottom: 12px;
        padding: 16px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid var(--aw-line-dark);
        border-radius: var(--radius);
    }

    .comparison-table tbody th {
        margin-bottom: 10px;
        padding: 0;
        border-bottom: 0;
        color: var(--aw-accent-strong);
    }

    .comparison-table td {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        padding: 9px 0;
        border-bottom: 1px solid var(--aw-line-dark);
    }

    .comparison-table td::before {
        content: attr(data-label);
        color: var(--aw-muted-dark);
        font-weight: 760;
    }

    .comparison-table td:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 640px) {
    .header-shell {
        grid-template-columns: auto 1fr auto auto;
        justify-content: space-between;
    }

    .header-cta {
        display: none;
    }

    .brand {
        font-size: 23px;
    }

    h1 {
        font-size: clamp(33px, 8.6vw, 38px);
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-actions .button,
    .section-actions .button,
    .request-form .button {
        width: 100%;
    }

    .hero {
        min-height: auto;
        padding-top: 118px;
        padding-bottom: 54px;
        background:
            linear-gradient(90deg, rgba(6, 16, 12, 0.9) 0, rgba(6, 16, 12, 0.72) 58%, rgba(6, 16, 12, 0.24) 100%),
            linear-gradient(180deg, rgba(6, 16, 12, 0.1) 0, rgba(6, 16, 12, 0.28) 58%, rgba(6, 16, 12, 0.82) 100%),
            url("assets/images/hero-background-mobile.webp") 90% center / auto 100% no-repeat,
            linear-gradient(135deg, var(--aw-bg-hero), var(--aw-bg-hero-2));
    }

    .hero-grid {
        min-height: auto;
    }

    .feature-grid,
    .package-cards,
    .integration-grid,
    .launch-grid,
    .steps,
    .yandex-benefit-grid,
    .yandex-object-grid,
    .yandex-process,
    .yandex-requirements,
    .yandex-partner-grid,
    .program-panel,
    .addon-list,
    .service-list,
    .request-form {
        grid-template-columns: 1fr;
    }

    .section-head {
        text-align: left;
    }

    .program-panel,
    .request-form {
        padding: 16px;
    }

    .scene-visual {
        min-height: 220px;
    }

    .footer-shell {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-links {
        min-width: 0;
        text-align: left;
    }

    .subpage-hero {
        padding: 118px 0 64px;
    }

    .yandex-hero-note {
        font-size: 16px;
    }

    .yandex-hero-visual,
    .yandex-hero-visual picture,
    .yandex-hero-visual img {
        min-height: 360px;
    }

    .yandex-integration-page .subpage-hero-grid {
        gap: 28px;
    }

    .yandex-visual-card {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 16px;
    }

    .yandex-visual-card h2 {
        font-size: 24px;
    }

    .yandex-benefit-grid .feature-card,
    .yandex-object-card,
    .yandex-process article {
        min-height: auto;
    }

    .yandex-object-card span {
        margin-bottom: 20px;
    }

    .yandex-tech-visual img {
        min-height: 300px;
    }

    .service-meta-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

@media (max-width: 380px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .hero {
        padding-top: 112px;
        background:
            linear-gradient(90deg, rgba(6, 16, 12, 0.9) 0, rgba(6, 16, 12, 0.74) 58%, rgba(6, 16, 12, 0.28) 100%),
            linear-gradient(180deg, rgba(6, 16, 12, 0.12) 0, rgba(6, 16, 12, 0.32) 58%, rgba(6, 16, 12, 0.84) 100%),
            url("assets/images/hero-background-mobile.webp") 88% center / auto 100% no-repeat,
            linear-gradient(135deg, var(--aw-bg-hero), var(--aw-bg-hero-2));
    }

    h1 {
        font-size: 31px;
    }

    h2 {
        font-size: 29px;
    }

    .brand span:last-child {
        max-width: 112px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
