:root {
    --bg: #f5f1ed;
    --surface: #ffffff;
    --surface-soft: #fff7f6;
    --ink: #101112;
    --muted: #5b5f62;
    --line: rgba(16, 17, 18, 0.1);
    --line-strong: rgba(16, 17, 18, 0.2);
    --brand: #d71920;
    --brand-dark: #a10f15;
    --brand-soft: rgba(215, 25, 32, 0.08);
    --dark: #121315;
    --dark-soft: #1f2125;
    --success: #166534;
    --error: #b91c1c;
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --shadow-soft: 0 24px 70px rgba(16, 17, 18, 0.08);
    --shadow-card: 0 22px 50px rgba(16, 17, 18, 0.12);
    --container: min(1360px, calc(100vw - 24px));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at top right, rgba(215, 25, 32, 0.08), transparent 24%),
        linear-gradient(180deg, #f4efeb 0%, #ffffff 22%, #f7f3f0 100%);
    font-family: "Manrope", sans-serif;
    text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.section {
    padding: 34px 0;
}

.section-muted {
    background: transparent;
}

.section-dark {
    color: inherit;
    background: transparent;
}

.section-contact {
    background: transparent;
}

.section-shell {
    position: relative;
    padding: clamp(28px, 4vw, 48px);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 245, 242, 0.94)),
        #ffffff;
    border: 1px solid rgba(16, 17, 18, 0.08);
    box-shadow: 0 26px 70px rgba(16, 17, 18, 0.08);
    overflow: hidden;
}

.section-shell::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, #c70913 0%, #ef2029 38%, #b70811 100%);
}

.section-shell > * {
    position: relative;
    z-index: 1;
}

