/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a2332;
    background: #f7f9fc;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:root {
    --blue: #0b3d91;
    --blue-light: #1e5fd9;
    --blue-soft: #e8f0fe;
    --blue-glow: rgba(30,95,217,0.5);
    --orange: #ff6a00;
    --orange-light: #ff8a3d;
    --orange-dark: #e85d00;
    --orange-glow: rgba(255,106,0,0.4);
    --text: #0f1828;
    --muted: #6b7a90;
    --line: #e3e8f0;
    --white: #ffffff;
    --bg: #f7f9fc;
    --grad-blue: linear-gradient(135deg, #0b3d91 0%, #2667e8 50%, #5b8def 100%);
    --grad-orange: linear-gradient(135deg, #ff6a00 0%, #ff9d4d 100%);
    --grad-mesh: linear-gradient(135deg, #0b3d91 0%, #1a4fb5 35%, #2667e8 70%, #ff6a00 130%);
    --shadow-sm: 0 2px 8px rgba(11,61,145,0.06);
    --shadow-md: 0 8px 28px rgba(11,61,145,0.12);
    --shadow-lg: 0 24px 60px rgba(11,61,145,0.22);
    --shadow-orange: 0 12px 30px rgba(255,106,0,0.35);
    --radius: 16px;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

/* ===== Scroll-reveal ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ===== BUTTONS ===== */
.btn {
    position: relative;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 24px; border-radius: 12px; font-weight: 600; font-size: 15px;
    transition: transform .2s cubic-bezier(.2,.7,.2,1), box-shadow .25s, background .25s;
    white-space: nowrap; overflow: hidden;
    isolation: isolate;
}
.btn::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35), transparent 70%);
    transform: translateX(-100%);
    transition: transform .6s;
}
.btn:hover::before { transform: translateX(100%); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 9px 16px; font-size: 14px; border-radius: 10px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--grad-blue); color: #fff; box-shadow: 0 6px 20px var(--blue-glow); }
.btn-primary:hover { box-shadow: 0 12px 30px var(--blue-glow); }
.btn-orange { background: var(--grad-orange); color: #fff; box-shadow: var(--shadow-orange); }
.btn-orange:hover { box-shadow: 0 18px 40px var(--orange-glow); }
.btn-ghost { background: rgba(255,255,255,.10); color: #fff; backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.28); }
.btn-ghost:hover { background: rgba(255,255,255,.20); border-color: rgba(255,255,255,.5); }
.btn-white {
    background: #fff; color: var(--blue);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.4);
    font-weight: 700;
}
.btn-white:hover { box-shadow: 0 14px 36px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.7); color: var(--blue-light); }
.btn-ai {
    background: linear-gradient(135deg, #eef4ff, #fff);
    color: var(--blue);
    border: 1px solid rgba(11,61,145,0.16);
    box-shadow: 0 6px 18px rgba(11,61,145,0.08);
}
.btn-ai:hover {
    background: linear-gradient(135deg, #e4eeff, #fff);
    border-color: rgba(11,61,145,0.28);
    box-shadow: 0 10px 26px rgba(11,61,145,0.14);
}

.btn-hero {
    padding: 18px 34px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 14px;
    letter-spacing: 0.01em;
}
.btn-hero.btn-orange {
    box-shadow: 0 14px 36px rgba(255,106,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.18);
}
.btn-hero.btn-orange:hover {
    box-shadow: 0 20px 50px rgba(255,106,0,0.7), inset 0 0 0 1px rgba(255,255,255,0.28);
    transform: translateY(-3px);
}

.btn-pulse { position: relative; }
.btn-pulse::after {
    content: ''; position: absolute; inset: -4px;
    border-radius: 18px;
    border: 2px solid rgba(255,138,61,0.7);
    opacity: 0;
    animation: cta-pulse 2.4s cubic-bezier(.4,0,.2,1) infinite;
    pointer-events: none;
}
@keyframes cta-pulse {
    0%   { opacity: 0.7; transform: scale(1); }
    70%  { opacity: 0; transform: scale(1.12); }
    100% { opacity: 0; transform: scale(1.12); }
}
@media (prefers-reduced-motion: reduce) { .btn-pulse::after { animation: none; } }

/* ===== HEADER ===== */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.78);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid rgba(227,232,240,0.7);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.logo-mark {
    width: 38px; height: 38px; border-radius: 10px;
    background: var(--grad-blue); position: relative;
    color: #fff; display: grid; place-items: center; font-size: 14px; font-weight: 800;
    box-shadow: 0 4px 14px var(--blue-glow);
}
.logo-mark::after {
    content: ''; position: absolute; inset: 1px; border-radius: 9px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent 60%);
    pointer-events: none;
}
.logo-text { font-size: 16px; }
.logo-accent { color: var(--orange); }
.logo-light { color: #fff; }
.nav { display: flex; gap: 30px; }
.nav a {
    font-size: 15px; color: var(--muted); font-weight: 500;
    position: relative; padding: 4px 0;
    transition: color .2s;
}
.nav a::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
    height: 2px; background: var(--grad-orange); border-radius: 2px;
    transform: scaleX(0); transform-origin: left;
    transition: transform .25s cubic-bezier(.2,.7,.2,1);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { transform: scaleX(1); }

@media (max-width: 860px) { .nav { display: none; } }

/* ===== HERO ===== */
.hero {
    position: relative; color: #fff; overflow: hidden;
    padding: 100px 0 120px;
    isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; background: #08214f; }
.hero-bg::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(900px 600px at 75% 25%, rgba(255,106,0,0.35), transparent 60%),
        radial-gradient(900px 600px at 15% 85%, rgba(30,95,217,0.55), transparent 60%),
        radial-gradient(700px 500px at 50% 50%, rgba(91,141,239,0.25), transparent 70%),
        linear-gradient(135deg, #08214f 0%, #0b3d91 45%, #1a4fb5 100%);
}
/* Анимированные блобы */
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
}
.blob {
    position: absolute; border-radius: 50%; filter: blur(60px);
    opacity: .55; pointer-events: none; z-index: -1;
    animation: floaty 14s ease-in-out infinite;
}
.blob-1 { width: 380px; height: 380px; background: #ff6a00; top: -80px; right: -80px; }
.blob-2 { width: 460px; height: 460px; background: #2667e8; bottom: -120px; left: -120px; animation-delay: -5s; }
.blob-3 { width: 280px; height: 280px; background: #5b8def; top: 40%; right: 30%; opacity: .35; animation-delay: -9s; }
@keyframes floaty {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(40px, -30px) scale(1.06); }
    66%      { transform: translate(-30px, 25px) scale(0.95); }
}

.hero-content { max-width: 820px; position: relative; }
.badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 16px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
    border-radius: 100px; font-size: 13px; font-weight: 500; backdrop-filter: blur(8px);
    margin-bottom: 22px;
}
.badge::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: #4ade80; box-shadow: 0 0 10px #4ade80;
    animation: blink 2s infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.badge-orange { background: var(--grad-orange); border-color: transparent; color: #fff; }
.badge-orange::before { background: #fff; box-shadow: 0 0 10px #fff; }

.hero h1 {
    font-size: clamp(34px, 5.4vw, 60px);
    line-height: 1.05; margin: 0 0 22px; font-weight: 800; letter-spacing: -0.025em;
}
.hero h1 .hl {
    background: var(--grad-orange);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    position: relative;
    display: inline-block;
}
.hero h1 .hl::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
    height: 8px; background: var(--orange);
    opacity: .25; border-radius: 4px;
}
.lead { font-size: clamp(16px, 1.5vw, 19px); opacity: .92; margin: 0 0 36px; max-width: 680px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    max-width: 640px;
}
.hero-stats li {
    display: flex; flex-direction: column;
    padding: 16px 20px; border-radius: 14px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    transition: transform .25s, background .25s;
}
.hero-stats li:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.hero-stats strong {
    font-size: 30px; font-weight: 800; line-height: 1;
    background: var(--grad-orange);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.hero-stats span { font-size: 12px; opacity: .8; margin-top: 6px; text-transform: uppercase; letter-spacing: 0.06em; }

@media (max-width: 600px) {
    .hero { padding: 60px 0 70px; }
    .hero-stats { grid-template-columns: 1fr; gap: 10px; }
    .hero-stats li { flex-direction: row; align-items: baseline; justify-content: space-between; }
}

/* ===== MARQUEE: бегущая строка с профессиями ===== */
.marquee {
    background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    overflow: hidden; padding: 18px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
    display: flex; gap: 50px; width: max-content;
    animation: marquee 50s linear infinite;
}
.marquee-track span {
    color: var(--muted); font-weight: 600; font-size: 15px; white-space: nowrap;
    display: inline-flex; align-items: center; gap: 12px;
}
.marquee-track span::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
section { padding: 100px 0; position: relative; }
.section-title {
    font-size: clamp(28px, 3.8vw, 42px); font-weight: 800; margin: 0 0 10px;
    text-align: center; letter-spacing: -0.025em;
}
.section-title .grad {
    background: var(--grad-blue);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.section-sub { text-align: center; color: var(--muted); font-size: 17px; margin: 0 0 56px; }

/* ===== ADVANTAGES ===== */
.advantages-grid {
    display: grid; gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.adv-card {
    background: #fff; padding: 32px 28px; border-radius: var(--radius);
    box-shadow: var(--shadow-sm); border: 1px solid var(--line);
    transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s, border-color .3s;
    position: relative; overflow: hidden;
}
.adv-card::before {
    content: ''; position: absolute; inset: 0;
    background: var(--grad-blue);
    opacity: 0; transition: opacity .3s;
    z-index: 0;
}
.adv-card > * { position: relative; z-index: 1; }
.adv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.adv-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--blue-soft); color: var(--blue);
    display: grid; place-items: center;
    font-size: 28px; margin-bottom: 18px;
    transition: background .3s, color .3s, transform .3s;
}
.adv-card:hover .adv-icon { transform: rotate(-6deg) scale(1.05); background: rgba(255,255,255,0.2); color: #fff; }
.adv-card:hover { color: #fff; }
.adv-card:hover .adv-card-text { color: rgba(255,255,255,0.9); }
.adv-card:hover::before { opacity: 1; }
.adv-card h3 { margin: 0 0 8px; font-size: 19px; font-weight: 700; }
.adv-card p { margin: 0; color: var(--muted); font-size: 15px; transition: color .3s; }

/* ===== VOICE BLOCK ===== */
.voice {
    background: linear-gradient(180deg, #fff 0%, var(--blue-soft) 100%);
    overflow: hidden;
}
.voice-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.voice-text h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    margin: 14px 0 14px; font-weight: 800; letter-spacing: -0.02em;
    background: var(--grad-blue);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.voice-text .lead { color: var(--text); opacity: 1; }
.voice-steps {
    padding: 0; margin: 24px 0 0; list-style: none;
    counter-reset: step;
}
.voice-steps li {
    counter-increment: step;
    position: relative; padding: 14px 18px 14px 56px;
    margin-bottom: 12px;
    background: #fff; border-radius: 12px;
    box-shadow: var(--shadow-sm);
    font-size: 15px;
    transition: transform .25s;
}
.voice-steps li:hover { transform: translateX(4px); }
.voice-steps li::before {
    content: counter(step);
    position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--grad-orange); color: #fff;
    display: grid; place-items: center;
    font-weight: 700; font-size: 13px;
    box-shadow: 0 4px 10px var(--orange-glow);
}
.dot {
    display: inline-block; width: 14px; height: 14px; border-radius: 50%;
    background: var(--blue); vertical-align: middle; box-shadow: 0 0 0 4px rgba(11,61,145,.2);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(11,61,145,.2); }
    50% { box-shadow: 0 0 0 10px rgba(11,61,145,0); }
}

.voice-visual { position: relative; display: grid; place-items: center; min-height: 520px; }
.voice-visual::before {
    content: ''; position: absolute; width: 380px; height: 380px;
    border-radius: 50%; background: var(--grad-blue); opacity: 0.12; filter: blur(40px);
    animation: floaty 10s ease-in-out infinite;
}
.phone {
    position: relative;
    width: 290px; height: 500px; border-radius: 40px;
    background: linear-gradient(135deg, #1a2332 0%, #0f1828 100%);
    padding: 14px;
    box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,0.08);
}
.phone::before {
    content: ''; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 24px; background: #0f1828; border-radius: 0 0 16px 16px;
    z-index: 2;
}
.phone-screen {
    width: 100%; height: 100%; background: linear-gradient(180deg, #f0f4fa 0%, #fff 100%);
    border-radius: 28px;
    padding: 50px 18px 24px; display: flex; flex-direction: column; gap: 12px; justify-content: flex-end;
    overflow: hidden;
}
.bubble {
    padding: 11px 16px; border-radius: 18px; font-size: 14px; max-width: 85%;
    animation: bubbleIn .5s cubic-bezier(.2,.9,.2,1) both;
}
.bubble-bot { background: #fff; align-self: flex-start; box-shadow: var(--shadow-sm); border-bottom-left-radius: 6px; }
.bubble-user { background: var(--grad-blue); color: #fff; align-self: flex-end; border-bottom-right-radius: 6px; }
.bubble:nth-child(1) { animation-delay: .2s; }
.bubble:nth-child(2) { animation-delay: 1.2s; }
.bubble:nth-child(3) { animation-delay: 2.2s; }
@keyframes bubbleIn {
    from { opacity: 0; transform: translateY(10px) scale(.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.mic-pulse {
    position: absolute; bottom: 24px; right: 30px;
    width: 70px; height: 70px; border-radius: 50%;
    background: var(--grad-blue); color: #fff; display: grid; place-items: center;
    font-size: 30px; box-shadow: 0 0 0 0 rgba(11,61,145,.5), var(--shadow-md);
    animation: pulse-big 2s infinite;
    cursor: pointer;
}
@keyframes pulse-big {
    0%   { box-shadow: 0 0 0 0 rgba(11,61,145,.5), var(--shadow-md); }
    70%  { box-shadow: 0 0 0 24px rgba(11,61,145,0), var(--shadow-md); }
    100% { box-shadow: 0 0 0 0 rgba(11,61,145,0), var(--shadow-md); }
}
@media (max-width: 860px) {
    .voice-inner { grid-template-columns: 1fr; gap: 40px; }
    .voice-visual { order: -1; min-height: 460px; }
    .phone { transform: scale(.85); }
}

/* ===== VACANCIES ===== */
.filters {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; margin-bottom: 36px;
}
.input {
    width: 100%; padding: 14px 16px; border-radius: 12px;
    border: 1px solid var(--line); background: #fff; font-size: 15px; font-family: inherit;
    transition: border-color .2s, box-shadow .2s, transform .15s;
}
.input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11,61,145,.1); transform: translateY(-1px); }
@media (max-width: 700px) { .filters { grid-template-columns: 1fr; } }

.vacancies-grid {
    display: grid; gap: 24px;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
}
.card {
    background: #fff; border-radius: var(--radius);
    border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    padding: 26px; display: flex; flex-direction: column; gap: 14px;
    transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s, border-color .3s;
    position: relative; overflow: hidden;
    isolation: isolate;
}
.card::before {
    content: ''; position: absolute; inset: 0;
    border-radius: var(--radius);
    padding: 2px;
    background: var(--grad-blue);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0; transition: opacity .3s;
    pointer-events: none;
}
.card::after {
    content: ''; position: absolute; top: -50%; right: -30%;
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,106,0,0.08), transparent 70%);
    opacity: 0; transition: opacity .4s;
    pointer-events: none;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.card:hover::before { opacity: 1; }
.card:hover::after { opacity: 1; }
.card.skeleton {
    height: 380px;
    background: linear-gradient(90deg, #eef2f7 25%, #f7f9fc 50%, #eef2f7 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    border: none; padding: 0;
}
.card.skeleton::before, .card.skeleton::after { display: none; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.card-tag {
    position: absolute; top: 14px; right: 14px;
    background: var(--grad-orange); color: #fff;
    padding: 5px 12px; font-size: 11px; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
    border-radius: 100px;
    box-shadow: var(--shadow-orange);
    z-index: 2;
}
.card-title { font-size: 20px; font-weight: 700; margin: 0; padding-right: 70px; line-height: 1.3; letter-spacing: -0.01em; }
.card-region {
    font-size: 13px; color: var(--muted);
    display: inline-flex; align-items: center; gap: 4px;
}
.card-salary {
    background: var(--blue-soft); color: var(--blue);
    padding: 12px 16px; border-radius: 12px; font-weight: 700; font-size: 18px;
    display: flex; align-items: center; gap: 10px;
    border: 1px solid rgba(11,61,145,0.1);
}
.card-salary::before { content: '💰'; font-size: 20px; }
.card-meta { display: grid; gap: 8px; font-size: 14px; }
.card-meta-row { display: flex; gap: 8px; align-items: flex-start; }
.card-meta-row .ico { flex-shrink: 0; width: 18px; }
.card-meta-row .label { color: var(--muted); margin-right: 4px; }
.card-req {
    border-top: 1px dashed var(--line); padding-top: 14px;
    font-size: 13px; color: var(--muted); line-height: 1.6;
}
.card-category {
    display: inline-block; align-self: flex-start;
    padding: 4px 12px; border-radius: 100px;
    background: var(--blue-soft); color: var(--blue);
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}
.card-desc {
    margin: 0; color: var(--text); font-size: 14.5px; line-height: 1.5;
    font-weight: 500;
}

/* ===== БЕЙДЖИ ===== */
.card-badges {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin: 4px 0 -4px;
}
.badge {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 4px 10px; border-radius: 999px;
    font-size: 12px; font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
    border: 1px solid transparent;
}
.badge-green  { background: #e9f8ee; color: #1f8a3a; border-color: #c5ecd1; }
.badge-blue   { background: #e8f0fc; color: #0b3d91; border-color: #c8d8f3; }
.badge-purple { background: #efe9fb; color: #5b3aaf; border-color: #d6cbf0; }
.badge-orange { background: #fff1e2; color: #c45a00; border-color: #ffd8b3; }
.badge-gray   { background: #f1f3f7; color: #555;    border-color: #e0e3ea; }
.badge::before { font-size: 11px; }
.badge-green::before  { content: '✓'; }
.badge-blue::before   { content: '★'; }
.badge-purple::before { content: '🏠'; }
.badge-orange::before { content: '✦'; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.card-tags span {
    font-size: 12px; color: var(--muted);
    background: var(--bg); padding: 4px 10px; border-radius: 6px;
    border: 1px solid var(--line);
    transition: background .2s, color .2s;
}
.card-tags span:hover { background: var(--blue-soft); color: var(--blue); border-color: var(--blue-soft); }
.card-actions { margin-top: auto; padding-top: 8px; }
.card .btn { width: 100%; }
.empty { text-align: center; color: var(--muted); padding: 60px; font-size: 16px; }

/* ===== CTA STRIP ===== */
.cta-strip {
    background: var(--grad-blue);
    color: #fff; padding: 70px 0;
    position: relative; overflow: hidden;
}
.cta-strip::before, .cta-strip::after {
    content: ''; position: absolute; border-radius: 50%; filter: blur(80px);
}
.cta-strip::before { width: 400px; height: 400px; background: var(--orange); top: -150px; right: 10%; opacity: .35; }
.cta-strip::after  { width: 300px; height: 300px; background: #5b8def; bottom: -100px; left: 5%; opacity: .4; }
.cta-strip-inner { text-align: center; position: relative; z-index: 1; }
.cta-strip h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 0 0 12px; font-weight: 800; letter-spacing: -0.02em; }
.cta-strip p { opacity: .92; margin: 0 0 28px; font-size: 17px; }

/* ===== FOOTER ===== */
.footer {
    background: #0a1628; color: #c5cfe0; padding: 70px 0 24px;
    position: relative; overflow: hidden;
}
.footer::before {
    content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
    width: 800px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(30,95,217,0.2), transparent 70%);
    pointer-events: none;
}
.footer-inner {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
    padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.08);
    position: relative;
}
.footer h4 { color: #fff; margin: 0 0 14px; font-size: 16px; }
.footer p { margin: 0 0 8px; font-size: 14px; }
.footer a { transition: color .2s; }
.footer a:hover { color: var(--orange); }
.footer .muted { color: #8895ad; margin-top: 14px; max-width: 380px; font-size: 14px; line-height: 1.6; }
.footer-bottom { padding-top: 20px; color: #6b7a90; font-size: 13px; position: relative; }
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; gap: 28px; } }

/* ===== MODAL ===== */
.modal-backdrop {
    position: fixed; inset: 0; background: rgba(8,33,79,.65);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    display: none; align-items: center; justify-content: center;
    z-index: 100; padding: 20px;
    animation: fadeIn .25s ease-out;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-backdrop.active { display: flex; }
.modal {
    background: #fff; border-radius: 20px; padding: 36px;
    width: 100%; max-width: 480px; position: relative;
    box-shadow: var(--shadow-lg);
    max-height: 90vh; overflow-y: auto;
    animation: modal-in .35s cubic-bezier(.18,.89,.32,1.15);
}
@keyframes modal-in { from { transform: translateY(30px) scale(.97); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }
.modal-close {
    position: absolute; top: 14px; right: 14px;
    width: 38px; height: 38px; border-radius: 50%;
    font-size: 24px; color: var(--muted);
    transition: background .2s, color .2s, transform .2s;
}
.modal-close:hover { background: var(--bg); color: var(--text); transform: rotate(90deg); }
.modal h3 { margin: 0 0 8px; font-size: 24px; font-weight: 800; letter-spacing: -0.01em; }
.modal-vacancy {
    color: var(--blue); font-weight: 600; margin: 0 0 12px;
    padding: 12px 16px; background: var(--blue-soft); border-radius: 10px;
    border-left: 3px solid var(--blue);
}
.modal-vacancy-details {
    margin: 0 0 18px;
    padding: 12px 16px;
    background: var(--bg, #f7f8fb);
    border: 1px solid var(--line, #e5e7eb);
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text);
    white-space: pre-line;
}
.modal-vacancy-details[hidden] { display: none; }
.form { display: flex; flex-direction: column; gap: 14px; }
.form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; color: var(--text); }
.form input {
    padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px;
    font-size: 15px; font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
}
.form input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11,61,145,.1); }
.form input:invalid:not(:placeholder-shown) { border-color: #e74c3c; }
.form-note { color: var(--muted); font-size: 12px; text-align: center; margin: 4px 0 0; line-height: 1.5; }
.hp-field { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.modal-success { text-align: center; padding: 24px 0; }
.success-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, #2ecc71, #27ae60); color: #fff; font-size: 44px;
    display: grid; place-items: center; margin: 0 auto 18px;
    box-shadow: 0 12px 30px rgba(46,204,113,0.4);
    animation: pop .5s cubic-bezier(.18,.89,.32,1.4);
}
@keyframes pop { 0% { transform: scale(0); } 70% { transform: scale(1.15); } 100% { transform: scale(1); } }

/* ===== HIDE VOICYFY BRANDING (best-effort) =====
   ВАЖНО: правила должны попадать ТОЛЬКО в подписи "powered by voicyfy",
   а не в саму круглую кнопку-launcher (иначе виджет исчезает). */
[class*="voicyfy-brand"],
[class*="voicyfy-copyright"],
[class*="voicyfy-powered"],
[class*="powered-by-voicyfy"],
[id*="voicyfy-brand"],
[id*="voicyfy-copyright"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
