[hidden] { display: none !important; }

:root {
  --yellow: #ffcc00;
  --yellow-hover: #ffd633;
  --yellow-soft: #fff7ce;
  --red: #ff2f24;
  --red-text: #c6251b;
  --check-green: #3ce160;
  --black: #111111;
  --ink: #232323;
  --muted: #6c6f74;
  --line: #dedfe2;
  --surface: #ffffff;
  --soft: #f5f5f2;
  --container: 1280px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-lg: 0 28px 80px rgba(17, 17, 17, .16);
  --shadow-md: 0 16px 42px rgba(17, 17, 17, .11);
  --shadow-sm: 0 8px 24px rgba(17, 17, 17, .07);
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
select {
  font-family: inherit;
}

button,
input,
select,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: -9999px;
  top: 14px;
  z-index: 200;
}

.skip-link:focus {
  left: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  color: #fff;
  background: var(--black);
  box-shadow: var(--shadow-md);
}

:focus-visible {
  outline: 3px solid rgba(255, 47, 36, .48);
  outline-offset: 3px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(17, 17, 17, .08);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 210px;
  text-decoration: none;
}

.brand-logo {
  width: 198px;
  height: auto;
  object-fit: contain;
}

.header-nav {
  display: flex;
  gap: 22px;
}

.header-nav a {
  color: #4c4f53;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.header-nav a:hover {
  color: var(--black);
}

.header-contact {
  display: block;
  text-align: right;
  text-decoration: none;
}

.header-contact span,
.header-contact strong {
  display: block;
}

.header-contact span {
  color: var(--muted);
  font-size: 10px;
}

.header-contact strong {
  margin-top: 3px;
  color: var(--black);
  font-size: 16px;
  font-weight: 950;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 28px;
  background:
    radial-gradient(circle at 14% 17%, rgba(255, 255, 255, .98), transparent 28%),
    linear-gradient(120deg, #fff 0%, #fffdf4 52%, #fff8d8 100%);
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  right: -180px;
  top: -280px;
  width: 620px;
  height: 620px;
  background: var(--yellow);
}

.hero-orbit-two {
  left: -160px;
  bottom: -240px;
  width: 420px;
  height: 420px;
  border: 72px solid rgba(255, 204, 0, .14);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(315px, .70fr) minmax(360px, .80fr);
  grid-template-areas: "copy media form";
  gap: 22px;
  align-items: center;
}

.hero-copy {
  grid-area: copy;
  padding: 26px 0;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-tags span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: 999px;
  color: #343434;
  background: rgba(255, 255, 255, .80);
  box-shadow: 0 5px 16px rgba(17, 17, 17, .04);
  font-size: 11px;
  font-weight: 800;
}

.eyebrow,
.section-heading > span,
.section-label {
  display: block;
  margin: 0 0 11px;
  color: var(--red-text);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(64px, 6.7vw, 94px);
  font-weight: 950;
  line-height: .88;
  letter-spacing: -.07em;
}

.hero-lead {
  max-width: 590px;
  margin: 19px 0 0;
  color: #414348;
  font-size: 17px;
  line-height: 1.48;
}

.offer {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 11px;
  margin-top: 22px;
}

.offer > div {
  min-width: 0;
  padding: 17px 18px;
  border: 1px solid rgba(17, 17, 17, .10);
  border-radius: 19px;
  background: rgba(255, 255, 255, .90);
  box-shadow: var(--shadow-sm);
}

.offer span,
.offer small {
  display: block;
}

.offer span {
  color: var(--muted);
  font-size: 10px;
}

.offer strong {
  display: block;
  margin-top: 5px;
  color: var(--black);
  font-size: 25px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.045em;
}

.offer-main {
  background: linear-gradient(145deg, #ffd41a, #ffbf00) !important;
}

.offer-main strong {
  font-size: 34px;
}

.offer small {
  margin-top: 7px;
  color: #666;
  font-size: 9px;
  line-height: 1.3;
}

.hero-points {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #303236;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
}

.hero-points i {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--check-green);
  font-style: normal;
  font-size: 11px;
  font-weight: 950;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.button {
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-black {
  color: #fff;
  background: var(--black);
  box-shadow: 0 13px 28px rgba(17, 17, 17, .20);
}

.button-black:hover {
  background: #292929;
}

.button-white {
  color: var(--black);
  border: 1px solid #cfd0d2;
  background: rgba(255, 255, 255, .82);
}

.button-yellow {
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 13px 28px rgba(255, 204, 0, .25);
}

.button-yellow:hover {
  background: var(--yellow-hover);
}

.physical-note {
  max-width: 610px;
  margin-top: 17px;
  padding: 10px 12px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  border: 1px solid #ff9e95;
  border-radius: 11px;
  color: #4a302d;
  background: #fff2ef;
  font-size: 10px;
  line-height: 1.4;
}

.physical-note b {
  color: var(--red-text);
  text-transform: uppercase;
}

.salary-disclaimer {
  max-width: 610px;
  margin: 10px 0 0;
  color: #7a7c80;
  font-size: 8px;
  line-height: 1.45;
}

.hero-media {
  grid-area: media;
  position: relative;
  min-height: 650px;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.media-shape {
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 350px;
  height: 520px;
  border-radius: 175px 175px 36px 36px;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, .64), transparent 30%),
    linear-gradient(180deg, var(--yellow), #ffe986);
  transform: translateX(-50%);
  border: 1px solid rgba(17, 17, 17, .08);
}

.hero-media > img {
  position: relative;
  z-index: 2;
  width: 410px;
  max-width: 123%;
  height: auto;
  object-fit: contain;
}

.route-badge,
.bonus-badge {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(17, 17, 17, .11);
  border-radius: 15px;
  background: rgba(255, 255, 255, .95);
  box-shadow: var(--shadow-md);
}

.route-badge {
  left: -17px;
  top: 94px;
  max-width: 205px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.route-badge i {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(255, 47, 36, .13);
}

.route-badge small,
.route-badge strong,
.bonus-badge small,
.bonus-badge strong {
  display: block;
}

.route-badge small,
.bonus-badge small {
  color: var(--muted);
  font-size: 9px;
}

.route-badge strong {
  margin-top: 2px;
  color: var(--black);
  font-size: 13px;
  line-height: 1.15;
}

.bonus-badge {
  right: -6px;
  bottom: 43px;
  padding: 11px 13px;
}

.bonus-badge strong {
  margin-top: 3px;
  color: var(--red-text);
  font-size: 21px;
  letter-spacing: -.04em;
}

.apply-card {
  grid-area: form;
  position: relative;
  overflow: hidden;
  align-self: center;
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.apply-accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--red) 0 54%, var(--black) 54% 68%, var(--yellow) 68%);
}

.apply-heading > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--black);
  background: var(--yellow-soft);
  font-size: 10px;
  font-weight: 950;
}

