* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #0d0f14;
  color: #ffffff;
  line-height: 1.5;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.page {
  overflow: hidden;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.container--small {
  width: min(820px, calc(100% - 32px));
}

.hero {
  position: relative;
  padding: 72px 0 56px;
  background:
    radial-gradient(circle at top left, rgba(95, 70, 255, 0.35), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 79, 129, 0.24), transparent 34%),
    linear-gradient(135deg, #11131b 0%, #0d0f14 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: #d7dcff;
  font-size: 14px;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero__text {
  max-width: 660px;
  margin-bottom: 28px;
  color: #c7ccdc;
  font-size: 20px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 720px;
  margin-bottom: 30px;
}

.hero__stats div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
}

.hero__stats strong {
  display: block;
  margin-bottom: 4px;
  font-size: 24px;
  line-height: 1.1;
}

.hero__stats span {
  color: #aeb5c8;
  font-size: 14px;
}

.hero__card {
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.05));
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
}

.hero__card h2 {
  margin-bottom: 18px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.hero__card ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero__card li {
  position: relative;
  padding-left: 30px;
  color: #e6e9f4;
}

.hero__card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #8cffc1;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 58px;
  padding: 17px 28px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.18s ease, opacity 0.18s ease, box-shadow 0.18s ease;
}

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

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}

.btn--primary {
  background: linear-gradient(135deg, #ff477e, #7c5cff);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(124, 92, 255, 0.28);
}

.btn--full {
  width: 100%;
}

.section {
  padding: 72px 0;
  background: #0d0f14;
}

.section--dark {
  background:
    linear-gradient(180deg, #11131b 0%, #0d0f14 100%);
}

.section__head {
  margin-bottom: 34px;
}

.section__label {
  display: inline-block;
  margin-bottom: 10px;
  color: #ff7aa3;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.section__head h2 {
  max-width: 720px;
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.section__head p {
  color: #b9bfd0;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit,
.condition,
.form-box,
.faq details,
.thank-card {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.055);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.benefit {
  min-height: 310px;
  padding: 24px;
  border-radius: 26px;
}

.benefit__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  font-size: 26px;
}

.benefit h3,
.condition h3 {
  margin-bottom: 10px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.benefit p,
.condition p,
.faq p,
.form-note,
.thank-card p {
  color: #b9bfd0;
  font-size: 15px;
  line-height: 1.6;
}

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

.condition {
  padding: 26px;
  border-radius: 26px;
}

.condition span {
  display: block;
  margin-bottom: 12px;
  font-size: 30px;
}

.condition strong {
  color: #ffffff;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  overflow: hidden;
  border-radius: 20px;
}

.faq summary {
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  float: right;
  color: #ff7aa3;
  font-size: 22px;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  padding: 0 22px 22px;
  margin-bottom: 0;
}

.form-section {
  padding-bottom: 90px;
  background:
    radial-gradient(circle at bottom, rgba(124, 92, 255, 0.20), transparent 34%),
    #0d0f14;
}

.form-box {
  padding: 34px;
  border-radius: 30px;
}

.lead-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: #edf0fb;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 16px;
  outline: none;
  padding: 15px 16px;
  background: rgba(255,255,255,0.075);
  color: #ffffff;
  transition: border-color 0.18s ease, background 0.18s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 122, 163, 0.8);
  background: rgba(255,255,255,0.1);
}

select option {
  color: #111111;
}

textarea {
  resize: vertical;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-note {
  margin: -2px 0 0;
  font-size: 13px;
}

.form-message {
  display: none;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 800;
}

.form-message.is-error {
  display: block;
  background: rgba(255, 71, 126, 0.14);
  color: #ffb4c9;
}

.form-message.is-success {
  display: block;
  background: rgba(140, 255, 193, 0.12);
  color: #b7ffd5;
}

.thank-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(95, 70, 255, 0.38), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 79, 129, 0.22), transparent 34%),
    #0d0f14;
}

.thank-card {
  width: min(620px, 100%);
  padding: 42px;
  border-radius: 32px;
  text-align: center;
}

.thank-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 24px;
  background: rgba(140, 255, 193, 0.12);
  font-size: 36px;
}

.thank-card h1 {
  margin-bottom: 14px;
  font-size: clamp(34px, 6vw, 54px);
}

.thank-card p {
  margin-bottom: 26px;
  font-size: 18px;
}

