@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('/fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('/fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
    --bg: #ffffff;
    --bg-2: #f5f7fb;
    --bg-3: #eaeef6;
    --fg: #0f172a;
    --fg-2: #334155;
    --muted: #64748b;
    --line: #e2e8f0;
    --brand: #0f4fa8;
    --brand-2: #1d6fe0;
    --brand-soft: #e8f0fe;
    --brand-ink: #0b3a7c;
    --accent: #0d9488;
    --accent-soft: #e0f4f2;
    --ok: #15803d;
    --danger: #b91c1c;
    --danger-soft: #fee2e2;
    --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --radius: 16px;
    --radius-sm: 10px;
    --header-h: 72px;
    --hero-glow-1: rgba(29, 111, 224, 0.16);
    --hero-glow-2: rgba(13, 148, 136, 0.14);
    color-scheme: light;
}
html[data-theme='dark'] {
    --bg: #0b1220;
    --bg-2: #111a2c;
    --bg-3: #172238;
    --fg: #e8eef8;
    --fg-2: #c5d0e0;
    --muted: #8e9cb3;
    --line: #223049;
    --brand: #79b0ff;
    --brand-2: #8fbdff;
    --brand-soft: #14294b;
    --brand-ink: #cfe1ff;
    --accent: #2dd4bf;
    --accent-soft: #113b3a;
    --ok: #4ade80;
    --danger: #fca5a5;
    --danger-soft: #3b1414;
    --shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
    --hero-glow-1: rgba(121, 176, 255, 0.14);
    --hero-glow-2: rgba(45, 212, 191, 0.12);
    color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--fg);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5em; font-weight: 700; letter-spacing: -0.015em; color: var(--fg); }
h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 2.8vw, 2.15rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.3em; }
strong { font-weight: 600; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--brand-2); outline-offset: 2px; border-radius: 4px; }
.wrap { width: 100%; max-width: 1160px; margin: 0 auto; padding-left: 20px; padding-right: 20px; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--brand); color: #fff; padding: 10px 14px; border-radius: 8px; z-index: 100; }
.skip-link:focus { left: 12px; }
.muted { color: var(--muted); }
.lead { font-size: 1.15rem; color: var(--fg-2); }
.small { font-size: .9rem; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: 12px 20px; border-radius: 999px; border: 1.5px solid transparent;
    font-weight: 600; font-size: .98rem; line-height: 1.2; cursor: pointer; text-decoration: none !important;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 9px 15px; font-size: .9rem; }