.apply-heading h2 {
  margin: 14px 0 8px;
  color: var(--black);
  font-size: 27px;
  line-height: 1.03;
  letter-spacing: -.045em;
}

.apply-heading p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.lead-form {
  display: grid;
  gap: 10px;
}

.field {
  display: block;
}

.field > span {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
  color: var(--black);
  font-size: 11px;
  font-weight: 850;
}

.field > span em {
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid #d2d4d7;
  border-radius: 12px;
  outline: none;
  color: var(--black);
  background: #fff;
  font-size: 13px;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.field input:focus,
.field select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(255, 47, 36, .10);
}

.field small,
.consent-error {
  display: block;
  min-height: 11px;
  margin-top: 3px;
  color: #b9342b;
  font-size: 8px;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: flex-start;
  color: #62656a;
  font-size: 8px;
  line-height: 1.35;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--yellow);
}

.consent a {
  color: var(--black);
}

.submit-button {
  width: 100%;
  min-height: 52px;
  font-size: 14px;
}

.submit-button i {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(17, 17, 17, .24);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

.submit-button.loading i {
  display: block;
}

.submit-button.loading span {
  opacity: .55;
}

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

.form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 9px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
}

.manager-box {
  padding: 9px 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--soft);
}

.manager-avatar {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--black);
  font-size: 10px;
  font-weight: 950;
}

.manager-box small,
.manager-box strong {
  display: block;
}

.manager-box small {
  color: var(--muted);
  font-size: 8px;
}

.manager-box strong {
  margin-top: 2px;
  color: var(--black);
  font-size: 11px;
}

.manager-box a {
  margin-left: auto;
  color: var(--red-text);
  font-size: 9px;
  font-weight: 950;
}

.form-status {
  min-height: 13px;
  margin: 0;
  color: #ae3027;
  font-size: 9px;
  line-height: 1.35;
}

.success {
  text-align: center;
}

.success > b {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--yellow);
  font-size: 23px;
}

