:root {
  --page-bg: #f7f7fb;
  --surface: #ffffff;
  --surface-soft: #f1f0ff;
  --surface-muted: #f6f5ff;
  --text: #1d2240;
  --muted: #6f7494;
  --line: rgba(72, 82, 160, 0.12);
  --violet: #5d52ff;
  --violet-strong: #4f45f5;
  --violet-soft: #ebe9ff;
  --cyan: #a4f3da;
  --sky: #a7d7ff;
  --lavender: #d9d3ff;
  --shadow: 0 30px 80px rgba(89, 92, 171, 0.12);
  --shadow-soft: 0 14px 32px rgba(89, 92, 171, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --layout-width: 1680px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at left top, rgba(140, 158, 255, 0.16), transparent 28%),
    radial-gradient(circle at right bottom, rgba(164, 243, 218, 0.12), transparent 22%),
    linear-gradient(180deg, #fbfbff 0%, var(--page-bg) 100%);
  color: var(--text);
  font-family: "Golos Text", sans-serif;
}

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

.page {
  min-width: 1440px;
}

.site-header,
.layout {
  width: min(calc(100% - 160px), var(--layout-width));
  margin: 0 auto;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 24px 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
}

.brand-mark-shape {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, #66d5ff, var(--violet));
  transform: rotate(18deg);
  box-shadow: 0 8px 22px rgba(93, 82, 255, 0.28);
}

.brand-name {
  font-size: 15px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  color: var(--muted);
  font-size: 13px;
}

.nav-action {
  justify-self: end;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(93, 82, 255, 0.08);
  color: var(--violet-strong);
  font-size: 13px;
  font-weight: 700;
}

.layout {
  display: grid;
  gap: 28px;
  padding-bottom: 80px;
}

.hero-section,
.trust-band,
.reason-section,
.trajectory-panel,
.contact-block,
.next-band,
.stats-section {
  border-radius: var(--radius-xl);
}

.hero-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  padding: 54px 54px 44px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 246, 255, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy h1,
.trust-header h2,
.reason-section h2,
.trajectory-header h2,
.contact-block h2,
.next-copy h2,
.stats-header h2 {
  margin: 0;
  font-family: "Golos Text", sans-serif;
}

.hero-copy h1 {
  max-width: 620px;
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--violet-strong), #7a72ff);
  box-shadow: 0 18px 34px rgba(93, 82, 255, 0.22);
}

.button-ghost {
  color: var(--violet-strong);
  border: 1px solid rgba(93, 82, 255, 0.14);
  background: rgba(93, 82, 255, 0.05);
}

.hero-visual {
  display: grid;
  place-items: center;
  align-self: end;
}

.hero-image {
  display: block;
  width: min(100%, 620px);
  max-width: 620px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(86, 78, 195, 0.18));
}

.trust-band,
.next-band {
  padding: 30px 32px;
  background:
    radial-gradient(circle at left bottom, rgba(96, 92, 255, 0.42), transparent 34%),
    linear-gradient(135deg, #4d44f5 0%, #6458ff 54%, #7a70ff 100%);
  color: white;
  box-shadow: var(--shadow);
}

.trust-header {
  margin-bottom: 18px;
}

.trust-header h2,
.next-copy h2 {
  font-size: 34px;
  line-height: 1.05;
}

.trust-grid,
.trajectory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-card,
.trajectory-card,
.reason-pill,
.step-tile {
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
}

.trust-card {
  min-height: 156px;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.trust-card strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 44px;
  line-height: 1;
}

.trust-card span {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  font-weight: 700;
}

.trust-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.reason-section {
  padding: 18px 0 0;
}

.reason-section h2 {
  font-size: 36px;
  line-height: 1.08;
}

.reason-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.reason-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-size: 18px;
  font-weight: 600;
}

.reason-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(93, 82, 255, 0.08);
  color: var(--violet-strong);
  font-size: 16px;
  font-weight: 700;
}

.trajectory-panel {
  padding: 38px 34px 34px;
  background: linear-gradient(180deg, rgba(241, 239, 255, 0.95), rgba(245, 244, 255, 0.9));
  border: 1px solid rgba(93, 82, 255, 0.08);
  box-shadow: var(--shadow);
}

.trajectory-header {
  margin-bottom: 22px;
}

.trajectory-header h2 {
  font-size: 40px;
}

.trajectory-card {
  min-height: 308px;
  padding: 26px 24px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(93, 82, 255, 0.08);
}

.trajectory-card-accent {
  border-color: rgba(93, 82, 255, 0.18);
  box-shadow: inset 0 0 0 2px rgba(93, 82, 255, 0.06);
}

.trajectory-card h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

.trajectory-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.trajectory-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.6;
}

.trajectory-card li + li {
  margin-top: 10px;
}

.contact-block {
  display: grid;
  justify-items: center;
  padding: 44px 54px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(126, 203, 255, 0.35), rgba(93, 82, 255, 0.14));
  color: var(--violet-strong);
  font-size: 20px;
  box-shadow: 0 10px 24px rgba(93, 82, 255, 0.18);
}

.contact-block h2 {
  margin-top: 18px;
  font-size: 46px;
}

