:root {
  --ink: #17212b;
  --muted: #637083;
  --paper: #f6f2e9;
  --surface: #ffffff;
  --line: #d9e0e5;
  --coal: #1d2a31;
  --steel: #44606b;
  --accent: #f6b735;
  --accent-dark: #ad6700;
  --green: #129467;
  --blue: #2f80ed;
  --violet: #7360f2;
  --shadow: 0 18px 50px rgba(23, 33, 43, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(246, 242, 233, 0.94);
  border-bottom: 1px solid rgba(23, 33, 43, 0.12);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.08rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 22px;
  color: var(--coal);
  font-size: 0.96rem;
  font-weight: 800;
}

.main-nav a {
  padding: 9px 2px;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  border-color: var(--accent);
}

.header-actions,
.contact-actions,
.hero-actions,
.hero-quick-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.messenger,
.primary-action,
.secondary-action,
.filter {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.messenger {
  padding: 12px 15px;
  color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.messenger:hover,
.primary-action:hover,
.secondary-action:hover,
.filter:hover {
  transform: translateY(-1px);
}

.whatsapp {
  background: var(--green);
}

.viber {
  background: var(--violet);
}

.telegram {
  background: var(--blue);
}

.hero {
  position: relative;
  display: grid;
  min-height: 86vh;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 420px);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  padding: clamp(72px, 10vw, 130px) clamp(18px, 5vw, 72px) clamp(34px, 6vw, 72px);
  color: #ffffff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(12, 18, 24, 0.88), rgba(12, 18, 24, 0.58) 54%, rgba(12, 18, 24, 0.34)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26vh;
  background: linear-gradient(0deg, rgba(12, 18, 24, 0.74), rgba(12, 18, 24, 0));
  pointer-events: none;
}

.hero-content,
.hero-quick {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.75rem);
  line-height: 0.99;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.55;
}

.primary-action,
.secondary-action {
  min-width: 220px;
  padding: 16px 20px;
}

.primary-action {
  color: #121820;
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(246, 183, 53, 0.24);
}

.secondary-action {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.44);
}

