:root {
  color-scheme: dark;
  --bg: #010204;
  --bg-soft: #05070a;
  --panel: rgba(12, 15, 19, 0.86);
  --panel-solid: #0b0f14;
  --panel-lift: #111821;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.24);
  --text: #f5f8fb;
  --muted: #9aa7b5;
  --quiet: #657485;
  --red: #ef3737;
  --red-soft: rgba(239, 55, 55, 0.14);
  --cyan: #58d4ff;
  --cyan-strong: #36bde8;
  --cyan-soft: rgba(88, 212, 255, 0.15);
  --gold: #f4bd5f;
  --green: #34d399;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    linear-gradient(180deg, #010204 0%, #030508 42%, #010204 100%),
    var(--bg);
  font-family: var(--font-body);
}

:lang(ru) body,
:lang(ru) input,
:lang(ru) button {
  font-family: var(--font-body);
}

:lang(zh) body,
:lang(zh) input,
:lang(zh) button {
  font-family: var(--font-body);
}

:lang(ru) h1,
:lang(ru) h2,
:lang(ru) h3,
:lang(ru) .button,
:lang(ru) .brand,
:lang(ru) .header-telegram,
:lang(ru) .trust-badge,
:lang(ru) .profile-title h2,
:lang(ru) .contact-card strong,
:lang(ru) .hero-metrics strong,
:lang(ru) .fee-result strong {
  font-family: var(--font-display);
}

:lang(zh) h1,
:lang(zh) h2,
:lang(zh) h3,
:lang(zh) .button,
:lang(zh) .brand,
:lang(zh) .header-telegram,
:lang(zh) .trust-badge,
:lang(zh) .profile-title h2,
:lang(zh) .contact-card strong,
:lang(zh) .hero-metrics strong,
:lang(zh) .fee-result strong {
  font-family: var(--font-display);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 82%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 12%, black 82%, transparent);
}

::selection {
  color: #031018;
  background: var(--cyan);
}

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

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

img,
svg {
  display: block;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  padding: 126px clamp(24px, 6vw, 88px) 96px;
  background: #010204;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(1, 2, 4, 0.96), rgba(1, 2, 4, 0.68) 42%, rgba(1, 2, 4, 0.93)),
    linear-gradient(180deg, rgba(88, 212, 255, 0.1), transparent 32%, rgba(239, 55, 55, 0.08)),
    url("assets/pattern.svg"),
    #010204;
  background-size: auto, auto, 260px 260px, auto;
  opacity: 0.95;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 92px 0 auto;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(88, 212, 255, 0.32), rgba(239, 55, 55, 0.24), transparent);
}

