/* Business Modern - Inter */

:root {
    --font: 'Inter', system-ui, sans-serif;
    --bg: #f8fafc;
    --surface: #ffffff;
    --surface-2: #f1f5f9;
    --text: #0f172a;
    --muted: #64748b;
    --faint: #94a3b8;
    --accent: #2563eb;
    --accent-2: #0ea5e9;
    --accent-soft: rgba(37, 99, 235, 0.08);
    --border: #e2e8f0;
    --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.1);
    --radius: 16px;
    --radius-sm: 10px;
    --header: 72px;
    --shell: 1160px;
    --widget-offset: 92px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="dark"] {
    --bg: #0b1120;
    --surface: #131c31;
    --surface-2: #1a2540;
    --text: #f1f5f9;
    --muted: #94a3b8;
    --faint: #64748b;
    --accent: #3b82f6;
    --accent-2: #38bdf8;
    --accent-soft: rgba(59, 130, 246, 0.12);
    --border: #1e293b;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    transition: background 0.4s, color 0.4s;
}
em, i { font-style: normal; }
img { display: block; max-width: 100%; }
.brand-icon { object-fit: contain; flex-shrink: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

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

.mesh {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 80% 50% at 20% -10%, rgba(37, 99, 235, 0.12), transparent),
        radial-gradient(ellipse 60% 40% at 90% 10%, rgba(14, 165, 233, 0.08), transparent);
}
[data-theme="dark"] .mesh {
    background:
        radial-gradient(ellipse 80% 50% at 20% -10%, rgba(59, 130, 246, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 90% 10%, rgba(56, 189, 248, 0.08), transparent);
}

.progress {
    position: fixed; top: 0; left: 0; height: 3px; z-index: 300;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    width: 0; transition: width 0.1s linear;
}

/* Header */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    height: var(--header);
    background: color-mix(in srgb, var(--bg) 85%, transparent);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.header-row {
    height: 100%; display: flex; align-items: center; gap: 32px;
}
.logo img {
    width: 40px; height: 40px; border-radius: 12px;
    border: 2px solid var(--border);
    transition: box-shadow 0.3s;
}
.logo:hover img { box-shadow: 0 0 0 3px var(--accent-soft); }
.nav { display: flex; gap: 4px; flex: 1; }
.nav-a {
    font-size: 14px; font-weight: 500; color: var(--muted);
    padding: 8px 14px; border-radius: 8px; transition: all 0.25s;
    display: inline-flex; align-items: center; gap: 8px;
}
.nav-a-icon {
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--faint); transition: color 0.25s;
}
.nav-a:hover .nav-a-icon,
.nav-a.is-active .nav-a-icon { color: var(--accent); }
.nav-a:hover { color: var(--text); background: var(--accent-soft); }
.nav-a.is-active { color: var(--accent); background: var(--accent-soft); font-weight: 600; }
.header-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.header-channels { display: none; align-items: center; gap: 8px; }
.header-channel {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    min-height: 36px; padding: 0 12px; border-radius: 10px;
    font-size: 13px; font-weight: 700; color: #fff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.header-channel:hover { transform: translateY(-2px); }
.header-channel--tg { background: linear-gradient(135deg, #229ed9, #1d8ebf); }
.header-channel--tg:hover { box-shadow: 0 8px 20px rgba(34, 158, 217, 0.35); }
.header-channel--max { background: linear-gradient(135deg, #7c3aed, #5b21b6); }
.header-channel--max:hover { box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35); }

@media (min-width: 961px) {
    .header-channels { display: flex; }
}

.nav-backdrop {
    position: fixed; inset: 0; z-index: 150;
    background: color-mix(in srgb, var(--bg) 55%, transparent);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s var(--ease);
}
body.nav-open .nav-backdrop { opacity: 1; pointer-events: auto; }

.nav-quick {
    position: fixed; left: 16px; right: 16px; bottom: 0; z-index: 210;
    display: none; gap: 10px; padding: 12px 16px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.3s var(--ease), visibility 0.3s;
}
body.nav-open .nav-quick {
    opacity: 1; visibility: visible; pointer-events: auto;
}
body.nav-open .pulse-cta { opacity: 0; pointer-events: none; }
.nav-quick-btn {
    flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    min-height: 52px; padding: 0 18px; border-radius: 14px;
    font-size: 15px; font-weight: 700; color: #fff;
    box-shadow: var(--shadow-lg);
}
.nav-quick-btn--tg { background: linear-gradient(135deg, #229ed9, #1d8ebf); }
.nav-quick-btn--max { background: linear-gradient(135deg, #7c3aed, #5b21b6); }

body.is-nav-active main,
body.nav-open main,
body.is-nav-active .footer,
body.nav-open .footer {
    filter: blur(10px) saturate(0.94);
    transform: scale(0.992);
    transition: filter 0.35s var(--ease), transform 0.35s var(--ease);
}
body.is-nav-active .mesh,
body.nav-open .mesh {
    filter: blur(8px);
    transition: filter 0.35s var(--ease);
}
body.nav-open { overflow: hidden; }
main { transition: filter 0.35s var(--ease), transform 0.35s var(--ease); }

.icon-btn {
    width: 40px; height: 40px; border-radius: 10px;
    border: 1px solid var(--border); display: grid; place-items: center;
    color: var(--muted); transition: all 0.25s;
}
.icon-btn:hover { color: var(--accent); border-color: var(--accent); }
.icon-btn svg:last-child { display: none; }
[data-theme="dark"] .icon-btn svg:first-child { display: none; }
[data-theme="dark"] .icon-btn svg:last-child { display: block; }
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 1px; transition: transform 0.3s; }
.header.is-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header.is-open .burger span:nth-child(2) { opacity: 0; }
.header.is-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

main { position: relative; z-index: 1; padding-top: var(--header); }

/* Type */
.overline {
    display: block; font-size: 12px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 12px;
}
.grad {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.link-arrow {
    font-size: 14px; font-weight: 600; color: var(--accent);
    transition: gap 0.3s; display: inline-flex; align-items: center; gap: 4px;
}
.link-arrow:hover { gap: 8px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 600; transition: all 0.3s var(--ease);
    white-space: nowrap;
}
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-primary {
    background: var(--accent); color: #fff;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35); }
.btn-secondary {
    background: var(--surface); color: var(--text);
    border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

.pill {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 500; color: var(--muted);
    padding: 8px 14px; border-radius: 100px;
    background: var(--surface); border: 1px solid var(--border);
    margin-bottom: 20px;
}

/* Hero */
.hero {
    padding: 48px 0 56px;
    position: relative;
}
.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 40px;
    align-items: center;
}
.hero-id {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 18px;
}
.hero-avatar {
    width: 48px; height: 48px; border-radius: 14px;
    object-fit: cover; object-position: center 12%;
    border: 2px solid var(--border);
    box-shadow: var(--shadow);
}
.hero-id-name {
    display: block; font-size: 15px; font-weight: 700; line-height: 1.3;
}
.hero-id-meta {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--muted); margin-top: 2px;
}
.hero-eyebrow {
    font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 14px;
}
.hero h1 {
    font-size: clamp(2rem, 4.6vw, 3.35rem);
    font-weight: 800; line-height: 1.08; letter-spacing: -0.035em;
    margin-bottom: 18px;
}
.hero-hook {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--muted); max-width: 54ch;
    margin-bottom: 22px; line-height: 1.7;
}
.hero-points {
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 28px;
}
.hero-points li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: var(--muted); line-height: 1.55;
}
.hero-points svg, .hero-points .brand-icon { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-note {
    font-size: 13px; color: var(--faint); line-height: 1.5;
}

.hero-stage {
    position: relative; padding: 28px;
    border-radius: 24px; border: 1px solid var(--border);
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--surface) 92%, var(--accent-soft)), var(--surface));
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.hero-stage-glow {
    position: absolute; inset: auto -20% -30% -20%; height: 70%;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.18), transparent 70%);
    pointer-events: none;
}
[data-theme="dark"] .hero-stage-glow {
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.22), transparent 70%);
}
.hero-flow {
    display: flex; align-items: stretch; gap: 8px;
    margin-bottom: 18px; position: relative; z-index: 1;
}
.hero-flow-node {
    flex: 1; min-width: 0; padding: 16px 14px;
    border-radius: 14px; border: 1px solid var(--border);
    background: color-mix(in srgb, var(--surface) 88%, transparent);
}
.hero-flow-node--core {
    border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
    background: var(--accent-soft);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.12);
}
.hero-flow-label {
    display: block; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--faint); margin-bottom: 6px;
}
.hero-flow-node strong {
    display: block; font-size: 14px; font-weight: 800; line-height: 1.25;
}
.hero-flow-node em {
    display: block; margin-top: 6px; font-size: 11px;
    color: var(--muted); line-height: 1.35;
}
.hero-flow-arrow {
    width: 18px; flex-shrink: 0; align-self: center;
    height: 2px; border-radius: 1px;
    background: linear-gradient(90deg, var(--border), var(--accent));
    position: relative;
}
.hero-flow-arrow::after {
    content: ''; position: absolute; right: -1px; top: 50%;
    width: 7px; height: 7px; border-top: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    transform: translateY(-50%) rotate(45deg);
}
.hero-metrics {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
    margin-bottom: 16px; position: relative; z-index: 1;
}
.hero-metric {
    padding: 14px 10px; text-align: center;
    border-radius: 12px; border: 1px solid var(--border);
    background: var(--surface);
}
.hero-metric strong {
    display: block; font-size: 1.35rem; font-weight: 800;
    color: var(--accent); line-height: 1;
}
.hero-metric span {
    display: block; margin-top: 6px; font-size: 10px;
    color: var(--muted); line-height: 1.35;
}
.hero-orbit {
    display: flex; flex-wrap: wrap; gap: 8px;
    position: relative; z-index: 1;
}
.hero-orbit span {
    font-size: 12px; font-weight: 600; padding: 7px 12px;
    border-radius: 100px; border: 1px solid var(--border);
    background: var(--surface-2); color: var(--muted);
}

