:root {
  --bg: #040814;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --blue: #2f6bff;
  --cyan: #00c2ff;
  --violet: #7c2cff;
  --success: #35d39a;
  --container: 1420px;
  --radius-xl: 26px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 45%, rgba(53, 103, 255, 0.28), transparent 18%),
    radial-gradient(circle at 2% 82%, rgba(125, 0, 255, 0.16), transparent 12%),
    radial-gradient(circle at 86% 68%, rgba(115, 0, 255, 0.20), transparent 16%),
    radial-gradient(circle at 78% 58%, rgba(26, 106, 255, 0.16), transparent 12%),
    linear-gradient(135deg, #020611 0%, #030816 35%, #020712 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  filter: blur(60px);
  z-index: 0;
}

.page-shell::before {
  width: 380px;
  height: 380px;
  left: -120px;
  top: 140px;
  background: radial-gradient(circle, rgba(80, 125, 255, 0.34) 0%, rgba(80, 125, 255, 0) 70%);
}

.page-shell::after {
  width: 320px;
  height: 320px;
  right: -100px;
  bottom: 110px;
  background: radial-gradient(circle, rgba(144, 0, 255, 0.24) 0%, rgba(144, 0, 255, 0) 70%);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: 32px;
  align-items: center;
  padding: 28px 0;
}

.hero-left,
.hero-right {
  min-width: 0;
}

.hero-left {
  display: flex;
  justify-content: center;
}

.hero-content {
  width: 100%;
  max-width: 660px;
  min-width: 0;
  transform: translateX(-18px);
}

.top-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
  width: 100%;
  margin-bottom: 26px;
}

.badge-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 10px 16px;
  border-radius: 15px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(25, 35, 66, 0.16));
  border: 1px solid rgba(120, 142, 255, 0.22);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  min-width: 0;
}

.badge-link:hover {
  transform: translateY(-2px);
  border-color: rgba(93, 146, 255, 0.45);
  box-shadow: 0 8px 24px rgba(30, 60, 140, 0.16);
}

.badge-link.alt {
  background: linear-gradient(90deg, rgba(18, 82, 128, 0.24), rgba(5, 11, 23, 0.16) 72%);
  border-color: rgba(0, 187, 255, 0.18);
}

.badge-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1 1 auto;
}

.badge-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(67, 110, 255, 0.95), rgba(0, 198, 255, 0.95));
  box-shadow: 0 0 14px rgba(55, 129, 255, 0.35);
}

.badge-icon svg {
  width: 10px;
  height: 10px;
  fill: white;
}

.badge-text {
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}

.badge-arrow {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  opacity: 0.9;
}

.promo-badge {
  cursor: pointer;
}

.badge-accent {
  color: #7db4ff;
  font-weight: 700;
}

.brand-wrap {
  max-width: 660px;
  min-width: 0;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
  min-width: 0;
}

.brand-logo {
  width: 86px;
  height: 86px;
  flex: 0 0 86px;
  display: block;
  object-fit: contain;
}

.brand-title {
  margin: 0;
  min-width: 0;
  font-size: clamp(42px, 4.8vw, 82px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  font-weight: 800;
  color: #fff;
  overflow-wrap: anywhere;
}

.brand-subtitle {
  margin: 0 0 20px 104px;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.4;
  color: var(--muted);
  font-weight: 500;
  max-width: 520px;
}

.counter-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin: 0 0 6px;
  min-width: 0;
}

.counter-block {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 0;
  max-width: 100%;
}

.currency-sign {
  font-size: clamp(34px, 3vw, 58px);
  line-height: 0.9;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
  flex: 0 0 auto;
}

.counter {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 0;
  min-width: 0;
  max-width: 100%;
  font-weight: 700;
  font-size: clamp(38px, 5vw, 82px);
  line-height: 0.82;
  color: #fff;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums lining-nums;
}

.digit-slot {
  position: relative;
  width: 0.68em;
  height: 1em;
  overflow: hidden;
  display: inline-block;
  flex: 0 0 auto;
}

.digit-slot.separator {
  width: 0.35em;
}

.digit-reel {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  transition: transform 900ms cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.digit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 1em;
}

