/* ===== TOKENS ===== */
:root {
  --navy: #253c7d;
  --gold: #eba522;
  --ink: #0f172a;
  --muted: #475569;
  --line: #e5e7eb;
  --bg: #ffffff;
  --soft: #f8fafc;
  --radius: 14px;

  --surface-dark: #0a1024;
  --surface-darker: #070d1e;

  --menu-bg: #0a1024;
  --menu-line: rgba(255, 255, 255, 0.1);
  --menu-text: rgba(255, 255, 255, 0.86);
  --menu-muted: rgba(255, 255, 255, 0.62);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

a:hover {
  text-decoration: underline;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
}

h1,
h2,
h3 {
  margin: 0 0 0.6rem;
  line-height: 1.15;
}

p {
  margin: 0.6rem 0;
}

small {
  color: var(--muted);
}

ul,
ol {
  margin: 0.6rem 0;
  padding-left: 1.1rem;
}

li {
  margin: 0.25rem 0;
}

:focus-visible {
  outline: 2px solid rgba(37, 60, 125, 0.35);
  outline-offset: 2px;
}

/* ===== LAYOUT ===== */
.wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

main section {
  padding: 54px 0;
}

main section.alt {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.grid,
.cols-2,
.cols-3 {
  display: grid;
  align-items: start;
}

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

.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

/* ===== PRIMITIVES ===== */
.card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.kicker {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.lead {
  max-width: 72ch;
  font-size: 1.06rem;
  color: var(--muted);
}

.note {
  padding: 10px 12px;
  border-left: 4px solid rgba(235, 165, 34, 0.7);
  border-radius: 10px;
  background: rgba(235, 165, 34, 0.08);
  color: var(--muted);
}

.fine {
  max-width: 85ch;
  font-size: 0.92rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.95;
  text-decoration: none;
}

.btn.primary {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.btn.ghost {
  color: var(--navy);
  background: transparent;
  border-color: var(--navy);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.92rem;
  font-weight: 600;
}

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

.tag {
  padding: 6px 9px;
  border: 1px solid rgba(37, 60, 125, 0.15);
  border-radius: 999px;
  background: rgba(37, 60, 125, 0.06);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

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

.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.logo-chip {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.outline-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 6px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px) saturate(140%);
  color: rgba(255, 255, 255, 0.86);
  transition: transform 0.18s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
  text-decoration: none;
  white-space: nowrap;
  margin-left: -18px;
}

.outline-cta:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.58);
  transform: translateY(-1px);
  text-decoration: none;
}

.outline-cta:active {
  transform: translateY(0);
}

.outline-cta__text {
  font-weight: 800;
  letter-spacing: 0.01em;
}

.outline-cta__arrow {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.outline-cta:hover .outline-cta__arrow {
  transform: translate(2px, -2px);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.pill-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 6px 7px 6px 18px;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease, background 0.22s ease, color 0.22s ease;
}

.pill-cta:active {
  transform: translateY(1px);
}

.pill-cta__dot {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.pill-cta--gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 22px 70px rgba(2, 6, 23, 0.35);
}

.pill-cta--gold .pill-cta__dot {
  border: 1px solid rgba(37, 60, 125, 0.12);
  background: #fff;
  color: var(--navy);
}

.pill-cta--gold:hover {
  filter: brightness(1.03);
}

.pill-cta--gold:hover .pill-cta__dot {
  transform: translateX(2px) rotate(12deg);
}

.pill-cta--navy {
  background: var(--navy);
  color: #fff;
}

.pill-cta--navy .pill-cta__dot {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.pill-cta--navy:hover {
  filter: brightness(1.03);
}

.pill-cta--navy:hover .pill-cta__dot {
  transform: translateX(2px) rotate(12deg);
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}

header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

header .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

header .brand img {
  width: 44px;
}

header .brand > div {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
}

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

header .lang {
  display: flex;
  align-items: center;
  gap: 8px;
}

header .lang button {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}

header .lang button[aria-pressed="true"] {
  border-color: rgba(37, 60, 125, 0.35);
  background: rgba(37, 60, 125, 0.06);
  color: var(--navy);
}

/* ===== MENU ===== */
.no-scroll {
  overflow: hidden;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  user-select: none;
  transition: background 0.22s ease, border-color 0.22s ease;
}

.menu-toggle:hover {
  border-color: rgba(37, 60, 125, 0.12);
  background: rgba(37, 60, 125, 0.06);
}

.menu-toggle__label {
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.menu-toggle__icon {
  display: grid;
  align-content: space-between;
  justify-items: end;
  width: 30px;
  height: 18px;
}

.menu-toggle__icon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 0.28s ease, width 0.28s ease, opacity 0.2s ease;
}

.menu-toggle__icon span:nth-child(1) {
  width: 70%;
}

.menu-toggle__icon span:nth-child(2) {
  width: 100%;
}

.menu-toggle__icon span:nth-child(3) {
  width: 85%;
}

.menu-open .menu-toggle__icon span:nth-child(1) {
  width: 100%;
  transform: translateY(8px) rotate(45deg);
}

.menu-open .menu-toggle__icon span:nth-child(2) {
  opacity: 0;
  transform: translateX(6px);
}

.menu-open .menu-toggle__icon span:nth-child(3) {
  width: 100%;
  transform: translateY(-8px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.menu-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.72);
  opacity: 0;
  transition: opacity 0.35s ease;
}

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

.menu-overlay.is-open::before {
  opacity: 1;
}

.menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(760px, 100%);
  height: 100%;
  padding: 18px 22px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 16, 36, 0.9);
  backdrop-filter: saturate(160%) blur(16px);
  color: var(--menu-text);
  opacity: 0;
  transform: translateX(26px);
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.35s ease;
}

.menu-overlay.is-open .menu-panel {
  opacity: 1;
  transform: translateX(0);
}

.menu-panel::before {
  content: "";
  position: absolute;
  inset: -70px;
  background:
    radial-gradient(980px 420px at 16% 22%, rgba(37, 60, 125, 0.26), transparent 62%),
    radial-gradient(760px 360px at 82% 62%, rgba(235, 165, 34, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.48), rgba(2, 6, 23, 0.88));
  opacity: 0.95;
  pointer-events: none;
  transform: translate3d(calc(var(--mx, 0) * 10px), calc(var(--my, 0) * 12px), 0);
  transition: transform 0.18s ease;
}

.menu-panel::after {
  content: "";
  position: absolute;
  inset: -60px;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 65% 55%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 80%, rgba(255, 255, 255, 0.07) 0 1px, transparent 2px);
  background-size: 170px 170px, 230px 230px, 260px 260px;
  mix-blend-mode: overlay;
  filter: blur(0.2px);
  opacity: 0.12;
  pointer-events: none;
}

.menu-panel > * {
  position: relative;
  z-index: 1;
}

.menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--menu-line);
}

