:root {
    --bg: #070914;
    --bg-soft: #0d1020;
    --panel: rgba(255,255,255,.074);
    --panel-strong: rgba(255,255,255,.12);
    --line: rgba(255,255,255,.14);
    --text: #f6f7fb;
    --muted: rgba(246,247,251,.68);
    --muted-2: rgba(246,247,251,.48);
    --gold: #f4c86b;
    --gold-2: #ffe4a3;
    --blue: #60d7ff;
    --green: #56f0a4;
    --pink: #d987ff;
    --danger: #ff6b6b;
    --shadow: 0 28px 80px rgba(0,0,0,.48);
    --radius-xl: 32px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1180px;
    --header-height: 82px;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 20% 8%, rgba(96,215,255,.22), transparent 30%),
        radial-gradient(circle at 80% 12%, rgba(244,200,107,.18), transparent 28%),
        linear-gradient(135deg, #050611 0%, #080b17 45%, #111426 100%);
    overflow-x: hidden;
}

body::selection { background: rgba(244,200,107,.32); color: #fff; }

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

img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    transform: translateY(-140%);
    background: var(--gold);
    color: #0d1020;
    padding: 10px 14px;
    border-radius: 999px;
    transition: transform .25s ease;
}
.skip-link:focus { transform: translateY(0); }

.bg-grid,
.bg-noise,
.orb {
    position: fixed;
    pointer-events: none;
}
.bg-grid {
    inset: 0;
    z-index: -5;
    background-image:
        linear-gradient(rgba(255,255,255,.048) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.048) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, #000 0%, transparent 78%);
}
.bg-noise {
    inset: 0;
    z-index: -4;
    opacity: .22;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}
.orb {
    z-index: -3;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .38;
    animation: drift 12s ease-in-out infinite alternate;
}
.orb-one { top: 8%; left: -120px; background: var(--blue); }
.orb-two { right: -130px; bottom: 10%; background: var(--gold); animation-delay: -4s; }

@keyframes drift {
    from { transform: translate3d(0,0,0) scale(1); }
    to { transform: translate3d(38px, -28px, 0) scale(1.12); }
}

.section-pad { padding: 110px 0; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    backdrop-filter: blur(18px);
    background: rgba(7,9,20,.68);
    border-bottom: 1px solid rgba(255,255,255,.09);
}
.site-header.is-scrolled {
    background: rgba(7,9,20,.86);
    box-shadow: 0 14px 40px rgba(0,0,0,.26);
}
.nav-shell {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}
.brand-logo {
    width: 52px;
    height: 52px;
    filter: drop-shadow(0 12px 24px rgba(244,200,107,.18));
}
.brand-copy { display: grid; line-height: 1.08; }
.brand-copy strong {
    letter-spacing: .14em;
    font-weight: 900;
    font-size: 1.02rem;
}
.brand-copy small {
    color: var(--muted-2);
    font-size: .72rem;
    letter-spacing: .02em;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    color: var(--muted);
    font-size: .94rem;
}
.nav-links a {
    position: relative;
    transition: color .2s ease;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transform: scaleX(.4);
    transition: opacity .2s ease, transform .2s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { opacity: 1; transform: scaleX(1); }
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.language-switcher {
    display: inline-flex;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.055);
}
.language-switcher button {
    border: 0;
    color: var(--muted);
    background: transparent;
    border-radius: 999px;
    padding: 8px 9px;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .04em;
    transition: color .18s ease, background .18s ease, transform .18s ease;
}
.language-switcher button:hover { color: #fff; transform: translateY(-1px); }
.language-switcher button.is-active {
    color: #111426;
    background: linear-gradient(135deg, var(--gold), var(--blue));
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 850;
    letter-spacing: -.015em;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    color: #080a12;
    background: linear-gradient(135deg, var(--gold-2), var(--gold) 42%, var(--blue));
    box-shadow: 0 16px 42px rgba(244,200,107,.20);
}
.btn-primary:hover { box-shadow: 0 20px 54px rgba(244,200,107,.32); }
.btn-glass,
.btn-ghost {
    color: var(--text);
    border-color: var(--line);
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(12px);
}
.btn-glass:hover,
.btn-ghost:hover { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.11); }
.btn-small { min-height: 42px; padding-inline: 15px; font-size: .88rem; }

