:root {
  --bg-main: #031239;
  --bg-deep: #071a43;
  --bg-card: #0d2245;
  --bg-card-soft: #133059;
  --line: #24457d;
  --line-soft: #1f3d70;
  --text: #f4f7ff;
  --text-soft: #99accd;
  --accent: #2f68d4;
  --accent-strong: #1e4fae;
  --accent-glow: rgba(39, 98, 211, 0.62);
  --shadow-soft: 0 14px 28px rgba(2, 10, 26, 0.42);
  --radius-xl: 22px;
  --radius-lg: 18px;
  --frame-max: 1636px;
  --frame-gap: clamp(1rem, 7.4vw, 142px);
  --frame-width: min(var(--frame-max), calc(100% - var(--frame-gap) * 2));
  --frame-side: max(var(--frame-gap), calc((100vw - var(--frame-max)) / 2));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.75rem;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Geologica", "Segoe UI", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  overflow-x: clip;
  background: radial-gradient(circle at 72% -10%, rgba(61, 117, 220, 0.3), transparent 42%),
    linear-gradient(180deg, #14326f 0%, #0a2052 11%, #051736 35%, #02102b 66%, #010a1d 100%);
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.bg-grid::before,
.bg-grid::after {
  content: "";
  position: absolute;
  inset: 0;
}

.bg-grid::before {
  background-image: repeating-linear-gradient(
      30deg,
      transparent 0,
      transparent 252px,
      rgba(118, 150, 204, 0.1) 252px,
      rgba(118, 150, 204, 0.1) 260px
    ),
    repeating-linear-gradient(
      122deg,
      transparent 0,
      transparent 260px,
      rgba(118, 150, 204, 0.085) 260px,
      rgba(118, 150, 204, 0.085) 268px
    );
}

.bg-grid::after {
  background: linear-gradient(180deg, rgba(3, 12, 30, 0.2) 0%, rgba(2, 9, 23, 0.78) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.is-hidden {
  display: none !important;
}

.container {
  width: var(--frame-width);
  margin: 0 auto;
}

.section {
  padding: 5.15rem 0;
}

.eyebrow {
  margin: 0;
  color: #8da2c8;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-head {
  max-width: 1050px;
  margin-bottom: 2.4rem;
}

.section-head h2 {
  margin: 0.8rem 0 0;
  font-size: clamp(2.6rem, 4.3vw, 4.8rem);
  line-height: 0.97;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 70;
  height: 75px;
  border-bottom: 1px solid #23497f;
  background: rgba(2, 10, 26, 0.94);
  backdrop-filter: blur(7px);
}

.topbar::before {
  content: none;
}

.topbar::after {
  content: none;
}

.topbar__inner {
  position: relative;
  z-index: 1;
  width: var(--frame-width);
  margin: 0 auto;
  height: 75px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.9rem;
  flex-shrink: 0;
  height: 75px;
}

.brand__mark {
  display: block;
  width: 132px;
  height: 74px;
  margin-top: 1px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand__name {
  display: grid;
  align-content: start;
  margin-top: 16px;
  text-transform: uppercase;
  font-weight: 400;
}

.brand__name span:first-child {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.44;
  letter-spacing: 0.17em;
}

.brand__name span:last-child {
  color: rgba(255, 255, 255, 0.43);
  font-size: 14px;
  line-height: 1.44;
  letter-spacing: 0.17em;
}

.nav {
  margin-left: auto;
  height: 75px;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0;
}

.nav a {
  display: inline-flex;
  align-items: center;
  color: #95a9cc;
  font-size: 16px;
  line-height: 1.44;
  font-weight: 400;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: #f4f8ff;
}

.topbar-icons {
  margin-left: 34px;
  height: 75px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.topbar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.topbar-icon img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  display: block;
}

.topbar-icon--bell {
  width: 65px;
  height: 65px;
  margin-top: 5px;
}

.topbar-icon--profile {
  width: 40px;
  height: 40px;
  margin-top: 18px;
  border-radius: 30px;
  background: linear-gradient(270deg, #1148b6 0%, #275cc7 100%);
  box-shadow: 0 2px 23.2px -3px #134ab8;
}

.topbar-icon--profile img {
  width: 22px;
  height: 20px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #2c4f86;
  background: #091932;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #dce7fb;
}

.nav-toggle span + span {
  margin-top: 6px;
}

.btn {
  border: 0;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.78rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  background: linear-gradient(126deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 0 1px rgba(46, 102, 207, 0.58) inset, 0 10px 24px var(--accent-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(73, 124, 224, 0.7) inset, 0 12px 26px rgba(44, 104, 216, 0.72);
}

.btn--small {
  padding: 0.72rem 1.26rem;
}

.btn--wide {
  width: 100%;
}

.btn--ghost {
  color: #f4f8ff;
  border: 1px solid #9bb1d7;
  background: transparent;
  box-shadow: none;
}

.btn--ghost:hover {
  border-color: #d2dff5;
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 4.85rem;
  border-bottom: 1px solid rgba(46, 82, 137, 0.45);
}

.hero::before {
  content: "";
  position: absolute;
  width: 1037.13px;
  height: 1601.35px;
  left: calc(var(--frame-side) + 525px);
  top: -812.93px;
  background: linear-gradient(180deg, #275dca 59.13%, #0d3791 100%);
  transform: rotate(-39.94deg);
  transform-origin: center;
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  --people-size: clamp(1120px, 65vw, 1260px);
  width: var(--people-size);
  height: calc(var(--people-size) * 2252 / 2622);
  right: 0;
  left: auto;
  top: -30px;
  background-image: url("./assets/hero-people-final.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
  opacity: 0.75;
  transform: none;
  transform-origin: center;
  z-index: 1;
  pointer-events: none;
}

.hero__shape {
  position: absolute;
  top: clamp(-16rem, -14vw, -7rem);
  right: clamp(-20rem, -16vw, -8rem);
  width: clamp(26rem, 48vw, 58rem);
  aspect-ratio: 1471 / 1081;
  z-index: 0;
  pointer-events: none;
}

.hero__shape-main {
  position: absolute;
  top: clamp(2.4rem, 6.6vw, 6.4rem);
  right: clamp(2.5rem, 6vw, 5rem);
  width: clamp(9rem, 18vw, 17rem);
  height: auto;
  object-fit: contain;
  z-index: 2;
  opacity: 1;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.3));
}

.hero__grid {
  position: relative;
  z-index: 2;
  min-height: clamp(38rem, 56vw, 50rem);
  padding: 0;
  display: grid;
  align-items: start;
}

.hero__content {
  max-width: 722px;
  min-width: 0;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(15px, 0.92vw, 18px);
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 15px 0 25px;
  font-size: clamp(58px, 5vw, 96px);
  line-height: 0.89;
  letter-spacing: 0;
  font-weight: 400;
}

.hero__lead {
  margin: 0;
  max-width: 598px;
  color: rgba(255, 255, 255, 0.46);
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: 400;
  line-height: 1.68;
}

.hero__actions {
  margin-top: 37px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.hero__actions .btn {
  width: 206px;
  height: 60px;
  min-height: 60px;
  padding: 18px 19px;
  border-radius: 30px;
  font-size: clamp(16px, 0.9vw, 18px);
  line-height: 1.1;
  text-align: center;
  justify-content: center;
}

.hero__actions .btn:not(.btn--ghost) {
  background: linear-gradient(270deg, #1148b6 0%, #275cc7 100%);
  box-shadow: 0 2px 23.2px -3px #134ab8;
}

.hero__actions .btn--ghost {
  width: 307px;
  height: 60px;
  min-height: 60px;
  border: 1px solid #ffffff;
  border-radius: 30px;
}

.hero-jumps {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-jumps a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 30px;
  border: 1px solid #ffffff;
  background: transparent;
  padding: 0 22px;
  color: #ffffff;
  font-size: clamp(14px, 0.8vw, 16px);
  font-weight: 400;
  line-height: 1;
}

.hero-jumps a:hover {
  border-color: #ffffff;
  color: #fff;
}

.services {
  padding-top: 2.7rem;
  border-bottom: 1px solid rgba(40, 72, 126, 0.4);
}

.services .section-head {
  max-width: 851px;
  margin-bottom: 130px;
}

.services .section-head .eyebrow {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 0.89;
  letter-spacing: 0;
}

.services .section-head h2 {
  margin: 15px 0 0;
  max-width: 851px;
  color: #ffffff;
  font-size: clamp(40px, 3.34vw, 64px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.services-grid {
  --service-card-width: clamp(290px, 17.92vw, 344px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--service-card-width), var(--service-card-width)));
  justify-content: center;
  column-gap: clamp(24px, 4.01vw, 77px);
  row-gap: clamp(48px, 4.68vw, 90px);
}

.service-card {
  --service-media-height: calc(var(--service-card-width) * 0.686);
  width: var(--service-card-width);
  min-height: 382px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 4px 26.4px 14px rgba(0, 0, 0, 0.25);
}

.service-card img {
  width: 100%;
  height: var(--service-media-height);
  margin: 0;
  object-fit: cover;
  object-position: center top;
  background: transparent;
  display: block;
  flex-shrink: 0;
  border-radius: 20px 20px 0 0;
}

.service-card__media-empty {
  width: 100%;
  height: var(--service-media-height);
  flex-shrink: 0;
}

.service-card__body {
  min-height: 0;
  padding: 7px 7px 25px 15px;
  background: #054abc;
  flex: 1;
  border: 0.5px solid rgba(255, 255, 255, 0.4);
  border-top: 0;
  border-radius: 0 0 20px 20px;
}

.service-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: 0;
}

.service-card p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: 0.02em;
  display: block;
  overflow: visible;
}

.service-card--cta {
  background: #ffffff;
  border: 0.5px solid rgba(255, 255, 255, 0.4);
}

.service-card--cta .service-card__media-empty {
  background: #ffffff;
  border-radius: 20px 20px 0 0;
}

.service-card--cta .service-card__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 7px 7px 25px 15px;
  background: #ffffff;
  border: 0;
  border-radius: 0 0 20px 20px;
}

.service-card--cta h3 {
  margin: 0;
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: 0.02em;
}

.service-card--cta p {
  margin: 7px 0 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.service-card--cta .btn {
  margin-top: 18px;
  align-self: flex-start;
  width: 192px;
  height: 41px;
  min-height: 41px;
  padding: 0 16px;
  border-radius: 30px;
  background: linear-gradient(270deg, #1148b6 0%, #275cc7 100%);
  box-shadow: 0 2px 23.2px -3px #134ab8;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.44;
}

.about {
  padding-top: 5rem;
  border-bottom: 1px solid rgba(40, 72, 126, 0.38);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 40%);
  column-gap: clamp(20px, 2.08vw, 40px);
  row-gap: 24px;
  align-items: start;
}

.about .eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 18px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.about h2 {
  margin: 20px 0 25px;
  max-width: min(100%, clamp(640px, 56.8vw, 930px));
  color: #ffffff;
  font-size: clamp(40px, 3.34vw, 64px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.about__copy > p:not(.eyebrow) {
  margin: 0;
  max-width: min(100%, clamp(520px, 49.5vw, 810px));
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.57;
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
}

.about__copy > h2 + p {
  margin-top: 0;
}

.about__copy > p + p {
  margin-top: 20px;
}

.stats {
  --stats-card-width: clamp(360px, 39.9vw, 652px);
  --stats-card-height: clamp(108px, 7.6vw, 124px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 0.78vw, 15px);
  width: min(var(--stats-card-width), 100%);
  margin-left: auto;
  min-width: 0;
}

.stats article {
  box-sizing: border-box;
  width: 100%;
  min-height: var(--stats-card-height);
  padding: clamp(20px, 1.25vw, 24px) clamp(20px, 1.46vw, 28px) clamp(14px, 1.04vw, 20px);
  overflow: hidden;
  border-radius: 20px;
  background-color: #101d34;
  background-image: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 clamp(30px, 2.29vw, 43.9px) clamp(0.7px, 0.052vw, 1px) #054abc;
}

.stats strong {
  display: block;
  font-family: "Noto Serif Thai", serif;
  font-size: clamp(30px, 1.88vw, 36px);
  font-weight: 400;
  line-height: 0.89;
  letter-spacing: 0.03em;
  color: #ffffff;
}

.stats span {
  margin-top: clamp(4px, 0.31vw, 6px);
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(16px, 0.94vw, 18px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.process {
  padding-top: 4.05rem;
  border-bottom: 1px solid rgba(40, 72, 126, 0.36);
}

.process .section-head {
  max-width: min(977px, 100%);
  margin-bottom: 60px;
}

.process .section-head .eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-family: "Noto Serif Thai", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.process .section-head h2 {
  margin: 20px 0 0;
  color: #ffffff;
  font-size: clamp(40px, 3.34vw, 64px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3.39vw, 65px);
}

.process-grid article {
  min-height: clamp(168px, 10.26vw, 197px);
  border-radius: 20px;
  background: #121f35;
  box-shadow: 0 0 clamp(30px, 2.29vw, 44px) clamp(0.7px, 0.052vw, 1px) #054abc;
  padding: 35px 35px 40px 40px;
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-template-rows: auto auto;
  column-gap: 15px;
  row-gap: 20px;
  align-content: start;
}

.process-grid span {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1c3356;
  color: #ffffff;
  font-size: 24px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.process-grid h3 {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.process-grid p {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: 0.02em;
}

.contacts {
  position: relative;
  overflow: visible;
  padding-top: 4.25rem;
  padding-bottom: 16rem;
}

.contacts__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1fr);
  gap: clamp(20px, 1.82vw, 35px);
  align-items: start;
  position: relative;
  z-index: 2;
}

.contacts__info,
.cta-form {
  border-radius: 20px;
  background: #121f35;
  min-width: 0;
}

.contacts__info {
  min-height: clamp(248px, 15vw, 288px);
  padding: clamp(26px, 1.82vw, 35px) clamp(40px, 3.65vw, 70px) clamp(30px, 2.08vw, 40px) clamp(24px, 2.08vw, 40px);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25), 0 0 clamp(14px, 1.01vw, 19.4px) clamp(3px, 0.26vw, 5px) #275cc7;
}

.contacts__info .eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 18px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.05em;
}

.contacts__info h2 {
  margin: 15px 0 20px;
  max-width: min(507px, 100%);
  color: #ffffff;
  font-size: clamp(32px, 2.08vw, 40px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.09em;
}

.contacts__rule {
  margin: 0 0 20px;
  display: block;
  width: clamp(150px, 10vw, 192px);
  height: clamp(9px, 0.68vw, 13px);
  border-radius: 20px;
  background: linear-gradient(90deg, #9eb1d5 0%, #273d60 54.33%);
}

.contacts__info p {
  margin: 0;
  max-width: min(661px, 100%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: 0.05em;
  overflow-wrap: anywhere;
}

.cta-form {
  min-height: clamp(520px, 33.6vw, 645px);
  --field-offset: clamp(6px, 0.52vw, 10px);
  padding: clamp(26px, 1.82vw, 35px) clamp(36px, 4.17vw, 80px) clamp(24px, 1.56vw, 30px)
    clamp(24px, 2.08vw, 40px);
  box-shadow: 0 0 clamp(14px, 0.99vw, 19px) clamp(3px, 0.26vw, 5px) #275cc7;
  display: grid;
  align-content: start;
  gap: clamp(8px, 0.52vw, 10px);
}

.cta-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.cta-form input,
.cta-form textarea,
.cta-form select {
  box-sizing: border-box;
  width: calc(100% - var(--field-offset));
  margin-left: var(--field-offset);
  margin-top: 10px;
  height: 54px;
  min-height: 54px;
  padding: 0 15px;
  border: 0.5px solid #2f569a;
  border-radius: 15px;
  background: #101c30;
  color: #eef4ff;
  font: inherit;
  font-size: 17px;
  line-height: 1.3;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.cta-form input:focus,
.cta-form textarea:focus,
.cta-form select:focus {
  border-color: #4d7cd1;
  box-shadow: 0 0 0 4px rgba(34, 91, 183, 0.25);
}

.cta-form textarea {
  min-height: clamp(126px, 9.1vw, 174px);
  height: auto;
  padding: 15px;
  resize: vertical;
}

.staff-picker {
  width: calc(100% - var(--field-offset));
  margin: 6px 0 2px var(--field-offset);
  padding: 14px;
  border: 1px solid rgba(53, 90, 154, 0.7);
  border-radius: 16px;
  background: #0f1a2d;
}

.staff-picker__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 10px;
}

.staff-picker__head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.2;
}

.btn--staff-add,
.btn--staff-remove {
  min-height: 38px;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  box-shadow: none;
}

.btn--staff-add {
  background: #1a3468;
  border-color: #2d5dad;
}

.btn--staff-remove {
  background: #3b1f3b;
  border-color: #6e3f6e;
}

.staff-rows {
  display: grid;
  gap: 10px;
}

.staff-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(130px, 0.45fr) auto;
  gap: 10px;
  align-items: end;
  border: 1px solid rgba(52, 88, 150, 0.55);
  border-radius: 14px;
  padding: 10px;
  background: #132242;
}

.staff-row__label {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
}

.staff-row__custom {
  grid-column: 1 / span 2;
}

.staff-row__label input,
.staff-row__label select {
  width: 100%;
  margin-left: 0;
  margin-top: 8px;
  height: 48px;
  min-height: 48px;
}

.staff-picker__note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.staff-picker__error {
  min-height: 1em;
  margin: 8px 0 0;
  color: #ffabc0;
  font-size: 13px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.form-note {
  width: min(530px, calc(100% - var(--field-offset)));
  margin: 4px 0 0 var(--field-offset);
  color: rgba(255, 255, 255, 0.46);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.cta-form .btn--wide {
  width: calc(100% - var(--field-offset));
  max-width: 700px;
  margin-left: var(--field-offset);
  margin-top: 4px;
  height: 60px;
  min-height: 60px;
  border-radius: 30px;
  padding: 0 15px;
  background: linear-gradient(270deg, #1148b6 0%, #275cc7 100%);
  box-shadow: 0 2px 23.2px -3px #134ab8;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

.cta-form .btn--wide:hover {
  transform: none;
  box-shadow: 0 2px 23.2px -3px #134ab8;
}

.cta-form .btn--wide:active {
  transform: none;
}

.field-error {
  display: block;
  min-height: 1em;
  margin-top: 0.12rem;
  color: #ffabc0;
  font-size: 0.72rem;
}

.form-status {
  margin: 0.3rem 0 0;
  font-size: 0.82rem;
}

.form-status--success {
  color: #82e2bc;
}

.form-status--error {
  color: #ffa7bf;
}

.cta-form input.is-invalid,
.cta-form textarea.is-invalid,
.cta-form select.is-invalid {
  border-color: #ff7894 !important;
  box-shadow: 0 0 0 4px rgba(255, 99, 135, 0.2) !important;
}

.cta-form input.is-valid,
.cta-form textarea.is-valid,
.cta-form select.is-valid {
  border-color: #4bb48f;
}

/* Keep generic controls style for any future forms outside contact section. */
input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: #0f1a2d;
  color: #eef4ff;
  font: inherit;
  font-size: 17px;
  line-height: 1.3;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

input:focus,
textarea:focus {
  border-color: #4d7cd1;
  box-shadow: 0 0 0 4px rgba(34, 91, 183, 0.25);
}

textarea {
  min-height: clamp(110px, 8vw, 150px);
  resize: vertical;
}

.container.contacts-decor {
  width: 100%;
  max-width: none;
  margin: 0;
}

.contacts-decor {
  position: absolute;
  left: 0;
  right: auto;
  bottom: -6.2rem;
  margin: 0;
  z-index: 1;
  pointer-events: none;
  transform: none;
}

.contacts-decor__image {
  display: block;
  width: clamp(1180px, 81.35vw, 1562px);
  max-width: none;
  min-width: 980px;
  height: auto;
  opacity: 1;
  margin-left: 0;
}

.support {
  position: relative;
  z-index: 4;
  margin-top: -7.25rem;
  padding-top: 0;
  padding-bottom: 3.2rem;
}

.support-card {
  border-radius: 20px;
  background: #121f35;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25), 0 0 19.4px 5px #275cc7;
  padding: 45px 0 35px 50px;
  min-width: 0;
}

.support-card h2 {
  margin: 0;
  max-width: min(645px, 100%);
  color: #ffffff;
  font-size: clamp(38px, 3.34vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.support-card__rule {
  margin: 20px 0;
  display: block;
  width: clamp(260px, 22vw, 425px);
  height: 13px;
  border-radius: 20px;
  background: linear-gradient(90deg, #9eb1d5 0%, #273d60 54.33%);
}

.support-card p {
  margin: 0;
  max-width: min(626px, 100%);
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(22px, 1.67vw, 32px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.support-chat {
  position: relative;
  margin-top: 35px;
  margin-left: -24px;
  width: min(1583px, calc(100% - 3px));
  min-height: clamp(420px, 30vw, 577px);
  border-radius: 20px;
  background: rgba(8, 14, 27, 0.2);
  border: 3px solid #101d34;
  box-shadow: inset 0 0 0 1px rgba(20, 39, 72, 0.34);
  overflow: hidden;
  isolation: isolate;
}

.support-chat::before {
  content: "";
  position: absolute;
  inset: clamp(14px, 1vw, 18px) clamp(12px, 0.85vw, 16px) clamp(22px, 1.4vw, 28px);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(54, 79, 120, 0.78) 0%, rgba(45, 67, 101, 0.82) 100%);
  z-index: 1;
}

.support-chat__placeholder {
  position: absolute;
  left: clamp(22px, 1.7vw, 34px);
  right: clamp(22px, 1.7vw, 34px);
  top: clamp(22px, 1.7vw, 34px);
  bottom: 82px;
  border-radius: 16px;
  background: #102141;
  padding: clamp(12px, 1vw, 16px);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.6vw, 10px);
  z-index: 2;
  overflow: auto;
  scrollbar-width: thin;
}

.support-chat__placeholder--loading {
  background: #13274f;
}

.support-chat__placeholder--error {
  box-shadow: inset 0 0 0 1px rgba(248, 120, 135, 0.6);
}

.support-chat__empty {
  margin: 0;
  max-width: min(620px, 82%);
  align-self: flex-start;
  color: rgba(204, 221, 249, 0.46);
  font-size: clamp(11px, 0.72vw, 12px);
  line-height: 1.4;
  text-align: left;
  overflow-wrap: anywhere;
}

.support-chat__message {
  margin: 0;
  max-width: min(760px, 88%);
  border-radius: 14px;
  padding: clamp(10px, 0.8vw, 14px) clamp(11px, 0.85vw, 14px);
  background: #16315f;
  box-shadow: inset 0 0 0 1px rgba(115, 148, 207, 0.22);
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.support-chat__message--assistant {
  align-self: flex-start;
}

.support-chat__message--user {
  align-self: flex-end;
  background: #2a456f;
  box-shadow: inset 0 0 0 1px rgba(155, 184, 236, 0.3);
}

.support-chat__message--loading {
  background: #1a3b68;
}

.support-chat__message--error {
  background: rgba(84, 44, 67, 0.56);
  box-shadow: inset 0 0 0 1px rgba(248, 120, 135, 0.55);
}

.support-chat__message-author {
  margin: 0;
  color: rgba(163, 189, 237, 0.94);
  font-size: clamp(11px, 0.74vw, 13px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.support-chat__message-text {
  margin: 0;
  color: rgba(235, 242, 255, 0.92);
  font-size: clamp(13px, 0.92vw, 16px);
  line-height: 1.35;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.support-chat__ask {
  position: absolute;
  left: 50%;
  bottom: 35px;
  transform: translateX(-50%);
  width: min(620px, calc(100% - 160px));
  height: 34px;
  border-radius: 20px;
  border: 0;
  background: #0f2040;
  box-shadow: inset 0 0 0 1px rgba(77, 115, 182, 0.35);
  display: flex;
  align-items: center;
  z-index: 3;
}

.support-chat__submit {
  width: 40px;
  height: 100%;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.support-chat__submit:disabled {
  cursor: default;
  opacity: 0.7;
}

.support-chat__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.support-chat__ask input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Geologica", "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
  padding: 0 12px 0 2px;
  outline: none;
}

.support-chat__ask input:focus {
  border: 0;
  box-shadow: none;
}

.support-chat__ask input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.footer {
  margin-top: calc(120px - 3.2rem);
  padding: 0 0 70px;
}

.footer__inner {
  border-top: 1px solid rgba(45, 79, 136, 0.56);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__copy {
  margin: 0;
  display: inline-flex;
  align-items: center;
  color: #273d60;
  font-family: "Georama", "Geologica", "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
  flex-wrap: wrap;
  row-gap: 0.25rem;
}

.footer__mark {
  width: 15px;
  height: 18px;
  flex-shrink: 0;
}

.footer__year {
  margin-left: 0;
}

.footer__label {
  margin-left: 4px;
}

.footer-placeholder {
  width: clamp(230px, 22.14vw, 425px);
  height: 13px;
  border-radius: 20px;
  background: linear-gradient(90deg, #9eb1d5 0%, #273d60 54.33%);
  opacity: 1;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reviews {
  padding-top: 3.2rem;
}

.reviews-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.82rem;
  align-items: center;
}

.review {
  display: none;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(76, 111, 168, 0.52);
  background: linear-gradient(160deg, rgba(17, 36, 70, 0.94), rgba(13, 29, 56, 0.91));
  box-shadow: var(--shadow-soft);
  padding: 1.24rem;
}

.review.is-active {
  display: block;
}

.reviews-nav {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid #355687;
  background: #101d33;
  color: #d4e2ff;
  font-size: 1.38rem;
  line-height: 1;
  cursor: pointer;
}

.reviews-more {
  margin-top: 1rem;
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid #3f6092;
  padding: 0.66rem 1rem;
  color: #c8daf8;
  font-size: 0.86rem;
  font-weight: 600;
}

.placeholder-stack {
  display: grid;
  gap: 0.46rem;
  width: 100%;
}

.placeholder-line {
  display: block;
  width: 100%;
  height: 0.6rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(145, 171, 216, 0.4), rgba(96, 126, 179, 0.24));
}

.placeholder-line--short {
  width: 64%;
}

.placeholder-line--name {
  width: 38%;
  height: 0.74rem;
}

.placeholder-line--meta {
  width: 44%;
  margin-top: 0.2rem;
  height: 0.52rem;
}

.page-reviews main {
  padding-top: 2.35rem;
}

@media (max-width: 1500px) {
  .services .section-head {
    margin-bottom: 96px;
  }

  .services .section-head h2 {
    font-size: clamp(38px, 3vw, 56px);
  }

  .services-grid {
    --service-card-width: clamp(280px, 21.5vw, 344px);
    column-gap: clamp(20px, 3.2vw, 56px);
    row-gap: clamp(40px, 4.2vw, 72px);
  }

  .hero__shape {
    top: clamp(-14rem, -13vw, -6.5rem);
    right: clamp(-17rem, -14vw, -6rem);
    width: clamp(24rem, 46vw, 52rem);
  }
}

@media (max-width: 1230px) {
  .hero h1 {
    font-size: clamp(52px, 6vw, 88px);
  }

  .hero__shape {
    top: clamp(-13rem, -12vw, -6rem);
    right: -11rem;
    width: clamp(22rem, 52vw, 46rem);
  }

  .services .section-head {
    margin-bottom: 72px;
  }

  .services .section-head h2 {
    font-size: clamp(34px, 4.2vw, 48px);
  }

  .services-grid {
    --service-card-width: clamp(270px, 28vw, 320px);
    column-gap: clamp(16px, 2.6vw, 36px);
    row-gap: 56px;
  }
}

@media (max-width: 1280px) {
  .hero::before {
    width: 860px;
    height: 1320px;
    left: calc(var(--frame-side) + 390px);
    top: -660px;
  }

  .hero::after {
    width: 1020px;
    height: calc(1020px * 2252 / 2622);
    right: 0;
    left: auto;
    top: -20px;
  }
}

@media (max-width: 1020px) {
  .topbar {
    height: 68px;
  }

  .topbar__inner {
    height: 68px;
    padding-left: 0;
    padding-right: 0;
    align-items: center;
  }

  .brand {
    height: auto;
    align-items: center;
    gap: 0.55rem;
  }

  .brand__mark {
    width: 88px;
    height: 50px;
    margin-top: 0;
  }

  .brand__name {
    margin-top: 0;
  }

  .brand__name span:first-child {
    font-size: 14px;
    line-height: 1.3;
  }

  .brand__name span:last-child {
    font-size: 11px;
    line-height: 1.25;
  }

  .nav {
    position: fixed;
    top: 68px;
    left: 1rem;
    right: 1rem;
    border-radius: 15px;
    border: 1px solid #274472;
    background: rgba(8, 16, 34, 0.97);
    height: auto;
    padding: 0.72rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.38rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    max-height: calc(100dvh - 84px);
    overflow: auto;
  }

  .nav a {
    font-size: 1rem;
    line-height: 1.35;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .topbar-icons {
    margin-left: 0.55rem;
    height: auto;
    align-items: center;
    gap: 0.45rem;
  }

  .topbar-icon--bell {
    width: 32px;
    height: 32px;
    margin-top: 0;
  }

  .topbar-icon--profile {
    width: 32px;
    height: 32px;
    margin-top: 0;
    border-radius: 999px;
  }

  .topbar-icon--profile img {
    width: 17px;
    height: 15px;
  }

  .hero {
    padding-top: 4.55rem;
    padding-bottom: 3.82rem;
  }

  .hero__grid {
    min-height: 37rem;
    padding: 1rem 0 0;
  }

  .hero__shape {
    top: -9rem;
    right: -14rem;
    width: clamp(20rem, 66vw, 37rem);
  }

  .hero__shape-main {
    top: 2.2rem;
    right: 2rem;
    width: clamp(7.4rem, 24vw, 11rem);
    opacity: 0.94;
  }

  .services .section-head {
    margin-bottom: 52px;
  }

  .services .section-head h2 {
    font-size: clamp(32px, 5.1vw, 44px);
  }

  .services-grid {
    --service-card-width: clamp(250px, 38vw, 320px);
    column-gap: clamp(14px, 2.2vw, 24px);
    row-gap: 44px;
  }

  .hero .eyebrow {
    font-size: 15px;
  }

  .hero h1 {
    margin: 12px 0 18px;
    font-size: clamp(52px, 6vw, 88px);
  }

  .hero__lead {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.58;
  }

  .hero__actions {
    margin-top: 28px;
    gap: 12px;
  }

  .hero__actions .btn,
  .hero__actions .btn--ghost {
    width: auto;
    min-width: 200px;
    height: 56px;
    min-height: 56px;
    padding: 15px 18px;
  }

  .hero-jumps {
    margin-top: 18px;
    gap: 10px;
  }

  .hero-jumps a {
    height: 36px;
    padding: 0 16px;
    font-size: 14px;
  }

  .about__grid,
  .contacts__grid {
    grid-template-columns: 1fr;
  }

  .about__grid {
    row-gap: 28px;
  }

  .about h2 {
    font-size: clamp(38px, 6vw, 56px);
  }

  .about__copy > p:not(.eyebrow) {
    font-size: 18px;
    line-height: 1.5;
  }

  .stats {
    max-width: 100%;
    margin-left: 0;
  }

  .process .section-head {
    margin-bottom: 48px;
  }

  .process .section-head .eyebrow {
    font-size: 16px;
  }

  .process .section-head h2 {
    font-size: clamp(36px, 5.5vw, 52px);
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-grid article {
    padding: 30px 30px 34px;
  }

  .cta-form {
    --field-offset: 0;
    min-height: 0;
    padding: 28px 24px 24px;
  }

  .cta-form input,
  .cta-form select,
  .cta-form textarea,
  .cta-form .btn--wide,
  .staff-picker {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .staff-row {
    grid-template-columns: minmax(0, 1fr) minmax(120px, 0.45fr);
  }

  .staff-row__custom {
    grid-column: 1 / -1;
  }

  .form-note {
    width: 100%;
    margin-left: 0;
  }

  .contacts {
    padding-bottom: 13rem;
  }

  .contacts-decor {
    left: 0;
    right: auto;
    bottom: -5.4rem;
    transform: none;
  }

  .contacts-decor__image {
    width: clamp(980px, 118vw, 1320px);
    min-width: 0;
    margin-left: -70px;
  }

  .support {
    margin-top: -5.2rem;
    padding-top: 1.8rem;
  }

  .support-card {
    padding: 34px 20px 24px 24px;
  }

  .support-card h2 {
    font-size: clamp(34px, 5.5vw, 50px);
  }

  .support-card__rule {
    width: clamp(220px, 30vw, 360px);
    height: 11px;
  }

  .support-card p {
    font-size: clamp(20px, 3.2vw, 28px);
  }

  .support-chat {
    width: 100%;
    margin-left: 0;
    margin-top: 24px;
    min-height: 420px;
  }

  .support-chat::before {
    inset: 14px 12px 20px;
  }

  .support-chat__placeholder {
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 84px;
    border-radius: 14px;
  }

  .support-chat__message {
    max-width: min(620px, 90%);
  }

  .support-chat__ask {
    width: min(560px, calc(100% - 60px));
    bottom: 30px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 5rem;
  }

  .section {
    padding: 3.6rem 0;
  }

  .topbar {
    height: 64px;
  }

  .topbar__inner {
    height: 64px;
    padding-left: 0;
    padding-right: 0;
  }

  .brand__mark {
    width: 74px;
    height: 42px;
  }

  .brand__name span:first-child {
    font-size: 11px;
    line-height: 1.25;
  }

  .brand__name span:last-child {
    font-size: 9px;
    line-height: 1.2;
  }

  .topbar-icons {
    display: none;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero__shape {
    display: none;
  }

  .hero {
    padding-top: 3.7rem;
    padding-bottom: 3.2rem;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(36px, 13vw, 62px);
  }

  .hero__lead {
    font-size: 15px;
  }

  .hero__grid {
    min-height: 31rem;
    padding: 1rem 0.25rem 0;
  }

  .hero__actions {
    margin-top: 22px;
    gap: 10px;
  }

  .hero__actions .btn,
  .hero__actions .btn--ghost {
    width: min(307px, 100%);
    height: 54px;
    min-height: 54px;
    padding: 14px 16px;
  }

  .hero-jumps {
    margin-top: 14px;
    gap: 8px;
  }

  .hero-jumps a {
    height: 34px;
    padding: 0 14px;
    font-size: 14px;
  }

  .services .section-head {
    margin-bottom: 42px;
  }

  .services .section-head .eyebrow {
    font-size: 13px;
    line-height: 1;
  }

  .services .section-head h2 {
    margin-top: 12px;
    font-size: clamp(30px, 9vw, 42px);
    line-height: 0.98;
  }

  .services-grid {
    --service-card-width: min(344px, 100%);
    grid-template-columns: 1fr;
    justify-items: center;
    column-gap: 0;
    row-gap: 32px;
  }

  .service-card {
    width: min(344px, 100%);
  }

  .service-card--cta .btn {
    width: min(192px, 100%);
  }

  .about .eyebrow {
    font-size: 16px;
  }

  .about h2 {
    margin: 16px 0 18px;
    font-size: clamp(30px, 10vw, 42px);
    line-height: 1;
  }

  .about__copy > h2 + p {
    margin-top: 0;
  }

  .about__copy > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.45;
  }

  .about__copy > p + p {
    margin-top: 14px;
  }

  .stats article {
    height: auto;
    min-height: 108px;
    width: 100%;
    padding: 22px 18px 14px;
  }

  .stats strong {
    font-size: 30px;
  }

  .stats span {
    margin-top: 6px;
    font-size: 17px;
  }

  .process .section-head {
    margin-bottom: 34px;
  }

  .process .section-head .eyebrow {
    font-size: 14px;
  }

  .process .section-head h2 {
    margin-top: 14px;
    font-size: clamp(30px, 9vw, 40px);
    line-height: 0.98;
  }

  .process-grid {
    gap: 18px;
  }

  .process-grid article {
    min-height: 0;
    padding: 22px 18px;
    grid-template-columns: 44px 1fr;
    column-gap: 12px;
    row-gap: 14px;
  }

  .process-grid span {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .process-grid h3 {
    font-size: 20px;
  }

  .process-grid p {
    font-size: 16px;
    line-height: 1.4;
  }

  .contacts__info {
    padding: 24px 20px;
  }

  .cta-form {
    padding: 22px 18px 20px;
  }

  .cta-form label {
    font-size: 16px;
  }

  .cta-form input,
  .cta-form select,
  .cta-form textarea {
    height: 50px;
    min-height: 50px;
    font-size: 16px;
    padding: 0 14px;
  }

  .cta-form textarea {
    min-height: 120px;
    height: auto;
    padding: 14px;
  }

  .cta-form .btn--wide {
    height: 54px;
    min-height: 54px;
    font-size: 16px;
  }

  .contacts__info h2 {
    font-size: clamp(2.2rem, 8vw, 3.1rem);
  }

  .contacts__rule {
    width: 124px;
    height: 7px;
  }

  .contacts__info p,
  .cta-form label,
  .cta-form input,
  .cta-form select,
  .cta-form textarea,
  .form-note {
    font-size: 0.9rem;
  }

  .staff-picker {
    padding: 12px;
  }

  .staff-picker__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .staff-row {
    grid-template-columns: 1fr;
  }

  .staff-row__custom {
    grid-column: 1;
  }

  .btn--staff-add,
  .btn--staff-remove {
    width: 100%;
  }

  .contacts {
    padding-bottom: 10.5rem;
  }

  .contacts-decor {
    left: 50%;
    right: auto;
    bottom: -3.3rem;
    margin: 0;
    transform: translateX(-50%);
  }

  .contacts-decor__image {
    width: min(760px, 170vw);
    min-width: 0;
    opacity: 1;
  }

  .support {
    margin-top: -3.2rem;
    padding-top: 2.3rem;
  }

  .support-card {
    padding: 28px 12px 20px 18px;
  }

  .support-card h2 {
    font-size: clamp(30px, 10vw, 44px);
  }

  .support-card__rule {
    width: clamp(180px, 58vw, 300px);
    height: 9px;
  }

  .support-card p {
    font-size: clamp(18px, 5.6vw, 24px);
    line-height: 1;
  }

  .support-chat {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
    min-height: 300px;
  }

  .support-chat::before {
    inset: 10px 10px 18px;
    border-radius: 12px;
  }

  .support-chat__placeholder {
    left: 14px;
    right: 14px;
    top: 14px;
    bottom: 72px;
    border-radius: 12px;
    padding: 10px;
  }

  .support-chat__message {
    max-width: 92%;
    border-radius: 12px;
  }

  .support-chat__message-author {
    font-size: 11px;
  }

  .support-chat__message-text {
    font-size: 13px;
  }

  .support-chat__empty {
    font-size: 12px;
  }

  .support-chat__ask {
    width: calc(100% - 24px);
    bottom: 24px;
    height: 44px;
  }

  .support-chat__submit {
    width: 44px;
  }

  .support-chat__icon {
    width: 19px;
    height: 19px;
  }

  .support-chat__ask input {
    font-size: 16px;
  }

  .footer__inner {
    flex-wrap: wrap;
  }

  .footer {
    margin-top: 84px;
    padding-bottom: 50px;
  }

  .footer-placeholder {
    width: min(260px, 70vw);
  }

  .reviews-slider {
    grid-template-columns: 1fr;
  }

  .reviews-nav {
    display: none;
  }

  .page-reviews .reviews-track {
    display: grid;
    gap: 0.9rem;
  }

  .page-reviews .review {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
