:root {
  --navy: #0d2b45;
  --navy-soft: #123750;
  --management: #14537a;
  --action: #1f7db5;
  --action-dark: #155f8c;
  --royal: #2d77c7;
  --recruit: #2d77c7;
  --recruit-dark: #14537a;
  --recruit-pale: #eaf5fc;
  --sky: #5db7e8;
  --sky-light: #a9d9f5;
  --ice: #eaf5fc;
  --blue-gray: #6f92ae;
  --white: #ffffff;
  --ink: #15324b;
  --muted: #566c7e;
  --line: #d7e3ec;
  --line-strong: #bfd0dd;
  --shadow: 0 24px 58px rgba(13, 43, 69, 0.12);
  --shadow-soft: 0 12px 30px rgba(13, 43, 69, 0.075);
  --radius: 12px;
  --container: 1200px;
  --header-height: 80px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background: var(--white);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

figure {
  margin: 0;
}

a {
  color: inherit;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(2.8rem, 5.1vw, 4.6rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 3.55vw, 3.55rem);
}

h3 {
  letter-spacing: -0.018em;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--sky);
}

.hero :focus-visible,
.recruitment-price :focus-visible,
.final-cta :focus-visible,
.site-footer :focus-visible,
.mobile-menu-backdrop:focus-visible {
  outline-color: var(--white);
}

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

.section {
  padding-block: 92px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 16px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--management);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 3px;
  flex: 0 0 auto;
  background: var(--sky);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.eyebrow--light {
  color: #b9d9eb;
}

.eyebrow--recruitment {
  color: var(--recruit-dark);
}

.section-lead {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: clamp(64px, 8vw, 108px);
  align-items: start;
}

.section-heading--split h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading--split > p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

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

.button--compact {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.91rem;
}

.button--primary {
  color: var(--white);
  background: var(--action);
}

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

.button--secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line-strong);
}

.button--secondary:hover {
  border-color: var(--management);
}

.button--recruit {
  color: var(--white);
  background: var(--action);
}

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

.button--on-dark {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
}

.button--on-dark:hover {
  color: var(--white);
  background: transparent;
}

.button--ghost-on-dark {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.48);
}

.button--ghost-on-dark:hover {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.button--full {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.985);
  border-bottom: 1px solid rgba(215, 227, 236, 0.9);
  box-shadow: 0 5px 20px rgba(13, 43, 69, 0.035);
}

.header-inner {
  display: flex;
  height: 100%;
  min-width: 0;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
  flex: 0 1 auto;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.brand-mark img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-copy small {
  max-width: 210px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.25;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 29px);
  margin-left: auto;
}

.desktop-nav a,
.header-login {
  position: relative;
  color: #324f65;
  font-size: 0.91rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--action);
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 17px;
}

