/* ============================================================
   SS Crewing — design system
   ============================================================ */
:root {
  --navy-900: #05193f;
  --navy-800: #0a2a5e;
  --navy-700: #103a7d;
  --navy-600: #17498f;
  --blue-500: #1f7ae0;
  --blue-400: #3d95f0;
  --blue-200: #a9cbf5;
  --sky-100: #eaf2fd;
  --sky-50: #f5f9ff;
  --ink: #0b1b33;
  --muted: #5c6f8c;
  --line: #e2ebf7;
  --white: #ffffff;
  --ua-blue: #0057b7;
  --ua-yellow: #ffd700;

  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 8px rgba(10, 42, 94, .06);
  --shadow: 0 18px 40px -20px rgba(10, 42, 94, .35);
  --shadow-lg: 0 40px 80px -40px rgba(5, 25, 63, .55);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --display: 'Barlow Condensed', 'Arial Narrow', var(--font);
  --wrap: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.01em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ico { width: 24px; height: 24px; flex: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--navy-800); color: #fff; padding: 12px 18px; border-radius: 0 0 12px 0;
}
.skip:focus { left: 0; }

:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 3px; border-radius: 6px; }

/* ============================ Buttons ============================ */
.btn {
  --btn-bg: var(--blue-500);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px;
  border: 0; border-radius: 999px;
  background: var(--btn-bg); color: #fff;
  font: 700 15px/1 var(--font); letter-spacing: .01em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  box-shadow: 0 14px 26px -14px rgba(31, 122, 224, .9);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 20px 34px -16px rgba(31, 122, 224, .95); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 19px; height: 19px; }

.btn-tg { --btn-bg: linear-gradient(135deg, #2aa3ec, #1f7ae0); }
.btn-primary { --btn-bg: linear-gradient(135deg, var(--blue-500), var(--navy-700)); }
.btn-white { --btn-bg: #fff; color: var(--navy-800); box-shadow: 0 18px 34px -18px rgba(0, 0, 0, .6); }
.btn-ghost {
  --btn-bg: transparent; color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .35); box-shadow: none;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .1); box-shadow: none; }
.btn-sm { padding: 11px 18px; font-size: 14px; }
.btn-lg { padding: 18px 32px; font-size: 16.5px; }
.btn-block { width: 100%; }

.eyebrow {
  font: 800 13px/1 var(--font); letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue-500); margin-bottom: 14px;
}
.section-dark .eyebrow, .section-cta .eyebrow { color: var(--blue-400); }