.section-shell-dark {
    background:
        linear-gradient(180deg, rgba(17, 18, 20, 0.98), rgba(24, 26, 30, 0.98)),
        #111214;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.section-shell-dark::before {
    background: linear-gradient(90deg, #ef2029 0%, #ff4952 34%, #ba0912 100%);
}

.section-shell-stats {
    padding-bottom: 0;
}

.section-shell-contact {
    gap: 28px;
}

.section-heading {
    display: grid;
    gap: 14px;
    margin-bottom: 32px;
}

.section-heading.compact {
    margin-bottom: 24px;
}

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

.contact-heading {
    margin-bottom: 42px;
}

.contact-heading h2 {
    max-width: 900px;
    margin-inline: auto;
}

.section-heading.light span,
.section-heading.light h2,
.section-heading.light p {
    color: #ffffff;
}

.section-heading span {
    color: var(--brand);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    font-weight: 900;
    text-wrap: balance;
}

.section-heading p,
.lead,
p {
    color: var(--muted);
    line-height: 1.72;
}

.section-shell-dark,
.section-shell-dark h2,
.section-shell-dark h3,
.section-shell-dark p,
.section-shell-dark .check-list li,
.section-shell-dark .section-heading span {
    color: #ffffff;
}

.section-shell-dark .section-heading span {
    color: #ff7f86;
}

.section-shell-dark p,
.section-shell-dark .check-list li {
    color: rgba(255, 255, 255, 0.82);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.96);
    border-top: 4px solid var(--brand);
    border-bottom: 1px solid rgba(16, 17, 18, 0.08);
    box-shadow: 0 10px 22px rgba(16, 17, 18, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 112px;
    padding-top: 8px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.brand strong,
.brand-primary,
.brand-secondary,
.brand-wordmark > span {
    display: block;
}

.brand strong {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    letter-spacing: 0.08em;
    line-height: 0.85;
}

.brand-wordmark > span {
    color: var(--muted);
    text-transform: uppercase;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.35em;
}

.brand-lockup {
    gap: 14px;
}

.site-header .brand-lockup img {
    width: 100px;
    height: 100px;
    border: 2px solid rgba(16, 17, 18, 0.08);
    box-shadow: 0 10px 24px rgba(16, 17, 18, 0.07);
}

.site-header .brand-lockup strong {
    font-size: 3.42rem;
    letter-spacing: 0.03em;
    line-height: 0.88;
}

.site-header .brand-lockup .brand-wordmark > span {
    margin-top: 2px;
    font-size: 0.84rem;
    letter-spacing: 0.22em;
}

.brand-wordmark strong {
    display: flex;
    flex-direction: column;
}

.brand-primary {
    color: var(--brand);
}

.brand-secondary {
    color: #111214;
}

.brand-wordmark > span {
    margin-top: 4px;
    color: var(--brand);
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.18em;
}

.header-panel {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-nav a,
.admin-link,
.language-switcher a {
    position: relative;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.site-nav a::after,
.admin-link::after {
    content: "";
    position: absolute;
    inset: auto 0 -8px;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

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

.header-tools {
    display: flex;
    align-items: center;
    gap: 16px;
}

.language-switcher {
    display: inline-flex;
    padding: 6px;
    gap: 4px;
    border-radius: 999px;
    background: var(--surface-soft);
    border: 1px solid rgba(215, 25, 32, 0.1);
}

.language-switcher a {
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--muted);
}

.language-switcher a.is-active {
    background: var(--brand);
    color: #ffffff;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.hero {
    position: relative;
    overflow: clip;
    padding: 0 0 44px;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero::before {
    width: 420px;
    height: 420px;
    top: -80px;
    right: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(215, 25, 32, 0.12), transparent 70%);
}

.hero::after {
    left: -120px;
    bottom: 20px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 17, 18, 0.06), transparent 70%);
}

.hero-grid,
.split-grid,
.contact-grid {
    display: grid;
    gap: 40px;
    align-items: stretch;
}

.hero-grid,
.split-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.hero-stage.hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
}

.hero-stage {
    position: relative;
    overflow: hidden;
    padding: 0;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(180deg, #0f1013 0%, #17191d 100%);
    box-shadow: 0 26px 64px rgba(16, 17, 18, 0.18);
}

.hero-stage::before,
.hero-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-stage::before {
    width: 100%;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 40%, transparent 100%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 2px, transparent 2px, transparent 18px);
    opacity: 0.4;
}

.hero-stage::after {
    background:
        radial-gradient(circle at 64% 18%, rgba(215, 25, 32, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 28%, transparent 74%, rgba(0, 0, 0, 0.14));
}

.hero-copy {
    position: relative;
    z-index: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    padding: 24px 30px 22px 28px;
    background: linear-gradient(128deg, #b90611 0%, #d30e18 36%, #ef1b25 56%, #bf0813 100%);
    clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%);
}

html[lang="ru"] .hero-copy {
    padding-right: 46px;
    clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
}

.hero-visual,
.section-copy,
.contact-info,
.contact-side {
    min-width: 0;
}

.eyebrow,
.hero-badge,
.form-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
}

.eyebrow {
    padding: 9px 14px;
    background: rgba(16, 17, 18, 0.18);
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    align-self: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

.hero-kicker {
    margin: 0;
    max-width: 560px;
    color: rgba(255, 240, 241, 0.96);
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.34;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 10px 0 6px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(3rem, 5.4vw, 5.2rem);
    line-height: 0.9;
    letter-spacing: -0.072em;
    font-weight: 900;
    max-width: 6.6ch;
    text-transform: uppercase;
    color: #ffffff;
    text-wrap: balance;
}

html[lang="ru"] .hero h1 {
    font-size: clamp(2.7rem, 4.8vw, 4.7rem);
    line-height: 0.92;
    letter-spacing: -0.052em;
    max-width: 8.4ch;
}

.hero h1 span {
    display: block;
}

.hero h1 .is-accent {
    font-size: clamp(4.4rem, 7.6vw, 6.8rem);
    line-height: 0.84;
    letter-spacing: -0.084em;
    text-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

html[lang="ru"] .hero h1 .is-accent {
    font-size: clamp(4rem, 6.7vw, 5.9rem);
    letter-spacing: -0.06em;
}

.hero-solution {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 10px;
    max-width: 500px;
    padding: 11px 16px 13px;
    border-radius: 0;
    background: rgba(12, 13, 15, 0.96);
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.7rem, 2.6vw, 2.6rem);
    letter-spacing: -0.04em;
    line-height: 0.96;
    font-weight: 900;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
    clip-path: polygon(0 0, 100% 0, 97% 100%, 0 100%);
    text-transform: uppercase;
}

.hero-description {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.98rem;
    line-height: 1.52;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    padding: 0;
    margin: 14px 0 0;
    list-style: none;
}

.hero-points li {
    position: relative;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.45;
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.14);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0 10px;
}

.hero .button-primary {
    background: #ffffff;
    color: var(--brand);
    box-shadow: 0 22px 34px rgba(0, 0, 0, 0.18);
    border-radius: 4px;
    min-height: 58px;
    padding-inline: 24px;
    font-size: 1rem;
}

.hero .button-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.34);
    border-radius: 4px;
    min-height: 58px;
    padding-inline: 24px;
    font-size: 1rem;
}