.header-login:hover {
  color: var(--action-dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 11px;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 5px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle span {
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.mobile-menu-drawer {
  display: none;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  background: rgba(5, 24, 39, 0.58);
  border: 0;
  cursor: pointer;
}

.mobile-menu-panel {
  position: relative;
  width: min(88vw, 390px);
  height: 100%;
  margin-left: auto;
  padding: 28px;
  overflow-y: auto;
  color: var(--ink);
  background: var(--white);
  box-shadow: -18px 0 48px rgba(5, 24, 39, 0.2);
}

.mobile-menu-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu-head > div {
  display: grid;
  gap: 3px;
}

.mobile-menu-head strong {
  color: var(--navy);
  font-size: 1.2rem;
}

.mobile-menu-head span {
  color: var(--muted);
  font-size: 0.88rem;
}

.menu-close {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
}

.menu-close span {
  position: absolute;
  top: 19px;
  left: 10px;
  width: 20px;
  height: 2px;
  background: var(--navy);
}

.menu-close span:first-child {
  transform: rotate(45deg);
}

.menu-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav {
  display: grid;
  padding-block: 22px;
}

.mobile-nav a {
  padding: 14px 2px;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
}

.mobile-menu-actions {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

/* Hero */
.hero {
  position: relative;
  overflow: clip;
  color: var(--white);
  background: var(--navy);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.hero::before {
  display: none;
}

.hero::after {
  top: 68px;
  right: -96px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(169, 217, 245, 0.18);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(370px, 470px);
  justify-content: space-between;
  gap: clamp(36px, 4.5vw, 60px);
  align-items: center;
  min-height: 660px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding-block: 74px 70px;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.85rem, 3.9vw, 3.55rem);
  line-height: 1.03;
  text-wrap: balance;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 28px;
  color: #d5e4ee;
  font-size: clamp(1.04rem, 1.35vw, 1.17rem);
  line-height: 1.6;
}

.hero-offer {
  margin: 0 0 30px;
}

.hero-offer p {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin: 0;
  color: #d5e4ee;
  font-weight: 600;
}

.hero-offer strong {
  color: var(--sky-light);
  font-size: clamp(2.3rem, 3.4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.hero-offer p > span {
  padding-bottom: 3px;
  font-size: 0.96rem;
}

.hero-offer small {
  display: block;
  margin-top: 11px;
  color: #c4dbe8;
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}

.hero-secondary-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 8px 3px;
  color: var(--white);
  font-weight: 700;
  text-decoration-color: rgba(255, 255, 255, 0.52);
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.hero-secondary-link:hover {
  text-decoration-color: var(--sky);
}

.hero-recruit-link {
  max-width: 610px;
  margin-top: 18px;
  color: #b9cedb;
  font-size: 0.88rem;
  line-height: 1.5;
}

.hero-recruit-link a {
  color: var(--white);
  font-weight: 600;
  text-underline-offset: 4px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 22px 0 0;
  padding: 17px 0 0;
  color: #c8dce8;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 600;
  list-style: none;
}

.hero-proof li {
  position: relative;
  padding-left: 17px;
}

.hero-proof li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--sky);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.hero-portrait {
  position: relative;
  align-self: center;
  min-width: 0;
  height: 510px;
  margin: 42px 0;
  overflow: hidden;
  background: var(--management);
  border: 1px solid rgba(169, 217, 245, 0.34);
  border-radius: 14px;
  box-shadow: 0 30px 68px rgba(4, 28, 46, 0.24);
}

.hero-portrait::before,
.hero-portrait::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-portrait::before {
  top: 42px;
  right: -48px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(169, 217, 245, 0.28);
}

.hero-portrait::after {
  top: 118px;
  right: 15px;
  width: 286px;
  height: 286px;
  background: rgba(93, 183, 232, 0.14);
}

.hero-portrait > img {
  position: absolute;
  z-index: 2;
  right: -6px;
  bottom: 0;
  width: auto;
  max-width: none;
  height: 510px;
  object-fit: contain;
  filter: drop-shadow(-14px 12px 20px rgba(4, 28, 46, 0.2));
}

.metrics-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 30px;
  padding: 22px 28px 24px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.metrics-source {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 0;
}

.metrics > div {
  min-width: 0;
  padding-inline: 20px;
  border-left: 1px solid var(--line);
}

.metrics > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.metrics > div:last-child {
  padding-right: 0;
}

.metrics dt {
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}

.metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Solutions */
.solutions {
  padding-top: 96px;
  background: var(--white);
}

.solutions-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(13, 43, 69, 0.08);
}

.solution-block {
  min-width: 0;
  padding: 50px 52px 46px;
  background: var(--white);
  border-left: 0;
}

.solution-block:first-child {
  border-left: 0;
}

.solution-block--management {
  color: var(--white);
  background: var(--navy);
}

.solution-block--recruitment {
  background: var(--ice);
  border: 1px solid var(--line);
  border-left: 0;
}

.solution-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto auto 1fr auto;
  align-items: start;
  min-height: 360px;
}

.service-label {
  grid-column: 1 / -1;
  margin-bottom: 13px;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-label--management {
  color: var(--sky-light);
}

.service-label--recruitment {
  color: var(--recruit-dark);
}

.solution-content h3 {
  max-width: 500px;
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 2.4vw, 2.3rem);
  text-wrap: balance;
}

.solution-block--management h3 {
  color: var(--white);
}

.solution-content > p:not(.service-label) {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.solution-block--management .solution-content > p:not(.service-label) {
  color: #c7dbe7;
}

.solution-facts {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.solution-facts > div {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 18px;
  padding-block: 3px 14px;
  border-bottom: 1px solid var(--line);
}

.solution-block--management .solution-facts > div {
  border-color: rgba(255, 255, 255, 0.16);
}

.solution-facts dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.solution-block--management .solution-facts dt {
  color: #9fbbcc;
}

.solution-facts dd {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}

.solution-block--management .solution-facts dd {
  color: var(--white);
}

.solution-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: var(--management);
  font-weight: 700;
  text-decoration: none;
}

.solution-link span {
  font-size: 1.2rem;
  transition: transform 160ms ease;
}

.solution-link:hover span {
  transform: translateX(4px);
}

.solution-block--management .solution-link {
  color: var(--white);
}

.solutions-note {
  max-width: 840px;
  margin: 28px 0 0;
  padding-left: 18px;
  color: var(--muted);
  border-left: 3px solid var(--sky);
  font-size: 0.94rem;
}

.solutions-note strong {
  color: var(--navy);
}

/* Management */
.management {
  background: linear-gradient(180deg, #f5faff 0%, var(--ice) 100%);
}

.management-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px clamp(36px, 5vw, 68px);
  align-items: center;
}

.management-intro {
  position: static;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 40px;
  align-items: center;
}

.management-intro h2 {
  max-width: 650px;
  margin-bottom: 0;
}

.management-intro .section-lead {
  margin-bottom: 0;
}

.section-visual {
  position: relative;
  overflow: hidden;
  min-width: 0;
  width: 100%;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: none;
}

.section-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: inherit;
  content: "";
}

.section-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.section-visual--management img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.section-visual--management {
  box-shadow: 0 22px 48px rgba(13, 43, 69, 0.12);
}

.benefit-list {
  padding: 4px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(13, 43, 69, 0.07);
}

.benefit-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding-block: 23px;
  border-bottom: 1px solid var(--line);
}

.benefit-list article:last-child {
  border-bottom: 0;
}

.benefit-list article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--management);
  background: var(--ice);
  border: 1px solid var(--sky-light);
  border-radius: 7px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.benefit-list h3 {
  margin-bottom: 7px;
  font-size: 1.24rem;
}

.benefit-list p {
  max-width: 560px;
  color: var(--muted);
}

.process {
  margin-top: 52px;
  padding: 52px 56px 38px;
  color: var(--white);
  background: var(--navy);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 22px 48px rgba(13, 43, 69, 0.12);
}

.process-heading {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 42px;
}

.process-heading .eyebrow {
  margin-bottom: 10px;
  color: var(--sky-light);
}

.process-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3rem);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  min-width: 0;
  padding: 0 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list li:first-child {
  padding-left: 0;
  border-left: 0;
}