.separator-char {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 1em;
  opacity: 0.92;
}

.info-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  font-weight: 700;
}

.counter-note {
  width: 100%;
  max-width: 560px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 128px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(102, 148, 255, 0.42);
  background: linear-gradient(180deg, rgba(45, 82, 163, 0.78), rgba(22, 43, 88, 0.84));
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 10px 24px rgba(21, 52, 124, 0.18);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.action-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(126, 170, 255, 0.72);
  box-shadow: 0 16px 36px rgba(21, 52, 124, 0.25);
}

.action-btn svg {
  width: 20px;
  height: 20px;
  stroke: white;
  stroke-width: 1.8;
  fill: none;
}

.action-row.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
  max-width: 760px;
  width: 100%;
}

.feature-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 92px;
  padding: 16px 16px 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(102, 148, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(17, 28, 56, 0.38));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 10px 24px rgba(5, 15, 40, 0.18);
  transition:
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease,
    background .35s ease,
    opacity .35s ease;
  opacity: 0.72;
  min-width: 0;
}

.feature-card:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.feature-card--active {
  opacity: 1;
  border-color: rgba(111, 166, 255, 0.68);
  background: linear-gradient(180deg, rgba(49, 92, 196, 0.34), rgba(19, 39, 84, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(114, 164, 255, 0.08),
    0 16px 38px rgba(28, 88, 255, 0.22),
    0 0 28px rgba(48, 111, 255, 0.16);
}

.feature-card--active .feature-icon {
  background: linear-gradient(135deg, #2f6bff 0%, #00c2ff 100%);
  box-shadow: 0 0 20px rgba(62, 124, 255, 0.34);
}

.feature-card--active::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  pointer-events: none;
  box-shadow: 0 0 24px rgba(79, 134, 255, 0.16);
}

.feature-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background .35s ease, box-shadow .35s ease;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  stroke-width: 1.9;
}

.feature-text {
  min-width: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  overflow-wrap: anywhere;
}

.feature-accent {
  color: #8dc0ff;
  font-weight: 700;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.form-card {
  width: 100%;
  max-width: 430px;
  position: relative;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(11, 20, 38, 0.94), rgba(8, 15, 30, 0.88));
  border: 1px solid rgba(86, 118, 255, 0.20);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  padding: 24px;
  overflow: hidden;
}

.form-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(74, 112, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.form-card::after {
  content: "";
  position: absolute;
  bottom: -130px;
  left: -100px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(126, 32, 255, 0.14), transparent 70%);
  pointer-events: none;
}

.form-inner {
  position: relative;
  z-index: 2;
}

.form-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(32, 54, 104, 0.44);
  border: 1px solid rgba(115, 146, 255, 0.18);
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  margin-bottom: 14px;
}

.form-title {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.form-subtitle {
  margin: 10px 0 20px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.5;
  max-width: 360px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.field-group {
  display: grid;
  gap: 7px;
}

.field-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
}

.input,
.select {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 0 14px;
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  appearance: none;
  min-width: 0;
}

.input::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.input:focus,
.select:focus {
  border-color: rgba(104, 153, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(75, 117, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 2px;
}

.checkbox-row input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
  flex: 0 0 auto;
}

.checkbox-row label {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}

.checkbox-row a {
  color: #91b6ff;
}

.submit-btn {
  margin-top: 4px;
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #2a63ff 0%, #3c89ff 55%, #14b8ff 100%);
  box-shadow: 0 16px 36px rgba(28, 88, 255, 0.3);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(28, 88, 255, 0.38);
  filter: brightness(1.04);
}

.form-footnote {
  margin: 12px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  line-height: 1.5;
}

.success-box {
  margin-top: 12px;
  min-height: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .45s ease, opacity .35s ease, margin-top .35s ease;
  border-radius: 14px;
  background: rgba(53, 211, 154, 0.09);
  border: 1px solid rgba(53, 211, 154, 0.24);
  color: #d9fff1;
  padding: 0 14px;
  font-size: 13px;
}

.success-box.show {
  max-height: 120px;
  opacity: 1;
  margin-top: 14px;
  padding: 12px 14px;
}

.scroll-to-form {
  display: none;
}

/* Large tablets / small desktops */
@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 24px;
  }

  .hero-content {
    transform: none;
    max-width: 100%;
  }

  .brand-subtitle {
    margin-left: 0;
    max-width: 100%;
  }

  .action-row.feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }
}

