@media (max-width: 1120px) {
  .site-header nav {
    gap: 22px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
    gap: 38px;
    padding-inline: 42px;
  }

  .position-section {
    grid-template-columns: 1fr 1fr;
  }

  .position-copy {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 32px, 760px);
    --header-height: 76px;
  }

  .header-shell {
    min-height: var(--header-height);
  }

  .brand {
    width: clamp(176px, 27vw, 205px);
    height: 64px;
  }

  .brand img {
    max-height: 54px;
  }

  .nav-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    display: grid;
    margin-left: auto;
    padding: 0;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.025);
    color: var(--ink);
    cursor: pointer;
  }

  .nav-toggle-icon,
  .nav-toggle-icon::before,
  .nav-toggle-icon::after {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 2px;
    background: currentColor;
  }

  .nav-toggle-icon {
    position: relative;
  }

  .nav-toggle-icon::before,
  .nav-toggle-icon::after {
    position: absolute;
    left: 0;
    content: "";
  }

  .nav-toggle-icon::before {
    top: -6px;
  }

  .nav-toggle-icon::after {
    top: 6px;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon {
    background: transparent;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .site-header nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(7, 18, 31, 0.98);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.42);
  }

  .site-header nav.is-open {
    display: flex;
  }

  .site-header nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 13px;
    border-radius: 10px;
  }

  .site-header nav a:hover {
    background: rgba(21, 151, 245, 0.08);
  }

  .contact-link {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .hero-scroll {
    min-height: auto;
  }

  .hero {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 32px;
    padding: 48px 38px 38px;
  }

  .hero::after {
    display: none;
  }

  .hero-copy {
    max-width: 680px;
  }

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

  .about-hero {
    min-height: auto;
  }

  .about-visual {
    min-height: 380px;
  }

  .quick-section {
    grid-template-columns: 1fr;
  }

  .quick-section article {
    min-height: auto;
  }

  .quick-section article + article {
    border-top: 1px solid var(--soft-line);
    border-left: 0;
  }

  .employer-section,
  .method-section,
  .process-section,
  .position-section,
  .faq-section {
    padding-top: 112px;
  }

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

  .employer-grid article {
    min-height: auto;
  }

  .employer-grid h3 {
    margin-top: 32px;
  }

  .split-heading,
  .method-content,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 10px;
  }

  .method-content {
    gap: 44px;
    padding: 42px;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid article:nth-child(3) {
    border-left: 0;
  }

  .process-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--soft-line);
  }

  .outcome-bar {
    grid-template-columns: 1fr;
    gap: 9px;
    padding-block: 22px;
  }

  .outcome-bar > span {
    transform: rotate(90deg);
  }

  .cta-section {
    gap: 32px;
    margin-top: 112px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 38px;
  }

  .footer-shell > a {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .brand {
    width: 52px;
  }

  .brand img {
    width: 52px;
    height: 52px;
    max-height: 52px;
  }

  .language-switch button {
    width: 36px;
    height: 34px;
  }

  .hero {
    min-height: auto;
    padding: 38px 22px 26px;
    border-radius: 28px;
  }

  .hero h1 {
    font-size: clamp(45px, 13vw, 58px);
  }

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

  .button-row,
  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 470px;
    border-radius: 24px;
  }

  .about-visual {
    min-height: 340px;
    padding: 34px 24px;
  }

  .about-visual::before {
    width: 230px;
    height: 230px;
  }

  .about-visual img {
    width: 150px;
    height: 150px;
  }

  .world-stage {
    left: 50%;
    width: min(280px, 82%);
  }

  .stage-endpoint-labels {
    top: 15px;
    right: 16px;
    left: 16px;
    font-size: 10px;
  }

  .stage-endpoint-labels span:last-child {
    max-width: 145px;
  }

  .stage-nl {
    top: 76px;
    width: 150px;
  }

  .company-drawing {
    right: 1%;
    bottom: 30px;
    width: 47%;
  }

  .journey-route {
    right: 18px;
    left: 18px;
  }

  .worker-mover {
    width: 42px;
    height: 68px;
  }

  .quick-section article,
  .employer-grid article {
    padding-inline: 25px;
  }

  h2 {
    font-size: clamp(36px, 10vw, 50px);
  }

  .method-feature {
    border-radius: 25px;
  }

  .method-media,
  .method-media > img {
    min-height: 400px;
    height: 400px;
  }

  .visual-badge.passive {
    top: 18px;
    left: 18px;
  }

  .visual-badge.qualified {
    right: 18px;
    bottom: 18px;
  }

  .method-content {
    padding: 30px 22px;
  }

  .qualification-tab {
    min-height: 76px;
  }

  .process-grid,
  .position-section {
    grid-template-columns: 1fr;
  }

  .process-grid article,
  .process-grid article + article {
    padding: 30px 0;
    border-top: 1px solid var(--soft-line);
    border-left: 0;
  }

  .process-grid article:first-child {
    border-top: 0;
  }

  .comparison,
  .cta-section {
    padding: 30px 24px;
  }

  .faq-item summary {
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 16px;
    padding: 23px 0;
    font-size: 17px;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
  }

  .faq-item > p {
    margin-right: 0;
  }

  .cta-section {
    border-radius: 28px;
  }
}

@media (max-width: 390px) {
  .brand {
    width: 46px;
  }

  .brand img {
    width: 46px;
    height: 46px;
    max-height: 46px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .language-switch {
    padding: 3px;
  }

  .language-switch button {
    width: 31px;
    height: 31px;
  }
}