.hero {
    min-height: calc(100vh - var(--header-height));
    display: grid;
    align-items: center;
    padding-top: 80px;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
    gap: 64px;
    align-items: center;
}
.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-2);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 7px rgba(86,240,164,.13), 0 0 24px rgba(86,240,164,.66);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
    margin: 22px 0 24px;
    font-size: clamp(3.2rem, 7vw, 7rem);
    line-height: .91;
    letter-spacing: -.075em;
    max-width: 900px;
}
h1 span,
h2 span {
    color: transparent;
    background: linear-gradient(135deg, #fff 0%, var(--gold-2) 42%, var(--blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
.hero-lead {
    max-width: 680px;
    color: var(--muted);
    font-size: clamp(1.08rem, 1.7vw, 1.32rem);
    line-height: 1.65;
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 34px 0;
}
.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 620px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.055);
    overflow: hidden;
    box-shadow: inset 0 1px rgba(255,255,255,.09);
}
.hero-meta div {
    padding: 18px 20px;
    border-right: 1px solid var(--line);
}
.hero-meta div:last-child { border-right: 0; }
.hero-meta strong {
    display: block;
    font-size: 2.2rem;
    line-height: 1;
    color: #fff;
}
.hero-meta span {
    color: var(--muted-2);
    font-size: .9rem;
}

.hero-visual {
    position: relative;
    min-height: 680px;
    display: grid;
    place-items: center;
}
.phone-frame {
    position: relative;
    width: min(100%, 420px);
    min-height: 640px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 42px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.05)),
        radial-gradient(circle at 50% 10%, rgba(96,215,255,.18), transparent 38%),
        rgba(9,13,25,.86);
    box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.24);
    padding: 22px;
    overflow: hidden;
}
.phone-frame::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 50%;
    width: 136px;
    height: 34px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(3,5,12,.86);
    z-index: 2;
}
.phone-frame::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 41px;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255,255,255,.22), transparent 30%, rgba(244,200,107,.12) 60%, transparent);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    padding: 1px;
}
.phone-glow {
    position: absolute;
    inset: -30% -20% auto;
    height: 260px;
    background: radial-gradient(circle, rgba(244,200,107,.22), transparent 64%);
    animation: pulseGlow 5s ease-in-out infinite alternate;
}
@keyframes pulseGlow { to { transform: translateY(28px) scale(1.1); opacity: .75; } }
.phone-top {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    padding: 10px 6px 38px;
    font-weight: 700;
}
.phone-title {
    position: relative;
    z-index: 1;
    text-align: center;
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.service-search {
    color: var(--muted-2);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 16px;
    background: rgba(255,255,255,.07);
    margin-bottom: 14px;
}
.device-list {
    display: grid;
    gap: 10px;
}
.device-row {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 10px;
    align-items: center;
    padding: 13px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.09);
    background: rgba(255,255,255,.045);
}
.device-row .check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.28);
}
.device-row strong {
    display: block;
    font-size: .93rem;
    letter-spacing: -.02em;
}
.device-row small {
    color: var(--muted-2);
}
.device-row.selected {
    border-color: rgba(96,215,255,.44);
    background: linear-gradient(90deg, rgba(96,215,255,.22), rgba(255,255,255,.07));
    box-shadow: 0 14px 26px rgba(96,215,255,.08);
}
.device-row.selected .check {
    background: linear-gradient(135deg, var(--blue), var(--gold));
    position: relative;
    border: 0;
}
.device-row.selected .check::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 5px;
    border-left: 2px solid #08101d;
    border-bottom: 2px solid #08101d;
    transform: rotate(-45deg);
    left: 6px;
    top: 7px;
}
.floating { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.glass-badge {
    position: absolute;
    display: grid;
    gap: 3px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.085);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.glass-badge span {
    color: var(--muted-2);
    font-size: .8rem;
}
.glass-badge strong { font-size: 1.02rem; }
.badge-top { top: 62px; right: 0; }
.badge-bottom { left: 0; bottom: 92px; }

.ticker {
    overflow: hidden;
    border-block: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.045);
}
.ticker-track {
    width: max-content;
    display: flex;
    gap: 34px;
    padding: 18px 0;
    animation: ticker 28s linear infinite;
}
.ticker span {
    color: rgba(255,255,255,.78);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .14em;
    font-size: .82rem;
}
@keyframes ticker { to { transform: translateX(-50%); } }