.hero-trust {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
    line-height: 1.55;
    font-size: 0.84rem;
}

.hero-visual {
    position: relative;
}

.hero-visual::before,
.hero-visual::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.hero-visual::before {
    left: -40px;
    width: 104px;
    background: linear-gradient(180deg, #ff1625 0%, #bc0812 100%);
    clip-path: polygon(46% 0, 100% 0, 58% 50%, 100% 100%, 46% 100%, 0 50%);
}

.hero-visual::after {
    left: 8px;
    width: 3px;
    background: rgba(255, 255, 255, 0.96);
    transform: skewX(-12deg);
}

.hero-frame {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    min-height: 560px;
    height: 100%;
    background: #0f1114;
    box-shadow: none;
    border-left: 0;
    clip-path: none;
}

.hero-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(9, 10, 12, 0.82) 0%, rgba(9, 10, 12, 0.5) 16%, rgba(9, 10, 12, 0.12) 34%, transparent 48%),
        linear-gradient(180deg, rgba(14, 15, 18, 0.08), rgba(14, 15, 18, 0.28));
    pointer-events: none;
}

.hero-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 70%, rgba(215, 25, 32, 0.2), transparent 26%),
        linear-gradient(132deg, transparent 58%, rgba(215, 25, 32, 0.28) 84%, rgba(255, 24, 36, 0.4) 100%);
    z-index: 2;
}

.hero-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 66% 10%;
    transform: scale(1.24);
    filter: saturate(1.04) contrast(1.02);
}

.hero-floating-stat {
    position: absolute;
    right: 14px;
    bottom: 64px;
    z-index: 3;
    width: min(320px, calc(100% - 28px));
    color: #ffffff;
    box-sizing: border-box;
    isolation: isolate;
}

.hero-floating-stat::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #e4111b, #b80711);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transform: skewX(-18deg);
    transform-origin: center;
    z-index: -1;
}

.hero-floating-stat strong {
    display: block;
    padding: 18px 24px 16px 28px;
    font-size: 0.96rem;
    line-height: 1.22;
    font-weight: 800;
    text-transform: uppercase;
    text-wrap: balance;
}

.hero-feature-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    background: linear-gradient(180deg, #d60f18, #c40b14);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    box-shadow: 0 18px 34px rgba(16, 17, 18, 0.12);
}

.hero-feature-card {
    min-height: 124px;
    padding: 22px 20px;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-feature-card:last-child {
    border-right: 0;
}

.hero-feature-card h3 {
    margin: 0 0 8px;
    font-family: "Manrope", sans-serif;
    font-size: 1.18rem;
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-feature-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.45;
    font-size: 0.84rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #ffffff;
    box-shadow: 0 18px 30px rgba(215, 25, 32, 0.24);
}

.button-secondary,
.button-ghost {
    background: #ffffff;
    color: var(--ink);
    border-color: rgba(16, 17, 18, 0.14);
}

.button-block {
    width: 100%;
}

.button-small {
    min-height: 38px;
    padding: 0 14px;
}

.stats-band {
    padding: 0 0 40px;
}

.stats-grid,
.card-grid,
.gallery-grid,
.contact-forms-stage,
.contact-support-grid {
    display: grid;
    gap: 20px;
}

.stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(16, 17, 18, 0.08);
    box-shadow: none;
}

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

.stat-card,
.info-card,
.sector-card,
.gallery-card,
.value-panel,
.contact-form,
.map-card,
.admin-panel,
.admin-login-card,
.inquiry-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(16, 17, 18, 0.06);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(16, 17, 18, 0.06);
}

.stat-card {
    padding: 28px 26px;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    border-right: 1px solid rgba(16, 17, 18, 0.08);
}

.stat-card:last-child {
    border-right: 0;
}

.stat-card strong {
    display: inline-block;
    color: var(--brand);
    font-family: "Manrope", sans-serif;
    font-size: 2.8rem;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.stat-card p {
    margin: 10px 0 0;
    color: var(--ink);
    font-weight: 700;
}

.lead {
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.66;
}

.mission-card {
    margin-top: 24px;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 241, 0.96));
    border: 1px solid rgba(16, 17, 18, 0.08);
    box-shadow: 0 18px 42px rgba(16, 17, 18, 0.06);
}

.mission-card h3,
.value-panel h3,
.info-card h3,
.sector-card h3,
.gallery-card h3,
.map-card h3,
.contact-info h3 {
    margin: 0 0 12px;
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 800;
}