.contact-block p {
  max-width: 920px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.contact-input {
  display: flex;
  align-items: center;
  width: min(840px, 100%);
  min-height: 70px;
  margin-top: 26px;
  padding: 0 24px;
  border-radius: 18px;
  background: #fbfbff;
  border: 1px solid rgba(93, 82, 255, 0.08);
  color: #b0b4d0;
  font-size: 17px;
}

.next-band {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 26px;
  align-items: center;
}

.next-copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.next-steps {
  display: grid;
  gap: 14px;
}

.step-tile {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 0 20px;
  border-radius: 18px;
}

.step-number {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(93, 82, 255, 0.08);
  color: var(--violet-strong);
  font-size: 16px;
  font-weight: 800;
}

.stats-section {
  padding: 10px 0 0;
}

.stats-header {
  display: grid;
  gap: 16px;
}

.stats-tabs {
  display: inline-flex;
  gap: 12px;
}

.stats-tabs span {
  padding: 10px 18px;
  border-radius: 999px;
  background: #f0eff8;
  color: var(--muted);
  font-size: 13px;
}

.stats-tabs .is-active {
  color: var(--violet-strong);
  background: rgba(93, 82, 255, 0.08);
}

.stats-canvas {
  position: relative;
  height: 360px;
  margin-top: 22px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 246, 255, 0.9));
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.stats-canvas-segments {
  height: 595px;
  padding: 36px 42px 28px;
}

.stats-inner-tabs {
  display: inline-flex;
  gap: 0;
  padding: 4px;
  border-radius: 14px;
  background: #eef0fb;
}

.stats-inner-tab {
  border: 0;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 12px;
  color: #383c52;
  font-size: 15px;
  background: transparent;
  font-family: inherit;
}

.stats-inner-tab.is-active {
  background: #27272d;
  color: white;
}

.stats-view {
  width: 100%;
  height: calc(100% - 86px);
}

.segments-visual {
  position: relative;
  width: 100%;
  height: 100%;
}

.segments-chart-wrap {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  width: 411px;
  height: 411px;
  z-index: 2;
}

.segments-chart {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.segments-chart .apexcharts-canvas,
.segments-chart .apexcharts-svg {
  overflow: visible;
}

.segments-chart .apexcharts-series path {
  filter: drop-shadow(0 20px 40px rgba(80, 66, 225, 0.1));
}

.segments-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 6px;
  pointer-events: none;
  z-index: 3;
}

.segments-center strong {
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  color: var(--text);
}

.segments-center span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(22, 22, 22, 0.56);
}

.segment-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #2d2f37;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 1.15;
  white-space: normal;
  z-index: 3;
}

.segment-copy {
  display: grid;
  gap: 6px;
  min-width: 206px;
}

.segment-copy strong {
  font-family: "Golos Text", sans-serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  color: var(--text);
}

.segment-copy span {
  font-family: "Golos Text", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text);
}

.segment-copy em {
  font-style: normal;
  font-family: "Golos Text", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(22, 22, 22, 0.52);
}

.segment-label-left-top {
  left: 60px;
  top: 94px;
}

.segment-label-left-bottom {
  left: 60px;
  top: 276px;
}

.segment-label-right-top {
  right: 10px;
  top: 72px;
}

.segment-label-right-mid {
  right: 10px;
  top: 186px;
}

.segment-label-right-bottom {
  right: 10px;
  top: 300px;
}

.directions-visual {
  position: relative;
  width: 100%;
  height: 100%;
}

.load-visual {
  display: grid;
  align-content: center;
  gap: 26px;
  width: 100%;
  height: 100%;
  padding: 36px 8px 10px;
}

.load-card {
  padding: 28px 28px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(93, 82, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.load-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.load-card-head strong {
  font-family: "Manrope", sans-serif;
  font-size: 26px;
}

.load-card-head span {
  color: var(--muted);
  font-size: 16px;
}

.load-bar {
  height: 18px;
  border-radius: 999px;
  background: #eff1ff;
  overflow: hidden;
}

.load-bar i {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #5d52ff, #ada8ff);
}

.bubble-stat {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background: rgba(217, 211, 255, 0.88);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(93, 82, 255, 0.04);
}

.bubble-stat strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.bubble-stat span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.bubble-green {
  background: rgba(164, 243, 218, 0.88);
}

.bubble-blue {
  background: rgba(167, 215, 255, 0.88);
}

.bubble-left-small {
  left: 80px;
  top: 142px;
  width: 118px;
  height: 118px;
}

.bubble-top-left {
  left: 230px;
  top: 70px;
  width: 102px;
  height: 102px;
}

.bubble-center-large {
  left: 550px;
  top: 88px;
  width: 210px;
  height: 210px;
}

.bubble-mid {
  left: 440px;
  top: 226px;
  width: 82px;
  height: 82px;
}

.bubble-top-right {
  right: 320px;
  top: 82px;
  width: 86px;
  height: 86px;
}

.bubble-right-large {
  right: 84px;
  top: 162px;
  width: 126px;
  height: 126px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-copy,
.footer-note {
  display: inline-flex;
  gap: 18px;
}

@media (min-width: 1920px) {
  .page {
    min-width: 1920px;
  }

  .site-header,
  .layout {
    width: min(calc(100% - 180px), 1760px);
  }

  .hero-copy h1 {
    font-size: 80px;
  }

  .trust-card {
    min-height: 170px;
  }

  .trajectory-card {
    min-height: 324px;
  }

  .segment-label {
    font-size: 28px;
  }
}