/* Metrics bar */
.metrics-bar { border-block: 1px solid var(--border); background: var(--surface); }
.metrics-row { display: grid; grid-template-columns: repeat(3, 1fr); }
.metric {
    padding: 32px 24px; text-align: center;
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.metric-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: grid; place-items: center;
    background: var(--accent-soft); color: var(--accent);
}
.metric:last-child { border-right: none; }
.metric-num {
    display: block; font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800; color: var(--accent); line-height: 1;
}
.metric-lbl { display: block; margin-top: 8px; font-size: 13px; color: var(--muted); line-height: 1.4; }

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--surface-2); }
.block-head { margin-bottom: 40px; max-width: 640px; }
.block-head--row {
    max-width: none; display: flex; justify-content: space-between;
    align-items: flex-end; gap: 16px;
}
.block-head h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px;
}
.block-desc { color: var(--muted); font-size: 16px; line-height: 1.65; }

.page-top { padding: 56px 0 32px; }
.page-top-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: grid; place-items: center;
    background: var(--accent-soft); color: var(--accent);
    margin-bottom: 16px;
}
.page-top h1 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; letter-spacing: -0.03em; margin: 8px 0; }
.page-desc { color: var(--muted); max-width: 560px; font-size: 17px; line-height: 1.65; }

/* Shared icon lists */
.icon-list {
    display: flex; flex-direction: column; gap: 8px;
}
.icon-list li {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 14px; color: var(--muted); line-height: 1.55;
}
.icon-list svg, .icon-list .brand-icon {
    flex-shrink: 0; margin-top: 3px; color: var(--accent);
}

/* Why section */
.section-why { padding-top: 72px; }
.why-head {
    display: flex; align-items: flex-start; gap: 20px;
    margin-bottom: 36px; max-width: 720px;
}
.why-head-icon {
    width: 56px; height: 56px; flex-shrink: 0;
    display: grid; place-items: center;
    border-radius: 16px; background: var(--accent-soft); color: var(--accent);
}
.why-bento {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}
.why-card {
    padding: 24px 24px 22px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface);
    display: flex; flex-direction: column; gap: 10px;
    transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
    position: relative; overflow: hidden;
}
.why-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    opacity: 0; transition: opacity 0.35s;
}
.why-card:hover { border-color: color-mix(in srgb, var(--accent) 35%, var(--border)); box-shadow: var(--shadow-lg); }
.why-card:hover::before { opacity: 1; }
.why-card--featured {
    grid-row: span 2;
    padding: 30px 28px;
    background:
        linear-gradient(155deg, color-mix(in srgb, var(--accent-soft) 80%, var(--surface)), var(--surface));
    border-color: color-mix(in srgb, var(--accent) 25%, var(--border));
}
.why-card-top {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
}
.why-card-icon {
    width: 48px; height: 48px; border-radius: 14px;
    display: grid; place-items: center;
    background: var(--accent-soft); color: var(--accent);
}
.why-card--featured .why-card-icon {
    width: 56px; height: 56px; border-radius: 16px;
}
.why-card-badge {
    font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
    text-transform: uppercase; color: var(--accent);
    padding: 6px 10px; border-radius: 100px;
    background: color-mix(in srgb, var(--accent-soft) 80%, var(--surface));
    border: 1px solid color-mix(in srgb, var(--accent) 20%, var(--border));
}
.why-card h3 { font-size: 1.08rem; font-weight: 800; line-height: 1.3; }
.why-card--featured h3 { font-size: 1.25rem; }
.why-card > p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.why-card .icon-list { margin-top: auto; padding-top: 6px; }

/* Bento */
.bento {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.bento-item {
    padding: 32px; background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius);
    transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.bento-item:hover { border-color: color-mix(in srgb, var(--accent) 40%, var(--border)); box-shadow: var(--shadow-lg); }
.bento-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: grid; place-items: center;
    background: var(--accent-soft); color: var(--accent);
    margin-bottom: 16px;
}
.bento-item h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.bento-item > p { font-size: 15px; color: var(--muted); margin-bottom: 16px; line-height: 1.65; }
.bento-item ul { display: flex; flex-direction: column; gap: 8px; }
.bento-item li {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 14px; color: var(--muted); line-height: 1.5;
}
.bento-item li svg, .bento-item li .brand-icon {
    flex-shrink: 0; margin-top: 3px; color: var(--accent);
}

/* Services - compact grid */
.section-services { padding-block: clamp(48px, 6vw, 88px); }
.svc-head { margin-bottom: clamp(20px, 3vw, 32px); }
.svc-head .block-desc { max-width: 52ch; }
.svc-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.svc-card {
    padding: 16px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.svc-card:hover {
    border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
    box-shadow: var(--shadow);
}
.svc-card-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.svc-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--accent-soft);
    color: var(--accent);
}
.svc-card-copy { min-width: 0; }
.svc-card h3 {
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 4px;
}
.svc-card p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
}
.svc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.svc-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    font-size: 11px;
    line-height: 1.35;
    color: var(--muted);
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 6px;
}
.svc-chip svg, .svc-chip .brand-icon {
    flex-shrink: 0;
    color: var(--accent);
}
@media (min-width: 1100px) {
    .svc-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: calc(50% - 6px);
    }
}