.hero-points {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.hero-quick {
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-quick .eyebrow {
  color: var(--accent-dark);
}

.hero-quick h2 {
  margin: 0 0 16px;
  font-size: 1.55rem;
  line-height: 1.08;
}

.hero-quick ol {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding-left: 22px;
  color: var(--coal);
  font-weight: 800;
  line-height: 1.42;
}

.hero-quick-actions .messenger {
  flex: 1;
}

.messenger.large {
  min-height: 52px;
  padding: 16px 20px;
}

.numbers-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: #ffffff;
  background: var(--coal);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.numbers-band div {
  min-height: 128px;
  padding: 24px clamp(18px, 4vw, 40px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.numbers-band strong {
  display: block;
  color: var(--accent);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.numbers-band span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  line-height: 1.35;
}

.section {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.section-heading {
  width: min(1120px, 100%);
  margin: 0 auto 28px;
}

.section-heading h2,
.promise-section h2,
.contact-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.why-section {
  background: #ffffff;
}

.benefit-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.benefit-grid article {
  min-height: 220px;
  padding: 22px;
  background: #f7f8f5;
  border: 1px solid #dfe4dc;
  border-radius: var(--radius);
}

.benefit-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 16px;
  color: #121820;
  font-weight: 900;
  background: var(--accent);
  border-radius: 50%;
}

.benefit-grid h3,
.job-card h3,
.promise-list h3,
.steps h3 {
  margin: 0;
  letter-spacing: 0;
}

.benefit-grid p,
.job-card p,
.promise-list p,
.steps p,
.contact-section p,
.section-note {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.jobs-section {
  background:
    linear-gradient(180deg, rgba(68, 96, 107, 0.09), rgba(246, 242, 233, 0)),
    var(--paper);
}

.section-heading.with-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  align-items: end;
  gap: 30px;
}

.filters {
  display: flex;
  width: min(1120px, 100%);
  margin: 0 auto 18px;
  gap: 10px;
  flex-wrap: wrap;
}

.filter {
  cursor: pointer;
  padding: 12px 18px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
}

.filter.is-active {
  color: #111922;
  background: var(--accent);
  border-color: var(--accent-dark);
}

.jobs-meta {
  display: flex;
  width: min(1120px, 100%);
  margin: 0 auto 18px;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.jobs-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.job-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 20px;
  background: var(--surface);
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(23, 33, 43, 0.07);
}

.job-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
}

.job-topline strong {
  color: var(--steel);
  text-transform: none;
}

.job-card h3 {
  min-height: 54px;
  overflow-wrap: anywhere;
  font-size: 1.35rem;
  line-height: 1.15;
}

.job-location {
  margin-top: 8px;
  color: var(--steel);
  font-weight: 900;
}

.job-summary {
  display: -webkit-box;
  min-height: 74px;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.job-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.job-fact {
  min-height: 66px;
  padding: 11px 12px;
  background: #f8faf9;
  border: 1px solid #e4e9e7;
  border-radius: var(--radius);
}

.job-fact.featured {
  background: #fff7dd;
  border-color: #f5da90;
}

.job-fact span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.job-fact strong {
  display: block;
  margin-top: 5px;
  overflow-wrap: anywhere;
  font-size: 0.98rem;
  line-height: 1.18;
}

.job-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.job-tags span {
  padding: 7px 9px;
  color: #21443a;
  font-size: 0.82rem;
  font-weight: 900;
  background: #eaf5ef;
  border-radius: 999px;
}

.promise-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  color: #ffffff;
  background: var(--coal);
}

.promise-section h2 {
  color: #ffffff;
}

.promise-list {
  display: grid;
  gap: 14px;
}

.promise-list article {
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.promise-list h3 {
  color: #ffffff;
  font-size: 1.16rem;
}

.promise-list p {
  color: rgba(255, 255, 255, 0.76);
}

.steps-section {
  background: #ffffff;
}

.steps {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  font-weight: 900;
  background: var(--accent);
  border-radius: 50%;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(48px, 7vw, 76px) clamp(18px, 5vw, 72px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(23, 33, 43, 0.96), rgba(68, 96, 107, 0.9)),
    url("https://images.unsplash.com/photo-1565008447742-97f6f38c985c?auto=format&fit=crop&w=1600&q=82") center/cover;
}

.contact-section h2 {
  max-width: 760px;
  color: #ffffff;
}

.contact-section p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px) 92px;
  color: var(--muted);
  background: #ffffff;
}

.footer-brand img {
  display: block;
  width: 34px;
  height: 34px;
}

.footer-brand strong {
  color: var(--ink);
  font-weight: 900;
}

.mobile-contact-bar {
  position: fixed;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 40;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 33, 43, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.mobile-contact-bar .messenger {
  min-width: 0;
  padding: 12px 7px;
  font-size: 0.82rem;
}

@media (max-width: 1060px) {
  .site-header,
  .hero,
  .section-heading.with-action,
  .promise-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-self: start;
  }

  .header-actions {
    width: 100%;
  }

  .header-actions .messenger {
    flex: 1;
  }

  .benefit-grid,
  .jobs-grid,
  .numbers-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    position: relative;
    gap: 14px;
    padding: 12px 16px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .main-nav {
    gap: 16px;
    overflow-x: auto;
    width: 100%;
    font-size: 0.9rem;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 54px 16px 34px;
    background-position: 58% center;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 13vw, 4.2rem);
  }

  .hero-copy {
    margin: 18px 0 24px;
  }

  .hero-actions,
  .hero-quick-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-action,
  .secondary-action,
  .messenger.large {
    width: 100%;
  }

  .hero-points,
  .jobs-meta {
    flex-direction: column;
  }

  .numbers-band,
  .benefit-grid,
  .jobs-grid,
  .job-facts,
  .steps {
    grid-template-columns: 1fr;
  }

  .numbers-band div {
    min-height: 112px;
  }

  .section {
    padding: 48px 16px;
  }

  .job-card {
    min-height: 0;
  }

  .job-card h3,
  .job-summary {
    min-height: 0;
  }

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

  .contact-section {
    padding: 44px 16px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 16px 96px;
  }

  .mobile-contact-bar {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