.success h3 {
  margin: 14px 0 7px;
  color: var(--black);
  font-size: 24px;
}

.success p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.trust-strip {
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid article {
  padding: 17px 22px;
  border-right: 1px solid #ececec;
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--black);
  font-size: 12px;
}

.trust-grid span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.section {
  padding: 82px 0;
  content-visibility: auto;
  contain-intrinsic-size: 750px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 31px;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.job-copy h2,
.transport-card h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(38px, 4.3vw, 57px);
  font-weight: 950;
  line-height: .98;
  letter-spacing: -.055em;
}

.section-heading p,
.job-copy > p,
.transport-card > p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.52;
}

.advantages {
  background: #fff;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}

.advantages-grid article {
  min-height: 248px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.advantages-grid b {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--black);
  background: var(--yellow);
  font-size: 10px;
}

.advantages-grid h3 {
  margin: 69px 0 10px;
  color: var(--black);
  font-size: 22px;
  line-height: 1.06;
  letter-spacing: -.04em;
}

.advantages-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.advantage-yellow {
  border-color: transparent !important;
  background: var(--yellow) !important;
}

.advantage-yellow b {
  background: rgba(17, 17, 17, .10);
}

.advantage-yellow p {
  color: rgba(17, 17, 17, .68);
}

.advantage-red {
  border-color: transparent !important;
  background: #fff0ee !important;
}

.advantage-red b {
  color: #fff;
  background: var(--red);
}

.job-section {
  color: #fff;
  background: var(--black);
}

.job-grid {
  display: grid;
  grid-template-columns: minmax(0, .90fr) minmax(0, 1.10fr);
  gap: 42px;
  align-items: start;
}

.job-copy h2 {
  color: #fff;
}

.job-copy > p {
  color: rgba(255, 255, 255, .62);
}

.tasks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.tasks article {
  min-height: 76px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 15px;
  background: rgba(255, 255, 255, .05);
}

.tasks b {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--black);
  background: var(--yellow);
  font-size: 10px;
}

.tasks span {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.schedule-panel {
  padding: 25px;
  border-radius: 25px;
  color: var(--ink);
  background: #fff;
}

.schedule-panel > span {
  color: var(--red-text);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.schedule-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 13px;
}

.schedule-cards article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--soft);
}

.schedule-cards small,
.schedule-cards strong {
  display: block;
}

.schedule-cards small {
  color: var(--muted);
  font-size: 9px;
}

.schedule-cards strong {
  margin-top: 5px;
  color: var(--black);
  font-size: 25px;
  letter-spacing: -.04em;
}

.schedule-cards p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.income-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.income-grid div {
  padding: 13px 12px;
  border-radius: 14px;
  background: var(--yellow-soft);
}

.income-grid strong,
.income-grid span {
  display: block;
}

.income-grid strong {
  color: var(--black);
  font-size: 15px;
}

.income-grid span {
  margin-top: 3px;
  color: #5f4a00;
  font-size: 8px;
}

.transport-section {
  background: var(--soft);
}

.transport-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 16px;
}

.transport-card,
.city-card {
  min-height: 300px;
  padding: 29px;
  border-radius: 25px;
}

.transport-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, .38), transparent 30%),
    var(--yellow);
}

.transport-card::after {
  content: "";
  position: absolute;
  right: -65px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  border: 44px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
}

.transport-card h2 {
  max-width: 500px;
  font-size: 47px;
}

.transport-card > p {
  max-width: 520px;
  color: rgba(17, 17, 17, .72);
}

.city-card {
  background: #fff;
  border: 1px solid var(--line);
}

.city-card > span {
  color: var(--red-text);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.city-card h3 {
  margin: 11px 0 17px;
  color: var(--black);
  font-size: 31px;
  line-height: 1.03;
  letter-spacing: -.045em;
}

.city-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.city-buttons button {
  min-height: 41px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--black);
  background: #fff;
  font-size: 11px;
  font-weight: 800;
}

.city-buttons button.active {
  border-color: var(--yellow);
  background: var(--yellow);
}

.steps-section {
  background: #fff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.steps-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.steps-grid b {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--black);
  background: var(--yellow);
  font-size: 13px;
}

.steps-grid article:nth-child(2) b {
  color: #fff;
  background: var(--red);
}

.steps-grid article:nth-child(3) b {
  color: #fff;
  background: var(--black);
}

.steps-grid h3 {
  margin: 49px 0 8px;
  color: var(--black);
  font-size: 22px;
  letter-spacing: -.035em;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.48;
}

