:root {
  --dark: #0b1120;
  --dark-2: #0d1117;
  --slate: #0f172a;
  --muted: #64748b;
  --soft: #f0f4f8;
  --line: #e2e8f0;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --cyan: #06b6d4;
  --green: #10b981;
  --cta: #2563eb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--dark);
  color: var(--slate);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.page-loader p {
  margin: 82px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.loader-ring {
  position: absolute;
  width: 58px;
  height: 58px;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-top-color: #60a5fa;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.hero-screen {
  position: relative;
  min-height: calc(100svh + 96px);
  overflow: hidden;
  background: var(--dark);
}

.hero-bg,
.hero-gradient,
.hero-radial {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: url("assets/europe-work-hero.png") center / cover no-repeat;
}

.hero-gradient {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 10, 24, 0.78) 0%, rgba(5, 15, 40, 0.58) 42%, rgba(5, 15, 40, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(5, 15, 40, 0.62) 55%, rgba(5, 10, 30, 0.84) 100%);
}

.hero-radial {
  z-index: 2;
  background: radial-gradient(ellipse at 80% 50%, rgba(30, 64, 175, 0.18) 0%, transparent 70%);
}

.float-dot {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.dot-one {
  top: 64px;
  right: 40px;
  width: 128px;
  height: 128px;
  background: radial-gradient(circle, #3b82f6, transparent);
  opacity: 0.2;
  animation: float 7s ease-in-out infinite;
}

.dot-two {
  top: 160px;
  left: 24px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #60a5fa, transparent);
  opacity: 0.15;
  animation: float 10s ease-in-out infinite;
}

.dot-three {
  top: 34%;
  right: 25%;
  width: 40px;
  height: 40px;
  background: #a78bfa;
  opacity: 0.2;
  filter: blur(8px);
  animation: float 8s ease-in-out 2s infinite;
}

.hero-inner {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  width: min(1024px, 100%);
  min-height: calc(100svh + 96px);
  margin: 0 auto;
  padding: max(0.5rem, env(safe-area-inset-top)) 24px max(0.75rem, env(safe-area-inset-bottom));
}

.brand-type {
  margin: 22px 0 0 6px;
  color: white;
  font-size: clamp(1.6rem, 4vw, 2.45rem);
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.hero-main {
  display: flex;
  flex: 1;
  align-items: flex-start;
  padding-top: clamp(42px, 9vh, 96px);
}

.hero-copy-block {
  position: relative;
  width: min(575px, 100%);
}

.hero-copy-block::before {
  position: absolute;
  inset: -28px -24px -24px;
  z-index: -1;
  border-radius: 28px;
  background: radial-gradient(ellipse at 30% 42%, rgba(2, 6, 23, 0.52) 0%, rgba(2, 6, 23, 0.24) 48%, transparent 76%);
  content: "";
  filter: blur(2px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 0;
  color: white;
  font-size: clamp(4.4rem, 12vw, 8rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
  text-shadow: 0 5px 16px rgba(0, 0, 0, 0.58), 0 18px 42px rgba(0, 0, 0, 0.38);
}

h1 span {
  display: inline-flex;
  align-items: baseline;
  gap: 0.13em;
  color: #ffffff;
  white-space: nowrap;
}

h1 em {
  display: inline-block;
  flex: 0 0 auto;
  color: initial;
  font-style: normal;
  font-size: 0.49em;
  line-height: 1;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
  transform: translateY(-0.13em);
}

.hero-subtitle {
  max-width: 540px;
  margin: 14px 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 650;
  line-height: 1.55;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}

.hero-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: min(550px, 100%);
  margin-bottom: 20px;
}

.glass-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.15;
  backdrop-filter: blur(16px);
}

.glass-pill svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(550px, 100%);
  margin-bottom: 20px;
}

.hero-stat {
  min-width: 0;
}

.hero-stat strong {
  display: block;
  color: white;
  font-size: clamp(1.35rem, 4vw, 2.08rem);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.hero-stat span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  line-height: 1.12;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: min(550px, 100%);
}

.main-btn,
.vacancy-body a,
.start-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 8px 26px rgba(37, 99, 235, 0.34);
  color: white;
  font-weight: 850;
}

.main-btn {
  min-height: 58px;
  padding: 0 28px;
  font-size: 1rem;
}

.main-btn svg {
  width: 24px;
  height: 24px;
}

.online-row,
.scroll-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.86rem;
}

.online-row span {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
}

.scroll-link {
  width: 48px;
  height: 48px;
  margin-top: 6px;
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  animation: bounce 1.45s infinite;
}

.scroll-link svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.35;
}

