@charset "UTF-8";

:root {
  --navy: #062e56;
  --navy-deep: #04284c;
  --blue: #0778d4;
  --blue-dark: #035fae;
  --cyan: #35c5ff;
  --gold: #f2b84b;
  --line: #2b82cc;
  --text: #0a2d59;
  --muted: #4e6075;
  --bg: #eef4fa;
  --card: #ffffff;
  --shadow: 0 8px 20px rgba(11, 39, 74, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

button,
input,
textarea {
  font: inherit;
}

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

.site-shell {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--bg);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: clamp(680px, 50vw, 780px);
  color: #ffffff;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  z-index: -3;
  background-image: url("assets/hero-fishing.jpg");
  background-size: cover;
  background-position: 50% 48%;
}

.hero__shade {
  z-index: -2;
  background:
    radial-gradient(circle at 68% 40%, rgba(53, 197, 255, 0.12), transparent 26%),
    linear-gradient(90deg, rgba(2, 24, 48, 0.98) 0%, rgba(3, 35, 66, 0.88) 30%, rgba(3, 42, 78, 0.46) 62%, rgba(3, 39, 73, 0.26) 100%),
    linear-gradient(180deg, rgba(2, 23, 45, 0.68) 0%, rgba(2, 31, 58, 0.12) 38%, rgba(3, 25, 48, 0.58) 100%);
}

.site-header {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(250px, 310px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  width: min(100% - 64px, 1480px);
  margin: 0 auto;
  padding: 21px 0 0;
}

.logo {
  display: inline-flex;
  max-width: 310px;
  min-width: 0;
  align-items: center;
  gap: 13px;
  color: #ffffff;
  line-height: 1;
}

.logo span {
  min-width: 0;
}

.logo__mark {
  width: 54px;
  height: 54px;
  padding: 7px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.logo strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  max-width: 220px;
  font-size: clamp(18px, 1.45vw, 23px);
  letter-spacing: 1px;
  line-height: 1.05;
}

.logo strong .no-wrap,
.logo strong abbr {
  white-space: nowrap;
}

.logo small {
  display: block;
  margin-top: 5px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 5px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 7px 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: #ffffff;
  opacity: 0;
  transform: scaleX(0.5);
  transition: 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.main-nav .nav-apply {
  display: none;
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.lang__btn {
  display: inline-flex;
  min-width: 36px;
  height: 28px;
  padding: 0 8px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.lang__btn.is-active,
.lang__btn:hover {
  color: var(--text);
  background: #ffffff;
}

.flag {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  overflow: hidden;
  border: 1px solid rgba(2, 28, 56, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.flag--ru {
  background: linear-gradient(to bottom, #ffffff 0 33.33%, #1d5fbf 33.33% 66.66%, #d42b32 66.66%);
}

.flag--en {
  background:
    linear-gradient(33deg, transparent 42%, #ffffff 42% 48%, #c8102e 48% 54%, #ffffff 54% 60%, transparent 60%),
    linear-gradient(147deg, transparent 42%, #ffffff 42% 48%, #c8102e 48% 54%, #ffffff 54% 60%, transparent 60%),
    linear-gradient(to bottom, transparent 38%, #ffffff 38% 44%, #c8102e 44% 56%, #ffffff 56% 62%, transparent 62%),
    linear-gradient(to right, transparent 36%, #ffffff 36% 42%, #c8102e 42% 58%, #ffffff 58% 64%, transparent 64%),
    #012169;
}

.flag--zh {
  background: #de2910;
}

.flag--zh::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;
  width: 6px;
  height: 6px;
  background: #ffde00;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 82, 156, 0.28);
}

.btn::after {
  content: "→";
  font-size: 15px;
  line-height: 1;
}

.btn--outline {
  min-width: 190px;
  padding: 0 24px;
  color: #ffffff;
  background: rgba(2, 102, 177, 0.72);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 12px 28px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px);
}

.btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 14px 30px rgba(7, 120, 212, 0.25);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #0b8dec, var(--blue-dark));
}

.btn--ghost {
  color: var(--blue);
  background: #ffffff;
  border-color: rgba(7, 120, 212, 0.32);
  box-shadow: 0 10px 24px rgba(7, 66, 122, 0.08);
}

.btn--soft {
  min-height: 42px;
  padding: 0 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
}

.btn--glass {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn--small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 11.5px;
}

.hero__content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 386px;
  gap: 70px;
  align-items: center;
  width: min(100% - 72px, 1480px);
  min-height: calc(clamp(680px, 50vw, 780px) - 92px);
  margin: 0 auto;
  padding: 42px 0 66px;
}

.hero__copy {
  max-width: 760px;
  padding-top: 28px;
}

.hero h1 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.hero__lead {
  max-width: 690px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 650;
  line-height: 1.48;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

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

.hero-points li {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions .btn {
  min-height: 50px;
  padding: 0 24px;
  font-size: 12px;
}

.point-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.point-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lead-form {
  width: 100%;
  padding: 34px 32px 28px;
  color: var(--text);
  background: rgba(246, 250, 253, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.lead-form h2,
.modal h2 {
  margin: 0 0 12px;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.form-badge {
  display: table;
  margin: -2px auto 14px;
  padding: 7px 12px;
  color: var(--blue-dark);
  background: rgba(7, 120, 212, 0.1);
  border: 1px solid rgba(7, 120, 212, 0.18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.lead-form p {
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.lead-form input,
.lead-form select,
.lead-form textarea,
.modal input,
.modal select,
.modal textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 0 16px;
  color: #253b56;
  background: #ffffff;
  border: 1px solid #c8d1da;
  border-radius: 8px;
  outline: none;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.lead-form input,
.lead-form select,
.modal input,
.modal select {
  height: 48px;
}

.lead-form select,
.modal select {
  cursor: pointer;
}

.lead-form textarea,
.modal textarea {
  min-height: 112px;
  padding-top: 14px;
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.lead-form .btn,
.modal__dialog--form .btn {
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
}

.lead-form .btn:disabled,
.modal__dialog--form .btn:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-info {
  color: #0a3766;
  background: rgba(7, 120, 212, 0.1);
  border: 1px solid rgba(7, 120, 212, 0.18);
}

.form-status.is-success {
  color: #0f5132;
  background: #d8f3df;
  border: 1px solid #9ed9ad;
}

.form-status.is-error {
  color: #842029;
  background: #f8d7da;
  border: 1px solid #f1aeb5;
}

.lead-form small {
  display: block;
  margin-top: 16px;
  color: #667080;
  font-size: 10px;
  line-height: 1.35;
  text-align: center;
}

.lead-form a {
  color: var(--blue);
  text-decoration: underline;
}

.hero-wave {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 2;
  height: 70px;
  color: var(--bg);
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-wave path {
  fill: currentColor;
}

.scroll-cue {
  position: fixed;
  right: 28px;
  bottom: 108px;
  z-index: 34;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  animation: scrollCue 1.8s ease-in-out infinite;
}

.scroll-cue span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.scroll-cue svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes scrollCue {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.section {
  padding: 58px 44px;
}

.section-heading {
  margin-bottom: 32px;
  text-align: center;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  display: block;
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #8ed2ff;
}

.section-heading h2::after {
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 43px;
  height: 2px;
  content: "";
  background: var(--line);
  transform: translateX(-50%);
}

.section-heading--light {
  color: #ffffff;
}

.section-heading--light h2::after {
  background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 1480px);
  margin: 0 auto;
}

.service-card {
  min-height: 171px;
  padding: 18px 10px 14px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(11, 39, 74, 0.16);
}

.service-icon {
  display: block;
  width: 58px;
  height: 58px;
  margin: 0 auto 10px;
  fill: none;
  stroke: #006fc9;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  min-height: 40px;
  margin: 0 0 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: #41556c;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.stats {
  padding: 72px max(44px, calc((100vw - 1400px) / 2));
  color: var(--text);
  background:
    linear-gradient(180deg, #ffffff 0%, #eef6fd 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 1200px);
  margin: 34px auto 0;
}

.stat-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  column-gap: 16px;
  min-height: 132px;
  padding: 24px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(7, 120, 212, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(7, 42, 76, 0.09);
  backdrop-filter: blur(12px);
}

.stat-item svg {
  grid-row: span 2;
  width: 56px;
  height: 56px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-item strong {
  font-size: 31px;
  font-weight: 900;
  line-height: 1;
}

.stat-item strong span {
  font-size: 20px;
  text-transform: uppercase;
}

.stat-item p {
  margin: 7px 0 0;
  color: #536980;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.stats .section-heading--light {
  color: var(--text);
}

.stats .section-heading--light h2::after {
  background: var(--line);
}

.help {
  padding-top: 26px;
  padding-bottom: 14px;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  width: min(100%, 1360px);
  margin: 0 auto;
}

.help-card {
  display: grid;
  grid-template-columns: 44% 1fr;
  overflow: hidden;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.help-card img {
  width: 100%;
  height: 100%;
  min-height: 153px;
  object-fit: cover;
}

.help-card__body {
  padding: 25px 32px 20px;
}

.help-card h3,
.vacancy-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.help-card p {
  margin: 18px 0 18px;
  color: #263a52;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.card-actions,
.vacancy-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.card-actions {
  flex-wrap: nowrap;
}

.card-actions .btn {
  flex: 0 0 auto;
}

.vacancy-actions {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 8px;
  width: 100%;
  margin-top: auto;
}

.vacancy-actions .link-btn {
  white-space: nowrap;
}

.vacancies {
  position: relative;
  padding-top: 76px;
  padding-bottom: 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(53, 197, 255, 0.22), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(242, 184, 75, 0.18), transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, #e7f1fa 100%);
}

.vacancy-board {
  position: relative;
  width: min(100%, 1480px);
  margin: 0 auto 26px;
  padding: 20px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(4, 40, 76, 0.98), rgba(6, 72, 122, 0.94)),
    #062e56;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: 0 34px 80px rgba(3, 33, 67, 0.24);
}

.vacancy-board::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.08), transparent 34%),
    radial-gradient(circle at 78% 16%, rgba(53, 197, 255, 0.2), transparent 30%);
  pointer-events: none;
}

.vacancy-board__hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 178px;
  margin-bottom: 18px;
  padding: 30px;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(3, 24, 48, 0.92), rgba(3, 45, 82, 0.55)),
    url("assets/hero-fishing.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 14px;
}

.vacancy-board__hero h3 {
  max-width: 760px;
  margin: 8px 0 10px;
  font-size: clamp(29px, 3.4vw, 50px);
  font-weight: 950;
  line-height: 1.02;
  text-transform: uppercase;
}

.vacancy-board__hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.vacancy-board__label {
  color: #69e8ff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.vacancies-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin: 0;
  counter-reset: vacancy;
}

.vacancy-conditions {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin: 0 0 16px;
}

.vacancy-conditions span {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(105, 232, 255, 0.22);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.vacancy-card {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
  border-radius: 12px;
  border: 1px solid rgba(105, 232, 255, 0.16);
  box-shadow: 0 16px 34px rgba(0, 12, 30, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  counter-increment: vacancy;
}

.vacancy-card::before {
  position: absolute;
  top: 14px;
  right: 14px;
  color: rgba(7, 120, 212, 0.12);
  content: counter(vacancy, decimal-leading-zero);
  font-size: 32px;
  font-weight: 950;
  line-height: 1;
}

.vacancy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(7, 42, 76, 0.16);
}

.vacancy-card img {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 152px;
  object-fit: cover;
}

.vacancy-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  height: 100%;
  padding: 18px 18px 16px;
}

.vacancy-card h3 {
  max-width: calc(100% - 42px);
  font-size: 15px;
  min-height: 36px;
}

.ship-type {
  margin: 8px 0 12px;
  color: #28435e;
  font-size: 12px;
  font-weight: 700;
}

.salary {
  display: block;
  margin-top: auto;
  color: #063864;
  font-size: 23px;
  font-weight: 950;
  line-height: 1;
}

.vacancy-card small {
  display: block;
  margin-top: 8px;
  color: #64758a;
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1.25;
}

.vacancy-card ul {
  display: grid;
  gap: 6px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  color: #405872;
  font-size: 11px;
  font-weight: 700;
}

.vacancy-card li {
  position: relative;
  padding-left: 17px;
}

.vacancy-card li::before {
  position: absolute;
  left: 0;
  color: var(--blue);
  content: "▣";
  font-size: 10px;
}

.link-btn {
  display: inline-flex;
  min-width: 0;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--blue);
  background: #ffffff;
  border: 1px solid rgba(7, 120, 212, 0.34);
  border-radius: 999px;
  cursor: pointer;
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 0.1px;
  box-shadow: 0 8px 18px rgba(7, 42, 76, 0.08);
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.link-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 13px 24px rgba(7, 82, 146, 0.18);
}

.link-btn--apply {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-color: transparent;
}

.btn--more {
  display: flex;
  width: 190px;
  min-height: 42px;
  margin: 0 auto;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-color: transparent;
  font-size: 11px;
  box-shadow: 0 12px 26px rgba(7, 42, 76, 0.08);
}

.footer {
  padding: 35px max(72px, calc((100vw - 1400px) / 2)) 18px;
  color: #ffffff;
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr 1.1fr;
  gap: 72px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo--footer .logo__mark {
  width: 44px;
  height: 44px;
  padding: 6px;
}

.logo--footer strong {
  font-size: 21px;
}

.logo--footer small {
  font-size: 8px;
  letter-spacing: 4px;
}

.footer-about {
  max-width: 260px;
  margin: 16px 0 13px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.socials {
  display: flex;
  gap: 10px;
}

.footer .socials a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #ffffff;
  font-size: 0;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.footer .socials a:hover {
  border-color: rgba(255, 255, 255, 0.44);
  transform: translateY(-2px);
}

.social-link--facebook {
  background: #4267b2;
}

.social-link--vk {
  background: #2787f5;
}

.social-link--instagram {
  background:
    radial-gradient(circle at 30% 108%, #fdf497 0 18%, #fd5949 42%, transparent 43%),
    linear-gradient(135deg, #405de6 0%, #833ab4 35%, #e1306c 62%, #f77737 100%);
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer h3 {
  margin: 0 0 11px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer a,
.footer p {
  display: block;
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.footer p a {
  display: inline;
  font-size: inherit;
}

.btn--footer {
  min-height: 36px;
  margin-top: 8px;
  padding: 0 18px;
  font-size: 11px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 700;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
}

.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 21, 41, 0.62);
  backdrop-filter: blur(4px);
}

.modal__dialog {
  position: relative;
  width: min(100%, 460px);
  padding: 31px 32px 30px;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.modal__dialog p {
  margin: 0 0 22px;
  color: #2c4158;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.modal__dialog .btn:not(.modal__close) {
  display: flex;
  min-width: 180px;
  padding: 0 22px;
  margin: 0 auto;
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  padding: 0;
  color: #8b98a6;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.modal__dialog--form p {
  margin-bottom: 17px;
  font-size: 14px;
}

.modal--policy {
  z-index: 40;
}

.modal__dialog--policy {
  width: min(100%, 920px);
  max-height: min(86vh, 780px);
  overflow: auto;
  padding: 36px 42px;
  border-radius: 18px;
}

.modal__dialog--policy h2 {
  margin-bottom: 24px;
}

.policy-body {
  color: #2c4158;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.65;
}

.policy-body h3 {
  margin: 22px 0 8px;
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.policy-body p {
  margin: 0 0 12px;
  text-align: left;
}

.policy-body ul {
  padding-left: 20px;
  margin: 0 0 12px;
}

.policy-body li {
  margin-bottom: 7px;
}

.policy-body a {
  color: var(--blue);
  text-decoration: underline;
}

.policy-note {
  margin-top: 20px !important;
  padding: 14px 16px;
  background: #eef6ff;
  border: 1px solid rgba(7, 120, 212, 0.18);
  border-radius: 10px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  max-width: 340px;
  padding: 14px 18px;
  color: #ffffff;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: 0.22s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 35;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  width: min(680px, calc(100vw - 44px));
  padding: 20px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(7, 120, 212, 0.16);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(3, 28, 54, 0.22);
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 7px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.cookie-banner p {
  margin: 0;
  color: #485d74;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-banner .btn {
  min-height: 42px;
  padding: 0 22px;
  font-size: 12px;
}

.cookie-link {
  min-height: 42px;
  padding: 0 14px;
  color: var(--blue);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.privacy-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 0%, rgba(53, 197, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #062e56 0%, #eef4fa 38%, #eef4fa 100%);
}

.privacy-page__wrap {
  width: min(100% - 40px, 980px);
  padding: 34px 0 70px;
  margin: 0 auto;
}

.privacy-page__logo {
  margin-bottom: 34px;
}

.privacy-page__card {
  padding: clamp(28px, 5vw, 56px);
  background: #ffffff;
  border: 1px solid rgba(7, 120, 212, 0.12);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(3, 28, 54, 0.18);
}

.privacy-page__card h1 {
  margin: 10px 0 24px;
  color: var(--text);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.privacy-page__card h2 {
  margin: 28px 0 10px;
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.privacy-page__card p,
.privacy-page__card li {
  color: #354b63;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.privacy-page__card a:not(.btn) {
  color: var(--blue);
  text-decoration: underline;
}

.privacy-page__back {
  width: fit-content;
  min-width: 210px;
  margin-top: 24px;
}

.trust-bar {
  position: relative;
  z-index: 3;
  padding: 0 44px;
  margin-top: -34px;
}

main {
  display: flex;
  flex-direction: column;
}

.trust-bar {
  order: 1;
}

.premium-split {
  order: 2;
}

.help {
  order: 3;
}

.services {
  order: 4;
}

.process {
  order: 5;
}

.cases {
  order: 6;
}

.stats {
  order: 7;
}

.vacancies {
  order: 9;
}

.dark-feature {
  order: 10;
}

.testimonials,
.quality {
  order: 11;
  display: none;
}

.faq {
  order: 12;
}

.final-cta {
  order: 13;
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 1220px);
  margin: 0 auto;
  overflow: hidden;
  color: #ffffff;
  background: rgba(3, 38, 72, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(5, 34, 66, 0.22);
  backdrop-filter: blur(14px);
}

.trust-bar__inner div {
  min-height: 96px;
  padding: 22px 26px;
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-bar__inner div:last-child {
  border-right: 0;
}

.trust-bar strong {
  display: block;
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.trust-bar span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.premium-split {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1.08fr);
  gap: 56px;
  width: min(100% - 88px, 1360px);
  margin: 34px auto 66px;
  align-items: center;
}

.premium-split__image {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(6, 39, 73, 0.22);
}

.premium-split__image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  transform: scale(1.05);
}

.floating-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(78%, 330px);
  padding: 18px 20px;
  color: #ffffff;
  background: rgba(3, 42, 78, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.floating-note strong {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
  font-weight: 900;
}

.floating-note span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.premium-split__content h2,
.dark-feature h2,
.final-cta h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.premium-split__content > p {
  margin: 22px 0 28px;
  color: #3b5069;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 4px 16px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(8, 112, 189, 0.12);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(7, 42, 76, 0.08);
}

.feature-list span {
  grid-row: span 2;
  color: rgba(8, 112, 189, 0.28);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.feature-list strong {
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-list p {
  margin: 0;
  color: #52667d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

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

.mini-checks li {
  position: relative;
  display: flex;
  min-height: 54px;
  min-width: 0;
  align-items: center;
  padding: 10px 10px 10px 27px;
  color: #344b65;
  background: #f1f7fc;
  border-radius: 6px;
  overflow-wrap: normal;
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1.18;
}

.mini-checks li::before {
  position: absolute;
  top: 10px;
  left: 9px;
  color: var(--blue);
  content: "✓";
  font-weight: 900;
}

.process {
  background: #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 1400px);
  margin: 0 auto;
}

.process-grid article {
  position: relative;
  min-height: 214px;
  padding: 28px 22px 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f4f8fc);
  border: 1px solid rgba(8, 112, 189, 0.14);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(8, 38, 70, 0.09);
}

.process-grid span {
  display: block;
  margin-bottom: 30px;
  color: rgba(8, 112, 189, 0.23);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.process-grid h3,
.quality-grid h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.process-grid p,
.quality-grid p {
  margin: 0;
  color: #4b5f77;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.cases {
  background:
    linear-gradient(180deg, #eef6fd 0%, #ffffff 100%);
}

.cases-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
  width: min(100%, 1400px);
  margin: 0 auto;
}

.case-card {
  position: relative;
  min-height: 260px;
  padding: 30px;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(4, 45, 84, 0.95), rgba(5, 91, 150, 0.84)),
    url("assets/help-seafarers.jpg") center / cover;
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(6, 39, 73, 0.18);
}

.case-card::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.case-card--wide {
  background:
    linear-gradient(145deg, rgba(3, 35, 67, 0.95), rgba(7, 120, 212, 0.62)),
    url("assets/help-owners.jpg") center / cover;
}

.case-tag {
  display: inline-flex;
  margin-bottom: 46px;
  padding: 7px 12px;
  color: #dff4ff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-card h3 {
  max-width: 520px;
  margin: 0 0 14px;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.case-card p {
  max-width: 520px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.dark-feature {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(480px, 1.14fr);
  gap: 48px;
  align-items: center;
  padding: 88px max(44px, calc((100vw - 1400px) / 2));
  color: #ffffff;
  background:
    radial-gradient(circle at 76% 24%, rgba(53, 197, 255, 0.28), transparent 30%),
    radial-gradient(circle at 12% 80%, rgba(242, 184, 75, 0.13), transparent 26%),
    linear-gradient(135deg, #04294d 0%, #05223f 55%, #02192f 100%);
}

.dark-feature h2,
.final-cta h2 {
  color: #ffffff;
}

.dark-feature p,
.final-cta p {
  max-width: 660px;
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

.map-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(141, 213, 255, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 52% 52%, rgba(53, 197, 255, 0.32), transparent 8%),
    radial-gradient(circle at 74% 68%, rgba(242, 184, 75, 0.2), transparent 10%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0 2px, transparent 3px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, auto, 34px 34px, 52px 52px, 52px 52px;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.26), 0 30px 80px rgba(0, 0, 0, 0.22);
}

.map-card::before,
.map-card::after {
  position: absolute;
  inset: 60px 72px;
  content: "";
  border: 1px solid rgba(142, 210, 255, 0.35);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.map-card::after {
  inset: 110px 35px;
  transform: rotate(17deg);
}

.map-dot {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  padding: 8px 11px;
  background: rgba(4, 43, 78, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.map-dot::before {
  width: 10px;
  height: 10px;
  content: "";
  background: #38bdf8;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(56, 189, 248, 0.15);
}

.map-dot--one {
  left: 13%;
  bottom: 28%;
}

.map-dot--two {
  left: 34%;
  top: 30%;
}

.map-dot--three {
  left: 56%;
  top: 47%;
}

.map-dot--four {
  right: 13%;
  bottom: 32%;
}

.map-dot--five {
  left: 46%;
  bottom: 21%;
}

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

.quality-grid article {
  position: relative;
  min-height: 190px;
  padding: 26px 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 255, 0.98));
  border: 1px solid rgba(8, 112, 189, 0.12);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(7, 42, 76, 0.08);
}

.quality {
  background: #ffffff;
}

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

.quality-grid article {
  min-height: 174px;
  background: linear-gradient(180deg, #ffffff, #f4f8fc);
}

.testimonials {
  background: #ffffff;
}

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

.testimonials-grid article {
  position: relative;
  min-height: 230px;
  padding: 34px 30px 28px;
  background: linear-gradient(180deg, #f8fcff, #ffffff);
  border: 1px solid rgba(7, 120, 212, 0.13);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 42, 76, 0.1);
}

.testimonials-grid article::before {
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(7, 120, 212, 0.14);
  content: "“";
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 1;
}

.testimonials-grid p {
  position: relative;
  margin: 0 0 26px;
  color: #304760;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.58;
}

.testimonials-grid strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.testimonials-grid span {
  display: block;
  margin-top: 5px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 1160px);
  margin: 0 auto;
}

.faq details {
  padding: 0;
  background: #ffffff;
  border: 1px solid rgba(8, 112, 189, 0.14);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(7, 42, 76, 0.08);
}

.faq summary {
  cursor: pointer;
  padding: 21px 24px;
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
  list-style: none;
  text-transform: uppercase;
}

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

.faq summary::after {
  float: right;
  color: var(--blue);
  content: "+";
  font-size: 22px;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 0;
  padding: 0 24px 22px;
  color: #485d74;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.final-cta {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 52px;
  min-height: 430px;
  padding: 78px max(44px, calc((100vw - 1400px) / 2));
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 18%, rgba(53, 197, 255, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(2, 31, 58, 0.98) 0%, rgba(3, 47, 84, 0.94) 46%, rgba(4, 88, 139, 0.72) 100%),
    url("assets/hero-fishing.jpg") center 47% / cover;
}

.final-cta::before {
  position: absolute;
  inset: 24px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.final-cta__copy {
  max-width: 900px;
}

.final-cta__panel {
  padding: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.final-cta__panel strong {
  display: block;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.final-cta__panel > span {
  display: block;
  margin: 12px 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.final-cta__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.final-cta .btn {
  width: 100%;
  min-height: 52px;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-ready {
    opacity: 0;
    transform: translateY(22px);
    transition:
      opacity 0.55s ease,
      transform 0.55s ease;
  }

  .reveal-ready.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1320px) {
  .site-header {
    grid-template-columns: minmax(210px, 250px) minmax(0, 1fr) auto;
    gap: 14px;
  }

  .logo strong {
    max-width: 175px;
    font-size: 19px;
  }

  .logo small {
    letter-spacing: 4px;
  }

  .main-nav {
    gap: 13px;
    font-size: 10.5px;
  }

  .header-actions {
    gap: 12px;
  }

  .btn--outline {
    min-width: 165px;
    padding: 0 18px;
  }
}

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

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

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

  .case-card--wide {
    grid-column: 1 / -1;
  }

}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: minmax(205px, 235px) minmax(0, 1fr) auto;
    gap: 16px;
  }

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

  .btn--outline {
    min-width: 170px;
    padding: 0 18px;
  }

  .hero__content {
    gap: 38px;
  }

  .stats {
    padding-right: 52px;
    padding-left: 52px;
  }

  .stats-grid {
    gap: 26px;
  }

  .footer {
    padding-right: 52px;
    padding-left: 52px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    left: 0;
    display: grid;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: rgba(3, 37, 70, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    backdrop-filter: blur(18px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .site-header.is-menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    padding: 13px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    justify-content: flex-end;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
  }

  .main-nav .nav-apply {
    display: inline-flex;
    width: 100%;
    margin-top: 4px;
  }

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

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

  .premium-split,
  .dark-feature {
    grid-template-columns: 1fr;
  }

  .premium-split {
    width: min(100% - 48px, 760px);
  }

  .dark-feature,
  .final-cta {
    padding-right: 24px;
    padding-left: 24px;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta__panel {
    width: min(100%, 520px);
  }

  .map-card {
    min-height: 300px;
  }

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

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

  .stats-grid,
  .vacancies-grid,
  .vacancy-conditions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .hero {
    min-height: auto;
  }

  .site-header,
  .hero__content {
    width: min(100% - 32px, 760px);
  }

  .site-header {
    display: grid;
    gap: 12px;
  }

  .main-nav {
    overflow: visible;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero__content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 42px;
  }

  .hero__copy {
    max-width: none;
  }

  .lead-form {
    width: min(100%, 430px);
  }

  .vacancy-board {
    padding: 14px;
    border-radius: 16px;
  }

  .vacancy-board__hero {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .vacancy-board__hero .btn {
    width: fit-content;
  }

  .section,
  .stats,
  .footer {
    padding-right: 24px;
    padding-left: 24px;
  }

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

  .stats-grid {
    gap: 26px;
  }

  .trust-bar {
    padding-right: 24px;
    padding-left: 24px;
  }

  .scroll-cue {
    right: 18px;
    bottom: 96px;
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 640px) {
  .logo strong {
    font-size: 21px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(31px, 9vw, 36px);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .logo small {
    letter-spacing: 3px;
  }

  .header-actions {
    width: auto;
    justify-content: flex-end;
  }

  .header-actions .btn--outline {
    display: none;
  }

  .btn--outline {
    min-width: 160px;
  }

  .hero__content {
    padding-bottom: 82px;
  }

  .services-grid,
  .stats-grid,
  .vacancies-grid,
  .vacancy-conditions,
  .trust-bar__inner,
  .process-grid,
  .cases-grid,
  .quality-grid,
  .testimonials-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .premium-split {
    width: min(100% - 32px, 560px);
    margin-top: 26px;
  }

  .premium-split__image,
  .premium-split__image img {
    min-height: 320px;
  }

  .floating-note {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .help-card,
  .vacancy-card {
    grid-template-columns: 1fr;
  }

  .help-card {
    border-radius: 18px;
  }

  .help-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .help-card__body {
    padding: 22px 20px 24px;
    background: #ffffff;
  }

  .help-card p {
    font-size: 14px;
  }

  .vacancy-card img {
    max-height: 210px;
  }

  .mini-checks,
  .card-actions,
  .vacancy-actions {
    grid-template-columns: 1fr;
  }

  .card-actions {
    flex-wrap: wrap;
  }

  .final-cta {
    align-items: flex-start;
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .stat-item {
    grid-template-columns: 62px 1fr;
  }

  .stat-item svg {
    width: 62px;
    height: 62px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer {
    padding-top: 34px;
    padding-bottom: 22px;
  }

  .footer-grid {
    gap: 22px;
  }

  .footer-grid > div {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer-grid > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer-about {
    max-width: none;
  }

  .footer a,
  .footer p {
    font-size: 13px;
    line-height: 1.45;
  }

  .btn--footer {
    width: 100%;
    min-height: 44px;
  }

  .footer-bottom {
    align-items: flex-start;
    gap: 10px;
  }

  .modal__dialog--policy {
    max-height: 88vh;
    padding: 30px 20px;
    border-radius: 16px;
  }

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
    width: calc(100vw - 28px);
    padding: 17px;
  }

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

  .privacy-page__wrap {
    width: min(100% - 28px, 560px);
    padding-top: 22px;
  }

  .privacy-page__logo {
    margin-bottom: 22px;
  }

  .privacy-page__card {
    padding: 24px;
    border-radius: 18px;
  }

  .privacy-page__card h1 {
    font-size: clamp(22px, 6.3vw, 28px);
    line-height: 1.08;
    overflow-wrap: normal;
  }

  .privacy-page__back {
    width: 100%;
    min-width: 0;
  }
}