.value-panel {
    padding: 34px;
    background:
        linear-gradient(180deg, rgba(17, 18, 20, 0.98), rgba(28, 30, 35, 0.98)),
        #141519;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.value-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #f1202a 0%, #ff6a70 40%, #d10f18 100%);
}

.brand-emblem {
    width: 120px;
    margin-bottom: 24px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.value-list,
.check-list,
.contact-columns ul,
.social-links,
.inquiry-meta {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-list li,
.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
}

.value-list li::before,
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52em;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), #ff6b71);
}

.info-card,
.sector-card {
    position: relative;
    padding: 28px;
    overflow: hidden;
}

.info-card::after,
.sector-card::after {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #d71920, #ff5f66);
}

.card-index {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--brand);
    font-family: "Manrope", sans-serif;
    font-size: 1.3rem;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.sector-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(215, 25, 32, 0.16), rgba(255, 255, 255, 0.8)),
        #ffffff;
    border: 1px solid rgba(215, 25, 32, 0.14);
    color: var(--brand);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.sector-icon svg {
    width: 28px;
    height: 28px;
    display: block;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.section-reasons {
    overflow: clip;
}

.reasons-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    gap: 44px;
    align-items: start;
}

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

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

.reasons-copy .section-heading h2 {
    max-width: 620px;
    font-size: clamp(2.4rem, 4vw, 4.1rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.check-list {
    display: grid;
    gap: 18px;
    max-width: 760px;
}

.check-list li {
    margin-bottom: 0;
    padding: 0 0 0 28px;
    font-size: 1.02rem;
    line-height: 1.62;
    border: 0;
    background: transparent;
    backdrop-filter: none;
}

.check-list li::before {
    top: 0.72rem;
    width: 10px;
    height: 10px;
}

.reasons-visuals {
    display: grid;
    gap: 20px;
    align-content: start;
    justify-items: stretch;
}

.reason-visual {
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
}

.reason-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reason-visual-primary {
    width: 100%;
    aspect-ratio: 1.16 / 0.78;
}

.reason-visual-secondary {
    width: 100%;
    aspect-ratio: 1.16 / 0.78;
}

.reason-visual-primary img {
    object-position: center center;
}

.reason-visual-secondary img {
    object-position: center top;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.timeline-item {
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(16, 17, 18, 0.08);
    box-shadow: 0 18px 42px rgba(16, 17, 18, 0.06);
    position: relative;
    overflow: hidden;
}

.timeline-item::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #d71920, #ff5f66);
}

.timeline-index {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand), #f2444c);
    color: #ffffff;
    font-weight: 800;
}

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

.gallery-card {
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
    border-radius: 24px;
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 1 / 0.92;
    object-fit: cover;
}

.gallery-card-copy {
    padding: 24px 24px 26px;
}

.narrow {
    max-width: 900px;
}

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

.faq-item {
    padding: 24px 26px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(16, 17, 18, 0.08);
    box-shadow: 0 16px 36px rgba(16, 17, 18, 0.05);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #d71920, #ff5f66);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.4;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 16px 0 0;
}

.contact-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    align-items: start;
}

.contact-forms-stage {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 24px;
    max-width: 980px;
    margin-inline: auto;
}

.contact-support-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.95fr) minmax(0, 1.1fr);
    align-items: stretch;
}

.contact-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 28px;
}

.contact-columns li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
}

.contact-columns a {
    color: var(--brand);
    font-weight: 700;
}

.social-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    align-items: center;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.social-links a,
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(16, 17, 18, 0.1);
    font-weight: 700;
    color: var(--ink);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.social-links a:hover,
.social-link:hover {
    transform: translateY(-1px);
    border-color: rgba(16, 17, 18, 0.18);
    box-shadow: 0 14px 24px rgba(16, 17, 18, 0.08);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: currentColor;
}

.social-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.social-facebook .social-icon {
    color: #1877f2;
}

.social-whatsapp .social-icon {
    color: #25d366;
}

.social-viber .social-icon {
    color: #7360f2;
}

.social-tiktok .social-icon {
    color: #111111;
}

.map-card .social-links {
    flex-direction: column;
    align-items: stretch;
    overflow: visible;
    padding-bottom: 0;
}

.map-card .social-links a,
.map-card .social-link {
    width: 100%;
    justify-content: flex-start;
}

.contact-side {
    display: grid;
    gap: 20px;
}

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