.content-shell {
  position: relative;
  isolation: isolate;
  background: var(--soft);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1024px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 30px;
}

.trust-strip article {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.trust-strip svg {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  padding: 9px;
  border-radius: 14px;
  background: #eff6ff;
  color: #2563eb;
}

.trust-strip strong {
  display: block;
  margin-bottom: 5px;
  color: #0f172a;
  font-size: 0.96rem;
  line-height: 1.2;
}

.trust-strip span {
  display: block;
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.45;
}

.vacancy-section,
.guarantee-section,
.reviews-section,
.path-section,
.faq-section {
  width: min(1024px, 100%);
  margin: 0 auto;
  padding: 32px 16px;
}

.section-title {
  width: min(680px, 100%);
  margin-bottom: 22px;
}

.section-title > span,
.guarantee-copy > span {
  display: block;
  margin-bottom: 8px;
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section-title h2,
.guarantee-copy h2 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 950;
  line-height: 1.06;
}

.section-title p,
.guarantee-copy p {
  margin: 0;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.62;
}

.vacancy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 24px;
}

.vacancy-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border-radius: 24px;
  background: white;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.vacancy-photo {
  position: relative;
  height: 224px;
  overflow: hidden;
  flex: 0 0 auto;
  background-size: cover;
}

.photo-warehouse {
  background-image: url("assets/vacancy-warehouse-women.png");
  background-position: 50% 46%;
}

.photo-driver {
  background-image: url("assets/vacancy-driver.png");
  background-position: 76% 48%;
}

.photo-build {
  background-image: url("assets/vacancy-construction.png");
  background-position: 38% 52%;
}

.photo-confectionery {
  background-image: url("assets/vacancy-confectionery.png");
  background-position: 50% 50%;
}

.photo-tint {
  position: absolute;
  inset: 0;
}

.photo-tint.blue {
  background: linear-gradient(to top, rgba(30, 64, 175, 0.93) 0%, rgba(30, 64, 175, 0.52) 42%, transparent 76%);
}

.photo-tint.green {
  background: linear-gradient(to top, rgba(6, 95, 70, 0.93) 0%, rgba(6, 95, 70, 0.52) 42%, transparent 76%);
}

.photo-tint.violet {
  background: linear-gradient(to top, rgba(91, 33, 182, 0.93) 0%, rgba(91, 33, 182, 0.52) 42%, transparent 76%);
}

.photo-tint.amber {
  background: linear-gradient(to top, rgba(146, 64, 14, 0.92) 0%, rgba(146, 64, 14, 0.48) 42%, transparent 76%);
}

.tag,
.hot {
  position: absolute;
  top: 16px;
  z-index: 1;
  padding: 6px 10px;
  border-radius: 999px;
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.tag {
  left: 16px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.hot {
  right: 16px;
  background: #ef4444;
}

.photo-title {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  color: white;
}

.photo-title h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 950;
  line-height: 1.1;
}

.photo-title p {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  margin: 0;
}

.photo-title strong {
  font-size: 1.55rem;
  line-height: 1;
}

.photo-title span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 700;
}

.vacancy-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.vacancy-body p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.vacancy-body ul {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.vacancy-body li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #475569;
  font-size: 0.88rem;
}

.vacancy-body li svg {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fafc;
}

.vacancy-body a {
  min-height: 48px;
  margin-top: auto;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  font-size: 0.92rem;
}