/* Steps */
.steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.step {
    padding: 28px 24px; background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius);
    position: relative; overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.step:hover::before { transform: scaleX(1); }
.step-icon {
    width: 40px; height: 40px; border-radius: 11px;
    display: grid; place-items: center;
    background: var(--accent-soft); color: var(--accent);
    margin-bottom: 12px;
}
.step-n { font-size: 12px; font-weight: 700; color: var(--accent); display: block; margin-bottom: 8px; }
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Projects */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; }
.proj-card {
    padding: 24px; background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius);
    display: flex; flex-direction: column;
    transition: transform 0.35s, box-shadow 0.35s;
}
.proj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.proj-card-img {
    height: 100px; display: grid; place-items: center;
    background: var(--surface-2); border-radius: var(--radius-sm);
    margin-bottom: 16px;
}
.proj-card-img img { max-height: 56px; object-fit: contain; }
.proj-card-img.round img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.proj-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.proj-card p { font-size: 14px; color: var(--muted); flex: 1; line-height: 1.6; margin-bottom: 12px; }
.proj-links { display: flex; flex-wrap: wrap; gap: 12px 20px; margin-top: auto; }

.proj-card-wide {
    display: grid; grid-template-columns: minmax(220px, 0.9fr) 1.6fr; gap: 0;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: calc(var(--radius) + 4px); overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow 0.35s, border-color 0.35s;
}
.proj-card-wide:hover { box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--accent) 35%, var(--border)); }
.proj-card-wide-visual {
    padding: 36px 32px; background:
        radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.14), transparent 55%),
        linear-gradient(160deg, var(--surface-2), color-mix(in srgb, var(--accent) 8%, var(--surface-2)));
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 28px;
}
.proj-card-wide-logo {
    width: 132px; height: 132px; border-radius: 24px;
    display: grid; place-items: center;
    background: var(--surface); border: 1px solid var(--border);
    box-shadow: var(--shadow);
    flex-shrink: 0;
}
.proj-card-wide-logo img { width: 80px; height: 80px; object-fit: contain; }
.proj-card-wide-logo.round img { width: 100%; height: 100%; border-radius: 20px; object-fit: cover; }
.proj-card-wide-stats { display: grid; gap: 14px; width: 100%; }
.proj-card-wide-stats div {
    padding: 14px 16px; border-radius: var(--radius-sm);
    background: color-mix(in srgb, var(--surface) 82%, transparent);
    border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
}
.proj-card-wide-stats strong { display: block; font-size: 1.35rem; font-weight: 800; color: var(--accent); line-height: 1.1; }
.proj-card-wide-stats span { display: block; margin-top: 4px; font-size: 13px; color: var(--muted); line-height: 1.45; }
.proj-card-wide-body { padding: 36px 40px; display: flex; flex-direction: column; gap: 14px; }
.proj-card-wide-body h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); font-weight: 800; line-height: 1.25; }
.proj-card-wide-body > p { color: var(--muted); line-height: 1.75; font-size: 15px; }
.proj-card-wide-foot {
    display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px;
    margin-top: auto; padding-top: 8px;
}
.proj-done {
    display: grid; gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.proj-done.icon-list {
    display: flex; flex-direction: column; gap: 8px;
    grid-template-columns: none;
}
.proj-done.icon-list li { padding-left: 0; }
.proj-done.icon-list li::before { display: none; }
.proj-done li {
    font-size: 14px; color: var(--muted); line-height: 1.55;
    padding-left: 18px; position: relative;
}
.proj-done li::before {
    content: ''; position: absolute; left: 0; top: 9px;
    width: 7px; height: 7px; border-radius: 2px; background: var(--accent);
}
.proj-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.proj-tags span {
    font-size: 12px; font-weight: 600; padding: 6px 12px;
    border-radius: 100px; background: var(--accent-soft); color: var(--accent);
}

/* FAQ */
.faq-layout {
    display: grid; grid-template-columns: minmax(240px, 300px) 1fr;
    gap: 28px; align-items: start;
}
.faq-aside { position: sticky; top: calc(var(--header) + 24px); }
.faq-aside h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800;
    letter-spacing: -0.03em; margin: 8px 0 12px;
}
.faq-aside-text { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.faq-aside-card {
    padding: 18px; border-radius: var(--radius-sm);
    border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--border));
    background: linear-gradient(145deg, var(--accent-soft), var(--surface));
    margin-bottom: 16px;
}
.faq-aside-label {
    display: block; font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--accent); margin-bottom: 6px;
}
.faq-aside-card strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.faq-aside-card p { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 10px; }
.faq-aside-list { display: flex; flex-direction: column; gap: 8px; }
.faq-aside-list li {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--muted);
}
.faq-aside-list svg { color: var(--accent); flex-shrink: 0; }