.menu-top__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-top__brand img {
  width: 38px;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.35);
}

.menu-top__brandText {
  line-height: 1;
}

.menu-top__brandTitle {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.menu-top__brandSub {
  margin-top: 2px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.menu-close {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease, color 0.22s ease;
}

.menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  transform: rotate(90deg);
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
}

.menu-list li {
  margin: 0;
}

.menu-ctaRow {
  margin-top: 6px;
}

.menu-link {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.75rem, 4.8vw, 4rem);
  font-weight: 950;
  letter-spacing: 0.01em;
  line-height: 1.02;
  text-decoration: none;
}

.menu-link:hover {
  text-decoration: none;
}

.menu-fx {
  display: inline-flex;
  white-space: pre;
}

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

.charwrap {
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.14s ease, transform 0.22s ease;
}

.charwrap.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.char {
  display: inline-block;
  will-change: transform, opacity;
  transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.22s ease;
}

.char--hover {
  position: absolute;
  inset: 0;
  color: var(--gold);
  opacity: 0;
  transform: translateY(120%);
}

.menu-link:hover .char--base {
  opacity: 0;
  transform: translateY(-120%);
  transition-delay: calc(var(--i) * 12ms);
}

.menu-link:hover .char--hover {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--i) * 12ms);
}

.menu-footer {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--menu-line);
}

.menu-footer__title {
  color: var(--menu-muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-socials {
  display: grid;
  gap: 10px;
  max-width: 340px;
}

.menu-social {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-decoration: none;
}

.menu-social:hover {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.menu-social__arrow {
  display: inline-flex;
  justify-content: center;
  width: 18px;
  color: var(--gold);
  opacity: 0.7;
  transform: translateY(-1px);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-social:hover .menu-social__arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

.menu-direct {
  display: grid;
  gap: 6px;
  max-width: 520px;
}

.menu-direct__link {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  text-decoration: none;
}

.menu-direct__link:hover {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.modal.is-open {
  display: grid;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.62);
}

.modal__panel {
  position: relative;
  width: min(860px, calc(100% - 24px));
  margin: auto;
  padding: 18px 18px 16px;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 20px 70px rgba(2, 6, 23, 0.35);
  transform: translateY(12px);
  animation: modal-in 0.28s ease forwards;
}

@keyframes modal-in {
  to {
    transform: translateY(0);
  }
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.modal__close:hover {
  background: rgba(37, 60, 125, 0.06);
  color: var(--ink);
}

.modal__head {
  padding-right: 56px;
}

.modal__form {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

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

.modal__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.modal__fine {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.field {
  display: grid;
  gap: 6px;
}

.field__label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
}

.field__input {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  outline: none;
}

.field__input:focus {
  border-color: rgba(37, 60, 125, 0.35);
  box-shadow: 0 0 0 4px rgba(37, 60, 125, 0.1);
}

.field__textarea {
  min-height: 120px;
  resize: vertical;
}

/* ===== SPLASH ===== */
.splash {
  position: relative;
  height: 180vh;
  padding: 0;
  background: #0b1228;
}

.splash__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.splash__bg {
  position: absolute;
  inset: 0;
}

.splash__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 132%;
  object-fit: cover;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  filter: saturate(1.02) contrast(1.05);
}

.splash__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 700px at 18% 82%, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.18) 55%, rgba(2, 6, 23, 0.08) 70%, rgba(2, 6, 23, 0) 78%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.45));
}

.splash__grain {
  position: absolute;
  inset: -40px;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 40% 90%, rgba(255, 255, 255, 0.06) 0 1px, transparent 2px);
  background-size: 180px 180px, 220px 220px, 260px 260px;
  mix-blend-mode: overlay;
  filter: blur(0.2px);
  opacity: 0.18;
  pointer-events: none;
}