.split-grid,
.ecosystem-grid,
.cabinet-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 56px;
    align-items: start;
}
.section-copy h2,
.section-head h2,
.forms-stack h2 {
    margin: 14px 0 16px;
    font-size: clamp(2.15rem, 4.3vw, 4.4rem);
    line-height: .98;
    letter-spacing: -.055em;
}
.section-copy p,
.section-head p,
.forms-stack > p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 1.06rem;
}
.strategy-cards,
.ecosystem-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.strategy-cards article,
.ecosystem-card,
.form-card,
.dashboard-preview,
.service-card,
.process-line article {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.048));
    box-shadow: inset 0 1px rgba(255,255,255,.09), 0 22px 60px rgba(0,0,0,.22);
    backdrop-filter: blur(16px);
}
.strategy-cards article {
    min-height: 220px;
    padding: 26px;
}
.strategy-cards article:first-child {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(244,200,107,.16), rgba(96,215,255,.07));
}
.strategy-cards span {
    color: var(--gold);
    font-weight: 900;
}
.strategy-cards h3,
.ecosystem-card h3,
.process-line h3 {
    margin: 16px 0 10px;
    font-size: 1.28rem;
}
.strategy-cards p,
.ecosystem-card p,
.process-line p,
.service-card p,
.login-mock p {
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 38px;
}
.section-head p { max-width: 420px; margin-bottom: 8px; }
.section-head.compact {
    display: block;
    max-width: 840px;
}
.services-section {
    position: relative;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.service-card {
    position: relative;
    min-height: 314px;
    padding: 22px;
    overflow: hidden;
    transition: transform .24s ease, border-color .24s ease, background .24s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(244,200,107,.34);
    background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.062));
}
.card-shine {
    position: absolute;
    inset: -80px auto auto -80px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(244,200,107,.22), transparent 66%);
    transition: transform .4s ease;
}
.service-card:hover .card-shine { transform: translate(70px, 34px) scale(1.18); }
.service-top,
.service-meta,
.form-actions,
.dash-header,
.dash-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.service-index {
    color: var(--muted-2);
    font-weight: 900;
}
.service-badge,
.pill {
    color: #07101a;
    background: linear-gradient(135deg, var(--gold), var(--blue));
    border-radius: 999px;
    padding: 7px 10px;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.service-card h3 {
    margin: 30px 0 12px;
    font-size: 1.34rem;
    line-height: 1.14;
    letter-spacing: -.025em;
}
.service-meta {
    margin: 24px 0 18px;
    color: #fff;
    font-weight: 900;
}
.service-meta span {
    padding: 9px 10px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: rgba(255,255,255,.055);
}
.service-cta {
    width: 100%;
    min-height: 44px;
    color: var(--text);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    font-weight: 850;
    transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.service-cta:hover {
    transform: translateY(-2px);
    border-color: rgba(244,200,107,.34);
    background: rgba(244,200,107,.13);
}

.process-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}
.process-line::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 34px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244,200,107,.45), rgba(96,215,255,.45), transparent);
}
.process-line article {
    position: relative;
    padding: 26px;
    min-height: 220px;
}
.process-line article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--gold-2);
    border: 1px solid rgba(244,200,107,.3);
    background: rgba(244,200,107,.08);
    font-size: .8rem;
    font-weight: 900;
}

.ecosystem-cards { align-items: stretch; }
.ecosystem-card { padding: 26px; min-height: 198px; }
.ecosystem-card.big {
    grid-row: span 2;
    min-height: 416px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        radial-gradient(circle at 30% 20%, rgba(96,215,255,.22), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
}
.icon-orbit {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 42px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50%;
    animation: rotateSoft 12s linear infinite;
}
.icon-orbit::before,
.icon-orbit::after,
.icon-orbit span {
    content: "";
    position: absolute;
    border-radius: 50%;
}
.icon-orbit::before {
    inset: 26px;
    border: 1px solid rgba(244,200,107,.22);
}
.icon-orbit::after {
    width: 20px;
    height: 20px;
    right: 16px;
    top: 28px;
    background: var(--gold);
    box-shadow: 0 0 24px rgba(244,200,107,.8);
}
.icon-orbit span {
    width: 72px;
    height: 72px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: linear-gradient(135deg, var(--blue), var(--gold));
    box-shadow: 0 22px 50px rgba(96,215,255,.22);
}
@keyframes rotateSoft { to { transform: rotate(360deg); } }
.token-card {
    background:
        linear-gradient(135deg, rgba(244,200,107,.16), rgba(217,135,255,.12)),
        rgba(255,255,255,.06);
}

.cabinet-grid {
    grid-template-columns: minmax(330px, .82fr) minmax(0, 1.18fr);
    align-items: center;
}
.dashboard-preview {
    padding: 26px;
    border-radius: 34px;
    min-height: 560px;
    background:
        radial-gradient(circle at 80% 0%, rgba(96,215,255,.22), transparent 32%),
        linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.052));
}
.avatar {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    color: #07101a;
    background: linear-gradient(135deg, var(--gold), var(--blue));
    font-weight: 1000;
    margin-right: 10px;
}
.dash-score {
    margin: 58px 0 28px;
    padding: 26px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 26px;
    background: rgba(0,0,0,.16);
}
.dash-score span { color: var(--muted-2); }
.dash-score strong {
    display: block;
    margin: 8px 0 18px;
    font-size: 4.8rem;
    letter-spacing: -.06em;
    line-height: .88;
}
.progress {
    height: 12px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255,255,255,.09);
}
.progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--gold), var(--blue));
    animation: grow 1.2s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes grow { from { width: 0; } }
