@font-face {
  font-family: "RobotoLocal";
  src: url("assets/fonts/Roboto/Roboto-Regular_0.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "RobotoLocal";
  src: url("assets/fonts/Roboto/Roboto-Medium_0.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "RobotoLocal";
  src: url("assets/fonts/Roboto/Roboto-Bold_0.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #0b7bc2;
  --primary-dark: #075b8f;
  --text: #1c1f24;
  --muted: #6b7480;
  --bg: #f5f7fb;
  --card: #ffffff;
  --shadow: 0 12px 30px rgba(13, 26, 38, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "RobotoLocal", system-ui, sans-serif;
  color: var(--text);
  background: #ffffff;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #ffffff;
  box-shadow: none;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 26px 6px;
  min-height: 64px;
}

.logo-wrap {
  width: 198px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

.logo {
  width: 186px;
  height: auto;
  margin-top: 66px;
  transform: none;
  image-rendering: -webkit-optimize-contrast;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 10px;
}

.icon-button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary);
  border-radius: 6px;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

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

.icon-button:hover svg {
  fill: #ffffff;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 26px 10px 240px;
  font-weight: 600;
  letter-spacing: 0.4px;
  font-size: 17px;
}

.main-nav a,
.main-nav .nav-button {
  color: #2a2f35;
  border: none;
  background: transparent;
  font: inherit;
  cursor: pointer;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: stretch;
  color: #ffffff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 25, 45, 0.6), rgba(12, 25, 45, 0.2)),
    url("assets/images/hero.png") center/cover no-repeat;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  padding: 60px 48px;
  width: 100%;
}

.hero-copy h1 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy p {
  font-size: 15px;
  max-width: 520px;
}

.apply-form {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 16px;
  padding: 24px;
  color: var(--text);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.apply-form h2 {
  text-align: center;
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: 1px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #d6dde5;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
}

.file-field input {
  padding: 6px 8px;
}

button.primary {
  background: var(--primary);
  border: none;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.8px;
}

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

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px;
  text-align: center;
}

.about {
  background: #ffffff;
}

.about h2 {
  letter-spacing: 1px;
}

.accent {
  width: 40px;
  height: 3px;
  background: var(--primary);
  margin: 12px auto 20px;
  border-radius: 999px;
}

.about p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 860px;
  margin: 0 auto 16px;
}

.seo-content {
  background: #ffffff;
}

.seo-content .section-inner {
  max-width: 980px;
  padding: 22px 24px 44px;
}

.seo-content h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 2vw, 34px);
  letter-spacing: 0.4px;
}

.seo-content p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.65;
  font-size: clamp(14px, 1.1vw, 18px);
}

.popular-jobs {
  background: var(--bg);
}

.popular-jobs .section-inner {
  max-width: 1160px;
  padding: 56px 24px 64px;
}

.popular-jobs h2 {
  margin: 0;
  font-size: clamp(32px, 2vw, 46px);
  letter-spacing: 0.5px;
  color: #353e48;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.job-card {
  background: var(--card);
  border-radius: 14px;
  padding: 0;
  box-shadow: var(--shadow);
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  overflow: hidden;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary);
  color: #ffffff;
  font-size: 13px;
  padding: 5px 11px;
  border-radius: 999px;
  z-index: 2;
}

.job-image {
  height: 170px;
  border-radius: 0;
  background: #dfe6ef;
  background-image: url("assets/images/job-collage.png");
  background-size: 200% 200%;
  background-repeat: no-repeat;
}

.job-image-1 { background-position: 0% 0%; }
.job-image-2 { background-position: 100% 0%; }
.job-image-3 { background-position: 0% 100%; }
.job-image-4 { background-position: 100% 100%; }

.job-card ul {
  list-style: none;
  padding: 0 18px;
  margin: 2px 0 0;
  color: var(--muted);
  display: grid;
  gap: 7px;
}

.job-card ul li::before {
  content: "•";
  color: var(--primary);
  margin-right: 8px;
}