.contact-form,
.map-card,
.admin-panel,
.admin-login-card {
    padding: 28px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form-panel {
    align-content: start;
    padding: 34px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 242, 240, 0.95)),
        #ffffff;
    box-shadow: 0 18px 44px rgba(16, 17, 18, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-panel:nth-child(2) {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 247, 249, 0.96)),
        #ffffff;
}

.contact-form-panel::before,
.contact-summary-card::before,
.map-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #d71920, #ff5f66);
}

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

.form-heading h3 {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.15;
}

.form-heading p {
    margin: 0;
}

.form-badge {
    justify-self: start;
    padding: 10px 14px;
    background: rgba(215, 25, 32, 0.1);
    color: var(--brand);
    font-weight: 800;
}

.form-route,
.form-note {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.form-route strong {
    color: var(--ink);
}

.form-highlights,
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-highlights {
    display: grid;
    gap: 10px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(215, 25, 32, 0.05);
    border: 1px solid rgba(215, 25, 32, 0.08);
}

.form-highlights li {
    position: relative;
    padding-left: 22px;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.6;
}

.form-highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
}

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

.field-span-full {
    grid-column: 1 / -1;
}

label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 700;
}

input,
textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 14px;
    border: 1px solid rgba(16, 17, 18, 0.12);
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

textarea {
    resize: vertical;
    min-height: 152px;
}

input:focus,
textarea:focus {
    outline: 2px solid rgba(215, 25, 32, 0.15);
    border-color: rgba(215, 25, 32, 0.36);
    box-shadow: 0 0 0 5px rgba(215, 25, 32, 0.08);
    background: #ffffff;
}

.map-card iframe {
    width: 100%;
    height: 320px;
    border: 0;
    border-radius: 18px;
}

.alert {
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 700;
}

.alert-success {
    color: var(--success);
    background: rgba(22, 101, 52, 0.09);
    border: 1px solid rgba(22, 101, 52, 0.18);
}

.alert-error {
    color: var(--error);
    background: rgba(185, 28, 28, 0.08);
    border: 1px solid rgba(185, 28, 28, 0.16);
}

.form-actions {
    display: grid;
    gap: 12px;
    align-content: start;
}

.contact-summary-card {
    padding: 28px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 245, 242, 0.94)),
        #ffffff;
    border: 1px solid rgba(16, 17, 18, 0.06);
    box-shadow: 0 18px 42px rgba(16, 17, 18, 0.06);
    position: relative;
    overflow: hidden;
}

.contact-summary-card > span,
.map-card > span {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--brand);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.contact-summary-card h3 {
    margin: 0 0 10px;
}

.contact-mini-list {
    display: grid;
    gap: 18px;
}

.contact-mini-group {
    display: grid;
    gap: 10px;
}

.contact-mini-group > strong {
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.contact-mini-group p {
    margin: 0;
}

.contact-mini-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.contact-mini-group li {
    display: grid;
    gap: 4px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}

.contact-mini-group li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-mini-group a {
    color: var(--brand);
    font-weight: 800;
}

.contact-mini-group span {
    color: var(--muted);
    line-height: 1.55;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}

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

.map-card {
    display: grid;
    gap: 18px;
    padding: 28px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.map-card h3 {
    margin: -6px 0 0;
}

.site-footer {
    padding: 42px 0 48px;
    background: transparent;
    color: rgba(255, 255, 255, 0.84);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: end;
    padding: 32px 36px;
    border-radius: 28px;
    background: linear-gradient(180deg, #111214 0%, #1a1c20 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    position: relative;
    overflow: hidden;
}

.footer-inner::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #d71920, #ff5f66);
}

.footer-brand-block {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.brand-footer span,
.brand-footer strong {
    color: #ffffff;
}

.brand-footer img {
    width: 86px;
    height: 86px;
}

.brand-footer strong {
    font-size: 2.8rem;
    line-height: 0.92;
}

.brand-footer .brand-wordmark > span {
    font-size: 0.88rem;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.72);
}

.footer-note {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.footer-meta {
    display: grid;
    gap: 6px;
    align-items: center;
    justify-items: end;
    text-align: right;
    max-width: 340px;
}

.footer-meta span {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.45;
}

.footer-meta a {
    color: #ffffff;
    font-weight: 700;
}

.admin-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(215, 25, 32, 0.13), transparent 30%),
        #f5f1ed;
}

.admin-shell {
    width: min(1280px, calc(100vw - 32px));
    margin: 0 auto;
    padding: 42px 0 64px;
}

.admin-login-card {
    max-width: 520px;
    margin: 40px auto;
}

.admin-login-card h1,
.admin-panel-heading h2 {
    margin: 0 0 12px;
}

.admin-dashboard {
    display: grid;
    gap: 24px;
}

.admin-content-stack {
    display: grid;
    gap: 24px;
}

.admin-dashboard-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.admin-dashboard-links {
    display: flex;
    gap: 12px;
}

.admin-section-nav {
    position: sticky;
    top: 98px;
    z-index: 20;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(16, 17, 18, 0.08);
    box-shadow: var(--shadow-soft);
}

.admin-section-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(215, 25, 32, 0.06);
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 800;
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.admin-section-nav a:hover {
    background: var(--brand);
    color: #ffffff;
    transform: translateY(-1px);
}

.admin-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 24px;
}

