/* =========================================================
   USPI WORK & DOCUMENTS — Sales Manager landing
   ========================================================= */
:root {
  --navy: #0b1c45;
  --ink: #1d2b4f;
  --muted: #4b5b7c;
  --blue: #0b63e5;
  --blue-2: #1f8bff;
  --blue-3: #35a3ff;
  --blue-deep: #0a3f9e;
  --blue-night: #062156;
  --bg: #f3f8ff;
  --line: #dde8f7;
  --card: rgba(255, 255, 255, .86);
  --radius: 14px;
  --radius-lg: 18px;
  --shadow-sm: 0 4px 14px -6px rgba(17, 62, 150, .18);
  --shadow: 0 14px 34px -16px rgba(17, 62, 150, .32);
  --shadow-lg: 0 24px 50px -20px rgba(17, 62, 150, .42);
  --grad: linear-gradient(135deg, #2a9bff 0%, #0b63e5 55%, #0a4fc4 100%);
  --grad-text: linear-gradient(90deg, #0a58d4 0%, #1a86ff 100%);
  --grad-dark: linear-gradient(145deg, #1054c4 0%, #0a3a91 45%, #062156 100%);
  --ease: cubic-bezier(.2, .75, .2, 1);
  --header-h: 86px;
  --container: 1200px;
  --gutter: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 110% 30%, rgba(53, 163, 255, .10), transparent 60%),
    radial-gradient(900px 500px at -10% 70%, rgba(11, 99, 229, .07), transparent 60%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
h1, h2, h3, p, ul, ol, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
b, strong { font-weight: 700; }
[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 200; background: var(--blue); color: #fff; padding: 10px 16px; border-radius: 10px; transition: top .2s; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid rgba(31, 139, 255, .55); outline-offset: 3px; border-radius: 8px; }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: 44px; position: relative; }

.text-brand {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.text-blue { color: var(--blue); font-weight: 500; }

.h2 {
  font-size: clamp(26px, 2.5vw + 10px, 36px);
  line-height: 1.12;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.01em;
}
.h2--bar { position: relative; padding-left: 18px; margin-bottom: 26px; }
.h2--bar::before {
  content: ""; position: absolute; left: 0; top: .12em; bottom: .12em; width: 3px; border-radius: 3px;
  background: linear-gradient(180deg, var(--blue-3), var(--blue));
}

/* ---------- Icons ---------- */
svg use { fill: inherit; }
.chip__ic svg, .hl__ic svg, .card__ic svg, .tile__ic svg, .step__ic svg, .photo-card__ic svg,
.stats__ic, .panel__ic, .checklist svg, .badge__ic, .trust__ic svg, .quote__mark, .badge__crm-title svg {
  fill: url(#gi); color: var(--blue);
}

/* ---------- Buttons ---------- */
.btn {
  --h: 46px;
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: var(--h); padding: 0 24px;
  border: 0; border-radius: 12px; cursor: pointer;
  font-weight: 700; font-size: 16px; letter-spacing: .005em; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s, color .25s;
  -webkit-tap-highlight-color: transparent;
}
.btn__chev { width: 16px; height: 16px; color: currentColor; transition: transform .25s var(--ease); }
.btn:hover .btn__chev { transform: translateX(4px); }
.btn__play { width: 22px; height: 22px; fill: var(--blue); }
.btn--primary {
  color: #fff;
  background: var(--grad);
  box-shadow: 0 10px 24px -10px rgba(11, 99, 229, .8), inset 0 1px 0 rgba(255, 255, 255, .35);
}
.btn--primary::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: linear-gradient(135deg, #48b0ff, #1570f0 60%, #0b58d8);
  opacity: 0; transition: opacity .25s;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(11, 99, 229, .9), inset 0 1px 0 rgba(255, 255, 255, .4); }
.btn--primary:hover::before { opacity: 1; }
.btn--primary:active { transform: translateY(0) scale(.98); }
.btn--ghost {
  color: var(--navy); background: rgba(255, 255, 255, .85);
  box-shadow: inset 0 0 0 1.5px rgba(11, 99, 229, .45), var(--shadow-sm);
}
.btn--ghost .btn__chev { color: var(--blue); }
.btn--ghost:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1.5px var(--blue), var(--shadow); }
.btn--sm { --h: 44px; padding: 0 22px; font-size: 15px; }
.btn--lg { --h: 56px; padding: 0 30px; font-size: 17px; border-radius: 14px; }
.btn--xl { --h: 58px; font-size: 18px; border-radius: 14px; }
.btn--block { width: 100%; }

.btn--shine::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%; z-index: 1;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-20deg);
  animation: shine 4.5s 2.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shine { 0% { left: -60%; } 22%, 100% { left: 130%; } }
.btn--glow { box-shadow: 0 0 0 2px rgba(120, 200, 255, .55), 0 0 26px 2px rgba(31, 139, 255, .55), inset 0 1px 0 rgba(255, 255, 255, .35); animation: glow 2.8s ease-in-out infinite; }
@keyframes glow { 50% { box-shadow: 0 0 0 2px rgba(140, 210, 255, .85), 0 0 40px 6px rgba(31, 139, 255, .75), inset 0 1px 0 rgba(255, 255, 255, .35); } }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-top: 12px;
  transition: padding .3s var(--ease);
}
.header__inner {
  display: flex; align-items: center; gap: 28px;
  height: 74px;
  background: rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: blur(14px) saturate(1.4); backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 18px;
  box-shadow: 0 8px 30px -18px rgba(17, 62, 150, .35);
  padding-inline: 20px;
  transition: height .3s var(--ease), box-shadow .3s, background-color .3s;
}
.header.is-scrolled { padding-top: 8px; }
.header.is-scrolled .header__inner { height: 62px; background: rgba(255, 255, 255, .9); box-shadow: 0 12px 34px -16px rgba(17, 62, 150, .42); }
.header__logo img { width: 218px; height: auto; transition: width .3s var(--ease); }
.header.is-scrolled .header__logo img { width: 188px; }
.nav { display: flex; align-items: center; gap: 6px; margin-left: 12px; padding-left: 22px; border-left: 1px solid var(--line); }
.nav__link {
  position: relative; padding: 8px 12px; font-size: 15px; font-weight: 500; color: var(--navy);
  border-radius: 8px; transition: color .2s;
}
.nav__link::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 2px; border-radius: 2px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--blue); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__cta { display: none; }
.header__cta { margin-left: auto; }
.burger { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: calc(var(--header-h) + 34px) 0 112px;
  background: linear-gradient(180deg, #eaf3ff 0%, #f4f9ff 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 690px; }
.eyebrow { font-size: 14px; font-weight: 500; letter-spacing: .03em; text-transform: uppercase; color: #1c4ea6; margin-bottom: 12px; }
.hero__title {
  font-size: clamp(34px, 2.6vw + 8px, 47px);
  line-height: 1.08; font-weight: 900; color: var(--navy); letter-spacing: -.015em;
}
.hero__title-brand { display: block; }
.hero__lead { margin-top: 12px; font-size: clamp(19px, 1vw + 10px, 25px); line-height: 1.25; font-weight: 700; color: var(--navy); }
.hero__text { margin-top: 14px; font-size: 16px; line-height: 1.55; color: var(--muted); max-width: 580px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 14px 20px; margin-top: 26px; }
.chip { display: flex; align-items: center; gap: 10px; font-size: 13.5px; line-height: 1.2; font-weight: 700; color: var(--navy); }
.chip__ic {
  flex: none; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-dark);
  box-shadow: 0 8px 18px -8px rgba(10, 63, 158, .8), inset 0 1px 0 rgba(255, 255, 255, .25);
  transition: transform .35s var(--ease);
}
.chip__ic svg { width: 22px; height: 22px; fill: #fff; color: #fff; }
.chip:hover .chip__ic { transform: translateY(-3px) rotate(-6deg); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }

.hero__globe {
  position: absolute; z-index: -1; pointer-events: none;
  width: 640px; height: auto; left: 36%; top: 30px;
  mix-blend-mode: multiply; opacity: 1; filter: contrast(1.5) saturate(1.4);
  animation: globeFloat 18s ease-in-out infinite;
}
@keyframes globeFloat { 0%, 100% { transform: translate3d(0, 0, 0) rotate(0); } 50% { transform: translate3d(-10px, 14px, 0) rotate(-5deg); } }

.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.br-d { display: none; }
.hero__badges { position: relative; }

.badge {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: blur(10px) saturate(1.5); backdrop-filter: blur(10px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: 14px;
  box-shadow: 0 16px 36px -14px rgba(10, 60, 160, .45), 0 0 0 4px rgba(120, 190, 255, .18);
  color: var(--navy); font-weight: 700; font-size: 14px; line-height: 1.2;
  transition: translate .6s var(--ease);
  will-change: transform;
}
.badge__ic { width: 34px; height: 34px; flex: none; }
.badge--crm { flex-direction: column; align-items: flex-start; gap: 8px; padding: 12px 16px 14px; }
.badge__crm-title { display: flex; align-items: center; gap: 6px; font-size: 20px; font-weight: 900; color: var(--blue); }
.badge__crm-title svg { width: 22px; height: 22px; }
.badge--growth { gap: 14px; }
.badge__small { display: block; font-size: 12px; font-weight: 500; color: var(--muted); }
.badge__big { display: block; font-size: 30px; font-weight: 900; color: var(--blue); letter-spacing: -.02em; line-height: 1.05; }
.badge--recruit { flex-direction: column; gap: 6px; padding: 14px 20px; }
.badge--recruit .badge__ic { width: 40px; height: 40px; }
.badge__b2b { font-size: 24px; font-weight: 900; color: var(--blue); }
.mini-bars { display: flex; align-items: flex-end; gap: 4px; height: 38px; }
.mini-bars i {
  display: block; width: 9px; height: var(--h); border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, var(--blue-3), var(--blue));
  transform-origin: bottom; transform: scaleY(0);
  animation: barUp .9s var(--ease) forwards, barPulse 3.2s 2.4s ease-in-out infinite;
}
.mini-bars i:nth-child(1) { animation-delay: 1.10s, 2.4s; }
.mini-bars i:nth-child(2) { animation-delay: 1.18s, 2.6s; }
.mini-bars i:nth-child(3) { animation-delay: 1.26s, 2.8s; }
.mini-bars i:nth-child(4) { animation-delay: 1.34s, 3.0s; }
.mini-bars i:nth-child(5) { animation-delay: 1.42s, 3.2s; }
.mini-bars i:nth-child(6) { animation-delay: 1.50s, 3.4s; }
.mini-bars i:nth-child(7) { animation-delay: 1.58s, 3.6s; }
.mini-bars--sm { height: 32px; }
.mini-bars--sm i { width: 8px; }
@keyframes barUp { to { transform: scaleY(1); } }
@keyframes barPulse { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(.82); } }

/* entrance animations (hero) */
[data-anim] { animation: fadeUp .8s var(--ease) both; }
[data-anim="1"] { animation-delay: .05s; }
[data-anim="2"] { animation-delay: .14s; }
[data-anim="3"] { animation-delay: .23s; }
[data-anim="4"] { animation-delay: .32s; }
[data-anim="5"] { animation-delay: .41s; }
[data-anim="6"] { animation-delay: .50s; }
@keyframes fadeUp { from { opacity: 0; transform: translate3d(0, 22px, 0); } to { opacity: 1; transform: none; } }
.hero__photo img { animation: kenburns 2.2s var(--ease) both; }
@keyframes kenburns { from { transform: scale(1.07); opacity: .4; } to { transform: scale(1); opacity: 1; } }
.badge { animation: badgeIn .8s var(--ease) both, float 6s ease-in-out infinite; }
.badge--crm     { animation-delay: .75s, 1.6s; }
.badge--growth  { animation-delay: .9s, 1.9s; animation-duration: .8s, 7s; }
.badge--recruit { animation-delay: 1.05s, 2.2s; animation-duration: .8s, 6.5s; }
.badge--b2b     { animation-delay: 1.2s, 2.5s; animation-duration: .8s, 7.5s; }
.badge--intl    { animation-delay: 1.35s, 2.8s; animation-duration: .8s, 6.8s; }
@keyframes badgeIn { from { opacity: 0; transform: translate3d(0, 18px, 0) scale(.86); } to { opacity: 1; transform: none; } }
@keyframes float { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, -9px, 0); } }

/* ---------- Highlights ---------- */
.highlights { position: relative; z-index: 3; margin-top: -58px; }
.highlights__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hl {
  position: relative; overflow: hidden; isolation: isolate;
  display: flex; align-items: center; gap: 18px;
  min-height: 104px; padding: 18px 20px 18px 18px;
  background: var(--card);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--navy);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), color .35s;
}
.hl::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--grad-dark);
  opacity: 0; transition: opacity .45s var(--ease);
}
.hl::after {
  content: ""; position: absolute; z-index: -1; right: -40px; top: -60px; width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(80, 180, 255, .45), transparent 70%);
  opacity: 0; transition: opacity .45s;
}
.hl.is-active { color: #fff; box-shadow: var(--shadow-lg); }
.hl.is-active::before, .hl.is-active::after { opacity: 1; }
.hl:hover { transform: translateY(-4px); }
.hl__ic {
  flex: none; display: grid; place-items: center; width: 66px; height: 66px; border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 10px 22px -10px rgba(11, 99, 229, .9), inset 0 1px 0 rgba(255, 255, 255, .35), 0 0 0 5px rgba(31, 139, 255, .12);
  transition: transform .4s var(--ease);
}
.hl__ic svg { width: 30px; height: 30px; fill: #fff; color: #fff; }
.hl:hover .hl__ic { transform: scale(1.06) rotate(-4deg); }
.hl__text { font-size: 16px; line-height: 1.35; color: inherit; opacity: .92; }
.hl__text b { display: block; font-size: 17px; opacity: 1; }
.hl__chev { width: 22px; height: 22px; margin-left: auto; flex: none; color: var(--blue-2); transition: transform .3s var(--ease); }
.hl.is-active .hl__chev { color: #7cc6ff; }
.hl:hover .hl__chev { transform: translateX(4px); }

/* ---------- Cards (why) ---------- */
.why { padding-top: 56px; }
.why__grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 26px; align-items: start; }
.why__head { display: flex; align-items: flex-end; gap: 22px; }
.why__head .h2 { margin-bottom: 26px; }
.why__head .text-brand { display: block; }
.why__line { flex: 1; max-width: 90px; height: 2px; margin-bottom: 38px; border-radius: 2px; background: linear-gradient(90deg, var(--blue-2), transparent); }
.why__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 16px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card__ic, .tile__ic, .step__ic, .photo-card__ic {
  flex: none; display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%;
  background: #fff; box-shadow: 0 6px 16px -6px rgba(17, 62, 150, .3), inset 0 0 0 1px #eef4fd;
  transition: transform .45s var(--ease);
}
.card__ic svg, .tile__ic svg { width: 28px; height: 28px; }
.card:hover .card__ic, .tile:hover .tile__ic, .step:hover .step__ic { transform: translateY(-3px) rotate(-8deg) scale(1.05); }
.card h3 { font-size: 15px; line-height: 1.3; font-weight: 700; color: var(--navy); }
.card p { margin-top: 5px; font-size: 13.5px; line-height: 1.4; color: var(--muted); }

/* ---------- Stats panel ---------- */
.stats {
  position: relative; overflow: hidden; isolation: isolate;
  padding: 28px 26px 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #0f47a8 0%, #0a2f78 45%, #051a48 100%);
  box-shadow: var(--shadow-lg);
  color: #fff;
}
.stats::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(420px 260px at 90% 85%, rgba(53, 163, 255, .35), transparent 70%);
}
.stats__globe { position: absolute; z-index: -1; width: 100%; right: -42%; bottom: -8%; pointer-events: none; }
.stats__globe img { width: 100%; height: auto; mix-blend-mode: screen; opacity: .92; animation: globeSpin 40s linear infinite; border-radius: 50%; }
@keyframes globeSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.stats__title { font-size: 23px; line-height: 1.2; font-weight: 900; letter-spacing: -.005em; }
.stats__title span { display: block; }
.stats__list { display: grid; gap: 18px; margin-top: 22px; }
.stats__list li { display: flex; align-items: center; gap: 16px; }
.stats__ic { width: 42px; height: 42px; flex: none; fill: #56b8ff; color: #56b8ff; filter: drop-shadow(0 0 10px rgba(86, 184, 255, .5)); }
.stats__list b { display: block; font-size: 26px; line-height: 1.05; font-weight: 900; font-variant-numeric: tabular-nums; }
.stats__list b.stats__b-text { font-size: 18px; line-height: 1.2; }
.stats__list span { display: block; font-size: 14px; line-height: 1.3; color: #c6dbff; }
.stats__list div { text-shadow: 0 1px 12px rgba(3, 20, 60, .9); }
.stats__list b span { display: inline; font-size: inherit; color: inherit; }

/* ---------- Vacancy ---------- */
.vacancy { padding-block: 40px 30px; overflow: hidden; }
.vacancy__photo {
  position: absolute; left: 0; top: 0; bottom: 0; width: 42%;
  -webkit-mask-image: linear-gradient(90deg, #000 55%, transparent 98%), linear-gradient(180deg, transparent 0, #000 14%, #000 84%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(90deg, #000 55%, transparent 98%), linear-gradient(180deg, transparent 0, #000 14%, #000 84%, transparent 100%);
  mask-composite: intersect;
}
.vacancy__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 30% 40%; }
.vacancy__inner { position: relative; }
.vacancy__content { margin-left: auto; width: min(68%, 850px); }
.vacancy__head .h2 { font-size: clamp(24px, 1.6vw + 10px, 33px); }
.vacancy__head .h2 { margin-bottom: 4px; }
.vacancy__sub { padding-left: 18px; font-size: clamp(18px, 1vw + 9px, 23px); color: var(--navy); margin-bottom: 22px; }
.vacancy__cards { display: grid; grid-template-columns: .92fr 1.08fr; gap: 18px; align-items: start; }
.panel {
  padding: 22px 22px 24px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.panel:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.panel__title { display: flex; align-items: center; gap: 12px; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.panel__ic { width: 30px; height: 30px; flex: none; }
.checklist { display: grid; gap: 12px; }
.checklist li { display: flex; gap: 10px; font-size: 15px; line-height: 1.4; color: var(--ink); }
.checklist svg { width: 20px; height: 20px; flex: none; margin-top: 1px; }
.checklist--tight { gap: 8px; }
.checklist--tight li { font-size: 14.5px; }
.panel__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-size: 15px; font-weight: 700; color: var(--blue); }
.panel__link svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.panel__link:hover svg { transform: translateX(5px); }

/* ---------- Offer ---------- */
.offer { padding-top: 36px; }
.offer::before, .team::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  background-image: url("../img/office-bg-1600.webp");
  background-image: image-set(url("../img/office-bg-1600.avif") type("image/avif"), url("../img/office-bg-1600.webp") type("image/webp"));
  background-size: cover;
  opacity: .55;
}
.offer::before {
  top: -40px; right: 0; width: 60%; height: 320px; background-position: right center;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 60%), linear-gradient(180deg, transparent, #000 25%, #000 70%, transparent);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(90deg, transparent, #000 60%), linear-gradient(180deg, transparent, #000 25%, #000 70%, transparent);
  mask-composite: intersect;
}
.offer__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.tile {
  display: flex; align-items: center; gap: 14px;
  min-height: 86px; padding: 14px 16px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tile p { font-size: 14.5px; line-height: 1.35; color: var(--ink); }
.tile p b { color: var(--navy); }

/* ---------- Steps ---------- */
.steps { padding-top: 30px; }
.steps__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; counter-reset: s; }
.step {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  min-height: 96px; padding: 20px 16px 18px 18px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 50%; right: -29px; width: 22px; height: 22px; margin-top: -11px;
  background: var(--blue-2);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 12h15m-5.5-6 6 6-6 6' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 12h15m-5.5-6 6 6-6 6' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  animation: nudge 2.2s ease-in-out infinite;
}
@keyframes nudge { 0%, 100% { transform: translateX(-3px); opacity: .55; } 50% { transform: translateX(3px); opacity: 1; } }
.step__num {
  position: absolute; left: -10px; top: -12px;
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--grad); color: #fff; font-weight: 900; font-size: 17px;
  box-shadow: 0 8px 16px -6px rgba(11, 99, 229, .8), 0 0 0 3px #fff;
}
.step.is-in .step__num { animation: pop .6s var(--ease) both; animation-delay: calc(var(--i, 0) * 120ms + 250ms); }
@keyframes pop { 0% { transform: scale(0); } 70% { transform: scale(1.18); } 100% { transform: scale(1); } }
.step__ic svg { width: 28px; height: 28px; }
.step h3 { font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.25; }
.step p { margin-top: 3px; font-size: 13.5px; line-height: 1.35; color: var(--muted); }

/* ---------- Team ---------- */
.team { padding-top: 30px; padding-bottom: 60px; }
.team::before {
  left: 0; bottom: 0; width: 40%; height: 70%; background-position: left center; transform: scaleX(-1);
  -webkit-mask-image: linear-gradient(270deg, transparent, #000 70%), linear-gradient(180deg, transparent, #000 35%, #000 75%, transparent);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(270deg, transparent, #000 70%), linear-gradient(180deg, transparent, #000 35%, #000 75%, transparent);
  mask-composite: intersect;
  opacity: .4;
}
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr) 1.08fr; gap: 16px; align-items: stretch; }
.photo-card {
  display: flex; flex-direction: column;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.photo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.photo-card__img { aspect-ratio: 16 / 9; overflow: hidden; }
.photo-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.photo-card:hover .photo-card__img img { transform: scale(1.07); }
.photo-card__body { display: flex; align-items: center; gap: 14px; padding: 14px 16px 16px; }
.photo-card__ic svg { width: 28px; height: 28px; }
.photo-card__ic--solid { background: var(--grad); box-shadow: 0 8px 18px -8px rgba(11, 99, 229, .9); }
.photo-card__ic--solid svg { fill: #fff; color: #fff; }
.photo-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); }
.photo-card p { margin-top: 3px; font-size: 13.5px; line-height: 1.35; color: var(--muted); }
.quote {
  position: relative; display: flex; flex-direction: column; justify-content: center; gap: 12px;
  padding: 26px 24px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.quote__mark { width: 40px; height: 40px; }
.quote p { font-size: 16px; line-height: 1.6; color: var(--ink); }

/* ---------- Apply ---------- */
.apply {
  position: relative; isolation: isolate; overflow: hidden;
  padding: 40px 0 44px;
  color: #fff;
  background-color: var(--blue-night);
  background-image: url("../img/cta-bg-2048.webp");
  background-image: image-set(url("../img/cta-bg-2048.avif") type("image/avif"), url("../img/cta-bg-2048.webp") type("image/webp"));
  background-size: cover; background-position: right center;
}
.apply::before {
  content: ""; position: absolute; inset: -20%; z-index: -1; pointer-events: none;
  background: radial-gradient(600px 300px at 30% 50%, rgba(31, 139, 255, .22), transparent 70%);
  animation: drift 14s ease-in-out infinite alternate;
}
.apply::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(90deg, rgba(4, 22, 64, .35) 0%, rgba(4, 22, 64, 0) 40%, rgba(4, 22, 64, .15) 70%, rgba(4, 22, 64, .55) 100%);
}
@keyframes drift { to { transform: translate3d(12%, 4%, 0); } }
.apply__inner { display: grid; grid-template-columns: 1fr 1.3fr .72fr; gap: 34px; align-items: center; }
.apply__title { font-size: clamp(26px, 1.6vw + 10px, 33px); line-height: 1.18; font-weight: 900; letter-spacing: -.01em; }
.apply__text { margin-top: 12px; font-size: 18px; line-height: 1.4; color: #d3e3ff; }
.form { position: relative; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { position: relative; display: block; }
.field__ic { position: absolute; left: 14px; top: 14px; width: 20px; height: 20px; color: #7e8fae; pointer-events: none; transition: color .2s; }
.field input, .field select {
  width: 100%; height: 48px; padding: 0 14px 0 44px;
  border: 1.5px solid transparent; border-radius: 10px;
  background: #fff; color: var(--navy); font-size: 15.5px;
  box-shadow: 0 6px 16px -10px rgba(0, 0, 0, .5);
  outline: none; transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.field input::placeholder { color: #7e8fae; }
.field select { cursor: pointer; padding-right: 40px; }
.field select:invalid, .field select.is-empty { color: #7e8fae; }
.field__arrow { position: absolute; right: 14px; top: 15px; width: 18px; height: 18px; color: #7e8fae; pointer-events: none; }
.field input:focus, .field select:focus { border-color: var(--blue-2); box-shadow: 0 0 0 4px rgba(31, 139, 255, .3); }
.field:focus-within .field__ic { color: var(--blue); }
.field.is-invalid input, .field.is-invalid select { border-color: #ff6b6b; box-shadow: 0 0 0 4px rgba(255, 107, 107, .22); }
.field.is-valid input { border-color: #3ecf8e; }
.field__err { display: block; min-height: 0; font-size: 12.5px; line-height: 1.3; color: #ffb3b3; padding-left: 4px; }
.field__err:not(:empty) { margin-top: 5px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__submit { width: 100%; margin-top: 14px; }
.form__submit-label { display: inline-flex; align-items: center; gap: 10px; transition: opacity .2s; }
.form__spinner { position: absolute; width: 24px; height: 24px; border: 3px solid rgba(255, 255, 255, .35); border-top-color: #fff; border-radius: 50%; opacity: 0; animation: spin .8s linear infinite; }
.form.is-loading .form__submit-label { opacity: 0; }
.form.is-loading .form__spinner { opacity: 1; }
.form.is-loading .form__submit { pointer-events: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.form__note { margin-top: 10px; font-size: 12.5px; line-height: 1.45; color: #bcd0f2; text-align: center; text-shadow: 0 1px 10px rgba(2, 16, 50, .8); }
.form__success {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 16px; padding: 20px;
  background: rgba(6, 33, 86, .92);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(120, 190, 255, .4);
  border-radius: 16px;
  animation: fadeUp .6s var(--ease) both;
}
.form__success[hidden] { display: none; }
.form__success-ic { display: grid; place-items: center; width: 56px; height: 56px; flex: none; border-radius: 50%; background: linear-gradient(135deg, #3ecf8e, #1ea672); box-shadow: 0 0 0 8px rgba(62, 207, 142, .18); animation: pop .6s .15s var(--ease) both; }
.form__success-ic svg { width: 30px; height: 30px; fill: #fff; }
.form__success b { display: block; font-size: 20px; }
.form__success span { display: block; font-size: 15px; color: #d3e3ff; }
.apply__trust { display: grid; gap: 18px; }
.apply__trust li { display: flex; align-items: center; gap: 14px; font-size: 16px; font-weight: 700; text-shadow: 0 1px 14px rgba(2, 16, 50, .9); }
.apply__trust a { color: inherit; text-decoration: underline; text-decoration-color: rgba(255, 255, 255, .45); text-underline-offset: 3px; }
.trust__ic svg { color: var(--blue); }
.trust__ic { display: grid; place-items: center; width: 44px; height: 44px; flex: none; border-radius: 50%; background: rgba(255, 255, 255, .95); box-shadow: 0 0 0 4px rgba(86, 184, 255, .25), 0 0 22px rgba(86, 184, 255, .45); }
.trust__ic svg { width: 26px; height: 26px; }

/* ---------- Footer ---------- */
.footer { background: #fff; }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-block: 26px; }
.footer__logo img { width: 200px; height: auto; }
.footer__about { flex: 1; max-width: 520px; font-size: 17px; line-height: 1.4; color: var(--ink); }
.footer__about b { color: var(--navy); }
.footer__bottom { background: #f3f7fd; border-top: 1px solid var(--line); }
.footer__values { display: grid; grid-template-columns: repeat(4, 1fr); padding-block: 20px; }
.footer__values li { display: flex; align-items: center; justify-content: center; gap: 14px; font-size: 15px; color: var(--ink); }
.footer__values li + li { border-left: 1px solid #cfdcf0; }
.footer__values svg { width: 30px; height: 30px; color: var(--navy); }
.footer__copy { padding-bottom: 18px; text-align: center; font-size: 13px; color: #7a89a6; }


/* ---------- Form: consent & states ---------- */
.apply__free { margin-top: 10px; font-size: 14px; line-height: 1.45; color: #a9c2ec; }
.consent { position: relative; display: flex; gap: 12px; align-items: flex-start; margin-top: 14px; cursor: pointer; font-size: 13.5px; line-height: 1.45; color: #d3e3ff; }
.consent input { position: absolute; left: 0; top: 0; width: 24px; height: 24px; margin: 0; opacity: 0; cursor: pointer; }
.consent__box {
  flex: none; display: grid; place-items: center; width: 24px; height: 24px; margin-top: -1px; border-radius: 7px;
  background: #fff; box-shadow: 0 0 0 1.5px rgba(255, 255, 255, .55);
  transition: background .2s, box-shadow .2s;
}
.consent__box svg { width: 17px; height: 17px; fill: #fff; opacity: 0; transform: scale(.4); transition: opacity .2s, transform .25s var(--ease); }
.consent input:checked + .consent__box { background: var(--grad); box-shadow: 0 0 0 1.5px #5cb8ff; }
.consent input:checked + .consent__box svg { opacity: 1; transform: none; }
.consent input:focus-visible + .consent__box { outline: 3px solid rgba(92, 184, 255, .7); outline-offset: 2px; }
.consent.is-invalid .consent__box { box-shadow: 0 0 0 2px #ff6b6b; animation: shake .4s; }
@keyframes shake { 25% { transform: translateX(-3px); } 75% { transform: translateX(3px); } }
.consent a, .form__note a { color: #8fd0ff; text-decoration: underline; text-underline-offset: 2px; }
.field__err--consent:not(:empty) { margin-top: 6px; }
.form__error { margin-top: 10px; padding: 10px 12px; border-radius: 10px; background: rgba(255, 107, 107, .14); border: 1px solid rgba(255, 107, 107, .45); color: #ffd6d6; font-size: 14px; line-height: 1.4; }
.form__error[hidden] { display: none; }
.form__error a { color: #fff; }
.badge__big--txt { font-size: 20px; letter-spacing: -.01em; }

/* ---------- Call widget (WhatsApp / Viber) ---------- */
.call-widget {
  position: fixed; right: 24px; bottom: calc(24px + var(--dock, 0px)); z-index: 95;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
  transition: bottom .35s var(--ease);
}
.call-fab {
  position: relative; display: grid; place-items: center; width: 62px; height: 62px;
  border: 0; border-radius: 50%; cursor: pointer; color: #fff;
  background: var(--grad);
  box-shadow: 0 14px 30px -10px rgba(11, 99, 229, .85), inset 0 1px 0 rgba(255, 255, 255, .35);
  transition: transform .25s var(--ease), box-shadow .25s;
  animation: fabIn .6s 1.6s var(--ease) both;
  -webkit-tap-highlight-color: transparent;
}
.call-fab:hover { transform: translateY(-2px) scale(1.04); }
.call-fab__ic { grid-area: 1 / 1; width: 28px; height: 28px; fill: #fff; color: #fff; transition: transform .3s var(--ease), opacity .2s; }
.call-fab__ic--open { animation: wiggle 5s 3s ease-in-out infinite; }
.call-fab__ic--close { opacity: 0; transform: rotate(-90deg) scale(.6); }
.call-widget.is-open .call-fab__ic--open { opacity: 0; transform: rotate(90deg) scale(.6); animation: none; }
.call-widget.is-open .call-fab__ic--close { opacity: 1; transform: none; }
.call-fab__pulse { position: absolute; inset: 0; border-radius: 50%; animation: ring 2.6s 2s ease-out infinite; pointer-events: none; }
.call-widget.is-open .call-fab__pulse { animation: none; }
@keyframes ring { 0% { box-shadow: 0 0 0 0 rgba(31, 139, 255, .55); } 75%, 100% { box-shadow: 0 0 0 20px rgba(31, 139, 255, 0); } }
@keyframes wiggle { 0%, 86%, 100% { transform: rotate(0); } 88% { transform: rotate(-14deg); } 91% { transform: rotate(12deg); } 94% { transform: rotate(-8deg); } 97% { transform: rotate(5deg); } }
@keyframes fabIn { from { opacity: 0; transform: scale(.4); } to { opacity: 1; transform: none; } }
.call-widget__menu {
  width: 256px; padding: 10px; border-radius: 18px;
  background: rgba(255, 255, 255, .98);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid #fff; box-shadow: var(--shadow-lg);
  transform-origin: bottom right; animation: menuIn .28s var(--ease) both;
}
.call-widget__menu[hidden] { display: none; }
@keyframes menuIn { from { opacity: 0; transform: translateY(10px) scale(.94); } to { opacity: 1; transform: none; } }
.call-widget__title { padding: 4px 8px 8px; font-size: 12.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.call-opt { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: 12px; color: var(--navy); transition: background .2s, transform .2s var(--ease); }
.call-opt + .call-opt { margin-top: 4px; }
.call-opt:hover, .call-opt:focus-visible { background: #eef5ff; transform: translateX(-2px); }
.call-opt__ic { flex: none; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; }
.call-opt__ic svg { width: 28px; height: 28px; }
.call-opt--wa .call-opt__ic { background: #e6f9ee; }
.call-opt--wa .call-opt__ic svg { fill: #1fbf5b; }
.call-opt--viber .call-opt__ic { background: #efecff; }
.call-opt--viber .call-opt__ic svg { fill: #7360f2; }
.call-opt b { display: block; font-size: 16px; line-height: 1.2; }
.call-opt small { display: block; font-size: 13px; color: var(--muted); }

/* ---------- Cookie consent bar ---------- */
.consent-bar { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 110; display: flex; justify-content: center; pointer-events: none; }
.consent-bar[hidden] { display: none; }
.consent-bar__inner {
  pointer-events: auto; width: 100%; max-width: 900px;
  display: flex; align-items: center; gap: 22px; padding: 16px 18px 16px 22px;
  background: rgba(255, 255, 255, .98);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid #fff; border-radius: 18px;
  box-shadow: 0 24px 60px -20px rgba(10, 40, 110, .55);
  animation: fadeUp .5s var(--ease) both;
}
.consent-bar__title { font-size: 15px; font-weight: 700; color: var(--navy); }
.consent-bar__copy { min-width: 0; }
.consent-bar__text { margin-top: 2px; font-size: 13.5px; line-height: 1.45; color: var(--muted); }
.consent-bar__text a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.consent-bar__actions { display: flex; gap: 10px; flex: none; }

/* ---------- Footer legal ---------- */
.footer__legal { display: grid; grid-template-columns: 1fr 1.35fr 1fr; gap: 28px; padding-block: 22px; border-top: 1px solid #dde7f5; }
.footer__h { margin-bottom: 10px; font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--navy); }
.footer__list { display: grid; gap: 7px; font-size: 14px; color: var(--ink); }
.footer__list a, .footer__linkbtn { color: var(--ink); border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; }
.footer__list a:hover, .footer__linkbtn:hover { color: var(--blue); border-bottom-color: currentColor; }
.footer__linkbtn { padding: 0; background: none; border-top: 0; border-left: 0; border-right: 0; font-size: 14px; cursor: pointer; }
.footer__req { font-size: 13.5px; line-height: 1.65; color: var(--muted); }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { display: none; }

/* ---------- Scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translate3d(0, 28px, 0); }
.js .reveal--left { transform: translate3d(-40px, 0, 0); }
.js .reveal--right { transform: translate3d(40px, 0, 0); }
.js .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .8s var(--ease), transform .8s var(--ease), box-shadow .35s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms), calc(var(--i, 0) * 80ms), 0s;
}
.js .reveal.is-in.is-settled { transition: transform .35s var(--ease), box-shadow .35s var(--ease), color .35s; transition-delay: 0s; }

/* =========================================================
   Desktop hero layout (photo full-bleed behind content)
   ========================================================= */
@media (min-width: 1024px) {
  .hero__inner { display: grid; grid-template-columns: minmax(0, 690px) minmax(0, 1fr); min-height: 560px; align-items: center; }
  .hero__title-brand { white-space: nowrap; }
  .br-d { display: inline; }
  .hero__photo { position: absolute; inset: 0; z-index: -3; }
  .hero__photo img { object-position: 72% 28%; }
  .hero__visual::before {
    content: ""; position: absolute; inset: 0; z-index: -2; pointer-events: none;
    background:
      linear-gradient(90deg, rgba(240, 247, 255, .97) 0%, rgba(240, 247, 255, .93) 30%, rgba(240, 247, 255, .55) 44%, rgba(240, 247, 255, 0) 58%),
      linear-gradient(0deg, rgba(243, 248, 255, 1) 0%, rgba(243, 248, 255, 0) 22%);
  }
  .hero__badges { height: 100%; min-height: 520px; }
  .badge--crm     { left: -2%;  top: 2%; }
  .badge--growth  { right: -2%; top: 0; }
  .badge--recruit { right: 6%;  top: 27%; }
  .badge--b2b     { right: -1%; top: 50%; }
  .badge--intl    { right: 3%;  top: 72%; }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .hero__inner { grid-template-columns: minmax(0, 560px) minmax(0, 1fr); }
  .hero__title { font-size: 38px; }
  .hero__title-brand { white-space: normal; }
  .br-d { display: none; }
  .hero__globe { left: 30%; width: 520px; }
  .badge--crm { left: 4%; top: -2%; }
  .badge--recruit { display: none; }
  .badge--growth { right: -3%; }
  .badge--b2b { right: -3%; top: 44%; }
  .badge--intl { right: -3%; top: 70%; }
  .hero__photo img { object-position: 64% 28%; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1180px) {
  .header__inner { gap: 16px; }
  .nav { margin-left: 0; padding-left: 12px; }
  .nav__link { padding: 8px 8px; font-size: 14.5px; }
  .nav__link::after { left: 8px; right: 8px; }
  .why__grid { grid-template-columns: minmax(0, 1fr) 280px; }
  .apply__inner { grid-template-columns: 1fr 1.4fr; }
  .apply__trust { grid-column: 1 / -1; grid-template-columns: repeat(3, auto); justify-content: center; gap: 36px; }
}

@media (max-width: 1023px) {
  :root { --header-h: 68px; }
  .header { padding-top: 8px; }
  .header__inner { height: 58px; padding-inline: 14px; border-radius: 16px; }
  .header__logo img, .header.is-scrolled .header__logo img { width: 160px; }
  .header__cta { display: none; }
  .burger {
    display: grid; place-content: center; gap: 5px; margin-left: auto;
    width: 44px; height: 44px; border: 0; border-radius: 12px; cursor: pointer;
    background: var(--grad); box-shadow: 0 8px 18px -8px rgba(11, 99, 229, .9);
  }
  .burger span { display: block; width: 20px; height: 2px; border-radius: 2px; background: #fff; transition: transform .3s var(--ease), opacity .2s; }
  .burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav {
    position: fixed; left: 12px; right: 12px; top: calc(var(--header-h) + 4px);
    flex-direction: column; align-items: stretch; gap: 2px;
    margin: 0; padding: 12px; border: 1px solid rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .97);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border-radius: 18px; box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(-10px) scale(.98); transform-origin: top;
    transition: opacity .25s, transform .3s var(--ease), visibility 0s .3s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; transition: opacity .25s, transform .3s var(--ease); }
  .nav__link { padding: 14px 14px; font-size: 17px; }
  .nav__link::after { display: none; }
  .nav__link.is-active { background: #eef5ff; }
  .nav__cta { display: inline-flex; margin-top: 8px; height: 52px; }

  .hero { padding: calc(var(--header-h) + 28px) 0 84px; }
  .hero__content { max-width: 680px; }
  .hero__globe { left: auto; right: -160px; top: 60px; width: 520px; opacity: .6; }
  .hero__visual {
    position: relative; margin-top: 34px;
    aspect-ratio: 16 / 10; border-radius: 22px; overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: fadeUp .9s .45s var(--ease) both;
  }
  .hero__photo { position: absolute; inset: 0; }
  .hero__photo img { object-position: 74% 30%; }
  .hero__badges { position: absolute; inset: 0; }
  .badge { padding: 9px 12px; font-size: 13px; border-radius: 12px; }
  .badge__ic { width: 28px; height: 28px; }
  .badge--crm { left: 3%; top: 5%; }
  .badge--growth { left: 3%; bottom: 6%; }
  .badge--recruit { display: none; }
  .badge--b2b { right: 3%; top: 8%; }
  .badge--intl { right: 3%; bottom: 6%; }

  .highlights { margin-top: -44px; }
  .highlights__grid { grid-template-columns: 1fr; gap: 12px; max-width: 680px; }
  .hl { min-height: 86px; }

  .why__grid { grid-template-columns: 1fr; }
  .why__cards { grid-template-columns: repeat(2, 1fr); }
  .stats__globe { width: 70%; right: -18%; bottom: -30%; }
  .stats__list { grid-template-columns: repeat(2, 1fr); gap: 20px 24px; max-width: 70%; }

  .vacancy { padding-top: 24px; }
  .vacancy__photo {
    position: relative; width: auto; height: auto; display: block; margin: 0 var(--gutter) 26px;
    aspect-ratio: 16 / 9; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow);
    -webkit-mask-image: none; mask-image: none;
  }
  .vacancy__content { width: 100%; }

  .offer__grid { grid-template-columns: repeat(2, 1fr); }
  .offer::before { width: 100%; opacity: .35; }
  .steps__list { grid-template-columns: repeat(2, 1fr); gap: 26px 36px; }
  .step:nth-child(2)::after { display: none; }
  .team__grid { grid-template-columns: repeat(3, 1fr); }
  .quote { grid-column: 1 / -1; }

  .apply__inner { grid-template-columns: 1fr; gap: 26px; max-width: 680px; }
  .apply__trust { grid-template-columns: repeat(3, auto); justify-content: space-between; gap: 16px; }

  .footer__top { flex-wrap: wrap; justify-content: center; text-align: center; }
  .footer__about { flex-basis: 100%; order: 3; max-width: none; }
  .footer__values { grid-template-columns: repeat(2, 1fr); row-gap: 16px; }
  .footer__values li:nth-child(3) { border-left: 0; }

  .sticky-cta {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .9);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    box-shadow: 0 -10px 30px -16px rgba(17, 62, 150, .45);
    transform: translateY(110%); transition: transform .4s var(--ease);
  }
  .sticky-cta .btn { height: 52px; }
  .sticky-cta.is-visible { transform: none; }
  .consent-open .sticky-cta { transform: translateY(110%); }
  .consent-open .call-widget { opacity: 0; visibility: hidden; transform: translateY(16px); }
  .call-widget { transition: bottom .35s var(--ease), opacity .3s, transform .3s var(--ease), visibility .3s; }
  body { padding-bottom: 0; }
  .call-widget { right: 16px; bottom: calc(16px + var(--dock, 0px) + env(safe-area-inset-bottom)); }
  .footer__legal { grid-template-columns: 1fr 1fr; }
  .footer__legal .footer__col:nth-child(2) { grid-column: 1 / -1; order: 3; }
}

@media (max-width: 767px) {
  :root { --gutter: 16px; }
  .section { padding-block: 34px; }
  .h2 { font-size: clamp(24px, 6.6vw, 30px); }
  .h2--bar { padding-left: 14px; margin-bottom: 20px; }
  .hero { padding: calc(var(--header-h) + 22px) 0 76px; }
  .eyebrow { font-size: 12.5px; margin-bottom: 10px; }
  .hero__title { font-size: clamp(29px, 8.2vw, 38px); line-height: 1.1; }
  .hero__title-brand { margin-top: 4px; font-size: .74em; }
  .hero__lead { font-size: 18px; margin-top: 10px; }
  .hero__text { font-size: 15px; margin-top: 10px; }
  .hero__chips { margin-top: 20px; }
  .hero__actions { margin-top: 24px; gap: 12px; }
  .hero__chips { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 12px; }
  .chip { font-size: 13px; }
  .chip__ic { width: 42px; height: 42px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__visual { aspect-ratio: 1 / .94; margin-top: 26px; border-radius: 20px; }
  .hero__photo img { object-position: 50% 20%; }
  .badge--crm { left: 3%; top: 4%; }
  .badge--crm .mini-bars { height: 28px; }
  .badge--crm .mini-bars i { width: 7px; }
  .badge__crm-title { font-size: 16px; }
  .badge--growth { left: 3%; bottom: 21%; }
  .badge__big { font-size: 24px; }
  .badge__big--txt { font-size: 16px; }
  .badge--b2b { right: 3%; top: 4%; }
  .badge__b2b { font-size: 19px; }
  .badge--intl { left: 3%; right: auto; bottom: 4%; }

  .hl { padding: 14px 16px; gap: 14px; }
  .hl__ic { width: 54px; height: 54px; }
  .hl__ic svg { width: 26px; height: 26px; }
  .hl__text { font-size: 15px; }
  .hl__text b { font-size: 16px; }

  .why__head { display: block; }
  .why__line { display: none; }
  .why__cards { grid-template-columns: 1fr; gap: 12px; }
  .card { padding: 16px 14px; }
  .stats { padding: 24px 20px; }
  .stats__title { font-size: 21px; }
  .stats__list { grid-template-columns: 1fr; max-width: none; gap: 16px; }
  .stats__list li { gap: 14px; }
  .stats__ic { width: 36px; height: 36px; }
  .stats__globe { width: 110%; right: -45%; bottom: -35%; opacity: .7; }

  .vacancy__cards { grid-template-columns: 1fr; }
  .vacancy__sub { padding-left: 14px; font-size: 17px; margin-bottom: 18px; }
  .vacancy__photo { margin-inline: var(--gutter); border-radius: 18px; }
  .panel { padding: 20px 18px; }

  .offer__grid { grid-template-columns: 1fr; gap: 10px; }
  .tile { min-height: 72px; }
  .steps__list { grid-template-columns: 1fr; gap: 26px; padding-left: 10px; }
  .step:not(:last-child)::after {
    display: block; right: auto; left: 50%; top: auto; bottom: -25px; margin: 0 0 0 -11px;
    transform: rotate(90deg); animation: nudgeDown 2.2s ease-in-out infinite;
  }
  @keyframes nudgeDown { 0%, 100% { transform: rotate(90deg) translateX(-3px); opacity: .55; } 50% { transform: rotate(90deg) translateX(3px); opacity: 1; } }
  .team__grid { grid-template-columns: 1fr; }
  .photo-card { display: grid; grid-template-columns: 42% 1fr; }
  .photo-card__img { aspect-ratio: auto; height: 100%; }
  .photo-card__body { flex-direction: column; align-items: flex-start; gap: 8px; padding: 14px; }
  .photo-card__ic { width: 44px; height: 44px; }
  .photo-card__ic svg { width: 24px; height: 24px; }

  .apply { padding: 36px 0 40px; background-position: 70% center; }
  .apply__title { font-size: 25px; }
  .apply__text { font-size: 16px; }
  .field input, .field select { height: 50px; font-size: 16px; }
  .consent { font-size: 13px; }
  .form__grid { grid-template-columns: 1fr; }
  .apply__trust { grid-template-columns: 1fr; justify-items: start; gap: 12px; }
  .apply__trust li { font-size: 15px; }
  .trust__ic { width: 38px; height: 38px; }
  .trust__ic svg { width: 22px; height: 22px; }

  .footer__values { grid-template-columns: 1fr 1fr; }
  .footer__values li { justify-content: flex-start; gap: 10px; font-size: 14px; padding-inline: 10px; }
  .footer__values svg { width: 24px; height: 24px; flex: none; }
  .footer { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .footer__legal { grid-template-columns: 1fr; gap: 18px; padding-inline: 20px; }
  .footer__legal .footer__col:nth-child(2) { grid-column: auto; order: 0; }
  .footer__top { gap: 18px; padding-block: 22px; }
  .consent-bar { left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); }
  .consent-bar__inner { flex-direction: column; align-items: stretch; gap: 10px; padding: 12px 12px 10px; border-radius: 16px; }
  .consent-bar__title { display: inline; font-size: 13.5px; }
  .consent-bar__title::after { content: " "; }
  .consent-bar__text { display: inline; font-size: 12.5px; line-height: 1.4; }
  .consent-bar__actions .btn { flex: 1; height: 42px; padding: 0 8px; font-size: 13.5px; border-radius: 11px; }
  .stats__globe { opacity: .45; }
  .apply::after { background: linear-gradient(180deg, rgba(4, 22, 64, .45) 0%, rgba(4, 22, 64, .25) 45%, rgba(4, 22, 64, .6) 100%); }
  .call-fab { width: 56px; height: 56px; }
  .call-widget__menu { width: min(256px, calc(100vw - 32px)); }
}

@media (max-width: 374px) {
  :root { --gutter: 14px; }
  .hero__title { font-size: 27px; }
  .hero__chips { gap: 12px 8px; }
  .chip { font-size: 12.5px; gap: 8px; }
  .chip__ic { width: 38px; height: 38px; }
  .consent-bar__actions .btn { font-size: 12.5px; }
}

@media (hover: none) {
  .card:hover, .tile:hover, .step:hover, .panel:hover, .photo-card:hover, .hl:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; animation-delay: 0s !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
  .js .reveal { opacity: 1; transform: none; }
  .mini-bars i { transform: none; }
}