.process-list li:last-child {
  padding-right: 0;
}

.process-list li > span {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--navy);
  background: var(--sky-light);
  border-radius: 7px;
  font-size: 0.86rem;
  font-weight: 700;
}

.process-list h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.16rem;
  line-height: 1.3;
}

.process-list p {
  color: #bfd3df;
  font-size: 0.93rem;
}

.compliance-note {
  margin: 28px 0 0;
  padding-top: 20px;
  color: #a9c1d0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.91rem;
}

.compliance-note strong {
  color: var(--white);
}

/* Recruitment */
.recruitment {
  background: var(--white);
}

.recruitment-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.recruitment-main {
  padding-block: 0;
}

.recruitment-main h2 {
  max-width: 650px;
}

.recruitment-main .section-lead {
  margin-bottom: 32px;
}

.recruitment-aside {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--recruit-dark);
  box-shadow: 0 22px 48px rgba(13, 43, 69, 0.13);
}

.section-visual--recruitment {
  border: 0;
  border-radius: 0;
}

.section-visual--recruitment img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.recruitment-aside .recruitment-price {
  margin: 0;
  padding: 32px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.recruitment-aside .recruitment-price::before {
  display: none;
}

.recruitment-aside .recruitment-price ul {
  gap: 7px;
  margin: 22px 0;
  padding-block: 20px;
}

.recruitment-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.recruitment-steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 20px;
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}

.recruitment-steps li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--recruit);
  background: var(--ice);
  border: 1px solid var(--sky-light);
  border-radius: 7px;
  font-size: 0.86rem;
  font-weight: 700;
}

.recruitment-steps h3 {
  margin-bottom: 7px;
  font-size: 1.16rem;
}