.faq { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.faq-item {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-sm); overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item.is-open {
    border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
    box-shadow: var(--shadow);
}
.faq-q {
    width: 100%; text-align: left; padding: 16px 18px;
    font-size: 15px; font-weight: 600;
    display: grid; grid-template-columns: auto auto 1fr auto; gap: 10px; align-items: center;
    transition: color 0.25s;
}
.faq-q-icon {
    width: 34px; height: 34px; border-radius: 10px;
    display: grid; place-items: center;
    background: var(--accent-soft); color: var(--accent);
}
.faq-item.is-open .faq-q-icon { background: var(--accent); color: #fff; }
.faq-q-num {
    font-size: 11px; font-weight: 800; color: var(--faint);
    font-variant-numeric: tabular-nums; letter-spacing: 0.04em;
}
.faq-item.is-open .faq-q-num { color: var(--accent); }
.faq-q-text { line-height: 1.45; }
.faq-q::after {
    content: '+'; font-size: 1.2rem; font-weight: 400; color: var(--accent);
    transition: transform 0.35s; flex-shrink: 0;
}
.faq-item.is-open .faq-q::after { transform: rotate(45deg); }
.faq-item.is-open .faq-q { color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.is-open .faq-a { max-height: 380px; }
.faq-a p {
    padding: 0 18px 16px 62px; font-size: 14px;
    color: var(--muted); line-height: 1.65;
}

/* Tags */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
    font-size: 14px; font-weight: 500; padding: 10px 18px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 100px; color: var(--muted);
    transition: all 0.25s; cursor: default;
}
.tag:hover { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }

/* CTA - premium */
.cta-block { padding: 0 0 80px; }
.cta-card {
    position: relative; overflow: hidden;
    border-radius: 22px; border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
}
.cta-card-bg {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.cta-orb {
    position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55;
    will-change: transform;
}
.cta-orb--a { width: 280px; height: 280px; top: -120px; left: -80px; animation: ctaOrbA 16s ease-in-out infinite; }
.cta-orb--b { width: 220px; height: 220px; bottom: -100px; right: -40px; opacity: 0.35; animation: ctaOrbB 20s ease-in-out infinite; }
.cta-orb--c {
    width: 140px; height: 140px; top: 40%; right: 28%;
    opacity: 0.25; filter: blur(40px);
    animation: ctaOrbC 12s ease-in-out infinite;
}
.cta-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(color-mix(in srgb, var(--border) 55%, transparent) 1px, transparent 1px),
        linear-gradient(90deg, color-mix(in srgb, var(--border) 55%, transparent) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 80% 70% at 30% 20%, #000 20%, transparent 75%);
    opacity: 0.45;
    animation: ctaGridDrift 24s linear infinite;
}
.cta-shine {
    position: absolute; inset: -40% -60%;
    background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.07) 50%, transparent 58%);
    animation: ctaShine 7s ease-in-out infinite;
    pointer-events: none;
}
@keyframes ctaOrbA {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(28px, 18px) scale(1.06); }
    66% { transform: translate(12px, 32px) scale(0.96); }
}
@keyframes ctaOrbB {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-24px, -20px) scale(1.1); }
}
@keyframes ctaOrbC {
    0%, 100% { transform: translate(0, 0); opacity: 0.2; }
    50% { transform: translate(-16px, 12px); opacity: 0.35; }
}
@keyframes ctaGridDrift {
    0% { background-position: 0 0; }
    100% { background-position: 28px 28px; }
}
@keyframes ctaShine {
    0%, 75%, 100% { transform: translateX(-30%) rotate(12deg); opacity: 0; }
    35% { opacity: 1; }
    50% { transform: translateX(30%) rotate(12deg); opacity: 0.6; }
}
.cta-waves {
    position: absolute; left: -2%; right: -2%; bottom: -1px;
    height: 54%; overflow: hidden; pointer-events: none;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.cta-wave {
    position: absolute; left: 0; bottom: 0;
    width: 200%; max-width: none; height: 100%;
    fill: color-mix(in srgb, var(--accent) 22%, transparent);
    will-change: transform;
}
.cta-wave--1 {
    opacity: 0.38;
    animation: ctaWaveDrift 24s linear infinite;
}
.cta-wave--2 {
    bottom: 6px; height: 88%; opacity: 0.26;
    fill: color-mix(in srgb, var(--accent-2) 20%, transparent);
    animation: ctaWaveDrift 32s linear infinite reverse;
}
.cta-wave--3 {
    bottom: 12px; height: 72%; opacity: 0.48;
    fill: color-mix(in srgb, var(--accent) 14%, transparent);
    animation: ctaWaveDrift 18s linear infinite;
}
@keyframes ctaWaveDrift {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}
.cta-card-body {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.25fr 0.85fr; gap: 32px;
    padding: 32px 36px; align-items: center;
}
.cta-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--accent); margin-bottom: 10px;
}
.cta-eyebrow::before {
    content: ''; width: 18px; height: 2px; border-radius: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.cta-title {
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 800; letter-spacing: -0.03em; line-height: 1.2;
    margin-bottom: 10px;
}
.cta-lead { font-size: 15px; color: var(--muted); line-height: 1.65; max-width: 52ch; }
.cta-points {
    display: flex; flex-direction: column; gap: 8px; margin-top: 16px;
}
.cta-points.icon-list { margin-top: 16px; }
.cta-points.icon-list li { padding-left: 0; }
.cta-points li::before { display: none; }
.cta-aside {
    display: flex; flex-direction: column; gap: 16px;
    padding: 22px 22px 20px;
    border-radius: 16px;
    border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--border));
    background: color-mix(in srgb, var(--surface-2) 88%, transparent);
    backdrop-filter: blur(8px);
}
.cta-points li::before { display: none; }
.cta-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.cta-chips span {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600; padding: 7px 12px;
    border-radius: 100px; border: 1px solid var(--border);
    background: var(--surface); color: var(--muted);
}
.cta-chips span svg, .cta-chips span .brand-icon { color: var(--accent); }
.cta-channels {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px;
}
.cta-channel {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 12px; font-size: 13px; font-weight: 600;
    border-radius: var(--radius-sm); border: 1px solid var(--border);
    background: var(--surface); color: var(--text);
    transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.cta-channel:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
    background: var(--accent-soft); color: var(--accent);
    box-shadow: var(--shadow);
}
.cta-channel--telegram:hover { border-color: rgba(34, 158, 217, 0.45); background: rgba(34, 158, 217, 0.1); color: #229ed9; }
.cta-channel--max:hover { border-color: color-mix(in srgb, var(--accent) 50%, var(--border)); }
.cta-channel--mail:hover { border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); }
.cta-channel--phone:hover { border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); }
.cta-channel .brand-icon { flex-shrink: 0; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; }
.cta-btn-main { width: 100%; justify-content: center; box-shadow: 0 8px 24px rgba(37, 99, 235, 0.22); }
.cta-btn-alt {
    width: 100%; justify-content: center;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 18px; font-size: 14px; font-weight: 600;
    border-radius: var(--radius-sm); border: 1px solid var(--border);
    background: var(--surface); color: var(--text);
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.cta-btn-alt:hover {
    border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
    background: var(--accent-soft); transform: translateY(-1px);
}
.cta-note { font-size: 12px; color: var(--faint); line-height: 1.5; text-align: center; }

.cta-block--prime .cta-orb--a { background: rgba(37, 99, 235, 0.35); }
.cta-block--prime .cta-orb--b { background: rgba(14, 165, 233, 0.28); }
.cta-block--prime .cta-orb--c { background: rgba(56, 189, 248, 0.22); }
.cta-block--proof .cta-orb--a { background: rgba(99, 102, 241, 0.32); }
.cta-block--proof .cta-orb--b { background: rgba(37, 99, 235, 0.22); }
.cta-block--proof .cta-orb--c { background: rgba(129, 140, 248, 0.2); }
.cta-block--proof .cta-chips span { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 30%, var(--border)); background: var(--accent-soft); }
.cta-block--stack .cta-orb--a { background: rgba(14, 165, 233, 0.3); }
.cta-block--stack .cta-orb--b { background: rgba(56, 189, 248, 0.2); }
.cta-block--stack .cta-orb--c { background: rgba(34, 211, 238, 0.18); }
.cta-block--result .cta-orb--a { background: rgba(37, 99, 235, 0.28); }
.cta-block--result .cta-orb--b { background: rgba(168, 85, 247, 0.18); }
.cta-block--result .cta-orb--c { background: rgba(192, 132, 252, 0.16); }
.cta-block--channel .cta-orb--a { background: rgba(56, 189, 248, 0.3); }
.cta-block--channel .cta-orb--b { background: rgba(37, 99, 235, 0.2); }
.cta-block--channel .cta-orb--c { background: rgba(34, 158, 217, 0.22); }
.cta-block--channel .cta-wave--1 { fill: color-mix(in srgb, #229ed9 18%, var(--accent) 10%); }
.cta-block--message .cta-orb--a { background: rgba(37, 99, 235, 0.32); }
.cta-block--message .cta-orb--b { background: rgba(14, 165, 233, 0.24); }
.cta-block--message .cta-orb--c { background: rgba(14, 165, 233, 0.35); }
.cta-block--message .cta-aside { border-style: dashed; }

[data-theme="dark"] .cta-card { box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35); }
[data-theme="dark"] .cta-orb { opacity: 0.4; }
[data-theme="dark"] .cta-btn-main { box-shadow: 0 8px 28px rgba(59, 130, 246, 0.25); }

@keyframes fadeIn { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:none} }

/* Experience - timeline */
.xp-hero { padding: 48px 0 24px; }
.xp-hero-row, .sk-hero-row {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 24px; flex-wrap: wrap; margin-bottom: 20px;
}
.xp-hero h1, .sk-hero h1 {
    font-size: clamp(1.85rem, 3.5vw, 2.35rem);
    font-weight: 800; letter-spacing: -0.03em; margin: 6px 0 10px;
}
.xp-lead, .sk-lead { font-size: 15px; color: var(--muted); max-width: 520px; line-height: 1.65; }
.xp-stats, .sk-stats { display: flex; gap: 10px; flex-wrap: wrap; }
.xp-stat, .sk-stat {
    padding: 14px 18px; border-radius: var(--radius-sm);
    border: 1px solid var(--border); background: var(--surface);
    min-width: 100px;
    display: flex; flex-direction: column; gap: 8px;
}
.xp-stat > svg, .xp-stat > .brand-icon,
.sk-stat > svg, .sk-stat > .brand-icon {
    color: var(--accent);
}
.xp-stat strong, .sk-stat strong {
    display: block; font-size: 1.35rem; font-weight: 800;
    color: var(--accent); line-height: 1.1;
}
.xp-stat span, .sk-stat span { display: block; margin-top: 4px; font-size: 12px; color: var(--muted); }