.splash__content {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.splash__layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: clamp(18px, 4vw, 46px);
  width: 100%;
  padding: 0; /* clamp(18px, 5vh, 56px) 0; */
}

.splash__right {
  display: none;
}

.splash__headline {
  display: grid;
  gap: 0;
}

.splash__line {
  color: rgba(255, 255, 255, 0.86);
  font-family: "Bebas Neue", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(56px, 8.6vw, 140px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 18px 60px rgba(2, 6, 23, 0.55);
}

.splash__line--accent {
  display: flex;
  align-items: flex-end;
  gap: clamp(14px, 2.4vw, 26px);
  color: rgba(235, 165, 34, 0.95);
}

.splash__micro {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: 0.01em;
  transform: translateY(-28px);
  text-shadow: 0 10px 30px rgba(2, 6, 23, 0.55);
}

/* ===== TEAM STRIP ===== */
.team-strip {
  position: relative;
  padding: clamp(26px, 4.2vw, 44px) 0;
  background: var(--surface-dark);
  overflow: hidden;
}

.team-strip::before {
  content: "";
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(900px 340px at 18% 40%, rgba(255, 255, 255, 0.1), transparent 60%),
    radial-gradient(760px 300px at 72% 50%, rgba(255, 255, 255, 0.06), transparent 62%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.55), rgba(2, 6, 23, 0.78));
  opacity: 0.95;
  pointer-events: none;
}

.team-strip::after {
  content: "";
  position: absolute;
  inset: -60px;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 65% 55%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 80%, rgba(255, 255, 255, 0.07) 0 1px, transparent 2px);
  background-size: 170px 170px, 230px 230px, 260px 260px;
  mix-blend-mode: overlay;
  filter: blur(0.2px);
  opacity: 0.18;
  pointer-events: none;
}

.team-strip__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(18px, 4vw, 46px);
}

.team-avatars {
  --avatar: 92px;
  --overlap: 18px;

  display: flex;
  align-items: center;
  height: var(--avatar);
  padding-left: 6px;
}

.team-avatars__item,
.team-avatars__more {
  width: var(--avatar);
  height: var(--avatar);
  margin-left: calc(var(--overlap) * -1);
  border-radius: 999px;
}

.team-avatars__item:first-child {
  margin-left: 0;
}

.team-avatars__item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.33);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.55);
}

.team-avatars__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.03) saturate(1.02);
}

.team-avatars__more {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px) saturate(140%);
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.45);
}

.team-avatars__more span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 34px;
  font-weight: 100;
  letter-spacing: 0.01em;
}

.team-strip__right {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.team-strip__text {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(14px, 1.28vw, 16px);
  line-height: 1.55;
  text-shadow: 0 12px 50px rgba(2, 6, 23, 0.5);
}

/* ===== HERO ===== */
.hero {
  padding: 34px 0 54px;
  background:
    radial-gradient(900px 280px at 22% 10%, rgba(235, 165, 34, 0.18), transparent 60%),
    radial-gradient(900px 280px at 78% 18%, rgba(37, 60, 125, 0.14), transparent 60%);
}

.hero .grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 3.2vw, 3.1rem);
}

.hero .cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  color: var(--muted);
}

/* ===== APPROACH ===== */
.approach-modern {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--surface-dark);
  color: rgba(255, 255, 255, 0.88);
  --appY: 0px;
  --mx: 0;
  --my: 0;
}

.approach-modern::before {
  content: "";
  position: absolute;
  inset: -70px;
  background:
    radial-gradient(980px 420px at 16% 22%, rgba(37, 60, 125, 0.24), transparent 62%),
    radial-gradient(760px 360px at 82% 62%, rgba(235, 165, 34, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.56), rgba(2, 6, 23, 0.9));
  opacity: 0.95;
  pointer-events: none;
  transform: translate3d(calc(var(--mx) * 8px), calc(var(--appY) + var(--my) * 10px), 0);
  transition: transform 0.18s ease;
}

.approach-modern::after {
  content: "";
  position: absolute;
  inset: -60px;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 65% 55%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 80%, rgba(255, 255, 255, 0.07) 0 1px, transparent 2px);
  background-size: 170px 170px, 230px 230px, 260px 260px;
  mix-blend-mode: overlay;
  filter: blur(0.2px);
  opacity: 0.13;
  pointer-events: none;
}

.approach-modern .kicker {
  color: rgba(255, 255, 255, 0.62);
}

.approach-modern__grid {
  position: relative;
  gap: clamp(18px, 4vw, 52px);
}

.approach-modern__title {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Bebas Neue", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(56px, 6.2vw, 110px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-shadow: 0 18px 60px rgba(2, 6, 23, 0.55);
}

.approach-modern__copy p {
  max-width: 80ch;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.62;
}

.approach-modern__right {
  position: sticky;
  top: 96px;
  align-self: start;
}

.approach-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 26px 90px rgba(2, 6, 23, 0.42);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1),
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
  will-change: transform;
}

.approach-modern.is-inview .approach-card {
  opacity: 1;
  transform: translateY(0);
}