.hero-frame {
  position: absolute;
  inset: 28px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.site-header {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  z-index: 5;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 8px 10px 8px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(2, 4, 7, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-display);
}

.brand img {
  width: 34px;
  height: 34px;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 6px;
  color: rgba(222, 232, 242, 0.72);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.language-switcher {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.language-button {
  min-width: 42px;
  min-height: 36px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  color: rgba(222, 232, 242, 0.7);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.language-button:hover,
.language-button:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.language-button.is-active {
  color: #031018;
  background: var(--cyan);
  box-shadow: 0 10px 24px rgba(88, 212, 255, 0.18);
}

.header-telegram {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  color: #031018;
  background: linear-gradient(180deg, #72ddff, #42c4ef);
  box-shadow: 0 16px 36px rgba(66, 196, 239, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.48);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, filter 220ms ease;
}

.header-telegram:hover,
.header-telegram:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 22px 52px rgba(66, 196, 239, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.58);
  outline: none;
}

.header-telegram svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: currentColor;
}

.hero-grid {
  width: min(1440px, 100%);
  min-width: 0;
  min-height: calc(100svh - 222px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
}

.hero-copy-block {
  max-width: 820px;
  min-width: 0;
  animation: heroIntro 760ms var(--ease) 80ms both;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  margin-bottom: 24px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(244, 189, 95, 0.42);
  border-radius: 999px;
  background: rgba(244, 189, 95, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 36px rgba(244, 189, 95, 0.1);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.trust-dot,
.mini-badge {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(52, 211, 153, 0.86);
}

.trust-divider {
  color: rgba(255, 255, 255, 0.46);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 86px;
  font-weight: 900;
  line-height: 0.92;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1::first-line {
  color: #fff;
}

.hero-copy {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(222, 232, 242, 0.74);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.65;
}

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

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 220ms var(--ease), border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: transform 520ms var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(110%);
}

.button.primary {
  color: #031018;
  background: linear-gradient(180deg, #6fe0ff, #37bce8);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 42px rgba(55, 188, 232, 0.2);
}

.button.secondary {
  color: rgba(245, 248, 251, 0.9);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.14);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.09);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 42px;
}

.hero-metrics span {
  min-height: 86px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.profile-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(8, 12, 16, 0.88);
  box-shadow: var(--shadow);
  animation: heroIntro 760ms var(--ease) 190ms both;
}

.profile-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(88, 212, 255, 0.18), transparent 30%, rgba(239, 55, 55, 0.1));
}

.profile-cover {
  height: 168px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(135deg, rgba(88, 212, 255, 0.34), rgba(15, 23, 32, 0.92)),
    url("assets/pattern.svg");
  background-size: auto, 190px 190px;
}

.profile-main {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 0 28px 28px;
  text-align: center;
}

.profile-avatar {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  margin-top: -52px;
  border: 10px solid #081016;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
}

.profile-avatar img {
  width: 74px;
  height: 74px;
}

.profile-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.profile-title h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.profile-main p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.availability {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(52, 211, 153, 0.34);
  border-radius: 999px;
  color: #bff7df;
  background: rgba(52, 211, 153, 0.1);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-list {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.profile-row,
.profile-note {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-row span {
  color: var(--quiet);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-row strong {
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  text-align: right;
}

.profile-note {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.profile-note strong {
  color: var(--cyan);
}

.section {
  padding: 100px clamp(24px, 6vw, 88px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-soft);
}

.section:nth-of-type(odd) {
  background: #030508;
}

.section-heading {
  width: min(1180px, 100%);
  margin: 0 auto 34px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  gap: 32px;
}

.section-heading.compact {
  margin: 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(88, 212, 255, 0.76);
}

h2 {
  margin: 0;
  max-width: 760px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
}

.process-grid,
.terms-grid,
.contacts-grid,
.team-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

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

.reviews-carousel {
  width: min(1180px, 100%);
  margin: 0 auto 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(88, 212, 255, 0.1), transparent 42%, rgba(239, 55, 55, 0.08)),
    var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.reviews-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.reviews-head h3 {
  margin: 0;
  font-size: 25px;
}

.reviews-controls {
  display: inline-flex;
  gap: 8px;
  flex: 0 0 auto;
}

.reviews-control {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  font: inherit;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms var(--ease);
}

.reviews-control:hover,
.reviews-control:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(88, 212, 255, 0.46);
  background: rgba(88, 212, 255, 0.12);
  outline: none;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transform: translateX(0);
  transition: transform 520ms var(--ease);
  will-change: transform;
}

.review-card {
  flex: 0 0 100%;
  min-height: 238px;
  padding: 28px;
  display: grid;
  align-content: start;
  gap: 28px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.review-user img {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(88, 212, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.review-user div {
  min-width: 0;
}

.review-user strong,
.review-user span {
  display: block;
}

.review-user strong {
  overflow-wrap: anywhere;
  color: #fff;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.05;
}

.review-user span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.review-card p {
  max-width: 900px;
  margin: 0;
  color: rgba(245, 248, 251, 0.88);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.34;
  text-wrap: balance;
}

.reviews-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 24px 24px;
}

.reviews-dots button {
  width: 28px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
}

.reviews-dots button:hover,
.reviews-dots button:focus-visible {
  background: rgba(88, 212, 255, 0.55);
  outline: none;
}

.reviews-dots button.is-active {
  width: 44px;
  background: var(--cyan);
}

.contacts-grid {
  grid-template-columns: minmax(0, 520px);
}

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

.process-card,
.term-card,
.contact-card,
.calculator-panel {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.process-card,
.term-card {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  padding: 28px;
}

.process-card::before,
.term-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--cyan), var(--red));
  transition: transform 260ms var(--ease);
}

.process-card:hover::before,
.term-card:hover::before,
.contact-card:hover::before,
.contact-card:focus-visible::before {
  transform: scaleX(1);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 36px;
  margin-bottom: 44px;
  padding: 0 12px;
  color: #fff;
  border: 1px solid rgba(88, 212, 255, 0.28);
  border-radius: 999px;
  background: var(--cyan-soft);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
}

h3 {
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.08;
}

.process-card p,
.term-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.58;
}

.calculator-section {
  background:
    linear-gradient(90deg, rgba(88, 212, 255, 0.08), transparent 38%, rgba(239, 55, 55, 0.06)),
    #020406;
}

.calculator-panel {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.82fr 0.62fr;
  gap: 24px;
  align-items: end;
  padding: 34px;
  background: rgba(8, 12, 17, 0.92);
}

.fee-calculator {
  display: grid;
  gap: 12px;
}

.fee-calculator label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.amount-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.26);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.amount-field:focus-within {
  border-color: rgba(88, 212, 255, 0.58);
  background: rgba(0, 0, 0, 0.36);
  box-shadow: 0 0 0 4px rgba(88, 212, 255, 0.08);
}

.amount-field span {
  padding-left: 20px;
  color: var(--quiet);
  font-size: 22px;
  font-weight: 900;
}

.amount-field input {
  width: 100%;
  min-width: 0;
  height: 66px;
  padding: 0 18px 0 10px;
  color: #fff;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 26px;
  font-weight: 900;
}

.amount-field input::placeholder {
  color: rgba(255, 255, 255, 0.24);
}

.fee-result {
  min-height: 104px;
  padding: 20px;
  border: 1px solid rgba(239, 55, 55, 0.36);
  border-radius: 8px;
  background: var(--red-soft);
}

.fee-result span,
.fee-result strong {
  display: block;
}

.fee-result span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.fee-result strong {
  margin-top: 10px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.contact-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 220ms var(--ease), border-color 220ms ease, background-color 220ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(88, 212, 255, 0.32);
  background: var(--panel-lift);
  outline: none;
}

.contact-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  overflow-wrap: anywhere;
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
}

.contact-card small {
  display: block;
  margin-top: 14px;
  color: rgba(222, 232, 242, 0.7);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.main-contact {
  min-height: 188px;
  border-color: rgba(88, 212, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(88, 212, 255, 0.14), rgba(239, 55, 55, 0.08)),
    var(--panel-solid);
}

.main-contact strong {
  font-size: 42px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(24px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #010204;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.process-grid .reveal:nth-child(2),
.terms-grid .reveal:nth-child(2),
.team-grid .reveal:nth-child(2) {
  transition-delay: 70ms;
}

.process-grid .reveal:nth-child(3),
.terms-grid .reveal:nth-child(3),
.team-grid .reveal:nth-child(3) {
  transition-delay: 120ms;
}

.team-grid .reveal:nth-child(4) {
  transition-delay: 40ms;
}

.team-grid .reveal:nth-child(5) {
  transition-delay: 90ms;
}

@keyframes heroIntro {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy-block {
    max-width: 900px;
  }

  .profile-card {
    width: min(560px, 100%);
  }

  h1 {
    font-size: 72px;
  }

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

  .calculator-panel {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding: 112px 20px 70px;
  }

  .hero-frame {
    inset: 18px;
  }

  .site-header {
    top: 18px;
    left: 18px;
    right: 18px;
    min-height: 60px;
    gap: 10px;
    padding: 7px 8px 7px 14px;
  }

  .brand {
    font-size: 13px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .header-telegram {
    min-height: 46px;
    padding: 0 16px;
    border-radius: 13px;
    gap: 9px;
    font-size: 14px;
  }

  .language-switcher {
    padding: 3px;
  }

  .language-button {
    min-width: 36px;
    min-height: 32px;
    padding: 0 7px;
    font-size: 11px;
  }

  .header-telegram svg {
    width: 20px;
    height: 20px;
  }

  h1 {
    font-size: 52px;
    line-height: 0.98;
  }

  h2 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    flex: 1 1 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics span {
    min-height: 74px;
  }

  .reviews-head {
    align-items: flex-start;
    padding: 20px;
  }

  .review-card {
    min-height: 286px;
    padding: 22px 20px;
    gap: 24px;
  }

  .review-card p {
    font-size: 19px;
    line-height: 1.42;
    text-wrap: auto;
  }

  .reviews-dots {
    padding: 0 20px 22px;
  }

  .split-heading,
  .process-grid,
  .terms-grid,
  .contacts-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 20px;
  }

  .calculator-panel {
    padding: 24px;
  }

  .profile-row {
    display: block;
  }

  .profile-row strong {
    display: block;
    margin-top: 8px;
    text-align: left;
  }

  .main-contact strong {
    font-size: 34px;
  }
}

@media (max-width: 430px) {
  .brand span {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  :lang(ru) h1 {
    font-size: 36px;
  }

  .header-telegram {
    width: 46px;
    padding: 0;
  }

  .header-telegram span {
    display: none;
  }

  .language-button {
    min-width: 34px;
    padding: 0 6px;
  }

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

  .reviews-controls {
    justify-self: start;
  }

  .reviews-control {
    width: 42px;
    height: 42px;
  }

  .review-user img {
    width: 56px;
    height: 56px;
  }

  .review-user strong {
    font-size: 21px;
  }

  .review-card p {
    font-size: 17px;
  }

  .reviews-dots button {
    width: 22px;
  }

  .reviews-dots button.is-active {
    width: 34px;
  }

  .profile-cover {
    height: 138px;
  }

  .profile-title h2 {
    font-size: 27px;
  }

  .main-contact strong {
    font-size: 30px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