.xp-jump {
    display: flex; gap: 8px; flex-wrap: wrap;
    padding: 6px; border-radius: 100px;
    border: 1px solid var(--border); background: var(--surface-2);
    width: fit-content; max-width: 100%; overflow-x: auto;
}
.xp-jump-link {
    font-size: 13px; font-weight: 600; padding: 8px 16px;
    border-radius: 100px; color: var(--muted); white-space: nowrap;
    transition: color 0.25s, background 0.25s;
}
.xp-jump-link:hover, .xp-jump-link.is-active {
    color: var(--accent); background: var(--surface);
    box-shadow: var(--shadow);
}

.xp-section { padding-top: 0; }
.xp-timeline { display: flex; flex-direction: column; gap: 0; }
.xp-node {
    display: grid; grid-template-columns: 32px 1fr; gap: 20px;
    align-items: stretch; padding-bottom: 20px;
}
.xp-node:last-child { padding-bottom: 0; }
.xp-rail { display: flex; flex-direction: column; align-items: center; padding-top: 22px; }
.xp-dot {
    width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0;
    background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft);
}
.xp-node.is-active .xp-dot { box-shadow: 0 0 0 6px var(--accent-soft); transform: scale(1.1); }
.xp-connector {
    flex: 1; width: 2px; min-height: 24px; margin-top: 6px;
    background: linear-gradient(180deg, var(--accent), var(--border));
}
.xp-card {
    padding: 22px 24px; border-radius: var(--radius);
    border: 1px solid var(--border); background: var(--surface);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.xp-node.is-active .xp-card {
    border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
    box-shadow: var(--shadow-lg);
}
.xp-card-head {
    display: flex; justify-content: space-between; gap: 16px;
    margin-bottom: 14px; align-items: flex-start;
}
.xp-period { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); }
.xp-card h2 { font-size: 1.15rem; font-weight: 800; line-height: 1.3; margin: 6px 0 4px; }
.xp-co { font-size: 14px; color: var(--faint); }
.xp-index {
    font-size: 1.75rem; font-weight: 800; line-height: 1;
    color: color-mix(in srgb, var(--accent) 25%, var(--border));
}
.xp-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.xp-list li {
    font-size: 14px; color: var(--muted); line-height: 1.6;
    padding-left: 16px; position: relative;
}
.xp-list li::before {
    content: ''; position: absolute; left: 0; top: 9px;
    width: 6px; height: 6px; border-radius: 2px; background: var(--accent);
}
.xp-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.xp-tags span {
    font-size: 11px; font-weight: 600; padding: 5px 10px;
    border-radius: 100px; background: var(--accent-soft); color: var(--accent);
}
.xp-list.icon-list li::before { display: none; }
.xp-themes {
    display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px;
}
.xp-theme-chip {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; padding: 10px 16px;
    border-radius: var(--radius-sm); border: 1px solid var(--border);
    background: var(--surface); color: var(--muted);
    transition: border-color 0.25s, color 0.25s, transform 0.25s;
}
.xp-theme-chip svg, .xp-theme-chip .brand-icon { color: var(--accent); flex-shrink: 0; }
.xp-theme-chip:hover {
    border-color: var(--accent); color: var(--accent); transform: translateY(-2px);
}
.xp-metric-icon {
    width: 40px; height: 40px; border-radius: 11px;
    display: grid; place-items: center; margin: 0 auto 10px;
    background: var(--accent-soft); color: var(--accent);
}
.xp-metrics {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.xp-metric {
    padding: 20px; border-radius: var(--radius-sm);
    border: 1px solid var(--border); background: var(--surface); text-align: center;
}
.xp-metric strong { display: block; font-size: 1.75rem; font-weight: 800; color: var(--accent); }
.xp-metric span { display: block; margin-top: 6px; font-size: 13px; color: var(--muted); line-height: 1.45; }

/* Skills - bento stack */
.sk-hero { padding: 48px 0 36px; }
.page-skills .sk-section--bento { padding: 28px 0 88px; }
.page-skills .sk-section--flow { padding: 88px 0; }
.page-skills .sk-section--lang { padding: 88px 0 72px; }
.page-skills .sk-section--wall { padding: 72px 0 88px; }
.sk-block-head { margin-bottom: 28px; }
.sk-block-head--tight { margin-bottom: 16px; }
.sk-block-head h2 { font-size: clamp(1.35rem, 2.2vw, 1.65rem); font-weight: 800; margin-top: 6px; }
.sk-block-desc { font-size: 15px; color: var(--muted); margin-top: 8px; line-height: 1.6; max-width: 560px; }

.sk-bento {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px;
}
.sk-card {
    padding: 22px 22px 20px; border-radius: var(--radius);
    border: 1px solid var(--border); background: var(--surface);
    display: flex; flex-direction: column; gap: 8px;
    transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
    position: relative; overflow: hidden;
}
.sk-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    opacity: 0; transition: opacity 0.35s;
}
.sk-card:hover { border-color: color-mix(in srgb, var(--accent) 35%, var(--border)); box-shadow: var(--shadow-lg); }
.sk-card:hover::before { opacity: 1; }
.sk-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.sk-card-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: grid; place-items: center;
    background: var(--accent-soft); color: var(--accent);
}
.sk-card-num { font-size: 12px; font-weight: 800; color: var(--faint); }
.sk-card h3 { font-size: 1.08rem; font-weight: 800; line-height: 1.3; }
.sk-card-desc { font-size: 14px; color: var(--muted); line-height: 1.55; }
.sk-card-use {
    font-size: 12px; font-weight: 600; color: var(--accent);
    padding: 6px 10px; border-radius: 8px; background: var(--accent-soft);
    width: fit-content; margin-top: 2px;
}
.sk-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 10px; }
.sk-tags span {
    font-size: 12px; font-weight: 500; padding: 5px 10px;
    border-radius: 6px; border: 1px solid var(--border);
    background: var(--surface-2); color: var(--muted);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.sk-card:hover .sk-tags span { border-color: color-mix(in srgb, var(--accent) 25%, var(--border)); }

.sk-flow {
    display: flex; align-items: stretch; gap: 8px;
    overflow-x: auto; padding-bottom: 4px;
}
.sk-flow-step {
    flex: 1; min-width: 180px; padding: 20px 18px;
    border-radius: var(--radius-sm); border: 1px solid var(--border);
    background: var(--surface);
}
.sk-flow-icon {
    width: 38px; height: 38px; border-radius: 10px;
    display: grid; place-items: center;
    background: var(--accent-soft); color: var(--accent);
    margin-bottom: 10px;
}
.sk-flow-n { font-size: 11px; font-weight: 800; color: var(--accent); display: block; margin-bottom: 8px; }
.sk-flow-step h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.sk-flow-step p { font-size: 13px; color: var(--muted); line-height: 1.5; }
.sk-flow-arrow {
    display: grid; place-items: center; color: var(--faint);
    flex-shrink: 0; align-self: center;
}

.sk-langs {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px;
    max-width: 720px;
}
.sk-lang {
    padding: 16px 18px; border-radius: var(--radius-sm);
    border: 1px solid var(--border); background: var(--surface);
}
.sk-lang-icon {
    width: 40px; height: 40px; border-radius: 11px;
    display: grid; place-items: center;
    background: var(--accent-soft); color: var(--accent);
    margin-bottom: 12px;
}
.sk-lang strong { display: block; font-weight: 700; margin-bottom: 4px; }
.sk-lang span { font-size: 13px; color: var(--muted); line-height: 1.5; }
.sk-wall {
    display: flex; flex-wrap: wrap; gap: 8px;
    padding: 18px; border-radius: var(--radius);
    border: 1px solid var(--border); background: var(--surface);
}
.sk-wall-tag {
    font-size: 12px; font-weight: 500; padding: 7px 12px;
    border-radius: 100px; border: 1px solid var(--border);
    background: var(--surface-2); color: var(--muted);
    transition: all 0.25s;
}
.sk-wall-tag:hover {
    color: var(--accent); border-color: var(--accent); background: var(--accent-soft);
    transform: translateY(-1px);
}

.page-experience .xp-section:last-of-type { padding-bottom: 48px; }

/* Projects page - compact explorer */
.pf-head { padding: 48px 0 20px; }
.pf-head-row {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 20px; flex-wrap: wrap; margin-bottom: 10px;
}
.pf-head h1 { font-size: clamp(1.85rem, 3.5vw, 2.35rem); font-weight: 800; letter-spacing: -0.03em; margin-top: 6px; }
.pf-lead { font-size: 15px; color: var(--muted); max-width: 520px; line-height: 1.6; }
.pf-statline { display: flex; gap: 10px; flex-wrap: wrap; }
.pf-stat {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; color: var(--muted); padding: 8px 12px;
    border-radius: 100px; border: 1px solid var(--border); background: var(--surface);
}
.pf-stat svg, .pf-stat .brand-icon { color: var(--accent); flex-shrink: 0; }
.pf-stat strong { color: var(--accent); margin-right: 4px; font-weight: 800; }

.pf-shell {
    padding: 20px; margin-bottom: 48px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: calc(var(--radius) + 2px); box-shadow: var(--shadow);
}
.pf-toolbar {
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px; flex-wrap: wrap; margin-bottom: 18px;
}
.pf-seg {
    position: relative; display: inline-flex; gap: 2px;
    padding: 3px; border-radius: 100px;
    border: 1px solid var(--border); background: var(--surface-2);
    overflow: hidden; isolation: isolate;
}
.pf-seg-glider {
    position: absolute; top: 3px; left: 0; height: calc(100% - 6px); width: 0;
    border-radius: 100px; background: var(--surface);
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
    transition: transform 0.35s var(--ease), width 0.35s var(--ease);
    pointer-events: none; z-index: 0; will-change: transform, width;
}
.pf-seg-btn {
    position: relative; z-index: 1;
    font-size: 13px; font-weight: 600; padding: 8px 16px;
    border-radius: 100px; color: var(--muted); transition: color 0.25s;
}
.pf-seg-btn.is-active { color: var(--accent); }
.pf-hint { font-size: 12px; color: var(--faint); }

.pf-view { display: none; animation: pfFade 0.35s var(--ease); }
.pf-view.is-active { display: block; }
@keyframes pfFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.pf-picks {
    display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px;
    scroll-snap-type: x mandatory; scrollbar-width: thin; margin-bottom: 14px;
}
.pf-pick {
    flex: 0 0 auto; scroll-snap-align: start;
    display: flex; align-items: center; gap: 10px;
    min-width: 200px; max-width: 240px;
    padding: 10px 12px; border-radius: var(--radius-sm);
    border: 1px solid var(--border); background: var(--surface-2);
    text-align: left; transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.pf-pick:hover { border-color: color-mix(in srgb, var(--accent) 40%, var(--border)); transform: translateY(-1px); }
.pf-pick.is-active {
    border-color: var(--accent); background: var(--accent-soft);
    box-shadow: inset 3px 0 0 var(--accent);
}
.pf-pick-logo {
    width: 36px; height: 36px; flex-shrink: 0;
    display: grid; place-items: center;
    border-radius: 10px; background: var(--surface); border: 1px solid var(--border);
}
.pf-pick-logo img { max-width: 22px; max-height: 22px; object-fit: contain; }
.pf-pick-logo.round { border-radius: 50%; overflow: hidden; padding: 0; }
.pf-pick-logo.round img { width: 100%; height: 100%; max-width: none; max-height: none; object-fit: cover; }
.pf-pick-meta { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.pf-pick-meta strong {
    font-size: 13px; font-weight: 700; line-height: 1.25;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pf-pick-meta em { font-size: 11px; color: var(--faint); font-style: normal; }

.pf-detail {
    position: relative; min-height: 200px;
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    background: linear-gradient(180deg, var(--surface-2), var(--surface));
    overflow: hidden;
}
.pf-panel {
    display: none; padding: 18px 20px;
    animation: pfPanelIn 0.3s var(--ease);
}
.pf-panel.is-active { display: block; }
@keyframes pfPanelIn { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: none; } }
.pf-panel-head {
    display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
}
.pf-panel-logo {
    width: 44px; height: 44px; flex-shrink: 0;
    display: grid; place-items: center;
    border-radius: 12px; background: var(--surface); border: 1px solid var(--border);
}
.pf-panel-logo img { max-width: 28px; max-height: 28px; object-fit: contain; }
.pf-panel-logo.round { border-radius: 50%; overflow: hidden; padding: 0; }
.pf-panel-logo.round img { width: 100%; height: 100%; max-width: none; max-height: none; object-fit: cover; }
.pf-panel-title { flex: 1; min-width: 0; }
.pf-panel-kicker { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); margin-bottom: 2px; }
.pf-panel-title h2 { font-size: 1.1rem; font-weight: 800; line-height: 1.25; }
.pf-panel-go {
    width: 34px; height: 34px; flex-shrink: 0;
    display: grid; place-items: center;
    border-radius: 50%; border: 1px solid var(--border);
    color: var(--accent); background: var(--surface);
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.pf-panel-go:hover { background: var(--accent-soft); border-color: var(--accent); transform: scale(1.06); }
.pf-panel-text { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.pf-mini-stats {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px;
}
.pf-mini-stats span {
    font-size: 12px; color: var(--muted); padding: 6px 10px;
    border-radius: 8px; border: 1px solid var(--border); background: var(--surface);
}
.pf-mini-stats strong { color: var(--accent); margin-right: 5px; font-weight: 800; }
.pf-done {
    display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px;
}
.pf-done li {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; color: var(--muted); padding: 5px 10px;
    border-radius: 6px; background: var(--surface); border: 1px solid var(--border);
    line-height: 1.4;
}
.pf-done li svg, .pf-done li .brand-icon { color: var(--accent); flex-shrink: 0; }
.pf-panel-foot {
    display: flex; flex-wrap: wrap; align-items: center;
    justify-content: space-between; gap: 10px 16px;
    padding-top: 10px; border-top: 1px solid var(--border);
}
.pf-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pf-tags span {
    font-size: 11px; font-weight: 600; padding: 4px 9px;
    border-radius: 100px; background: var(--accent-soft); color: var(--accent);
}
.pf-links .proj-links { margin: 0; gap: 10px 14px; }
.pf-links .link-arrow { font-size: 13px; }

.pf-filters {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px;
}
.pf-filter {
    font-size: 12px; font-weight: 600; padding: 7px 12px;
    border-radius: 100px; border: 1px solid var(--border);
    color: var(--muted); background: var(--surface-2); transition: all 0.25s;
}
.pf-filter:hover, .pf-filter.is-active {
    color: var(--accent); border-color: var(--accent); background: var(--accent-soft);
}
.pf-case-count { font-size: 12px; color: var(--faint); margin-bottom: 12px; }
.pf-case-grid {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px;
}
.pf-case {
    padding: 14px 14px 12px; border-radius: var(--radius-sm);
    border: 1px solid var(--border); background: var(--surface-2);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    cursor: default;
}
.pf-case:hover, .pf-case:focus-visible {
    border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
    transform: translateY(-2px); box-shadow: var(--shadow);
    outline: none;
}
.pf-case.is-hidden { display: none; }
.pf-case h3 { font-size: 0.92rem; font-weight: 700; line-height: 1.35; margin-bottom: 6px; }
.pf-case p { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 10px; }
.pf-case .pf-tags span { cursor: pointer; transition: background 0.2s, color 0.2s; }
.pf-case .pf-tags span:hover { background: var(--accent); color: #fff; }

.page-projects .section { padding-top: 0; }

/* Contacts - hub + bento tiles */
.page-contacts main { padding-bottom: 0; }
.cn-wrap { padding: 40px 0 72px; }

.cn-hub {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    padding: clamp(24px, 4vw, 36px);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface);
    overflow: hidden;
}
.cn-hub-glow {
    position: absolute; inset: -40% -20% auto auto;
    width: 420px; height: 420px; pointer-events: none;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent) 22%, transparent) 0%, transparent 68%);
    filter: blur(40px); opacity: 0.85;
}
.cn-profile { position: relative; z-index: 1; }
.cn-profile h1 {
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    font-weight: 800; letter-spacing: -0.03em;
    margin: 6px 0 12px; line-height: 1.15;
}
.cn-lead {
    font-size: 15px; color: var(--muted);
    line-height: 1.65; max-width: 36ch;
}
.cn-meta {
    display: flex; flex-direction: column; gap: 8px;
    margin-top: 18px; font-size: 13px; color: var(--muted);
}
.cn-meta span { display: inline-flex; align-items: center; gap: 8px; }
.cn-meta svg, .cn-meta .brand-icon { color: var(--accent); flex-shrink: 0; }
.cn-copy-hint {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 16px; font-size: 12px; color: var(--faint);
}

.cn-tiles {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.cn-tile {
    min-height: 152px;
    padding: 18px 18px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--surface-2);
    display: flex; flex-direction: column; gap: 14px;
    transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
}
.cn-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
}
.cn-tile--telegram {
    background: linear-gradient(155deg, color-mix(in srgb, #229ed9 14%, var(--surface-2)), var(--surface-2));
    border-color: color-mix(in srgb, #229ed9 32%, var(--border));
}
.cn-tile--telegram:hover { border-color: color-mix(in srgb, #229ed9 55%, var(--border)); }
.cn-tile--max {
    background: linear-gradient(155deg, color-mix(in srgb, var(--accent) 12%, var(--surface-2)), var(--surface-2));
    border-color: color-mix(in srgb, var(--accent) 28%, var(--border));
}
.cn-tile-icon {
    width: 48px; height: 48px; border-radius: 13px;
    display: grid; place-items: center;
    background: var(--surface); color: var(--accent);
    border: 1px solid var(--border);
}
.cn-tile--telegram .cn-tile-icon { color: #229ed9; }
.cn-tile-body { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.cn-tile-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--accent);
}
.cn-tile strong {
    font-size: 1.05rem; font-weight: 700; line-height: 1.35;
    word-break: break-word;
}
.cn-tile em {
    font-size: 12px; color: var(--faint); line-height: 1.4;
    font-style: normal; margin-top: auto;
}
.cn-tile-go {
    align-self: flex-end; color: var(--accent); opacity: 0.4;
    transition: opacity 0.2s, transform 0.2s;
}
.cn-tile:hover .cn-tile-go { opacity: 1; transform: translateX(3px); }

.cn-paybar {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0; margin-top: 14px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface-2);
    overflow: hidden;
}
.cn-paybar-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 20px 22px;
    border-right: 1px solid var(--border);
}
.cn-paybar-item:last-child { border-right: none; }
.cn-paybar-item > svg, .cn-paybar-item > .brand-icon {
    flex-shrink: 0; color: var(--accent); margin-top: 2px;
}
.cn-paybar-item strong {
    display: block; font-size: 1rem; font-weight: 800;
    line-height: 1.25; margin-bottom: 6px;
}
.cn-paybar-item span {
    display: block; font-size: 13px; color: var(--muted); line-height: 1.5;
}

.cn-bottom { margin-top: 14px; }
.cn-locs {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 12px;
}
.cn-loc-pill {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--muted); line-height: 1.4;
    padding: 8px 14px; border-radius: 100px;
    border: 1px solid var(--border); background: var(--surface);
}
.cn-loc-pill strong { color: var(--text); font-weight: 700; }
.cn-loc-pill svg, .cn-loc-pill .brand-icon { color: var(--accent); flex-shrink: 0; }
.cn-map {
    min-height: 300px; border-radius: var(--radius);
    border: 1px solid var(--border); overflow: hidden;
    background: var(--surface);
}
.cn-map > * { width: 100%; height: 100%; min-height: 300px; }
.cn-trust {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
    margin-top: 16px; padding-top: 16px;
    border-top: 1px solid var(--border);
}
.cn-trust-label {
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--faint);
}
.cn-trust-items {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.rating-yandex-light, .rating-yandex-dark { display: inline-flex; }
.rating-yandex-dark { display: none; }
[data-theme="light"] .rating-yandex-dark { display: inline-flex; }
[data-theme="light"] .rating-yandex-light { display: none; }

.rate-box {
    padding: 32px; background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius);
    margin-bottom: 24px;
}
.payment-box-rate strong,
.rate-box > strong {
    display: block; font-size: 2rem; font-weight: 800; color: var(--accent); margin: 8px 0;
}
.payment-box-rate p,
.rate-box > p { font-size: 15px; color: var(--muted); line-height: 1.65; }
.payment-box { display: grid; gap: 20px; }
.payment-rules {
    display: grid; gap: 10px; padding-top: 4px;
    border-top: 1px solid var(--border);
}
.payment-box-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: grid; place-items: center;
    background: var(--accent-soft); color: var(--accent);
    margin-bottom: 10px;
}
.payment-rules.icon-list li { padding-left: 0; position: static; }
.payment-rules.icon-list li::before { display: none; }
.payment-rules li {
    font-size: 15px; color: var(--muted); line-height: 1.55;
    padding-left: 18px; position: relative;
}
.payment-rules li::before {
    content: ''; position: absolute; left: 0; top: 9px;
    width: 7px; height: 7px; border-radius: 2px; background: var(--accent);
}