.recruitment-steps p {
  color: var(--muted);
}

.triage-note {
  margin-top: 32px;
  padding: 23px 25px;
  background: var(--ice);
  border-left: 4px solid var(--recruit);
  border-radius: 0 8px 8px 0;
}

.triage-note h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
}

.triage-note p {
  color: var(--muted);
}

.recruitment-price {
  position: relative;
  align-self: start;
  overflow: hidden;
  padding: 44px 42px 38px;
  color: var(--ice);
  background: var(--recruit-dark);
  border: 1px solid rgba(169, 217, 245, 0.3);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.recruitment-price::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--sky);
  content: "";
}

.price-label {
  margin-bottom: 8px;
  color: var(--sky-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recruitment-price h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.55rem, 4vw, 3.65rem);
  letter-spacing: -0.055em;
}

.recruitment-price h3 span {
  display: block;
  margin-top: 6px;
  color: #c9e7f7;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0;
}

.recruitment-price > p:not(.price-label):not(.campaign-disclaimer) {
  color: #d8ecf7;
}

.recruitment-price ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 30px;
  padding: 26px 0 26px 20px;
  color: var(--ice);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.recruitment-price .button--recruit {
  color: var(--recruit-dark);
  background: var(--white);
}

.recruitment-price .button--recruit:hover {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
}

.campaign-disclaimer {
  margin-top: 27px;
  color: #c9e3f2;
  font-size: 0.77rem;
  line-height: 1.6;
}

/* Pricing and FAQ */
.pricing-faq {
  background: linear-gradient(180deg, var(--ice) 0%, #f8fbfd 100%);
}

.pricing-heading {
  margin-bottom: 48px;
}

.pricing-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  gap: 24px;
  align-items: stretch;
}

.common-features {
  display: block;
  margin: 0;
  padding: 44px 46px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.common-features h3 {
  margin: 0 26px 28px 0;
  font-size: 1.45rem;
  line-height: 1.35;
}

.common-features ul {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.common-features li {
  position: relative;
  padding: 13px 10px 13px 28px;
  border-top: 1px solid var(--line);
}

.common-features li::before {
  position: absolute;
  top: 1.25em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--sky);
  border-radius: 50%;
  content: "";
}

.single-price {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-content: start;
  padding: 44px 46px;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
  border: 1px solid rgba(169, 217, 245, 0.24);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.single-price::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--sky);
  content: "";
}

.single-price .price-label {
  margin-bottom: 10px;
  color: var(--sky-light);
}

.single-price-main h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3.1rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.single-price-main h3 span {
  font-size: 1.2rem;
  letter-spacing: 0;
}

.single-price-unit {
  margin: 9px 0 14px;
  color: var(--sky-light);
  font-size: 1rem;
  font-weight: 700;
}

.single-price-main > p:last-child,
.single-price-action p {
  margin: 0;
  color: #bfd1dc;
  font-size: 0.9rem;
  line-height: 1.55;
}

.single-price-conditions {
  display: grid;
  margin: 28px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.17);
  border-inline: 0;
}

.single-price-conditions > div {
  display: grid;
  gap: 4px;
  padding: 18px 0;
}

.single-price-conditions > div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.single-price-conditions span {
  color: #9fbbcc;
  font-size: 0.87rem;
}

.single-price-conditions strong {
  color: var(--white);
  font-size: 1.02rem;
}

.single-price-action {
  display: grid;
  gap: 14px;
}

.single-price .button--primary {
  background: var(--action);
}

.single-price .button--primary:hover {
  background: var(--white);
  color: var(--navy);
}

.faq {
  margin-top: 64px;
  padding-top: 0;
  border-top: 0;
}