.btn-lg { padding: 15px 26px; font-size: 1.05rem; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(15, 79, 168, 0.28); }
.btn-primary:hover { background: var(--brand-2); }
html[data-theme='dark'] .btn-primary { color: #0b1220; box-shadow: 0 6px 18px rgba(121, 176, 255, 0.22); }
.btn-secondary { background: var(--bg-3); color: var(--fg); }
.btn-secondary:hover { background: var(--line); }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-light { background: #fff; color: #0b3a7c; }
.btn-light:hover { background: #eef4ff; color: #0b3a7c; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.6); }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); }
.btn.is-busy { opacity: .7; pointer-events: none; }
.link-btn { background: none; border: 0; padding: 0; color: var(--brand); cursor: pointer; font: inherit; }
.link-btn:hover { text-decoration: underline; }

.site-header {
    position: sticky; top: 0; z-index: 50;
    background: color-mix(in srgb, var(--bg) 86%, transparent);
    backdrop-filter: saturate(160%) blur(12px);
    -webkit-backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 16px; min-height: var(--header-h); max-width: 1360px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--fg); text-decoration: none !important; white-space: nowrap; flex: none; }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; }
.brand-sub { font-size: .78rem; color: var(--muted); font-weight: 500; letter-spacing: .02em; }
.site-nav { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.nav-list { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-list a { display: block; padding: 8px 11px; border-radius: 8px; color: var(--fg-2); font-weight: 500; font-size: .93rem; white-space: nowrap; }
.nav-list a:hover { background: var(--bg-2); color: var(--fg); text-decoration: none; }
.nav-list a[aria-current='page'] { color: var(--brand); background: var(--brand-soft); }
.nav-tools { display: flex; align-items: center; gap: 10px; }
.switch { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: 3px; background: var(--bg-2); }
.switch-item { padding: 4px 10px; border-radius: 999px; font-size: .8rem; font-weight: 700; color: var(--muted); letter-spacing: .04em; }
.switch-item:hover { text-decoration: none; color: var(--fg); }
.switch-item.is-active { background: var(--brand); color: #fff; }
html[data-theme='dark'] .switch-item.is-active { color: #0b1220; }
.lang-switch { font-size: .8rem; font-weight: 700; letter-spacing: .04em; color: var(--muted); padding: 6px 8px; border-radius: 8px; }
.lang-switch:hover { color: var(--fg); background: var(--bg-2); text-decoration: none; }
.theme-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: var(--bg-2); color: var(--fg-2); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.theme-btn svg { width: 19px; height: 19px; }
.theme-btn .icon-moon { display: none; }
html[data-theme='dark'] .theme-btn .icon-moon { display: block; }
html[data-theme='dark'] .theme-btn .icon-sun { display: none; }
.nav-toggle { display: none; margin-left: auto; align-items: center; gap: 8px; background: none; border: 1px solid var(--line); border-radius: 10px; padding: 8px 12px; color: var(--fg); cursor: pointer; }
.nav-toggle-bars { display: inline-flex; flex-direction: column; gap: 4px; }
.nav-toggle-bars span { width: 18px; height: 2px; background: currentColor; border-radius: 2px; }

.site-main { display: block; }
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-tight { padding: clamp(40px, 6vw, 64px) 0; }
.section-alt { background: var(--bg-2); }
.section-head { max-width: 760px; margin-bottom: clamp(28px, 4vw, 44px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.section-head p { color: var(--fg-2); font-size: 1.05rem; }

.hero { position: relative; overflow: hidden; padding: clamp(56px, 9vw, 110px) 0 clamp(48px, 7vw, 90px); }
.hero::before, .hero::after { content: ''; position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0; pointer-events: none; }
.hero::before { width: 520px; height: 520px; right: -140px; top: -160px; background: var(--hero-glow-1); }
.hero::after { width: 420px; height: 420px; left: -160px; bottom: -200px; background: var(--hero-glow-2); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .9fr); gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--brand); }
.hero-lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--fg-2); max-width: 600px; margin-bottom: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none; padding: 0; margin: 0; color: var(--fg-2); font-size: .95rem; }
.hero-points li { display: inline-flex; align-items: center; gap: 8px; }
.hero-points svg { width: 18px; height: 18px; color: var(--ok); flex: none; }
.hero-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; }
.hero-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.hero-card-head img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 3px solid var(--brand-soft); }
.hero-card-head strong { display: block; font-size: 1.05rem; }
.hero-card-head span { color: var(--muted); font-size: .9rem; }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; list-style: none; margin: 0; padding: 0; }
.facts li { background: var(--bg-2); border-radius: var(--radius-sm); padding: 12px 14px; }
.facts strong { display: block; font-size: 1.35rem; color: var(--brand); letter-spacing: -0.02em; }
.facts span { font-size: .85rem; color: var(--muted); }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
    box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--brand) 35%, var(--line)); }
.card h3 { margin-top: 0; }
.card p { color: var(--fg-2); }
.card .card-link { margin-top: auto; font-weight: 600; }
.card-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--brand-soft); color: var(--brand); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card-icon svg { width: 24px; height: 24px; }
.card-onsite .card-icon { background: var(--accent-soft); color: var(--accent); }
.card-link::after { content: ' →'; }
.tag { display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; background: var(--brand-soft); color: var(--brand-ink); margin-bottom: 10px; }
.tag-onsite { background: var(--accent-soft); color: var(--accent); }