.payment-strip-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.payment-strip-item {
    padding: 28px; background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.payment-strip-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: grid; place-items: center;
    background: var(--accent-soft); color: var(--accent);
    margin-bottom: 12px;
}
.payment-strip-item:hover {
    transform: translateY(-3px); box-shadow: var(--shadow);
    border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
}
.payment-strip-item strong {
    display: block; font-size: 1.65rem; font-weight: 800;
    color: var(--accent); margin: 8px 0 10px; line-height: 1.1;
}
.payment-strip-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    background: var(--surface); padding: 48px 0 32px;
    position: relative; z-index: 2;
}
.footer-grid {
    display: flex; flex-wrap: wrap; align-items: center; gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { border-radius: 12px; }
.footer-brand strong { display: block; font-weight: 700; }
.footer-brand span { font-size: 14px; color: var(--muted); }
.footer-links {
    display: flex; flex-wrap: wrap; gap: 20px; margin-left: auto;
}
.footer-links a {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 500; color: var(--muted); transition: color 0.25s;
}
.footer-links a:hover { color: var(--accent); }
.footer-links .brand-icon { width: 18px; height: 18px; }
.footer-copy { width: 100%; font-size: 13px; color: var(--faint); margin-top: 8px; }

.pulse-cta {
    display: none; position: fixed; bottom: 24px; right: 24px; z-index: 150;
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--accent); color: #fff;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.4);
    place-items: center; animation: pulse 2.5s ease infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 8px 32px rgba(37,99,235,0.4)} 50%{box-shadow:0 8px 40px rgba(37,99,235,0.6)} }