.approach-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background:
    radial-gradient(420px 260px at 20% 20%, rgba(37, 60, 125, 0.22), transparent 60%),
    radial-gradient(420px 260px at 85% 70%, rgba(235, 165, 34, 0.12), transparent 62%);
  opacity: 0.78;
  pointer-events: none;
  transform: translate3d(calc(var(--mx) * 6px), calc(var(--my) * 8px), 0);
  transition: transform 0.18s ease, opacity 0.22s ease;
}

.approach-card__title {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.01em;
}

.approach-card__text {
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.62;
}

.approach-card__note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.56);
}

.approach-tags {
  gap: 10px;
  margin-top: 14px;
}

.approach-tags .tag {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.approach-tags .tag:hover {
  border-color: rgba(235, 165, 34, 0.35);
  background: rgba(235, 165, 34, 0.06);
}

.approach-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(360px, 100%);
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 22px 70px rgba(2, 6, 23, 0.35);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease 0.06s, transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1) 0.06s;
}

.approach-modern.is-inview .approach-badge {
  opacity: 1;
  transform: translateY(0);
}

.approach-badge__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(235, 165, 34, 0.9);
  box-shadow: 0 0 0 4px rgba(235, 165, 34, 0.16);
}

.approach-badge__text {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
  letter-spacing: 0.01em;
}

/* ===== SPECIALTIES ===== */
.specialties-modern {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--surface-dark);
  color: rgba(255, 255, 255, 0.88);
  --specY: 0px;
  --mx: 0;
  --my: 0;
}

.specialties-modern::before {
  content: "";
  position: absolute;
  inset: -70px;
  background:
    radial-gradient(980px 420px at 18% 26%, rgba(37, 60, 125, 0.26), transparent 62%),
    radial-gradient(760px 360px at 82% 62%, rgba(235, 165, 34, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.56), rgba(2, 6, 23, 0.9));
  opacity: 0.95;
  pointer-events: none;
  transform: translate3d(calc(var(--mx) * 8px), calc(var(--specY) + var(--my) * 10px), 0);
  transition: transform 0.18s ease;
}

.specialties-modern::after {
  content: "";
  position: absolute;
  inset: -60px;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 65% 55%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 80%, rgba(255, 255, 255, 0.07) 0 1px, transparent 2px);
  background-size: 170px 170px, 230px 230px, 260px 260px;
  mix-blend-mode: overlay;
  filter: blur(0.2px);
  opacity: 0.14;
  pointer-events: none;
}

.spec-modern__title {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Bebas Neue", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(56px, 6.2vw, 110px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-shadow: 0 18px 60px rgba(2, 6, 23, 0.55);
}

.spec-modern__lead {
  max-width: 80ch;
  color: rgba(255, 255, 255, 0.68);
}

.spec-cards {
  position: relative;
  gap: 14px;
}

.spec-card {
  position: relative;
  padding: 16px 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 26px 90px rgba(2, 6, 23, 0.42);
  opacity: 0;
  --float: 0px;
  --hoverLift: 0px;
  transform: translate3d(calc(var(--mx) * 2px), calc(var(--float) + 14px), 0);
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1),
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
  will-change: transform;
}

.specialties-modern.is-inview .spec-card {
  opacity: 1;
  transform: translate3d(calc(var(--mx) * 2px), calc(var(--float) + var(--hoverLift)), 0);
}

.spec-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background:
    radial-gradient(420px 260px at 20% 20%, rgba(37, 60, 125, 0.22), transparent 60%),
    radial-gradient(420px 260px at 85% 70%, rgba(235, 165, 34, 0.12), transparent 62%);
  opacity: 0.75;
  pointer-events: none;
  transform: translate3d(calc(var(--mx) * 6px), calc(var(--my) * 8px), 0);
  transition: transform 0.18s ease, opacity 0.22s ease;
}

.spec-card::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  height: 1px;
  background: linear-gradient(90deg, rgba(235, 165, 34, 0), rgba(235, 165, 34, 0.55), rgba(235, 165, 34, 0));
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.spec-card strong {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  font-weight: 950;
  letter-spacing: 0.01em;
}

.spec-card .lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(14px, 1.06vw, 16px);
  line-height: 1.55;
}

.spec-card:hover {
  --hoverLift: -6px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 110px rgba(2, 6, 23, 0.55);
}

.spec-card:hover::before {
  opacity: 0.92;
}

.spec-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SERVICES ===== */
.services-modern {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--surface-dark);
  color: rgba(255, 255, 255, 0.88);
}

.services-modern::before {
  content: "";
  position: absolute;
  inset: -50px;
  background:
    radial-gradient(900px 340px at 18% 30%, rgba(255, 255, 255, 0.08), transparent 60%),
    radial-gradient(720px 320px at 78% 60%, rgba(255, 255, 255, 0.05), transparent 62%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.55), rgba(2, 6, 23, 0.88));
  opacity: 0.95;
  pointer-events: none;
}

.services-modern .kicker {
  color: rgba(255, 255, 255, 0.62);
}

.services-modern__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
  gap: clamp(18px, 4vw, 52px);
}

.services-modern__title {
  margin-top: 10px;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  letter-spacing: 0.01em;
}