/* ============================ Header ============================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding: 14px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease, backdrop-filter .25s;
}
.site-header.is-stuck {
  background: rgba(5, 25, 63, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .8);
  padding: 8px 0;
}
.header-inner { display: flex; align-items: center; gap: 20px; }

.logo { display: flex; align-items: center; gap: 11px; }
.logo img { height: 46px; width: auto; filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .35)); transition: height .25s ease; }
.is-stuck .logo img { height: 40px; }
.logo-full img { height: 104px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; color: #fff; }
.logo-text strong { font: 800 19px/1 var(--display); letter-spacing: .12em; }
.logo-text em {
  font: 600 10px/1 var(--font); font-style: normal;
  letter-spacing: .42em; color: var(--blue-400); margin-top: 4px;
}

.nav { display: flex; gap: 6px; margin-left: auto; }
.nav a {
  padding: 9px 14px; border-radius: 999px;
  color: rgba(255, 255, 255, .82); font-size: 14.5px; font-weight: 600;
  transition: background .2s, color .2s;
}
.nav a:hover, .nav a.is-active { background: rgba(255, 255, 255, .12); color: #fff; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.lang { display: flex; padding: 3px; border-radius: 999px; background: rgba(255, 255, 255, .1); }
.lang button {
  border: 0; background: none; cursor: pointer; color: rgba(255, 255, 255, .75);
  font: 700 12.5px/1 var(--font); letter-spacing: .06em;
  padding: 7px 11px; border-radius: 999px; transition: background .2s, color .2s;
}
.lang button.is-active { background: var(--blue-500); color: #fff; }

.burger { display: none; width: 44px; height: 40px; border: 0; border-radius: 12px; background: rgba(255, 255, 255, .12); cursor: pointer; padding: 11px 11px; }
.burger span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .2s; }
.burger span + span { margin-top: 5px; }
.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); }

/* ============================= Hero ============================= */
.hero {
  position: relative;
  padding: 150px 0 0;
  background: linear-gradient(160deg, #061e4a 0%, #0a2a5e 45%, #0d3573 100%);
  color: #fff; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; }
.glow-1 { width: 520px; height: 520px; top: -180px; right: -80px; background: #1f7ae0; }
.glow-2 { width: 460px; height: 460px; bottom: -160px; left: -140px; background: #0f4fa8; opacity: .45; }
.stars {
  position: absolute; top: 70px; right: 8%;
  width: 190px; height: 190px; opacity: .5;
  background:
    radial-gradient(circle at 50% 6%, var(--ua-yellow) 3px, transparent 4px),
    radial-gradient(circle at 78% 16%, var(--ua-yellow) 3px, transparent 4px),
    radial-gradient(circle at 94% 44%, var(--ua-yellow) 3px, transparent 4px),
    radial-gradient(circle at 84% 76%, var(--ua-yellow) 3px, transparent 4px),
    radial-gradient(circle at 56% 94%, var(--ua-yellow) 3px, transparent 4px),
    radial-gradient(circle at 24% 88%, var(--ua-yellow) 3px, transparent 4px),
    radial-gradient(circle at 6%  60%, var(--ua-yellow) 3px, transparent 4px),
    radial-gradient(circle at 12% 26%, var(--ua-yellow) 3px, transparent 4px);
}

.hero-inner {
  display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: 50px; align-items: center; position: relative; z-index: 2;
  padding-bottom: 70px;
}

.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 8px; border-radius: 999px;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .16);
  font-size: 13.5px; font-weight: 600; color: #dbe9fb;
  backdrop-filter: blur(6px);
}
.flag {
  width: 26px; height: 18px; border-radius: 4px; flex: none;
  background: linear-gradient(180deg, var(--ua-blue) 0 50%, var(--ua-yellow) 50% 100%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(46px, 6.4vw, 84px);
  font-weight: 800; text-transform: uppercase; letter-spacing: .005em;
  margin: 22px 0 20px;
}
.hero h1 span { display: block; color: var(--blue-400); }

.lead { font-size: clamp(16px, 1.6vw, 18.5px); color: #c9dcf5; max-width: 56ch; }
.hero .lead b { color: #fff; font-weight: 700; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-note { margin-top: 18px; font-size: 13.5px; color: rgba(201, 220, 245, .75); }

.hero-art { position: relative; }
.hero-art img { width: 100%; filter: drop-shadow(0 40px 60px rgba(0, 0, 0, .45)); animation: float 7s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.hero-chip {
  position: absolute; display: flex; flex-direction: column; gap: 2px;
  padding: 13px 18px; border-radius: 16px;
  background: rgba(255, 255, 255, .96); color: var(--navy-800);
  box-shadow: var(--shadow-lg); backdrop-filter: blur(8px);
}
.hero-chip strong { font: 800 21px/1 var(--display); letter-spacing: .02em; }
.hero-chip span { font-size: 11.5px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; }
.chip-rate { top: 6%; left: -4%; }
.chip-rota { top: 42%; right: -2%; }
.chip-tax { bottom: 16%; left: 6%; }

/* Badges strip */
.badges { position: relative; z-index: 2; background: rgba(3, 16, 40, .55); border-top: 1px solid rgba(255, 255, 255, .09); }
.badges-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.badge {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 18px; color: #dce9fb; font-size: 13.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; line-height: 1.25;
}
.badge + .badge { border-left: 1px solid rgba(255, 255, 255, .09); }
.badge .ico { color: var(--blue-400); width: 27px; height: 27px; }

/* =========================== Sections =========================== */
.section { padding: 96px 0; }
.section-soft { background: linear-gradient(180deg, var(--sky-50), #e9f1fd); }
.section-dark { background: linear-gradient(165deg, #071f4a, #0b2f68); color: #fff; }
.section-cta { background: radial-gradient(1000px 500px at 15% 0%, #103a7d 0%, #061c46 60%, #05193f 100%); color: #fff; }

.section-head { max-width: 760px; margin-bottom: 52px; }
.section-head h2 {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(34px, 4.2vw, 54px);
}
.section-head h2 span { color: var(--blue-500); }
.section-dark .section-head h2 span, .section-cta h2 span { color: var(--blue-400); }
.section-lead { margin-top: 16px; font-size: 17px; color: var(--muted); }
.section-dark .section-lead, .section-cta .section-lead { color: #b9cfeb; }

/* =========================== Vacancies =========================== */
.jobs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px; }

.job {
  position: relative; overflow: hidden;
  padding: 34px 32px 30px;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: #fff; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.job:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #cddffa; }
.job.is-featured {
  background: linear-gradient(155deg, #0a2a5e, #0f3f8c 60%, #1454b3);
  border-color: transparent; color: #fff;
}
.job::after {
  content: ""; position: absolute; right: -60px; top: -70px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 122, 224, .16), transparent 70%);
}
.job-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; position: relative; z-index: 1; }
.job-code {
  font: 800 64px/0.85 var(--display); letter-spacing: .01em;
  color: var(--navy-800);
}
.is-featured .job-code { color: #fff; }
.job-title { font-size: 14px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-top: 8px; }
.is-featured .job-title { color: var(--blue-200); }
.job-tag {
  padding: 7px 14px; border-radius: 999px; background: var(--sky-100); color: var(--blue-500);
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; white-space: nowrap;
}
.is-featured .job-tag { background: rgba(255, 255, 255, .16); color: #fff; }

.job-rate {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  margin: 22px 0 4px; position: relative; z-index: 1;
}
.job-rate strong { font: 800 40px/1 var(--display); color: var(--blue-500); }
.is-featured .job-rate strong { color: #fff; }
.job-rate span { font-size: 13.5px; font-weight: 600; color: var(--muted); }
.is-featured .job-rate span { color: var(--blue-200); }

.job-specs { margin: 22px 0 26px; position: relative; z-index: 1; }
.job-specs li { display: flex; align-items: center; gap: 13px; padding: 11px 0; border-top: 1px dashed var(--line); font-size: 14.5px; }
.is-featured .job-specs li { border-color: rgba(255, 255, 255, .18); }
.job-specs .ico { width: 20px; height: 20px; color: var(--blue-500); }
.is-featured .job-specs .ico { color: var(--blue-200); }
.job-specs b { margin-left: auto; font-weight: 700; text-align: right; }
.job-specs .k { color: var(--muted); font-weight: 600; }
.is-featured .job-specs .k { color: var(--blue-200); }
.job .btn { position: relative; z-index: 1; }

.jobs-note {
  display: flex; gap: 14px; align-items: flex-start;
  margin-top: 30px; padding: 20px 24px;
  border-radius: var(--radius); background: var(--sky-100);
  color: var(--navy-800); font-size: 14.5px; font-weight: 500;
}
.jobs-note .ico { color: var(--blue-500); }

/* ======================== Other services ========================= */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }

.service {
  display: flex; flex-direction: column;
  padding: 32px 28px 28px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #cddffa; }
.service-ico {
  display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 20px;
  border-radius: 18px; color: #fff;
  background: linear-gradient(150deg, var(--blue-500), var(--navy-700));
  box-shadow: 0 14px 26px -14px rgba(31, 122, 224, .9);
}
.service-ico .ico { width: 28px; height: 28px; }
.service h3 { font-size: 21px; font-weight: 800; }
.service-sub {
  margin-top: 7px; font-size: 12.5px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--blue-500);
}
.service-desc { margin-top: 14px; color: var(--muted); font-size: 15px; }
.service-list { margin: 20px 0 26px; display: grid; gap: 10px; }
.service-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; }
.service-list .ico { width: 17px; height: 17px; margin-top: 4px; color: var(--blue-500); }
.service .btn { margin-top: auto; }

/* ============================ Why us ============================ */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.why-card {
  padding: 30px 28px;
  border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  transition: transform .25s ease, background .25s ease, border-color .25s;
}
.why-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, .1); border-color: rgba(61, 149, 240, .5); }
.why-ico {
  display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 20px;
  border-radius: 50%; background: #fff; color: var(--navy-800);
  box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .6);
}
.why-ico .ico { width: 28px; height: 28px; }
.why-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 9px; }
.why-card p { color: #b9cfeb; font-size: 15px; }

.why-slogan {
  margin-top: 54px; text-align: center;
  font-family: var(--display); font-size: clamp(28px, 3.6vw, 44px); font-weight: 800;
  text-transform: uppercase; letter-spacing: .01em;
}
.why-slogan b { color: var(--blue-400); }

/* ============================= About ============================= */
.about-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 56px; align-items: center; }
.about-copy h2 { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(34px, 4.2vw, 52px); }
.about-list { margin-top: 34px; display: grid; gap: 22px; }
.about-list li { display: flex; gap: 18px; }
.about-ico {
  display: grid; place-items: center; width: 52px; height: 52px; flex: none;
  border-radius: 16px; background: var(--sky-100); color: var(--blue-500);
}
.about-list h3 { font-size: 17px; font-weight: 800; margin-bottom: 5px; }
.about-list p { color: var(--muted); font-size: 15px; }

.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.stat {
  padding: 30px 24px; border-radius: var(--radius);
  background: linear-gradient(155deg, #0a2a5e, #123f89); color: #fff;
  box-shadow: var(--shadow);
}
.stat:nth-child(2), .stat:nth-child(3) { background: linear-gradient(155deg, #f3f8ff, #e2edfd); color: var(--navy-800); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.stat strong { display: block; font: 800 34px/1 var(--display); letter-spacing: .01em; }
.stat span { display: block; margin-top: 8px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; opacity: .78; }

/* ============================ Process ============================ */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; counter-reset: step; }
.step {
  position: relative; padding: 32px 26px 28px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step-n {
  display: inline-block; margin-bottom: 16px;
  font: 800 32px/1 var(--display);
  color: transparent; -webkit-text-stroke: 1.5px var(--blue-400);
}
.step h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ========================== Contact / form ======================= */
.cta-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .95fr); gap: 56px; align-items: center; }
.cta-copy h2 { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(32px, 3.9vw, 50px); max-width: 15ch; }
.cta-copy .btn { margin-top: 30px; }

.contact-list { margin-top: 30px; display: grid; gap: 12px; }
.contact-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: #cfe0f6; }
.contact-list .ico { width: 20px; height: 20px; color: var(--blue-400); }
.contact-list a:hover { color: #fff; text-decoration: underline; }

.form-card {
  padding: 34px 32px; border-radius: var(--radius-lg);
  background: #fff; color: var(--ink); box-shadow: var(--shadow-lg);
}
.form-card h3 { font-size: 24px; font-weight: 800; }
.form-sub { margin-top: 8px; margin-bottom: 22px; color: var(--muted); font-size: 14.5px; }

.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 700; color: var(--navy-800); }
.field .opt { color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid var(--line); border-radius: 12px;
  font: 400 15px/1.4 var(--font); color: var(--ink); background: var(--sky-50);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--blue-400); background: #fff;
  box-shadow: 0 0 0 4px rgba(61, 149, 240, .16);
}
.field input.is-error, .field textarea.is-error { border-color: #e0536a; background: #fff5f6; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-legal { margin-top: 14px; font-size: 12.5px; color: var(--muted); text-align: center; }
.form-status { margin-top: 14px; font-size: 14.5px; font-weight: 600; text-align: center; min-height: 22px; }
.form-status.is-ok { color: #0f8a4d; }
.form-status.is-err { color: #d33b52; }
.form-done { text-align: center; padding: 16px 0; }
.form-done .done-ico {
  width: 66px; height: 66px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center; background: #e7f7ee; color: #0f8a4d;
}
.form-done h3 { margin-bottom: 10px; }
.form-done p { color: var(--muted); margin-bottom: 22px; }

/* ============================== FAQ ============================== */
.faq-wrap { max-width: 900px; }
.faq { display: grid; gap: 12px; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  box-shadow: var(--shadow-sm); overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.faq details[open] { border-color: #c8ddfa; box-shadow: var(--shadow); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 58px 20px 24px; position: relative;
  font-size: 16.5px; font-weight: 700; color: var(--navy-800);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 24px; top: 50%;
  width: 11px; height: 11px; margin-top: -7px;
  border-right: 2.4px solid var(--blue-500); border-bottom: 2.4px solid var(--blue-500);
  transform: rotate(45deg); transition: transform .25s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq p { padding: 0 24px 22px; color: var(--muted); font-size: 15px; }

/* =========================== Final CTA =========================== */
.final-cta {
  padding: 66px 0;
  background: linear-gradient(120deg, var(--blue-500), var(--navy-700) 55%, var(--navy-800));
  color: #fff;
}
.final-inner { display: flex; align-items: center; justify-content: space-between; gap: 34px; flex-wrap: wrap; }
.final-inner h2 { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(30px, 3.6vw, 46px); }
.final-inner p { margin-top: 10px; color: #d5e6fb; font-size: 16.5px; max-width: 46ch; }

/* ============================= Footer ============================ */
.site-footer { background: var(--navy-900); color: #93aacd; padding: 56px 0 26px; }
.footer-inner { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr); gap: 36px; }
.footer-brand p { margin-top: 16px; font-size: 14.5px; max-width: 42ch; }
.footer-nav, .footer-contact { display: grid; gap: 11px; align-content: start; font-size: 14.5px; }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact a { display: flex; align-items: center; gap: 10px; }
.footer-contact .ico { width: 18px; height: 18px; color: var(--blue-400); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 13px; color: #6c86ad;
}

/* ========================= Floating Telegram ===================== */
.tg-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 40;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: 999px;
  background: linear-gradient(135deg, #2aa3ec, #1f7ae0); color: #fff;
  font-size: 14.5px; font-weight: 700;
  box-shadow: 0 18px 34px -14px rgba(31, 122, 224, .9);
  transform: translateY(20px); opacity: 0; pointer-events: none;
  transition: transform .3s ease, opacity .3s ease, box-shadow .2s;
}
.tg-float.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.tg-float:hover { box-shadow: 0 22px 40px -14px rgba(31, 122, 224, 1); }
.tg-float .ico { width: 21px; height: 21px; }

/* =========================== Animations ========================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .3, 1); }
.reveal.is-in { opacity: 1; transform: none; }

/* ========================== Responsive =========================== */
@media (max-width: 1040px) {
  .hero-inner { grid-template-columns: 1fr; gap: 34px; padding-bottom: 54px; }
  .hero { padding-top: 128px; }
  .hero-art { max-width: 620px; }
  .about-grid, .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .badge:nth-child(3) { border-left: 0; }
  .badge:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .09); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1080px) {
  html { scroll-padding-top: 80px; }
  .nav {
    position: absolute; top: calc(100% + 8px); left: 16px; right: 16px;
    flex-direction: column; gap: 2px; padding: 12px;
    background: rgba(5, 25, 63, .97); backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .12); border-radius: 18px;
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 16px; font-size: 15.5px; }
  .burger { display: block; }
  .header-actions { margin-left: auto; }
  .site-header:not(.is-stuck) { background: rgba(5, 25, 63, .55); backdrop-filter: blur(8px); }
  .section { padding: 72px 0; }
  .field-row { grid-template-columns: 1fr; }
  .chip-rate { top: 0; left: 0; }
  .chip-rota { top: auto; bottom: 34%; right: 0; }
  .chip-tax { display: none; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 16px; }
  .header-actions .btn-tg { display: none; }
  .logo img { height: 40px; }
  .logo-full img { height: 88px; }
  .hero { padding-top: 112px; }
  .hero-cta .btn { flex: 1 1 100%; }
  .badges-grid { grid-template-columns: 1fr; }
  .badge { padding: 16px 4px; }
  .badge + .badge { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .09); }
  .job { padding: 28px 22px; }
  .form-card { padding: 26px 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .tg-float span { display: none; }
  .tg-float { padding: 15px; right: 16px; bottom: 16px; }
  .hero-chip { padding: 10px 14px; }
  .hero-chip strong { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