/* Tablets */
@media (max-width: 980px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-left {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 22px 0 18px;
  }

  .hero-right {
    min-height: auto;
    display: flex;
    align-items: flex-start;
    padding: 24px 0 36px;
  }

  .hero-content {
    max-width: 100%;
    padding-top: 0;
  }

  .form-card {
    margin-top: 0;
  }

  .top-badges {
    max-width: 100%;
    margin-bottom: 22px;
  }

  .brand-row {
    gap: 14px;
  }

  .brand-logo {
    width: 78px;
    height: 78px;
    flex-basis: 78px;
  }

  .brand-title {
    font-size: clamp(40px, 10vw, 68px);
  }

  .brand-subtitle {
    font-size: 17px;
    margin: 0 0 18px;
  }

  .counter {
    font-size: clamp(34px, 9vw, 64px);
  }

  .currency-sign {
    font-size: clamp(30px, 8vw, 50px);
  }

  .counter-note {
    max-width: 100%;
  }

  .action-row.feature-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature-card {
    min-height: 78px;
    padding: 14px;
  }

  .form-card {
    max-width: 560px;
  }

  .scroll-to-form {
    display: inline-flex;
    margin-top: 16px;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(106, 154, 255, 0.45);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    align-items: center;
    gap: 10px;
    font-weight: 600;
  }
}