.services-modern__lead {
  max-width: 72ch;
  color: rgba(255, 255, 255, 0.68);
}

.svc-rows {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.svc-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 16px;
  padding: 18px 0;
}

.svc-row--divider {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.svc-row__title {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  font-weight: 900;
}

.svc-row__list {
  display: grid;
  gap: 0;
  max-width: 56ch;
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
}

.svc-row__list li {
  position: relative;
  padding-left: 14px;
}

.svc-row__list li::before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(255, 255, 255, 0.28);
}

.svc-row__right {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 10px;
  padding-top: 2px;
}

.svc-row__meta {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  font-weight: 700;
}

.svc-row__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px) saturate(140%);
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.22s ease, border-color 0.22s ease;
}

.svc-row__link:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
  text-decoration: none;
}

.svc-row__link:active {
  transform: translateY(0);
}

.services-modern__right {
  position: relative;
}

.svc-media {
  position: sticky;
  top: 90px;
  display: grid;
  place-items: center;
  width: min(480px, 100%);
  height: calc(100vh - 140px);
  margin-left: auto;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.services-modern.is-inview .svc-media {
  opacity: 1;
  transform: translateY(0);
}

.svc-photo {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 26px 90px rgba(2, 6, 23, 0.55);
  will-change: transform;
}

.svc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: rgba(255, 255, 255, 0.02);
}

.svc-photo--main {
  width: min(420px, 86%);
  aspect-ratio: 3 / 4;
}

.svc-photo--mini {
  width: min(170px, 34%);
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  box-shadow: 0 18px 70px rgba(2, 6, 23, 0.45);
}

.svc-photo--tr {
  top: 8%;
  right: -6%;
}

.svc-photo--bl {
  bottom: 5%;
  left: -4%;
}

.svc-media__glow {
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(420px 320px at 65% 35%, rgba(235, 165, 34, 0.16), transparent 60%),
    radial-gradient(520px 380px at 35% 70%, rgba(37, 60, 125, 0.14), transparent 62%);
  filter: blur(2px);
  opacity: 0.9;
  pointer-events: none;
}

.svc-media__grain {
  position: absolute;
  inset: -60px;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 65% 55%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 80%, rgba(255, 255, 255, 0.07) 0 1px, transparent 2px);
  background-size: 170px 170px, 230px 230px, 260px 260px;
  mix-blend-mode: overlay;
  filter: blur(0.2px);
  opacity: 0.16;
  pointer-events: none;
}

/* ===== FAQ ===== */
.faq-modern {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--surface-dark);
  color: rgba(255, 255, 255, 0.88);
}

.faq-modern::before {
  content: "";
  position: absolute;
  inset: -50px;
  background:
    radial-gradient(900px 340px at 18% 30%, rgba(255, 255, 255, 0.08), transparent 60%),
    radial-gradient(720px 320px at 78% 60%, rgba(255, 255, 255, 0.05), transparent 62%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.55), rgba(2, 6, 23, 0.88));
  opacity: 0.95;
  pointer-events: none;
}

.faq-modern__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: start;
  gap: clamp(18px, 4vw, 52px);
}

.faq-modern .kicker {
  color: rgba(255, 255, 255, 0.62);
}

.faq-modern__title {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Bebas Neue", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(56px, 6.3vw, 110px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-shadow: 0 18px 60px rgba(2, 6, 23, 0.55);
}

.faq-modern__lead {
  max-width: 78ch;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:first-child {
  border-top: 0;
}

.faq-item__summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

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

.faq-item__q {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 950;
  letter-spacing: 0.01em;
}

.faq-item__pill {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.faq-item:hover .faq-item__pill {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  transform: translate(2px, -2px);
}

.faq-item__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}

.faq-item[open] .faq-item__content {
  grid-template-rows: 1fr;
}

.faq-item__inner {
  overflow: hidden;
  padding: 0 0 18px;
}

.faq-item__inner .lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(14px, 1.12vw, 16px);
  line-height: 1.6;
}

.faq-media {
  position: sticky;
  top: 90px;
  display: grid;
  place-items: center;
  width: min(520px, 100%);
  height: calc(100vh - 140px);
  margin-left: auto;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: transform;
}

.faq-modern.is-inview .faq-media {
  opacity: 1;
  transform: translateY(0);
}

.faq-photo {
  position: absolute;
  width: min(420px, 86%);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 26px 90px rgba(2, 6, 23, 0.55);
  will-change: transform;
}

.faq-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: rgba(255, 255, 255, 0.02);
}

.faq-float {
  position: absolute;
  top: 80%;
  left: -6%;
  display: flex;
  gap: 12px;
  width: min(360px, 78%);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 22px 70px rgba(2, 6, 23, 0.45);
  will-change: transform;
}

.faq-float__avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(37, 60, 125, 0.26);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 950;
}

.faq-float__title {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 950;
}

.faq-float__text {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.faq-float__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.22s ease, border-color 0.22s ease;
}

.faq-float__link:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.faq-float__link:active {
  transform: translateY(0);
}

.faq-media__glow {
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(420px 320px at 65% 35%, rgba(235, 165, 34, 0.14), transparent 60%),
    radial-gradient(520px 380px at 35% 70%, rgba(37, 60, 125, 0.12), transparent 62%);
  filter: blur(2px);
  opacity: 0.9;
  pointer-events: none;
}