.admin-panel-full {
    width: 100%;
}

.admin-panel-heading p,
.admin-login-card p,
.empty-state,
code {
    color: var(--muted);
}

.admin-form {
    display: grid;
    gap: 16px;
}

.admin-section-card {
    padding: 32px;
    border-radius: 28px;
}

.admin-section-form {
    gap: 24px;
}

.admin-fields-grid,
.admin-media-grid {
    display: grid;
    gap: 16px;
}

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

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

.admin-language-card,
.admin-card-item,
.admin-image-card {
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(16, 17, 18, 0.08);
}

.admin-language-card h3,
.admin-card-item > strong,
.admin-image-meta strong {
    margin: 0;
}

.admin-card-list {
    display: grid;
    gap: 18px;
}

.admin-subgrid {
    display: grid;
    gap: 12px;
}

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

.admin-media-grid-single {
    grid-template-columns: 1fr;
}

.admin-image-preview {
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(16, 17, 18, 0.04), rgba(16, 17, 18, 0.01));
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(16, 17, 18, 0.08);
}

.admin-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-image-meta {
    display: grid;
    gap: 6px;
}

.admin-image-meta p {
    margin: 0;
    color: var(--muted);
    word-break: break-word;
}

.admin-field {
    display: grid;
    gap: 8px;
}

.admin-field span {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--ink);
}

.admin-field input,
.admin-field textarea,
.admin-field select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(16, 17, 18, 0.12);
    background: #ffffff;
    color: var(--ink);
}

.admin-field textarea {
    min-height: 110px;
    resize: vertical;
}