.more-vacancies {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid #dbeafe;
  border-radius: 22px;
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.1);
}

.more-vacancies strong,
.more-vacancies span {
  display: block;
}

.more-vacancies strong {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 950;
}

.more-vacancies span {
  margin-top: 5px;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.45;
}

.more-vacancies a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  flex: 0 0 auto;
  gap: 10px;
  border-radius: 15px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.26);
  color: white;
  font-size: 0.9rem;
  font-weight: 850;
  white-space: nowrap;
}

.more-vacancies svg {
  width: 20px;
  height: 20px;
}

.guarantee-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr);
  gap: 28px;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 28px;
}

.guarantee-copy {
  padding: 8px 0;
}

.mini-reviews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.mini-reviews div {
  padding: 16px;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}

.mini-reviews strong {
  display: block;
  color: #1d4ed8;
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1;
}

.mini-reviews span {
  display: block;
  margin-top: 7px;
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.3;
}

.document-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(219, 234, 254, 0.95);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.94)),
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.18), transparent 42%);
  box-shadow: 0 18px 52px rgba(30, 64, 175, 0.15);
}

.document-card::before {
  position: absolute;
  top: 0;
  right: 24px;
  width: 64px;
  height: 86px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #2563eb, #1d4ed8);
  content: "";
  opacity: 0.9;
}

.doc-head {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
}

.doc-head > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #0f172a;
  color: white;
  font-weight: 950;
}

.doc-head strong,
.doc-head small {
  display: block;
}

.doc-head strong {
  color: #0f172a;
  font-size: 1rem;
}

.doc-head small {
  margin-top: 2px;
  color: #64748b;
  font-size: 0.78rem;
}

.document-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.document-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-size: 0.92rem;
  font-weight: 750;
}

.document-card li span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14);
}

.document-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 14px;
  border-radius: 16px;
  background: #ecfdf5;
  color: #047857;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.45;
}

.reviews-section {
  padding-top: 18px;
  padding-bottom: 24px;
}

.reviews-list {
  display: grid;
  gap: 12px;
}

.review-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 20px;
  min-width: 0;
  padding: 20px;
  border: 1px solid #dbeafe;
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(239, 246, 255, 0.95) 0%, rgba(239, 246, 255, 0.55) 210px, #ffffff 210px),
    #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.review-meta {
  min-width: 0;
  padding-right: 14px;
}

.review-meta strong,
.review-meta span {
  display: block;
}

.review-meta strong {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.2;
}

.review-meta span {
  margin-top: 7px;
  color: #2563eb;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.25;
}

.review-card p {
  margin: 0;
  color: #475569;
  font-size: 0.96rem;
  line-height: 1.62;
}

.path-section {
  padding-top: 24px;
  padding-bottom: 18px;
}

.path-section > h2,
.faq-section > h2 {
  margin: 0 0 28px;
  color: #0f172a;
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1.15;
}

.path-section {
  position: relative;
}

.path-line {
  position: absolute;
  top: 94px;
  right: 52px;
  left: 52px;
  height: 2px;
  background: linear-gradient(to right, #3b82f6, #8b5cf6, #06b6d4, #10b981);
}

.path-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.path-card {
  position: relative;
  min-height: 180px;
  padding: 20px;
  border: 1px solid #f1f5f9;
  border-radius: 18px;
  background: white;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.04);
  text-align: center;
}

.step-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border: 2px solid currentColor;
  border-radius: 18px;
}

.step-icon svg {
  width: 25px;
  height: 25px;
}

.blue-step .step-icon {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.purple-step .step-icon {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
  color: #8b5cf6;
}

.cyan-step .step-icon {
  background: rgba(6, 182, 212, 0.1);
  border-color: rgba(6, 182, 212, 0.2);
  color: #06b6d4;
}

.emerald-step .step-icon {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.path-card > span {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.74rem;
  font-weight: 950;
  opacity: 0.28;
}

.path-card h3 {
  margin: 0 0 6px;
  font-size: 0.94rem;
  font-weight: 850;
}

.path-card p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.78rem;
  line-height: 1.45;
}

.start-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(992px, calc(100% - 32px));
  margin: 22px auto 14px;
  overflow: hidden;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0f2044 0%, #1e40af 100%);
}