.faq-media__grain {
  position: absolute;
  inset: -60px;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 65% 55%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 80%, rgba(255, 255, 255, 0.07) 0 1px, transparent 2px);
  background-size: 170px 170px, 230px 230px, 260px 260px;
  mix-blend-mode: overlay;
  filter: blur(0.2px);
  opacity: 0.14;
  pointer-events: none;
}

/* ===== CONTACT ===== */
.contact-modern {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--surface-dark);
  color: rgba(255, 255, 255, 0.88);
  --conY: 0px;
  --mx: 0;
  --my: 0;
}

.contact-modern::before {
  content: "";
  position: absolute;
  inset: -70px;
  background:
    radial-gradient(980px 420px at 16% 22%, rgba(37, 60, 125, 0.24), transparent 62%),
    radial-gradient(760px 360px at 82% 62%, rgba(235, 165, 34, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.56), rgba(2, 6, 23, 0.9));
  opacity: 0.95;
  pointer-events: none;
  transform: translate3d(calc(var(--mx) * 8px), calc(var(--conY) + var(--my) * 10px), 0);
  transition: transform 0.18s ease;
}

.contact-modern::after {
  content: "";
  position: absolute;
  inset: -60px;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 65% 55%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 80%, rgba(255, 255, 255, 0.07) 0 1px, transparent 2px);
  background-size: 170px 170px, 230px 230px, 260px 260px;
  mix-blend-mode: overlay;
  filter: blur(0.2px);
  opacity: 0.13;
  pointer-events: none;
}

.contact-modern .kicker {
  color: rgba(255, 255, 255, 0.62);
}

.contact-modern__title {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Bebas Neue", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(56px, 6vw, 108px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-shadow: 0 18px 60px rgba(2, 6, 23, 0.55);
}

.contact-modern__lead {
  max-width: 75ch;
  color: rgba(255, 255, 255, 0.68);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.contact-note {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px) saturate(140%);
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
  box-shadow: 0 18px 70px rgba(2, 6, 23, 0.3);
}

.contact-mini {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 14px;
}

.contact-mini__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-mini__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(235, 165, 34, 0.9);
  box-shadow: 0 0 0 4px rgba(235, 165, 34, 0.16);
}

.contact-mini__text {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 750;
  letter-spacing: 0.01em;
}

.contact-card {
  position: sticky;
  top: 96px;
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 26px 90px rgba(2, 6, 23, 0.42);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1),
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
  will-change: transform;
}

.contact-modern.is-inview .contact-card {
  opacity: 1;
  transform: translateY(0);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background:
    radial-gradient(420px 260px at 20% 20%, rgba(37, 60, 125, 0.22), transparent 60%),
    radial-gradient(420px 260px at 85% 70%, rgba(235, 165, 34, 0.12), transparent 62%);
  opacity: 0.78;
  pointer-events: none;
  transform: translate3d(calc(var(--mx) * 6px), calc(var(--my) * 8px), 0);
  transition: transform 0.18s ease, opacity 0.22s ease;
}

.contact-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.contact-card__title {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.01em;
}

.contact-card__chip {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 850;
  letter-spacing: 0.02em;
}

.contact-card__list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.66);
}

.contact-card__list li {
  position: relative;
  padding-left: 14px;
}

.contact-card__list li::before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(255, 255, 255, 0.22);
}

.contact-card__divider {
  height: 1px;
  margin-top: 14px;
  background: linear-gradient(90deg, rgba(235, 165, 34, 0), rgba(235, 165, 34, 0.55), rgba(235, 165, 34, 0));
  opacity: 0.9;
}

.contact-card__legal {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* ===== FOOTER ===== */
.footer-modern {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--surface-darker);
  color: rgba(255, 255, 255, 0.84);
}

.footer-modern::before {
  content: "";
  position: absolute;
  inset: -70px;
  background:
    radial-gradient(980px 420px at 14% 30%, rgba(37, 60, 125, 0.22), transparent 62%),
    radial-gradient(760px 360px at 82% 65%, rgba(235, 165, 34, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.35), rgba(2, 6, 23, 0.85));
  opacity: 0.95;
  pointer-events: none;
}

.footer-modern::after {
  content: "";
  position: absolute;
  inset: -60px;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 65% 55%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 80%, rgba(255, 255, 255, 0.07) 0 1px, transparent 2px);
  background-size: 170px 170px, 230px 230px, 260px 260px;
  mix-blend-mode: overlay;
  filter: blur(0.2px);
  opacity: 0.12;
  pointer-events: none;
}

.footer-modern .wrap {
  position: relative;
}

.footer-modern .bar {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: start;
  gap: 18px;
  padding: 26px 0;
}

.footer-modern img {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.35);
}

.footer-modern .fine {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
}

.footer-modern nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  justify-items: stretch;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 22px 70px rgba(2, 6, 23, 0.25);
}

.footer-modern nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-modern nav a::after {
  content: ""; /* ↗ */
  display: none;
  color: rgba(235, 165, 34, 0.85);
  font-weight: 900;
  opacity: 0.55;
  transform: translateY(-1px);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-modern nav a:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
  text-decoration: none;
}