.faq-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.faq-heading > p:last-child {
  max-width: 680px;
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.faq-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.faq-columns > section {
  min-width: 0;
  padding: 34px 36px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.faq-columns > section > h3 {
  margin-bottom: 6px;
  padding-bottom: 20px;
  color: var(--management);
  border-bottom: 2px solid var(--management);
  font-size: 1.28rem;
}

.faq-columns > section:last-child > h3 {
  color: var(--recruit);
  border-color: var(--recruit);
}

.faq details {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.faq details:first-of-type {
  border-top: 0;
}

.faq summary {
  position: relative;
  padding: 20px 44px 20px 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
  transition: color 160ms ease;
}

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

.faq summary::before,
.faq summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 16px;
  height: 2px;
  background: var(--management);
  content: "";
  transition: transform 160ms ease;
}

.faq summary::after {
  transform: rotate(90deg);
}

.faq details[open] summary::after {
  transform: rotate(0deg);
}

.faq summary:hover,
.faq details[open] summary {
  color: var(--action-dark);
}

.faq details p {
  max-width: 660px;
  margin-bottom: 0;
  padding: 0 44px 23px 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* Final CTA and footer */
.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 78px 44px;
  color: var(--white);
  background: var(--navy);
}

.final-cta::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--sky);
  content: "";
  pointer-events: none;
}

.final-cta > .container {
  position: relative;
  z-index: 1;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.67fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: center;
  padding: 48px 50px;
  background: var(--navy-soft);
  border: 1px solid rgba(169, 217, 245, 0.2);
  border-radius: 14px;
  box-shadow: 0 24px 54px rgba(4, 28, 46, 0.18);
}

.final-cta h2 {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--white);
}

.final-cta-grid > div:first-child > p:last-child {
  max-width: 650px;
  color: #c7d9e4;
  font-size: 1.08rem;
}

.final-actions {
  display: grid;
  gap: 13px;
  min-width: 0;
  padding: 26px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
}

.final-actions-label {
  margin-bottom: 2px;
  color: var(--sky-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.25fr 0.75fr;
  gap: 34px;
  margin-top: 28px;
  padding: 26px 30px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  font-style: normal;
}

.contact-strip > div {
  display: grid;
  min-width: 0;
  gap: 10px;
}

.contact-strip > div > .contact-label {
  color: #9fbbcc;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-strip a {
  color: var(--white);
  font-weight: 600;
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
}

.contact-channel-link {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.contact-channel-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 9px;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.contact-channel-icon svg {
  width: 22px;
  height: 22px;
}

.contact-channel-text {
  min-width: 0;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-channel-link:hover .contact-channel-icon {
  background: var(--action);
  border-color: var(--sky);
  transform: translateY(-2px);
}

.social-icon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.social-icon-link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 9px;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.social-icon-link:hover {
  background: var(--action);
  border-color: var(--sky);
  transform: translateY(-2px);
}

.social-icon-link svg {
  display: block;
  width: 22px;
  height: 22px;
}

/* Commercial lead form and direct support */
.whatsapp-float {
  position: fixed;
  z-index: 180;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: grid;
  width: 56px;
  height: 56px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--white);
  background: var(--action);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(13, 43, 69, 0.28);
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.whatsapp-float:hover {
  background: var(--navy);
  transform: translateY(-2px);
}

.whatsapp-float svg {
  flex: 0 0 24px;
}

.lead-modal {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  padding: 20px;
  place-items: center;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(4, 25, 42, 0.72);
  border: 0;
  cursor: default;
}

.lead-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  max-height: calc(100dvh - 40px);
  padding: 40px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 28px 80px rgba(4, 25, 42, 0.32);
}

.lead-dialog h2 {
  max-width: 570px;
  margin-bottom: 13px;
  padding-right: 34px;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
}

.lead-dialog h2 span {
  color: var(--action-dark);
}

.lead-dialog #lead-intro {
  max-width: 580px;
  margin-bottom: 27px;
  color: var(--muted);
}

.lead-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  padding: 0;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
}

.lead-close span {
  position: absolute;
  top: 19px;
  left: 10px;
  width: 20px;
  height: 2px;
  background: var(--navy);
}

.lead-close span:first-child {
  transform: rotate(45deg);
}

.lead-close span:last-child {
  transform: rotate(-45deg);
}

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

.lead-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 700;
}

.field--wide {
  grid-column: 1 / -1;
}

.field input,
.field select {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 400;
  outline: 0;
}

.field input::placeholder {
  color: var(--muted);
}

.field input:focus,
.field select:focus {
  border-color: var(--action);
  box-shadow: 0 0 0 3px rgba(93, 183, 232, 0.3);
}

.consent-field {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--action);
}