@media (max-width: 980px) {
  .hero__inner,
  .benefits,
  .conditions {
    grid-template-columns: 1fr 1fr;
  }

  .hero__content {
    grid-column: 1 / -1;
  }

  .hero__card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 44px 0 42px;
  }

  .section {
    padding: 52px 0;
  }

  .hero__inner,
  .hero__stats,
  .benefits,
  .conditions,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero__text {
    font-size: 17px;
  }

  .hero__stats div,
  .benefit,
  .condition,
  .form-box,
  .hero__card {
    border-radius: 22px;
  }

  .form-box {
    padding: 24px;
  }

  .thank-card {
    padding: 30px 22px;
  }
}

.cta-section {
  padding-top: 40px;
  padding-bottom: 40px;
  background:
    radial-gradient(circle at center, rgba(255, 71, 126, 0.16), transparent 38%),
    #0d0f14;
}

.cta-box {
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.045));
  box-shadow: 0 22px 70px rgba(0,0,0,0.25);
  text-align: center;
}

.cta-box h2 {
  max-width: 720px;
  margin: 0 auto 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.cta-box p {
  max-width: 640px;
  margin: 0 auto 24px;
  color: #b9bfd0;
  font-size: 17px;
}

.cta-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.cta-steps div {
  padding: 18px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
}

.cta-steps strong {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff477e, #7c5cff);
  color: #ffffff;
  font-size: 18px;
}

.cta-steps span {
  display: block;
  color: #edf0fb;
  font-weight: 800;
  font-size: 14px;
}

.cta-note {
  color: #ffb4c9 !important;
  font-weight: 900;
}

.faq details p + p {
  margin-top: 12px;
}

.faq strong {
  color: #ffffff;
}

@media (max-width: 680px) {
  .cta-box {
    padding: 26px 20px;
  }

  .cta-steps {
    grid-template-columns: 1fr;
  }
}

.top-live-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  background: rgba(13, 15, 20, 0.94);
  backdrop-filter: blur(14px);
}

.top-live-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 1160px;
  margin: 0 auto;
  color: #edf0fb;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.top-live-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.top-live-bar strong {
  color: #ffffff;
}

.top-live-bar__separator {
  color: rgba(255,255,255,0.35);
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8cffc1;
  box-shadow: 0 0 0 6px rgba(140, 255, 193, 0.12);
  flex: 0 0 auto;
}

@media (max-width: 680px) {
  .top-live-bar {
    padding: 8px 10px;
  }

  .top-live-bar__inner {
    gap: 7px;
    font-size: 12px;
    line-height: 1.25;
  }

  .top-live-bar__item span:last-child {
    display: none;
  }

  .top-live-bar__item:first-child::after {
    content: "переглядають";
  }

  .top-live-bar__item:last-child::after {
    content: "місця";
  }
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #c7ccdc;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.checkbox-label input {
  width: auto;
  min-width: 16px;
  margin-top: 3px;
  accent-color: #ff477e;
}

.fit-section {
  background:
    radial-gradient(circle at left, rgba(124, 92, 255, 0.13), transparent 32%),
    #0d0f14;
}

.fit-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.fit-intro {
  position: sticky;
  top: 70px;
}

.fit-intro h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.fit-intro p {
  max-width: 420px;
  margin: 0;
  color: #b9bfd0;
  font-size: 16px;
  line-height: 1.65;
}

.fit-list {
  display: grid;
  gap: 14px;
}

.fit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}

.fit-item > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  font-size: 24px;
}

.fit-item h3 {
  margin-bottom: 6px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.fit-item p {
  margin: 0;
  color: #b9bfd0;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .fit-layout {
    grid-template-columns: 1fr;
  }

  .fit-intro {
    position: static;
  }

  .fit-intro p {
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  .fit-item {
    grid-template-columns: 1fr;
  }
}

.form-notes {
  display: grid;
  gap: 5px;
  margin-top: -2px;
}

.form-notes p {
  margin: 0;
  color: #9fa6ba;
  font-size: 12.5px;
  line-height: 1.45;
}

.form-notes p:last-child {
  color: #b9bfd0;
}

.phone-field {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 10px;
}

.phone-field select,
.phone-field input {
  width: 100%;
}

.phone-field select {
  padding-left: 12px;
  padding-right: 10px;
}

@media (max-width: 480px) {
  .phone-field {
    grid-template-columns: 1fr;
  }
}