/* Phones */
@media (max-width: 640px) {
  body {
    background:
      radial-gradient(circle at 16% 30%, rgba(53, 103, 255, 0.24), transparent 24%),
      radial-gradient(circle at 82% 76%, rgba(125, 0, 255, 0.18), transparent 18%),
      linear-gradient(135deg, #020611 0%, #030816 35%, #020712 100%);
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero-layout {
    gap: 14px;
    padding-top: 18px;
    padding-bottom: 28px;
  }

  .top-badges {
    gap: 8px;
  }

  .badge-link {
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .badge-text {
    font-size: 12px;
  }

  .badge-arrow {
    width: 14px;
    height: 14px;
  }

  .brand-row {
    gap: 12px;
    align-items: center;
  }

  .brand-logo {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .brand-title {
    font-size: clamp(32px, 13vw, 52px);
  }

  .brand-subtitle {
    font-size: 14px;
    line-height: 1.45;
  }

  .counter-block {
    gap: 8px;
  }

  .counter {
    font-size: clamp(28px, 11vw, 46px);
    line-height: 0.9;
  }

  .currency-sign {
    font-size: clamp(26px, 8vw, 40px);
  }

  .info-badge {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .counter-note {
    font-size: 12px;
    line-height: 1.5;
  }

  .feature-card {
    gap: 10px;
    min-height: 74px;
    padding: 13px;
    border-radius: 16px;
  }

  .feature-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .feature-icon svg {
    width: 18px;
    height: 18px;
  }

  .feature-text {
    font-size: 13px;
    line-height: 1.4;
  }

  .form-card {
    max-width: 100%;
    padding: 20px 16px;
    border-radius: 20px;
  }

  .form-title {
    font-size: 24px;
  }

  .form-subtitle {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .input,
  .select,
  .submit-btn {
    min-height: 48px;
    font-size: 14px;
  }

  .checkbox-row label {
    font-size: 11px;
  }

  .form-footnote {
    font-size: 10px;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .badge-link {
    padding: 9px 10px;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .brand-title {
    font-size: clamp(28px, 12vw, 42px);
  }

  .counter {
    font-size: clamp(24px, 10vw, 38px);
  }

  .currency-sign {
    font-size: 24px;
  }

  .form-card {
    padding: 18px 14px;
  }

}

@media (max-width: 640px) {
  .hero-layout {
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-left {
    min-height: 100svh;
    padding: 18px 0 12px;
  }

  .hero-right {
    padding: 18px 0 28px;
  }

  .scroll-to-form {
    display: inline-flex;
    margin-top: 18px;
  }
}

/* =========================
   COMMON SECTION HEADING
========================= */
.section-heading {
  text-align: center;
  margin-bottom: 24px;
}

.section-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.08;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}

.section-title span {
  color: #f3ad2b;
}

/* =========================
   REVIEWS — NEW STYLE
========================= */
.reviews-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 24px 0;
  overflow: hidden;
}

.reviews-shell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - 48px);
}

.reviews-head {
  text-align: center;
  margin-bottom: 22px;
}

.reviews-kicker {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(125, 180, 255, 0.8);
}

.reviews-title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 52px);
  line-height: 1.08;
  font-weight: 700;
  color: #fff;
}

.reviews-title span {
  color: #7db4ff;
}

.reviews-slider {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 18px;
}

.reviews-stage {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.reviews-track {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.review-slide {
  width: 100%;
  min-width: 100%;
  flex: 0 0 100%;
}

.review-panel {
  min-height: min(58svh, 520px);
  max-height: min(58svh, 520px);
  border-radius: 28px;
  padding: 28px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(11, 20, 38, 0.94), rgba(8, 15, 30, 0.9));
  border: 1px solid rgba(86, 118, 255, 0.24);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.review-panel::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(74, 112, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.review-panel::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(126, 32, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.review-top,
.review-body,
.review-footer {
  position: relative;
  z-index: 2;
}

.review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.review-mark {
  font-size: 76px;
  line-height: 0.72;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.review-badge {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(32, 54, 104, 0.44);
  border: 1px solid rgba(115, 146, 255, 0.18);
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  white-space: nowrap;
}

.review-body {
  display: flex;
  align-items: center;
}

.review-body p {
  margin: 0;
  font-size: clamp(16px, 1.15vw, 21px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  max-width: 980px;
}

.review-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 64px;
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.review-person-text {
  min-width: 0;
}

.review-name {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
}

.review-meta {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.76);
}

.reviews-nav {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.reviews-nav:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.reviews-nav svg {
  width: 24px;
  height: 24px;
}

.reviews-dots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.reviews-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.28);
  transition: transform .25s ease, background .25s ease;
}

.reviews-dot.active {
  background: #fff;
  transform: scale(1.18);
}

/* =========================
   TABLET
========================= */
@media (max-width: 980px) {
  .reviews-section {
    padding: 20px 0;
  }

  .reviews-shell {
    min-height: calc(100svh - 40px);
  }

  .reviews-head {
    margin-bottom: 18px;
  }

  .reviews-title {
    font-size: clamp(24px, 5vw, 38px);
  }

  .reviews-slider {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 10px;
  }

  .review-panel {
    min-height: min(60svh, 500px);
    max-height: min(60svh, 500px);
    padding: 22px;
    border-radius: 24px;
    gap: 14px;
  }

  .review-mark {
    font-size: 60px;
  }

  .review-body p {
    font-size: 15px;
    line-height: 1.48;
  }

  .review-avatar {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .review-name {
    font-size: 18px;
  }

  .review-meta {
    font-size: 13px;
  }
}

/* =========================
   PHONE
========================= */
@media (max-width: 640px) {
  .reviews-section {
    padding: 16px 0;
  }

  .reviews-shell {
    min-height: calc(100svh - 32px);
  }

  .reviews-head {
    margin-bottom: 14px;
  }

  .reviews-kicker {
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .reviews-title {
    font-size: clamp(22px, 7vw, 30px);
    line-height: 1.1;
  }

  .reviews-slider {
    grid-template-columns: 1fr;
    gap: 8px;
    position: relative;
  }

  .reviews-stage {
    order: 1;
  }

  .reviews-prev,
  .reviews-next {
    position: absolute;
    bottom: 6px;
    z-index: 5;
    width: 42px;
    height: 42px;
  }

  .reviews-prev {
    left: calc(50% - 60px);
  }

  .reviews-next {
    right: calc(50% - 60px);
  }

  .review-panel {
    min-height: min(66svh, 500px);
    max-height: min(66svh, 500px);
    padding: 18px 16px 68px;
    border-radius: 20px;
    gap: 12px;
  }

  .review-top {
    gap: 10px;
  }

  .review-mark {
    font-size: 48px;
  }

  .review-badge {
    min-height: 30px;
    padding: 0 10px;
    font-size: 11px;
  }

  .review-body p {
    font-size: 14px;
    line-height: 1.45;
  }

  .review-footer {
    justify-content: flex-start;
  }

  .review-avatar {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .review-name {
    font-size: 16px;
  }

  .review-meta {
    font-size: 12px;
  }

  .reviews-dots {
    margin-top: 12px;
    gap: 8px;
  }

  .reviews-dot {
    width: 10px;
    height: 10px;
  }
}

/* =========================
   VERY SMALL PHONE
========================= */
@media (max-width: 380px) {
  .review-panel {
    min-height: min(68svh, 480px);
    max-height: min(68svh, 480px);
    padding: 16px 14px 66px;
  }

  .review-body p {
    font-size: 13px;
  }

  .review-name {
    font-size: 15px;
  }

  .review-meta {
    font-size: 11px;
  }
}

/* =========================
   FAQ — NEW STYLE
========================= */
.faq-section-new {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 28px 0;
  overflow: hidden;
}

.faq-container-new {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - 56px);
}

.faq-header-new {
  text-align: center;
  margin-bottom: 20px;
}

.faq-title-new {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 52px);
  line-height: 1.06;
  font-weight: 700;
  color: #fff;
}

.faq-title-new span {
  color: #f3ad2b;
}

.faq-list-new {
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 46%, rgba(53, 103, 255, 0.16), transparent 18%),
    radial-gradient(circle at 84% 60%, rgba(125, 0, 255, 0.10), transparent 16%),
    linear-gradient(135deg, #020611 0%, #06154a 42%, #081a58 100%);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.faq-row-new {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-row-new:first-child {
  border-top: 0;
}

.faq-trigger-new {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 72px;
  align-items: start;
  gap: 18px;
  text-align: left;
  padding: 28px 28px 20px;
  cursor: pointer;
}

.faq-number-new {
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1;
  font-weight: 800;
  color: #f3ad2b;
  letter-spacing: 0.02em;
}

.faq-question-new {
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
  padding-top: 2px;
}

.faq-toggle-new {
  width: 50px;
  height: 50px;
  justify-self: end;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  position: relative;
  transition: background .25s ease, transform .25s ease;
}

.faq-toggle-new::before,
.faq-toggle-new::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .25s ease, opacity .25s ease;
}

.faq-toggle-new::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-row-new.active .faq-toggle-new::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.4);
}

.faq-content-new {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-row-new.active .faq-content-new {
  max-height: 240px;
}

.faq-content-inner-new {
  padding: 0 100px 28px 130px;
  font-size: clamp(16px, 1.05vw, 22px);
  line-height: 1.45;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.faq-row-new:not(.active) .faq-content-inner-new {
  padding-top: 0;
  padding-bottom: 0;
}

/* =========================
   LARGE TABLETS
========================= */
@media (max-width: 1180px) {
  .faq-trigger-new {
    grid-template-columns: 72px minmax(0, 1fr) 64px;
    padding: 24px 22px 18px;
  }

  .faq-content-inner-new {
    padding: 0 82px 24px 112px;
    font-size: 16px;
  }

  .faq-question-new {
    font-size: clamp(20px, 2.1vw, 28px);
  }

  .faq-number-new {
    font-size: 40px;
  }

  .faq-toggle-new {
    width: 44px;
    height: 44px;
  }
}

/* =========================
   TABLETS
========================= */
@media (max-width: 980px) {
  .faq-section-new {
    min-height: auto;
    padding: 24px 0 32px;
  }

  .faq-container-new {
    min-height: auto;
  }

  .faq-trigger-new {
    grid-template-columns: 64px minmax(0, 1fr) 54px;
    gap: 14px;
    padding: 22px 18px 16px;
  }

  .faq-number-new {
    font-size: 34px;
  }

  .faq-question-new {
    font-size: 24px;
    line-height: 1.16;
  }

  .faq-toggle-new {
    width: 42px;
    height: 42px;
  }

  .faq-content-inner-new {
    padding: 0 18px 22px 96px;
    font-size: 15px;
    line-height: 1.45;
  }
}

/* =========================
   PHONES
========================= */
@media (max-width: 640px) {
  .faq-section-new {
    padding: 18px 0 24px;
  }

  .faq-header-new {
    margin-bottom: 14px;
  }

  .faq-title-new {
    font-size: clamp(24px, 8vw, 34px);
  }

  .faq-list-new {
    border-radius: 22px;
  }

  .faq-trigger-new {
    grid-template-columns: 54px minmax(0, 1fr) 42px;
    gap: 12px;
    padding: 18px 14px 14px;
  }

  .faq-number-new {
    font-size: 28px;
  }

  .faq-question-new {
    font-size: 19px;
    line-height: 1.18;
  }

  .faq-toggle-new {
    width: 38px;
    height: 38px;
  }

  .faq-toggle-new::before,
  .faq-toggle-new::after {
    width: 14px;
  }

  .faq-content-inner-new {
    padding: 0 14px 18px 80px;
    font-size: 14px;
    line-height: 1.45;
  }
}

@media (max-width: 380px) {
  .faq-trigger-new {
    grid-template-columns: 46px minmax(0, 1fr) 38px;
    padding: 16px 12px 12px;
  }

  .faq-number-new {
    font-size: 24px;
  }

  .faq-question-new {
    font-size: 17px;
  }

  .faq-content-inner-new {
    padding: 0 12px 16px 70px;
    font-size: 13px;
  }
}

/*  */
/* =========================
   HOW IT WORKS / STEPS
========================= */
.steps-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 32px 0;
  overflow: hidden;
}

.steps-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.05), transparent 24%);
  pointer-events: none;
}

.steps-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - 64px);
}

.steps-header {
  text-align: center;
  margin-bottom: 34px;
}

.steps-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.steps-title span {
  color: #f3ad2b;
}

.steps-line-wrap {
  position: relative;
  max-width: 1100px;
  width: 100%;
  height: 70px;
  margin: 0 auto 26px;
}

.steps-line {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 38px;
  height: 2px;
  background: rgba(64, 102, 255, 0.65);
}

.steps-point {
  position: absolute;
  top: 12px;
  transform: translateX(-50%);
  text-align: center;
}

.steps-point:nth-child(2) {
  left: 18%;
}

.steps-point:nth-child(3) {
  left: 50%;
}

.steps-point:nth-child(4) {
  left: 82%;
}

.steps-point::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin: 18px auto 0;
  border-radius: 50%;
  background: #3d68ff;
  box-shadow: 0 0 0 8px rgba(61, 104, 255, 0.08);
}