.admin-field select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--muted) 50%),
        linear-gradient(135deg, var(--muted) 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.json-editor {
    min-height: 680px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.9rem;
    line-height: 1.55;
}

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

.inquiry-card {
    padding: 20px;
}

.inquiry-card-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.inquiry-card-head strong {
    display: block;
    font-size: 1.06rem;
}

.inquiry-card-head span {
    color: var(--muted);
    font-size: 0.9rem;
}

.inquiry-meta {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.inquiry-meta strong {
    color: var(--ink);
}

.inquiry-type {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(215, 25, 32, 0.08);
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1080px) {
    .hero-grid,
    .split-grid,
    .contact-grid,
    .admin-grid,
    .card-grid-3,
    .gallery-grid,
    .timeline,
    .stats-grid,
    .forms-grid,
    .contact-support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .poster-stack {
        min-height: 560px;
    }

    .admin-fields-grid-3,
    .admin-media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reasons-layout {
        grid-template-columns: 1fr;
    }

    .hero-stage.hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    }

    .hero-copy {
        padding-right: 34px;
    }
}

@media (max-width: 1360px) {
    .hero-stage.hero-grid {
        grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    }

    .hero h1 {
        font-size: clamp(3rem, 5.1vw, 5.1rem);
    }

    .hero h1 .is-accent {
        font-size: clamp(4.4rem, 7.4vw, 6.8rem);
    }

    .hero-solution {
        font-size: clamp(1.75rem, 2.5vw, 2.5rem);
        max-width: 460px;
    }

    .hero-description,
    .hero-trust {
        max-width: 500px;
    }

    .hero-frame {
        min-height: 530px;
    }
}

@media (max-width: 860px) {
    .menu-toggle {
        display: inline-block;
    }

    .header-panel {
        position: absolute;
        top: calc(100% + 8px);
        left: 16px;
        right: 16px;
        display: none;
        padding: 18px;
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(16, 17, 18, 0.08);
        box-shadow: var(--shadow-soft);
    }

    .header-panel.is-open,
    .header-panel[data-force-visible="true"] {
        display: grid;
    }

    .site-nav,
    .header-tools {
        flex-wrap: wrap;
    }

    .hero-grid,
    .split-grid,
    .contact-grid,
    .admin-grid,
    .card-grid-3,
    .gallery-grid,
    .timeline,
    .stats-grid,
    .contact-columns,
    .forms-grid,
    .contact-forms-stage,
    .contact-support-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .header-inner {
        min-height: 94px;
        padding-top: 8px;
    }

    .site-header .brand-lockup img {
        width: 82px;
        height: 82px;
    }

    .site-header .brand-lockup strong {
        font-size: 2.6rem;
    }

    .site-header .brand-lockup .brand-wordmark > span {
        font-size: 0.78rem;
        letter-spacing: 0.18em;
    }

    .hero-stage {
        padding: 0;
        border-radius: 22px;
    }

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

    .hero-copy {
        padding: 28px 22px 30px;
        clip-path: none;
    }

    html[lang="ru"] .hero-copy {
        padding-right: 22px;
        clip-path: none;
    }

    .hero-kicker {
        font-size: 0.92rem;
    }

    .hero h1 {
        margin-top: 16px;
        font-size: clamp(3.2rem, 13vw, 5.2rem);
    }

    html[lang="ru"] .hero h1 {
        font-size: clamp(2.15rem, 9.8vw, 3.45rem);
        line-height: 0.94;
        letter-spacing: -0.038em;
        max-width: 100%;
    }

    .hero h1 .is-accent {
        font-size: clamp(4.6rem, 17vw, 6.6rem);
    }

    html[lang="ru"] .hero h1 .is-accent {
        font-size: clamp(2.9rem, 12.8vw, 4.45rem);
        letter-spacing: -0.04em;
    }

    .hero-solution {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: clamp(1.55rem, 7vw, 2.4rem);
    }

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

    .hero-visual::before,
    .hero-visual::after {
        display: none;
    }

    .hero-frame {
        min-height: 400px;
        border-radius: 0 0 22px 22px;
    }

    .hero-frame img {
        object-position: 68% 10%;
        transform: scale(1.18);
    }

    .hero-floating-stat {
        right: 12px;
        bottom: 18px;
        width: min(300px, calc(100% - 24px));
    }

    .hero-floating-stat strong {
        padding: 16px 18px 15px 22px;
    }

    .hero-feature-strip {
        grid-template-columns: 1fr;
    }

    .footer-inner,
    .admin-dashboard-header {
        align-items: flex-start;
    }

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

    .admin-section-nav {
        top: 88px;
    }

    .footer-meta {
        justify-items: start;
        text-align: left;
        max-width: none;
    }

    .admin-fields-grid-2,
    .admin-fields-grid-3,
    .admin-media-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 640px) {
    .section {
        padding: 22px 0;
    }

    .section-shell {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .contact-form-panel,
    .contact-summary-card,
    .map-card {
        padding: 24px;
        border-radius: 24px;
    }

    .header-inner {
        gap: 16px;
        min-height: 88px;
        padding-top: 8px;
    }

    .brand-lockup {
        gap: 12px;
    }

    .site-header .brand-lockup img {
        width: 62px;
        height: 62px;
    }

    .site-header .brand-lockup strong {
        font-size: 2rem;
        letter-spacing: 0.05em;
    }

    .site-header .brand-lockup .brand-wordmark > span {
        font-size: 0.68rem;
        letter-spacing: 0.12em;
    }

    .hero-stage {
        border-radius: 20px;
    }

    html[lang="ru"] .hero-copy {
        padding-right: 18px;
    }

    .eyebrow {
        padding: 9px 12px;
        font-size: 0.68rem;
        letter-spacing: 0.18em;
    }

    .hero-kicker {
        margin-top: 0;
        font-size: 0.84rem;
        line-height: 1.4;
    }

    .hero h1 {
        font-size: clamp(3.8rem, 17vw, 5.4rem);
        line-height: 0.86;
    }

    .hero h1 .is-accent {
        font-size: clamp(5.5rem, 22vw, 7rem);
    }

    .hero-description {
        font-size: 1.02rem;
    }

    .hero .button-primary,
    .hero .button-secondary {
        width: 100%;
    }

    .admin-shell {
        width: min(100vw - 20px, 1280px);
        padding: 24px 0 42px;
    }

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

    .admin-section-card,
    .admin-language-card,
    .admin-card-item,
    .admin-image-card {
        padding: 18px;
        border-radius: 20px;
    }

    .admin-section-nav {
        position: static;
        padding: 12px;
    }

    .hero h1 {
        margin: 14px 0 16px;
        font-size: clamp(2.8rem, 16vw, 4.4rem);
    }

    html[lang="ru"] .hero h1 {
        font-size: clamp(1.92rem, 11.2vw, 2.95rem);
        line-height: 0.96;
        letter-spacing: -0.03em;
        max-width: 100%;
    }

    .hero h1 .is-accent {
        font-size: clamp(4rem, 21vw, 5.6rem);
    }

    html[lang="ru"] .hero h1 .is-accent {
        font-size: clamp(2.55rem, 14.4vw, 3.8rem);
        letter-spacing: -0.03em;
    }

    .hero-solution {
        padding: 10px 14px;
        border-radius: 16px;
        font-size: clamp(1.35rem, 7vw, 1.9rem);
    }

    .hero-description,
    .hero-trust,
    .hero-points li {
        font-size: 0.95rem;
    }

    .hero-frame {
        min-height: 320px;
    }

    .hero-frame img {
        object-position: 70% 10%;
        transform: scale(1.16);
    }

    .brand strong {
        font-size: 1.72rem;
    }

    .hero-actions,
    .admin-dashboard-links {
        width: 100%;
        flex-direction: column;
    }

    .button,
    .button-secondary,
    .button-ghost {
        width: 100%;
    }
}

@media (min-width: 861px) {
    .header-inner {
        min-height: 96px;
        padding-top: 10px;
    }

    .site-header .brand-lockup img {
        width: 88px;
        height: 88px;
    }

    .site-header .brand-lockup strong {
        font-size: 3.02rem;
    }

    .site-header .brand-lockup .brand-wordmark > span {
        font-size: 0.78rem;
        letter-spacing: 0.18em;
    }

    .hero {
        padding-bottom: 30px;
    }

    .hero-stage.hero-grid {
        grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    }

    .hero-copy {
        padding: 22px 24px 20px 24px;
    }

    html[lang="ru"] .hero-copy {
        padding-right: 34px;
    }

    .hero-kicker {
        margin-top: 10px;
        max-width: 500px;
        font-size: 0.78rem;
        line-height: 1.28;
    }

    .hero h1 {
        margin: 8px 0 4px;
        font-size: clamp(2.4rem, 4vw, 4rem);
        line-height: 0.88;
        max-width: 8.8ch;
    }

    html[lang="ru"] .hero h1 {
        font-size: clamp(2.15rem, 3.55vw, 3.5rem);
        line-height: 0.9;
        max-width: 10.8ch;
    }

    .hero h1 .is-accent {
        font-size: clamp(3.5rem, 5.8vw, 5.25rem);
    }

    html[lang="ru"] .hero h1 .is-accent {
        font-size: clamp(3.2rem, 5.15vw, 4.7rem);
    }

    .hero-solution {
        margin-bottom: 8px;
        max-width: 440px;
        padding: 10px 14px 11px;
        font-size: clamp(1.35rem, 2vw, 2rem);
    }

    .hero-description {
        max-width: 500px;
        font-size: 0.94rem;
        line-height: 1.42;
    }

    .hero-points {
        gap: 8px 12px;
        margin-top: 10px;
    }

    .hero-points li {
        font-size: 0.84rem;
        line-height: 1.34;
    }

    .hero-actions {
        gap: 10px;
        margin: 14px 0 8px;
    }

    .hero .button-primary,
    .hero .button-secondary {
        min-height: 50px;
        padding-inline: 20px;
        font-size: 0.94rem;
    }

    .hero-trust {
        max-width: 500px;
        font-size: 0.78rem;
        line-height: 1.42;
    }

    .hero-frame {
        min-height: 470px;
    }

    .hero-frame img {
        object-position: 64% 12%;
        transform: scale(1.08);
    }

    .hero-floating-stat {
        right: 18px;
        bottom: 34px;
        width: min(270px, calc(100% - 36px));
    }

    .hero-floating-stat strong {
        padding: 14px 18px 13px 22px;
        font-size: 0.82rem;
        line-height: 1.18;
    }

    .hero-feature-card {
        min-height: 96px;
        padding: 18px 20px 16px;
    }

    .hero-feature-card h3 {
        margin-bottom: 6px;
        font-size: 1.02rem;
    }

    .hero-feature-card p {
        font-size: 0.78rem;
        line-height: 1.32;
    }

    .stats-band {
        padding-bottom: 30px;
    }

    .section-shell-stats {
        padding-top: 22px;
    }

    .stat-card {
        padding: 20px 24px;
    }

    .stat-card strong {
        font-size: 2.25rem;
    }

    .stat-card p {
        margin-top: 8px;
        font-size: 0.92rem;
    }
}