.job-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding: 14px 16px 16px;
}

.job-card h3 {
  margin: 20px 18px 8px;
  font-size: 20px;
  line-height: 1.2;
}

.job-card ul li {
  font-size: 18px;
  line-height: 1.4;
}

.job-actions button {
  flex: 1;
  min-height: 36px;
  font-size: 14px;
}

button.ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.visa {
  background: #ffffff;
}

.visa .subtitle {
  color: var(--muted);
  max-width: 860px;
  margin: 0 auto 32px;
}

.steps {
  display: grid;
  gap: 20px;
  text-align: left;
}

.step {
  background: var(--bg);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: start;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  display: grid;
  place-items: center;
}

.map {
  background: var(--bg);
}

.map .section-inner {
  max-width: 1240px;
  padding: 58px 24px 26px;
}

.map h2 {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.2vw, 40px);
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #2a313a;
}

.map .section-inner > p {
  margin: 0;
  font-size: clamp(14px, 1.2vw, 22px);
  color: #3f4752;
}

.map-embed {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 28px;
}

.map-embed iframe {
  width: 100%;
  min-height: 360px;
  border: none;
}

.site-footer {
  background: var(--bg);
  padding: 0 18px 44px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 34px;
  background: #f4f5f7;
  border-radius: 26px;
  padding: 44px 48px 46px;
}

.footer-block h4 {
  margin: 0 0 24px;
  font-size: clamp(18px, 1.4vw, 26px);
  line-height: 1.1;
  letter-spacing: 0.4px;
  color: #3f4650;
}

.footer-block p {
  margin: 0;
  max-width: 520px;
  font-size: clamp(14px, 1.05vw, 19px);
  line-height: 1.52;
  color: #525d69;
}

.footer-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-block ul li {
  position: relative;
  padding-left: 28px;
  font-size: clamp(14px, 1.05vw, 19px);
  line-height: 1.45;
  color: #4f5a67;
}

.footer-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1e9bd5;
}

.footer-block a {
  color: #3f4955;
}

@media (max-width: 1200px) {
  .job-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 24px 34px;
  }

  .map .section-inner {
    padding: 40px 18px 20px;
  }
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 28, 38, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 20;
}

.modal.open {
  display: flex;
}

.modal-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  width: min(480px, 100%);
  position: relative;
  display: grid;
  gap: 12px;
  max-height: 90vh;
  overflow: auto;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 24px 16px 28px;
    gap: 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 6.8vw, 42px);
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .top-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 14px 4px;
    min-height: auto;
  }

  .logo-wrap {
    width: 160px;
    height: 50px;
    margin: 0 auto;
    overflow: visible;
  }

  .logo {
    width: 156px;
    margin-top: 0;
  }

  .top-actions {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.3px;
  }

  .phone {
    line-height: 1.2;
    text-align: left;
    word-break: break-word;
  }

  .social-links {
    gap: 8px;
  }

  .icon-button {
    width: 34px;
    height: 34px;
  }

  .icon-button svg {
    width: 17px;
    height: 17px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 16px;
    padding: 6px 14px 12px;
    font-size: 15px;
  }

  .main-nav a,
  .main-nav .nav-button {
    white-space: nowrap;
  }

  .job-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .apply-form {
    padding: 16px;
    border-radius: 14px;
  }

  .section-inner {
    padding: 42px 16px;
  }

  .popular-jobs .section-inner {
    padding: 42px 16px 48px;
  }

  .job-card {
    min-height: 470px;
  }

  .map-embed iframe {
    min-height: 290px;
  }
}

@media (max-width: 600px) {
  .hero-copy h1 {
    font-size: clamp(26px, 9vw, 34px);
  }

  .hero-copy p {
    font-size: 14px;
  }

  .top-actions {
    font-size: 10px;
  }

  .main-nav {
    font-size: 14px;
    gap: 10px 14px;
  }

  .job-actions {
    flex-direction: column;
  }
}