.steps-point--active::after {
  background: #f3ad2b;
  box-shadow: 0 0 0 8px rgba(243, 173, 43, 0.10);
}

.steps-point-label {
  display: inline-block;
  font-size: 18px;
  line-height: 1.2;
  color: #4a73ff;
  font-weight: 500;
}

.steps-point--active .steps-point-label {
  color: #f3ad2b;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.step-card {
  text-align: center;
  min-width: 0;
}

.step-media {
  width: 100%;
  max-width: 310px;
  margin: 0 auto 22px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-media img {
  max-width: 100%;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.28));
}

.step-card-title {
  margin: 0 0 14px;
  font-size: clamp(22px, 1.75vw, 34px);
  line-height: 1.1;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
  text-transform: uppercase;
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
}

.step-card-text {
  margin: 0 auto;
  max-width: 390px;
  font-size: clamp(16px, 1.05vw, 23px);
  line-height: 1.38;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.steps-decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.steps-decor img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.22));
}

.steps-decor--top {
  top: 72px;
  left: 110px;
  width: 54px;
}

.steps-decor--bottom {
  left: 40px;
  bottom: 36px;
  width: 110px;
}

/* =========================
   TABLETS
========================= */
@media (max-width: 1180px) {
  .steps-grid {
    gap: 20px;
  }

  .step-media {
    max-width: 250px;
    min-height: 150px;
    margin-bottom: 18px;
  }

  .step-media img {
    max-height: 170px;
  }

  .step-card-title {
    font-size: clamp(18px, 2vw, 26px);
  }

  .step-card-text {
    font-size: 16px;
  }

  .steps-decor--top {
    left: 30px;
  }

  .steps-decor--bottom {
    left: 10px;
    width: 88px;
  }
}