.pulse-cta:hover { transform: scale(1.06); }

[data-reveal] {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }

.toast {
    position: fixed; bottom: 24px; left: 50%;
    transform: translateX(-50%) translateY(60px);
    z-index: 300; padding: 12px 24px; border-radius: 100px;
    background: var(--text); color: var(--bg);
    font-size: 14px; font-weight: 600; opacity: 0;
    transition: all 0.4s var(--ease);
}
.toast.is-on { transform: translateX(-50%); opacity: 1; }

@media (max-width: 960px) {
    .header-channels { display: none; }
    body.nav-open .nav-quick {
        display: flex;
        bottom: calc(var(--widget-offset) + env(safe-area-inset-bottom));
    }
    .nav-quick-btn {
        opacity: 0;
        transition: transform 0.55s var(--ease), opacity 0.45s var(--ease), box-shadow 0.25s var(--ease);
    }
    .nav-quick-btn--tg { transform: translateX(-80px); }
    .nav-quick-btn--max { transform: translateX(80px); }
    body.nav-quick-in .nav-quick-btn--tg {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.1s;
    }
    body.nav-quick-in .nav-quick-btn--max {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.2s;
    }
    .nav-quick-btn--tg:hover { transform: translateX(0) translateY(-2px); box-shadow: 0 12px 28px rgba(34, 158, 217, 0.35); }
    .nav-quick-btn--max:hover { transform: translateX(0) translateY(-2px); box-shadow: 0 12px 28px rgba(124, 58, 237, 0.35); }
    .nav {
        position: fixed; top: var(--header); left: 16px; right: 16px;
        flex-direction: column; background: var(--surface);
        border: 1px solid var(--border); border-radius: var(--radius);
        padding: 14px; box-shadow: var(--shadow-lg);
        transform: translateY(-16px); opacity: 0; pointer-events: none;
        transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
        z-index: 200;
    }
    .nav-a { padding: 14px 16px; font-size: 16px; border-radius: 10px; }
    .header.is-open .nav { transform: none; opacity: 1; pointer-events: auto; }
    .burger { display: flex; }
    .header-right .btn { display: none; }
    .pulse-cta { display: grid; }

    .hero { padding: 28px 0 40px; }
    .hero-inner { grid-template-columns: 1fr; gap: 28px; }
    .hero h1 { max-width: none; }
    .hero-stage { padding: 20px 16px; }
    .hero-flow { flex-direction: column; gap: 10px; }
    .hero-flow-arrow {
        width: 2px; height: 18px; margin: 0 auto;
        background: linear-gradient(180deg, var(--border), var(--accent));
    }
    .hero-flow-arrow::after {
        right: 50%; top: auto; bottom: -1px;
        transform: translateX(50%) rotate(135deg);
    }
    .hero-metrics { grid-template-columns: 1fr; }
    .why-bento { grid-template-columns: 1fr; }
    .why-card--featured { grid-row: auto; }
    .why-head { flex-direction: column; }
    .bento, .steps, .proj-grid { grid-template-columns: 1fr; }
    .cn-wrap { padding: 28px 0 48px; }
    .cn-hub { grid-template-columns: 1fr; gap: 20px; padding: 20px 18px; }
    .cn-profile h1 { font-size: 1.5rem; }
    .cn-lead { font-size: 14px; max-width: none; }
    .cn-tiles { grid-template-columns: 1fr; gap: 8px; }
    .cn-tile { min-height: 0; padding: 14px 16px; flex-direction: row; align-items: center; gap: 12px; }
    .cn-tile-icon { width: 44px; height: 44px; border-radius: 11px; }
    .cn-tile-body { gap: 2px; }
    .cn-tile strong { font-size: 15px; }
    .cn-tile em { display: none; }
    .cn-tile-go { align-self: center; margin-left: auto; }
    .cn-paybar { grid-template-columns: 1fr; }
    .cn-paybar-item { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 18px; }
    .cn-paybar-item:last-child { border-bottom: none; }
    .cn-map, .cn-map > * { min-height: 220px; }
    .cn-trust { flex-direction: column; align-items: flex-start; gap: 12px; }
    .cn-loc-pill { font-size: 12px; padding: 7px 12px; }
    .svc-grid { grid-template-columns: 1fr; gap: 8px; }
    .section-services { padding-block: 40px; }
    .svc-head { margin-bottom: 16px; }
    .svc-head h2 { font-size: clamp(1.35rem, 5vw, 1.75rem); }
    .svc-head .block-desc { font-size: 14px; line-height: 1.5; }
    .svc-card { padding: 12px 14px; gap: 8px; }
    .svc-card-head { gap: 10px; }
    .svc-icon { width: 34px; height: 34px; border-radius: 8px; }
    .svc-card h3 { font-size: 14px; margin-bottom: 2px; }
    .svc-card p {
        font-size: 12px;
        line-height: 1.45;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .svc-chips { gap: 5px; }
    .svc-chip { font-size: 10px; padding: 3px 7px; }
    .svc-card:nth-child(5) { max-width: none; }
    .metrics-row { grid-template-columns: 1fr; }
    .metric { border-right: none; border-bottom: 1px solid var(--border); }
    .proj-card-wide { grid-template-columns: 1fr; }
    .proj-card-wide-visual {
        border-right: none; border-bottom: 1px solid var(--border);
    }
    .proj-done { grid-template-columns: 1fr; }
    .payment-strip-grid { grid-template-columns: 1fr; }
    .proj-card-wide-body { padding: 28px 24px; }
    .proj-card-wide-visual { padding: 28px 24px; }
    .pf-case-grid { grid-template-columns: 1fr; }
    .pf-head-row { align-items: flex-start; }
    .pf-shell { padding: 16px; }
    .cta-card-body { grid-template-columns: 1fr; padding: 24px 20px; gap: 20px; }
    .sk-bento { grid-template-columns: 1fr; }
    .sk-langs { grid-template-columns: 1fr; }
    .sk-flow { flex-direction: column; }
    .sk-flow-arrow { transform: rotate(90deg); align-self: center; }
    .xp-metrics { grid-template-columns: 1fr; }
    .xp-hero-row, .sk-hero-row { align-items: flex-start; }
    .faq-layout { grid-template-columns: 1fr; gap: 20px; }
    .faq-aside { position: static; }
    .faq-a p { padding-left: 18px; }
    .block-head--row { flex-direction: column; align-items: flex-start; }
    .lang-cards { grid-template-columns: 1fr; }
    .footer-links { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
    .pulse-cta { animation: none; }
    .cta-wave { transform: none !important; }
    body.is-nav-active main,
    body.nav-open main,
    body.is-nav-active .footer,
    body.nav-open .footer,
    body.is-nav-active .mesh,
    body.nav-open .mesh { filter: none; transform: none; }
    body.nav-quick-in .nav-quick-btn,
    .nav-quick-btn { transform: none; opacity: 1; transition: none; }
}