.start-card::after {
  position: absolute;
  top: -50px;
  right: -30px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, #60a5fa, transparent);
  content: "";
  opacity: 0.12;
}

.start-card h2 {
  margin: 0 0 4px;
  color: white;
  font-size: 1.25rem;
  font-weight: 950;
}

.start-card p {
  margin: 0;
  color: #93c5fd;
  font-size: 0.9rem;
}

.start-card a {
  position: relative;
  z-index: 1;
  min-height: 48px;
  padding: 0 26px;
  flex: 0 0 auto;
  border-radius: 16px;
  white-space: nowrap;
}

.faq-section {
  padding-top: 30px;
  padding-bottom: 48px;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 16px;
  background: white;
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.05);
}

.faq-list details:hover {
  border-color: #bfdbfe;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 16px 20px;
  color: #1e293b;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-left: 16px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
}

.faq-list summary svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.62;
}

.footer {
  padding: 28px 20px;
  background: var(--dark-2);
  color: #6b7280;
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
}

.footer p + p {
  margin-top: 6px;
  font-weight: 500;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

@keyframes shimmer {
  to {
    background-position: -230% center;
  }
}

@media (max-width: 860px) {
  .hero-inner {
    width: 100%;
  }

  .hero-main {
    align-items: flex-start;
    padding-top: 36px;
  }

  .path-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip,
  .guarantee-section {
    grid-template-columns: 1fr;
  }

  .path-line {
    display: none;
  }

  .start-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .vacancy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-screen,
  .hero-inner {
    min-height: calc(100svh + 96px);
  }

  .hero-inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  .brand-type {
    margin-top: 18px;
    font-size: 2.05rem;
  }

  .hero-main {
    padding-top: 56px;
  }

  h1 {
    font-size: clamp(4.15rem, 18vw, 5.4rem);
    line-height: 0.88;
  }

  .hero-subtitle {
    margin-top: 12px;
    font-size: 1.02rem;
  }

  .hero-pills {
    gap: 9px;
  }

  .glass-pill {
    min-height: 44px;
    padding: 10px;
    border-radius: 13px;
    font-size: 0.79rem;
  }

  .hero-stats {
    gap: 4px;
  }

  .hero-stat {
    text-align: center;
  }

  .hero-stat strong {
    font-size: 1.34rem;
  }

  .hero-stat span {
    max-width: 78px;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.62rem;
  }

  .main-btn {
    min-height: 58px;
    padding: 0 18px;
  }

  .vacancy-section,
  .guarantee-section,
  .reviews-section,
  .path-section,
  .faq-section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .trust-strip {
    width: calc(100% - 24px);
    padding-top: 22px;
  }

  .trust-strip article {
    min-height: 96px;
  }

  .section-title {
    margin-bottom: 18px;
  }

  .mini-reviews {
    grid-template-columns: 1fr;
  }

  .review-card {
    grid-template-columns: 1fr;
    gap: 12px;
    background: white;
  }

  .review-meta {
    padding-right: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #dbeafe;
  }

  .path-grid {
    grid-template-columns: 1fr;
  }

  .vacancy-photo {
    height: 218px;
  }

  .more-vacancies {
    align-items: stretch;
    flex-direction: column;
    padding: 18px;
  }

  .more-vacancies a {
    width: 100%;
  }

  .path-card {
    min-height: 156px;
  }

  .start-card {
    width: calc(100% - 24px);
    padding: 24px;
  }

  .start-card a {
    width: 100%;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 3.58rem;
  }

  .hero-stat strong {
    font-size: 1.22rem;
  }

  .hero-stat span {
    max-width: 66px;
    font-size: 0.58rem;
  }

  .brand-type {
    font-size: 1.85rem;
  }

  .glass-pill {
    font-size: 0.74rem;
  }
}