.footer-modern nav a:hover::after {
  opacity: 0.95;
  transform: translate(2px, -2px);
}

.footer-modern small {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 750;
}




/* ===== MOBILE / TABLET PATCH ===== */
/* ДОБАВЬ В САМЫЙ КОНЕЦ style.css */

section[id] {
  scroll-margin-top: 84px;
}

@media (max-width: 980px) {
  html,
  body {
    overflow-x: hidden;
  }

  .wrap {
    padding: 0 18px;
  }

  main section {
    padding: 46px 0;
  }

  .grid,
  .cols-2,
  .hero .grid,
  .team-strip__inner,
  .approach-modern__grid,
  .services-modern__grid,
  .faq-modern__grid,
  .contact-modern__grid,
  .footer-modern .bar {
    grid-template-columns: 1fr;
  }

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

  header .bar {
    gap: 12px;
    padding: 10px 0;
  }

  header .brand {
    min-width: 0;
    gap: 10px;
  }

  header .brand img {
    width: 40px;
  }

  header .brand > div {
    font-size: 0.84rem;
  }

  header .actions {
    gap: 8px;
    margin-left: auto;
  }

  header .lang {
    gap: 6px;
  }

  header .lang button {
    padding: 7px 9px;
  }

  .menu-panel {
    width: 100%;
    padding: 16px 18px 18px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .menu-list {
    gap: 12px;
    padding-top: 16px;
  }

  .menu-link {
    font-size: clamp(1.6rem, 7.4vw, 3rem);
    line-height: 1;
  }

  .menu-footer {
    gap: 10px;
    padding-top: 14px;
  }

  .menu-socials,
  .menu-direct {
    max-width: none;
  }

  .menu-ctaRow .pill-cta {
    width: 100%;
    justify-content: space-between;
  }

  .modal__panel {
    width: min(720px, calc(100% - 20px));
    max-height: calc(100svh - 20px);
    overflow: auto;
    padding: 16px 16px 14px;
  }

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

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

  .modal__actions > * {
    width: 100%;
    justify-content: space-between;
  }

  .splash {
    height: auto;
    min-height: 100svh;
  }

  .splash__sticky {
    position: relative;
    height: auto;
    min-height: 100svh;
  }

  .splash__img {
    height: 116%;
  }

  .splash__content {
    min-height: 100svh;
    align-items: flex-end;
  }

  .splash__layout {
    gap: 16px;
    padding: 84px 0 24px;
  }

  .splash__line {
    font-size: clamp(46px, 13vw, 96px);
    line-height: 0.9;
  }

  .splash__line--accent {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .splash__micro {
    max-width: 34ch;
    font-size: 14px;
    transform: none;
  }

  .team-strip {
    padding: 28px 0;
  }

  .team-strip__inner {
    gap: 18px;
  }

  .team-strip__left {
    overflow: hidden;
  }

  .team-avatars {
    --avatar: 84px;
    --overlap: 16px;
    justify-content: flex-start;
    padding-left: 0;
  }

  .team-strip__text {
    font-size: 15px;
  }

  .outline-cta {
    margin-left: 0;
  }

  .hero {
    padding: 28px 0 46px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.7rem);
  }

  .hero .cta {
    gap: 10px;
  }

  .hero .meta {
    gap: 8px;
  }

  .approach-modern__title,
  .spec-modern__title,
  .faq-modern__title,
  .contact-modern__title {
    font-size: clamp(42px, 10vw, 74px);
    line-height: 0.94;
  }

  .approach-modern__right,
  .contact-card {
    position: relative;
    top: auto;
  }

  .approach-badge {
    width: 100%;
  }

  .spec-cards {
    gap: 12px;
  }

  .spec-card {
    min-height: 100%;
  }

  .services-modern__grid,
  .faq-modern__grid {
    gap: 20px;
  }

  .svc-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .svc-row__right {
    justify-items: stretch;
  }

  .svc-row__link {
    width: 100%;
    justify-content: space-between;
  }

  .svc-media {
    position: relative;
    top: auto;
    width: 100%;
    height: 560px;
    min-height: 560px;
    margin: 8px auto 0;
  }

  .svc-photo--main {
    width: min(360px, 82%);
  }

  .svc-photo--mini {
    width: min(150px, 34%);
  }

  .svc-photo--tr {
    top: 6%;
    right: 0;
  }

  .svc-photo--bl {
    bottom: 4%;
    left: 0;
  }

  .faq-media {
    position: relative;
    top: auto;
    width: 100%;
    height: 560px;
    min-height: 560px;
    margin: 8px auto 0;
  }

  .faq-photo {
    width: min(360px, 82%);
  }

  .faq-float {
    left: 0;
    top: auto;
    bottom: 2%;
    width: min(340px, 88%);
  }

  .contact-actions {
    gap: 10px;
  }

  .contact-actions .outline-cta {
    margin-right: 0 !important;
  }

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

  .footer-modern nav a:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .wrap {
    padding: 0 14px;
  }

  main section {
    padding: 40px 0;
  }

  .cols-3 {
    grid-template-columns: 1fr;
  }

  header .brand img {
    width: 36px;
  }

  header .brand > div {
    font-size: 0.76rem;
  }

  header .lang button {
    min-width: 40px;
    padding: 7px 8px;
  }

  .menu-toggle {
    padding: 9px 10px;
  }

  .menu-toggle__label {
    display: none;
  }

  .menu-panel {
    padding: 14px 14px 16px;
  }

  .menu-top {
    padding-bottom: 12px;
  }

  .menu-link {
    font-size: clamp(1.45rem, 9vw, 2.2rem);
  }

  .menu-close {
    width: 42px;
    height: 42px;
  }

  .modal__panel {
    width: calc(100% - 12px);
    max-height: calc(100svh - 12px);
    padding: 14px 14px 12px;
    border-radius: 16px;
  }

  .modal__head {
    padding-right: 44px;
  }

  .modal__close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  .field__input {
    padding: 11px 12px;
    border-radius: 12px;
  }

  .splash__content {
    min-height: 100svh;
  }

  .splash__layout {
    padding: 78px 0 18px;
  }

  .splash__img {
    height: 110%;
  }

  .splash__line {
    font-size: clamp(40px, 15vw, 68px);
    letter-spacing: 0.015em;
  }

  .splash__micro {
    max-width: 28ch;
    font-size: 13px;
    line-height: 1.4;
  }

  .team-avatars {
    --avatar: 72px;
    --overlap: 14px;
  }

  .team-avatars__more span {
    font-size: 26px;
  }

  .team-strip__text,
  .lead,
  .faq-item__inner .lead,
  .spec-card .lead {
    font-size: 0.98rem;
  }

  .approach-modern__title,
  .spec-modern__title,
  .faq-modern__title,
  .contact-modern__title {
    font-size: clamp(34px, 12vw, 54px);
  }

  .approach-card,
  .contact-card,
  .spec-card,
  .card {
    padding: 16px;
  }

  .tag,
  .pill,
  .logo-chip {
    font-size: 0.84rem;
  }

  .hero .cta,
  .contact-actions,
  .modal__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero .cta .btn,
  .contact-actions .outline-cta,
  .modal__actions > * {
    width: 100%;
  }

  .hero .cta .btn,
  .contact-actions .outline-cta {
    justify-content: center;
  }

  .btn,
  .pill-cta,
  .svc-row__link {
    min-height: 46px;
  }

  .pill-cta,
  .svc-row__link {
    width: 100%;
    justify-content: space-between;
    white-space: normal;
  }

  .svc-media {
    height: 400px;
    min-height: 400px;
  }

  .svc-photo--main {
    width: min(300px, 86%);
  }

  .svc-photo--mini {
    width: min(120px, 32%);
  }

  .faq-media {
    height: 420px;
    min-height: 420px;
  }

  .faq-photo {
    width: min(300px, 86%);
  }

  .faq-float {
    width: min(300px, 92%);
    padding: 12px;
  }

  .faq-float__avatar {
    width: 40px;
    height: 40px;
  }

  .faq-item__summary {
    gap: 10px;
    padding: 16px 0;
  }

  .faq-item__q {
    font-size: clamp(17px, 5vw, 20px);
  }

  .faq-item__pill {
    width: 40px;
    height: 40px;
  }

  .contact-note,
  .note {
    padding: 12px;
  }

  .footer-modern .bar {
    gap: 14px;
    padding: 22px 0;
  }

  .footer-modern nav {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .footer-modern nav a:last-child {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  header .lang {
    display: none;
  }

  .splash__line {
    font-size: clamp(36px, 15vw, 56px);
  }

  .splash__micro {
    font-size: 12px;
    max-width: 24ch;
  }

  .team-avatars {
    --avatar: 64px;
    --overlap: 12px;
  }

  .team-avatars__more span {
    font-size: 22px;
  }

  .svc-media {
    height: 340px;
    min-height: 340px;
  }

  .faq-media {
    height: 360px;
    min-height: 360px;
  }

  .faq-float {
    width: 100%;
  }
}







/* =========================================================
   SPLASH MOBILE POSITION PATCH
   - move headline block higher on mobile
   - shift background image 18% to the left
   Append at the very end of style.css
   ========================================================= */

@media (max-width: 640px) {
  .splash__headline {
    transform: translateY(-10svh);
  }

  .splash__img {
    left: -28% !importan;
    right: auto;
    width: 118%;
    object-position: center center;
  }
}

@media (max-width: 420px) {
  .splash__headline {
    transform: translateY(-8svh);
  }

  .splash__img {
    left: -28%;
    right: auto;
    width: 118%;
    object-position: center center;
  }
}


/* =========================================================
   SPLASH MOBILE POSITION PATCH — FIXED
   ========================================================= */

@media (max-width: 640px) {
  .splash__headline {
    transform: translateY(-10svh);
  }

  .splash__img {
    max-width: none !important;
    width: 128% !important;
    height: 110% !important;
    left: -28% !important;
    right: auto !important;
    top: 0 !important;
    bottom: auto !important;
    object-fit: cover;
    object-position: center center;
  }
}

@media (max-width: 420px) {
  .splash__headline {
    transform: translateY(-8svh);
  }

  .splash__img {
    max-width: none !important;
    width: 128% !important;
    height: 110% !important;
    left: -28% !important;
    right: auto !important;
    top: 0 !important;
    bottom: auto !important;
    object-fit: cover;
    object-position: center center;
  }
}