.consent-field a,
.lead-whatsapp-fallback {
  color: var(--action-dark);
  font-weight: 700;
  text-underline-offset: 3px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-wrap {
  min-height: 65px;
}

.turnstile-wrap[hidden] {
  min-height: 0;
}

.form-status {
  min-height: 0;
  margin: 0;
  color: #a02b2b;
  font-size: 0.86rem;
  font-weight: 600;
}

.form-status:empty {
  display: none;
}

.lead-whatsapp-fallback {
  justify-self: center;
  font-size: 0.82rem;
  text-align: center;
}

.lead-success {
  max-width: 540px;
  padding-block: 28px 18px;
}

.lead-success .success-mark {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--white);
  background: var(--action);
  border-radius: 50%;
  font-size: 1.55rem;
  font-weight: 700;
}

.lead-success > p:not(.eyebrow) {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1.04rem;
}

.lead-success strong {
  color: var(--navy);
}

.site-footer {
  padding-block: 44px 26px;
  color: #d4e1e9;
  background: #081f32;
  border-top: 1px solid rgba(169, 217, 245, 0.22);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

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

.footer-mark {
  display: grid;
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  place-items: center;
}

.footer-mark img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 1.12rem;
}

.footer-brand p {
  margin: 0;
  color: #b5c9d6;
  font-size: 0.84rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 25px;
}