@media (max-width: 980px) {
  .steps-section {
    min-height: auto;
    padding: 28px 0 34px;
  }

  .steps-container {
    min-height: auto;
  }

  .steps-header {
    margin-bottom: 26px;
  }

  .steps-line-wrap {
    max-width: 760px;
    margin-bottom: 20px;
  }

  .steps-point-label {
    font-size: 16px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    max-width: 620px;
    margin: 0 auto;
  }

  .step-card {
    padding: 0 10px;
  }

  .step-media {
    max-width: 240px;
    min-height: 140px;
    margin-bottom: 16px;
  }

  .step-media img {
    max-height: 160px;
  }

  .step-card-title {
    max-width: 100%;
    font-size: 24px;
  }

  .step-card-text {
    max-width: 100%;
    font-size: 16px;
  }

  .steps-decor--top {
    width: 44px;
    top: 34px;
    left: 8px;
  }

  .steps-decor--bottom {
    width: 74px;
    left: -6px;
    bottom: 16px;
  }
}

/* =========================
   PHONES
========================= */
@media (max-width: 640px) {
  .steps-section {
    padding: 20px 0 26px;
  }

  .steps-header {
    margin-bottom: 20px;
  }

  .steps-title {
    font-size: clamp(24px, 8vw, 34px);
    line-height: 1.08;
  }

  .steps-line-wrap {
    height: 58px;
    margin-bottom: 18px;
  }

  .steps-line {
    left: 10%;
    right: 10%;
    top: 34px;
  }

  .steps-point {
    top: 10px;
  }

  .steps-point:nth-child(2) {
    left: 14%;
  }

  .steps-point:nth-child(3) {
    left: 50%;
  }

  .steps-point:nth-child(4) {
    left: 86%;
  }

  .steps-point-label {
    font-size: 13px;
  }

  .steps-point::after {
    width: 14px;
    height: 14px;
    margin-top: 14px;
  }

  .steps-grid {
    gap: 22px;
  }

  .step-card {
    padding: 0;
  }

  .step-media {
    max-width: 200px;
    min-height: 120px;
    margin-bottom: 14px;
  }

  .step-media img {
    max-height: 130px;
  }

  .step-card-title {
    font-size: 20px;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .step-card-text {
    font-size: 14px;
    line-height: 1.45;
  }

  .steps-decor--top {
    width: 34px;
    top: 18px;
    left: 4px;
  }

  .steps-decor--bottom {
    width: 58px;
    left: -10px;
    bottom: 8px;
  }
}

@media (max-width: 380px) {
  .steps-title {
    font-size: 22px;
  }

  .steps-point-label {
    font-size: 12px;
  }

  .step-card-title {
    font-size: 18px;
  }

  .step-card-text {
    font-size: 13px;
  }
}

/*  */
.section-register-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 22px;
}

.register-anchor-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(102, 148, 255, 0.42);
    background:
    radial-gradient(circle at 12% 46%, rgba(53, 103, 255, 0.16), transparent 18%),
    radial-gradient(circle at 84% 60%, rgba(125, 0, 255, 0.10), transparent 16%),
    linear-gradient(135deg, #020611 0%, #06154a 42%, #081a58 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  box-shadow:
    0 16px 36px rgba(28, 88, 255, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    filter .25s ease,
    border-color .25s ease;
}

.register-anchor-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 42px rgba(28, 88, 255, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  filter: brightness(1.04);
  border-color: rgba(126, 170, 255, 0.72);
}

.register-anchor-btn:active {
  transform: translateY(0);
}

@media (max-width: 640px) {
  .section-register-cta {
    margin-top: 18px;
  }

  .register-anchor-btn {
    min-width: 100%;
    max-width: 320px;
    min-height: 52px;
    padding: 0 22px;
    font-size: 16px;
  }
}