.faq-section {
  background: var(--soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: 38px;
  align-items: start;
}

.faq {
  display: grid;
  gap: 9px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.faq summary {
  position: relative;
  min-height: 54px;
  padding: 16px 54px 16px 16px;
  cursor: pointer;
  list-style: none;
  color: var(--black);
  font-size: 13px;
  font-weight: 850;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 12px;
  top: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--yellow);
  font-size: 20px;
  font-weight: 900;
}

.faq details[open] summary::after {
  content: "−";
  color: #fff;
  background: var(--red);
}

.faq p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.final-cta {
  padding: 70px 0;
  color: var(--black);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .30), transparent 28%),
    var(--yellow);
}

.final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.final-inner > div > span {
  display: block;
  color: #5f4a00;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.final-inner h2 {
  max-width: 760px;
  margin: 10px 0 8px;
  color: var(--black);
  font-size: clamp(40px, 4.4vw, 60px);
  font-weight: 950;
  line-height: .98;
  letter-spacing: -.055em;
}

.final-inner p {
  margin: 0;
  color: rgba(17, 17, 17, .68);
  font-size: 14px;
}

.legal-note {
  padding: 16px 0;
  background: #fff;
}

.legal-note p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.footer {
  padding: 34px 0 30px;
  color: #fff;
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .55fr 1fr;
  gap: 35px;
}

.footer-grid > div,
.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 6px;
}

.footer strong {
  color: #fff;
  font-size: 12px;
}

.footer span,
.footer a,
.footer button,
.footer small {
  color: rgba(255, 255, 255, .60);
  font-size: 9px;
  line-height: 1.45;
}

.footer a {
  width: max-content;
  text-decoration: none;
}

.footer nav button {
  width: max-content;
  padding: 0;
  border: 0;
  background: none;
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.sticky-apply {
  display: none;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 120;
  width: min(760px, calc(100% - 28px));
  padding: 15px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .20);
  transform: translateX(-50%);
}

.cookie-banner strong {
  color: var(--black);
  font-size: 12px;
}

.cookie-banner p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.cookie-actions button {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 900;
}

.cookie-actions button:first-child {
  border: 1px solid #ccc;
  background: #fff;
}

.cookie-actions button:last-child {
  border: 0;
  background: var(--yellow);
}

.is-hidden {
  display: none !important;
}

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

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(310px, .72fr);
    grid-template-areas:
      "copy media"
      "form form";
  }

  .hero-media {
    min-height: 600px;
  }

  .apply-card {
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .advantages-grid article:nth-child(4),
  .advantages-grid article:nth-child(5) {
    min-height: 210px;
  }

  .advantages-grid article:nth-child(4) {
    grid-column: 1 / 2;
  }

  .advantages-grid article:nth-child(5) {
    grid-column: 2 / 4;
  }
}