.footer-links a {
  color: var(--white);
  font-size: 0.87rem;
  font-weight: 600;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 38px;
  padding-top: 25px;
  color: #90aabd;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1120px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu-drawer:not([hidden]) {
    position: fixed;
    z-index: 300;
    inset: 0;
    display: flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 5vw, 3.45rem);
  }

  .hero-portrait {
    height: 485px;
  }

  .hero-portrait > img {
    height: 485px;
  }

  .recruitment-shell {
    padding: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .section {
    padding-block: 76px;
  }

  .section-heading--split,
  .hero-grid,
  .management-grid,
  .recruitment-shell,
  .final-cta-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-heading--split {
    gap: 24px;
    align-items: start;
  }

  .hero-grid {
    position: relative;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    min-height: 0;
    padding-block: 0;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-grid::before {
    display: none;
  }

  .hero-copy {
    position: relative;
    z-index: 1;
    max-width: 740px;
    padding: 58px 0 46px;
  }

  .hero-portrait {
    z-index: 1;
    width: min(100%, 620px);
    height: 370px;
    justify-self: center;
    margin: 0 0 34px;
  }

  .hero-portrait::before {
    top: 28px;
    right: 50%;
    width: 340px;
    height: 340px;
    transform: translateX(58%);
  }

  .hero-portrait::after {
    display: none;
  }

  .hero-portrait > img {
    right: 50%;
    height: 370px;
    transform: translateX(50%);
  }

  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 0;
  }

  .metrics-wrap {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 20px;
  }

  .metrics > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .solutions-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .solution-block,
  .solution-block:first-child,
  .solution-block:last-child {
    padding: 36px;
    border-left: 0;
  }

  .solution-block + .solution-block {
    border-top: 1px solid var(--line);
  }

  .solution-content {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .solution-facts {
    margin-top: 25px;
  }

  .management-grid {
    gap: 30px;
  }

  .management-intro {
    position: static;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .section-visual--management {
    max-width: 620px;
    justify-self: center;
  }

  .process-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

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

  .process-list li {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .process-list li > span {
    margin-bottom: 0;
  }

  .recruitment-shell {
    gap: 36px;
  }

  .recruitment-aside {
    width: 100%;
    max-width: 610px;
    justify-self: center;
  }

  .recruitment-price {
    max-width: 610px;
  }

  .common-features {
    grid-template-columns: minmax(0, 1fr);
    gap: 23px;
  }

  .pricing-stage {
    grid-template-columns: minmax(0, 1fr);
  }

  .single-price {
    grid-template-columns: minmax(0, 1fr);
  }

  .single-price-action {
    grid-column: auto;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
  }

  .final-actions {
    width: min(100%, 430px);
  }

  .final-cta-grid {
    gap: 28px;
    padding: 40px;
  }

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

  .social-links {
    grid-column: 1 / -1;
  }
}

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

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .section {
    padding-block: 68px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .hero-grid {
    gap: 0;
    padding-block: 0;
  }

  .hero-copy {
    padding: 48px 0 38px;
  }

  .hero-proof {
    display: grid;
    gap: 9px;
  }

  .hero-actions {
    display: grid;
    justify-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-secondary-link {
    justify-self: start;
  }

  .hero-portrait {
    height: 350px;
  }

  .hero-portrait::before {
    top: 24px;
    width: 320px;
    height: 320px;
  }

  .hero-portrait > img {
    height: 350px;
  }

  .metrics-wrap {
    grid-template-columns: minmax(0, 1fr);
    gap: 15px;
    padding: 24px 22px;
  }

  .metrics > div {
    padding-inline: 18px;
  }

  .metrics dt {
    font-size: 1.15rem;
  }

  .metrics dd {
    font-size: 0.79rem;
  }

  .solution-block {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding-block: 42px;
  }

  .solution-facts > div {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .solutions-note {
    margin-left: 0;
  }

  .benefit-list article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
  }

  .benefit-list {
    padding-inline: 20px;
  }

  .process {
    width: 100%;
    margin-top: 74px;
    padding: 40px 26px 28px;
    border-radius: 10px;
  }

  .recruitment-shell {
    width: 100%;
    padding: 0;
  }

  .recruitment-price {
    padding: 34px 25px;
  }

  .common-features {
    padding: 28px 24px;
  }

  .common-features ul,
  .faq-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .single-price {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    padding: 30px 24px;
  }

  .single-price-conditions {
    border-block: 1px solid var(--line);
    border-inline: 0;
  }

  .single-price-conditions > div {
    padding-inline: 0;
  }

  .single-price-action {
    grid-column: auto;
    grid-template-columns: minmax(0, 1fr);
  }

  .faq {
    margin-top: 68px;
    padding-top: 56px;
  }

  .faq-columns {
    gap: 54px;
  }

  .faq-columns > section {
    padding: 24px 22px 14px;
  }

  .final-cta {
    padding-block: 60px 32px;
  }

  .final-cta-grid {
    padding: 34px 24px;
  }

  .final-actions {
    width: 100%;
    padding: 20px;
  }

  .contact-strip {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 24px;
  }

  .social-links {
    grid-column: auto;
  }

  .footer-grid,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    min-height: 54px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .lead-modal {
    padding: 10px;
  }

  .lead-dialog {
    max-height: calc(100dvh - 20px);
    padding: 34px 24px 27px;
  }

  .lead-fields {
    grid-template-columns: minmax(0, 1fr);
  }

  .field--wide {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .brand-mark img {
    width: 47px;
    height: 47px;
  }

  .mobile-menu-panel {
    width: 92vw;
    padding: 23px;
  }

  .hero h1 {
    font-size: 2.23rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-offer p {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .hero-offer p > span {
    padding-bottom: 0;
  }

  .hero-grid::before,
  .hero-portrait {
    height: 320px;
  }

  .hero-portrait::before {
    top: 20px;
    width: 290px;
    height: 290px;
  }

  .hero-portrait > img {
    height: 320px;
  }

  .metrics-wrap {
    padding-inline: 17px;
  }

  .metrics > div {
    padding-inline: 12px;
  }

  .solution-content > p:not(.service-label),
  .section-lead {
    font-size: 1rem;
  }

  .process {
    padding-inline: 17px;
  }

  .recruitment-shell {
    padding-inline: 17px;
  }

  .recruitment-steps li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .recruitment-price {
    padding-inline: 21px;
  }

  .common-features {
    padding-inline: 20px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .lead-dialog {
    padding-inline: 18px;
  }

  .lead-dialog h2 {
    padding-right: 24px;
    font-size: 1.8rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.legal-page {
  max-width: 880px;
  padding-block: clamp(56px, 8vw, 96px);
}

.legal-page h1 {
  margin: 10px 0 28px;
  color: var(--ink, #0d2b45);
  font-size: clamp(2.3rem, 6vw, 4rem);
  line-height: 1.05;
}

.legal-page h2 {
  margin: 34px 0 10px;
  color: var(--ink, #0d2b45);
  font-size: 1.35rem;
}

.legal-page p {
  max-width: 72ch;
  color: var(--muted, #4e6475);
  font-size: 1.05rem;
  line-height: 1.75;
}