.dash-list {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}
.dash-list div {
    padding: 15px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
}
.dash-list span,
.dash-note { color: var(--muted); }
.dash-note {
    padding: 18px;
    border-radius: 18px;
    border: 1px dashed rgba(244,200,107,.28);
    background: rgba(244,200,107,.06);
    line-height: 1.55;
}
.forms-stack { display: grid; gap: 18px; }
.form-card {
    padding: 24px;
}
.form-card h3 {
    margin-bottom: 18px;
    font-size: 1.32rem;
}
.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: .92rem;
    font-weight: 700;
}
input,
select,
textarea {
    width: 100%;
    color: var(--text);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    background: rgba(0,0,0,.20);
    min-height: 50px;
    padding: 13px 14px;
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
select option { background: #111426; color: #fff; }
textarea { resize: vertical; min-height: 118px; }
input:focus,
select:focus,
textarea:focus {
    border-color: rgba(96,215,255,.56);
    box-shadow: 0 0 0 4px rgba(96,215,255,.10);
    background: rgba(0,0,0,.28);
}
.checkbox-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 14px 0 18px;
    color: var(--muted);
}
.checkbox-line input {
    width: 18px;
    height: 18px;
    min-height: 18px;
    margin-top: 2px;
    accent-color: var(--gold);
}
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.login-mock { opacity: .92; }

.contact-grid {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: center;
}
.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}
.booking-form { position: relative; }
.booking-form::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(244,200,107,.42), rgba(96,215,255,.38), transparent 58%);
    opacity: .36;
}

.site-footer {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 38px 0;
    background: rgba(0,0,0,.18);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .6fr 1fr;
    gap: 28px;
    align-items: center;
}
.footer-brand .brand-logo { width: 44px; height: 44px; }
.site-footer p,
.footer-note {
    color: var(--muted-2);
    line-height: 1.55;
    margin: 14px 0 0;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--muted);
}
.footer-note {
    display: grid;
    gap: 6px;
    text-align: right;
    font-size: .92rem;
}
.toast {
    position: fixed;
    left: 50%;
    bottom: 26px;
    z-index: 110;
    max-width: min(560px, calc(100% - 32px));
    transform: translate(-50%, 22px);
    opacity: 0;
    pointer-events: none;
    padding: 15px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.16);
    color: var(--text);
    background: rgba(13,16,32,.92);
    box-shadow: 0 18px 50px rgba(0,0,0,.34);
    backdrop-filter: blur(18px);
    transition: opacity .22s ease, transform .22s ease;
}
.toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1120px) {
    .nav-links { display: none; }
    .hero-grid,
    .split-grid,
    .ecosystem-grid,
    .cabinet-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .hero-visual { min-height: auto; }
    .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .process-line { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
    :root { --header-height: auto; }
    .container { width: min(100% - 28px, var(--container)); }
    .section-pad { padding: 72px 0; }
    .nav-shell { flex-wrap: wrap; padding: 12px 0; }
    .nav-actions { width: 100%; justify-content: space-between; }
    .language-switcher { flex: 1; justify-content: space-between; }
    .language-switcher button { flex: 1; }
    .btn-small { min-width: 118px; }
    h1 { font-size: clamp(3rem, 16vw, 4.9rem); }
    .hero { padding-top: 56px; }
    .hero-grid { gap: 34px; }
    .hero-meta { grid-template-columns: 1fr; }
    .hero-meta div { border-right: 0; border-bottom: 1px solid var(--line); }
    .hero-meta div:last-child { border-bottom: 0; }
    .phone-frame { min-height: 590px; border-radius: 32px; padding: 18px; }
    .phone-frame::before { width: 120px; height: 30px; }
    .glass-badge { position: static; margin-top: 14px; width: 100%; }
    .section-head { display: block; }
    .strategy-cards,
    .ecosystem-cards,
    .services-grid,
    .process-line,
    .field-grid,
    .footer-grid { grid-template-columns: 1fr; }
    .strategy-cards article:first-child,
    .ecosystem-card.big { grid-column: auto; grid-row: auto; min-height: auto; }
    .process-line::before { display: none; }
    .form-actions { flex-direction: column; align-items: stretch; }
    .form-actions .btn { width: 100%; }
    .footer-note { text-align: left; }
    .contact-buttons .btn { width: 100%; }
}

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