.band { background: linear-gradient(135deg, var(--brand-ink), var(--brand) 60%, var(--brand-2)); color: #fff; }
html[data-theme='dark'] .band { background: linear-gradient(135deg, #123a78, #1a4f9e 60%, #1d6fe0); }
.band h2, .band h3 { color: #fff; }
.band p { color: rgba(255, 255, 255, 0.86); }
.band a:not(.btn) { color: #fff; text-decoration: underline; }
.band-inner { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 36px; align-items: center; }
.band-logo { display: flex; align-items: center; gap: 14px; background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.25); border-radius: var(--radius); padding: 22px; }
.band-logo img { width: 56px; height: 56px; border-radius: 12px; background: #fff; padding: 6px; }
.band-list { list-style: none; padding: 0; margin: 16px 0 24px; display: grid; gap: 10px; }
.band-list li { display: flex; gap: 10px; align-items: flex-start; }
.band-list svg { width: 20px; height: 20px; flex: none; margin-top: 3px; }

.cta-band { background: linear-gradient(135deg, var(--brand-ink), var(--brand)); color: #fff; padding: clamp(40px, 6vw, 64px) 0; }
html[data-theme='dark'] .cta-band { background: linear-gradient(135deg, #123a78, #1a4f9e); }
.cta-band-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.cta-band-title { color: #fff; margin-bottom: 6px; font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.cta-band-text { color: rgba(255, 255, 255, 0.85); margin: 0; max-width: 560px; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.steps li { position: relative; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px 22px; }
.steps li::before { counter-increment: step; content: counter(step, decimal-leading-zero); display: inline-block; font-weight: 800; font-size: 1.6rem; color: var(--brand); letter-spacing: -0.03em; margin-bottom: 10px; }
.steps.steps-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.steps h3 { font-size: 1.05rem; }
.steps p { color: var(--fg-2); margin: 0; font-size: .95rem; }

.check-list { list-style: none; padding: 0; margin: 0 0 1.2em; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; }
.check-list svg { width: 20px; height: 20px; color: var(--ok); flex: none; margin-top: 3px; }
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }

.price-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.price-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.price-card.is-featured { border-color: var(--brand); box-shadow: var(--shadow); }
.price-card h3 { font-size: 1.1rem; }
.price-value { font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; color: var(--brand); margin: 6px 0 2px; }
.price-value small { font-size: .95rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price-note { color: var(--muted); font-size: .88rem; margin-bottom: 16px; }
.price-card .check-list { font-size: .95rem; }
.price-card .btn { margin-top: auto; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); }
table.rates { width: 100%; border-collapse: collapse; font-size: .96rem; }
table.rates th, table.rates td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.rates th { background: var(--bg-2); font-weight: 600; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
table.rates tr:last-child td { border-bottom: 0; }
table.rates td.num { white-space: nowrap; font-weight: 700; color: var(--brand); }
.notice { border-left: 4px solid var(--brand); background: var(--brand-soft); padding: 14px 18px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--fg); }
.notice p:last-child { margin: 0; }

.about-grid { display: grid; grid-template-columns: minmax(0, 320px) minmax(0, 1fr); gap: 40px; align-items: start; }
.portrait { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about-facts { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.about-facts li { display: flex; gap: 10px; align-items: flex-start; background: var(--bg-2); padding: 12px 14px; border-radius: var(--radius-sm); font-size: .95rem; }
.about-facts svg { width: 20px; height: 20px; color: var(--brand); flex: none; margin-top: 2px; }
.timeline { list-style: none; padding: 0; margin: 0; border-left: 2px solid var(--line); }
.timeline li { position: relative; padding: 0 0 22px 24px; }
.timeline li::before { content: ''; position: absolute; left: -7px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px var(--bg); }
.timeline time { display: block; font-size: .85rem; font-weight: 700; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.timeline strong { display: block; margin: 2px 0 4px; }
.timeline p { margin: 0; color: var(--fg-2); font-size: .95rem; }
.skills { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.skills li { background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px; font-size: .88rem; font-weight: 500; }

.case { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.case-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.case-meta span { font-size: .78rem; font-weight: 600; background: var(--bg-2); border-radius: 999px; padding: 4px 10px; color: var(--fg-2); }
.case h3 { font-size: 1.15rem; }
.case dl { margin: 0; display: grid; gap: 10px; }
.case dt { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.case dd { margin: 0 0 4px; color: var(--fg-2); }

.faq-list { display: grid; gap: 12px; max-width: 860px; }
.faq-list details { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 20px; }
.faq-list summary { cursor: pointer; font-weight: 600; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; font-size: 1.4rem; color: var(--brand); line-height: 1; flex: none; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details > div { padding: 0 0 18px; color: var(--fg-2); }
.faq-list details > div p:last-child { margin: 0; }

.breadcrumb { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-wrap: wrap; gap: 6px; font-size: .88rem; color: var(--muted); }
.breadcrumb li + li::before { content: '/'; margin-right: 6px; color: var(--line); }
.breadcrumb a { color: var(--muted); }
.page-head { padding: clamp(40px, 6vw, 64px) 0 clamp(28px, 4vw, 40px); }
.page-head h1 { margin-bottom: 14px; }
.page-head .lead { max-width: 780px; }

.service-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 40px; align-items: start; }
.service-content h2 { margin-top: 1.6em; font-size: 1.45rem; }
.service-content h2:first-child { margin-top: 0; }
.aside-card { position: sticky; top: calc(var(--header-h) + 20px); background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.aside-card h3 { font-size: 1.05rem; }
.aside-card .price-value { font-size: 1.7rem; }
.aside-card .btn { width: 100%; margin-top: 10px; }
.aside-links { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 8px; font-size: .95rem; }
.related { margin-top: 44px; }
.related h2 { font-size: 1.35rem; }

.contact-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 40px; align-items: start; }
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 6px; }
.field input, .field select, .field textarea {
    width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid var(--line);
    background: var(--bg); color: var(--fg); font: inherit; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 22%, transparent); }
.field textarea { min-height: 160px; resize: vertical; }
.field .hint { font-size: .85rem; color: var(--muted); margin: 6px 0 0; }
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: var(--danger); }
.field-error { color: var(--danger); font-size: .86rem; margin: 6px 0 0; }
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; }
.checkbox input { width: 18px; height: 18px; margin-top: 3px; flex: none; }
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; }
.alert-error { background: var(--danger-soft); color: var(--danger); border: 1px solid color-mix(in srgb, var(--danger) 30%, transparent); }
.alert-ok { background: var(--accent-soft); color: var(--accent); }
.channels { display: grid; gap: 14px; }
.channel { display: flex; gap: 14px; align-items: flex-start; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; text-decoration: none !important; color: var(--fg); transition: border-color .15s ease, transform .15s ease; }
.channel:hover { border-color: var(--brand); transform: translateY(-2px); }
.channel-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--brand-soft); color: var(--brand); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.channel-icon svg { width: 22px; height: 22px; }
.channel strong { display: block; margin-bottom: 2px; }
.channel span { color: var(--muted); font-size: .92rem; }
.channel-btn { width: 100%; text-align: left; cursor: pointer; font: inherit; }
.thanks-box { max-width: 720px; margin: 0 auto; text-align: center; padding: 40px 0; }
.thanks-box .big { font-size: 3rem; margin-bottom: 8px; }
.ticket-no { display: inline-block; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; background: var(--bg-2); padding: 6px 12px; border-radius: 8px; font-weight: 700; }

.legal { max-width: 820px; }
.legal h2 { font-size: 1.35rem; margin-top: 1.8em; }
.legal h3 { font-size: 1.08rem; margin-top: 1.4em; }
.legal address { font-style: normal; background: var(--bg-2); padding: 16px 20px; border-radius: var(--radius-sm); display: inline-block; }

.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: clamp(40px, 6vw, 64px) 0 28px; font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer-title { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 14px; }
.footer-title-gap { margin-top: 24px; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-list a, .footer-list button { color: var(--fg-2); }
.footer-list a:hover, .footer-list button:hover { color: var(--brand); }
.footer-brand-name { font-weight: 700; font-size: 1.05rem; color: var(--fg); margin-bottom: 8px; }
.footer-text { color: var(--fg-2); }
.footer-company { font-size: .88rem; color: var(--muted); }
.footer-link-strong { font-weight: 600; }
.footer-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; color: var(--muted); font-size: .86rem; }
.footer-bottom p { margin: 0; }

.country-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: var(--fg); color: var(--bg); box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.25); }
html[data-theme='dark'] .country-banner { background: #1c2a44; color: #fff; }
.country-banner-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding-top: 14px; padding-bottom: 14px; }
.country-banner-text { margin: 0; font-weight: 500; }
.country-banner-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.country-banner .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.country-banner .btn-ghost:hover { border-color: #fff; color: #fff; }
html.has-country-banner .chat-launcher { bottom: 92px; }

.chat-launcher {
    position: fixed; right: 18px; bottom: 18px; z-index: 55;
    display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 999px; border: 0;
    background: var(--brand); color: #fff; font-weight: 600; cursor: pointer; box-shadow: 0 10px 26px rgba(15, 79, 168, 0.35);
    transition: transform .15s ease;
}
html[data-theme='dark'] .chat-launcher { color: #0b1220; }
.chat-launcher:hover { transform: translateY(-2px); }
.chat-launcher svg { width: 20px; height: 20px; }
.chat-launcher.is-loading { opacity: .6; pointer-events: none; }
.chat-launcher[hidden] { display: none; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .btn, .card, .channel, .chat-launcher { transition: none; }
}

@media (max-width: 1240px) {
    .nav-list a { padding: 8px 8px; font-size: .88rem; }
    .nav-cta { display: none; }
    .brand-sub { display: none; }
}
@media (max-width: 960px) {
    .nav-toggle { display: inline-flex; }
    .site-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--bg); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); padding: 16px 20px 22px; flex-direction: column; align-items: stretch; gap: 16px; }
    html.nav-open .site-nav { display: flex; }
    .nav-list { flex-direction: column; gap: 2px; }
    .nav-list a { padding: 12px 12px; font-size: 1rem; }
    .nav-tools { flex-wrap: wrap; justify-content: flex-start; padding-top: 12px; border-top: 1px solid var(--line); }
    .nav-cta { display: inline-flex; }
    .hero-inner, .band-inner, .two-col, .about-grid, .service-layout, .contact-grid { grid-template-columns: 1fr; }
    .grid-3, .grid-4, .price-grid, .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .aside-card { position: static; }
}
@media (max-width: 600px) {
    body { font-size: 15.5px; }
    .grid-2, .grid-3, .grid-4, .price-grid, .steps, .footer-grid, .form-row { grid-template-columns: 1fr; }
    .facts { grid-template-columns: 1fr 1fr; }
    .brand-sub { display: none; }
    .hero-actions .btn { width: 100%; }
    .cta-band-actions .btn { width: 100%; }
    .chat-launcher span { display: none; }
    .chat-launcher { padding: 14px; }
}
@media print {
    .site-header, .site-footer, .cta-band, .chat-launcher, .country-banner, .nav-toggle { display: none !important; }
    body { color: #000; background: #fff; }
}