@media (max-width: 850px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "form"
      "media";
  }

  .hero-copy {
    padding-bottom: 4px;
  }

  .hero-media {
    min-height: 520px;
  }

  .hero-media > img {
    width: 360px;
  }

  .media-shape {
    width: 330px;
    height: 465px;
  }

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

  .advantages-grid article:nth-child(4),
  .advantages-grid article:nth-child(5) {
    grid-column: auto;
  }

  .advantages-grid article:last-child {
    grid-column: 1 / -1;
    min-height: 190px;
  }

  .job-grid,
  .transport-grid,
  .faq-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading.left {
    margin-bottom: 25px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  html {
    scroll-padding-top: 74px;
  }

  .header-inner {
    min-height: 68px;
    gap: 8px;
  }

  .brand {
    max-width: 168px;
  }

  .brand-logo {
    width: 164px;
  }

  .header-contact span {
    display: none;
  }

  .header-contact strong {
    font-size: 12px;
  }

  .hero {
    padding: 22px 0 15px;
  }

  .hero-orbit-one {
    right: -250px;
    top: -220px;
    width: 480px;
    height: 480px;
  }

  .hero-copy {
    padding-top: 6px;
  }

  .hero-tags {
    gap: 6px;
    margin-bottom: 15px;
  }

  .hero-tags span {
    min-height: 29px;
    padding: 0 10px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(57px, 17vw, 76px);
  }

  .hero-lead {
    margin-top: 15px;
    font-size: 15px;
  }

  .offer {
    grid-template-columns: 1.08fr .92fr;
    gap: 8px;
  }

  .offer > div {
    padding: 14px 12px;
  }

  .offer strong {
    font-size: 20px;
  }

  .offer-main strong {
    font-size: 28px;
  }

  .offer small {
    font-size: 8px;
  }

  .hero-points {
    gap: 8px;
  }

  .hero-points li {
    font-size: 11px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 17px;
  }

  .hero-actions .button-white {
    display: none;
  }

  .button {
    min-height: 53px;
    padding: 0 14px;
  }

  .physical-note {
    font-size: 9px;
  }

  .salary-disclaimer {
    font-size: 8px;
  }

  .apply-card {
    padding: 22px 18px;
    border-radius: 21px;
  }

  .apply-heading h2 {
    font-size: 27px;
  }

  .apply-heading p {
    font-size: 11px;
  }

  .field > span {
    font-size: 12px;
  }

  .field input,
  .field select {
    min-height: 52px;
    font-size: 15px;
  }

  .consent {
    grid-template-columns: 20px 1fr;
    font-size: 9px;
  }

  .consent input {
    width: 19px;
    height: 19px;
  }

  .submit-button {
    min-height: 55px;
    font-size: 16px;
  }

  .form-trust {
    font-size: 9px;
  }

  .manager-box small {
    font-size: 9px;
  }

  .manager-box strong {
    font-size: 12px;
  }

  .hero-media {
    min-height: 470px;
    margin-top: -6px;
  }

  .hero-media > img {
    width: 325px;
  }

  .media-shape {
    width: 300px;
    height: 420px;
  }

  .route-badge {
    left: 2px;
    top: 38px;
  }

  .bonus-badge {
    right: 2px;
    bottom: 28px;
  }

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

  .trust-grid article:nth-child(2) {
    border-right: 0;
  }

  .trust-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid #ececec;
  }

  .section {
    padding: 66px 0;
    contain-intrinsic-size: 1000px;
  }

  .section-heading {
    margin-bottom: 25px;
    text-align: left;
  }

  .section-heading h2,
  .job-copy h2,
  .transport-card h2 {
    font-size: 38px;
  }

  .section-heading p,
  .job-copy > p,
  .transport-card > p {
    font-size: 14px;
  }

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

  .advantages-grid article,
  .advantages-grid article:last-child {
    min-height: 195px;
    grid-column: auto;
  }

  .advantages-grid h3 {
    margin-top: 42px;
  }

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

  .schedule-panel {
    padding: 20px 16px;
  }

  .schedule-cards {
    grid-template-columns: 1fr;
  }

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

  .transport-card,
  .city-card {
    min-height: 0;
    padding: 24px 20px;
  }

  .transport-card h2 {
    font-size: 37px;
  }

  .city-card h3 {
    font-size: 28px;
  }

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

  .steps-grid article {
    min-height: 170px;
  }

  .steps-grid h3 {
    margin-top: 30px;
  }

  .faq-layout {
    gap: 0;
  }

  .faq summary {
    min-height: 58px;
    font-size: 12px;
  }

  .final-inner {
    display: grid;
  }

  .final-inner h2 {
    font-size: 39px;
  }

  .final-inner .button {
    width: 100%;
  }

  .legal-note p {
    font-size: 9px;
  }

  .footer {
    padding-bottom: 105px;
  }

  .footer-grid {
    gap: 23px;
  }

  .footer strong {
    font-size: 12px;
  }

  .footer span,
  .footer a,
  .footer button,
  .footer small {
    font-size: 9px;
  }

  .sticky-apply {
    position: fixed;
    z-index: 95;
    left: 10px;
    right: 10px;
    bottom: calc(9px + env(safe-area-inset-bottom));
    min-height: 62px;
    padding: 0 17px;
    border: 0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--black);
    background: var(--yellow);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
    font-weight: 950;
  }

  .sticky-apply span {
    font-size: 15px;
  }

  .sticky-apply strong {
    font-size: 13px;
  }

  .cookie-banner {
    bottom: 82px;
    display: grid;
    gap: 12px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 380px) {
  .hero-tags {
    margin-bottom: 11px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-lead {
    margin-top: 11px;
  }

  .physical-note {
    margin-top: 13px;
  }
}

@media (max-width: 430px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-media > img {
    width: 300px;
  }

  .media-shape {
    width: 280px;
    height: 390px;
  }

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

  .trust-grid article {
    border-right: 0;
    border-bottom: 1px solid #ececec;
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

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

  .cookie-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
