:root {
  --ads-brand: #0c66e4;
  --ads-brand-hover: #0055cc;
  --ads-brand-pressed: #09326c;
  --ads-success: #1f845a;
  --ads-success-bold: #4bce97;
  --ads-danger: #ca3521;
  --ads-surface: #ffffff;
  --ads-surface-sunken: #f7f8f9;
  --ads-surface-dark: #1d2125;
  --ads-surface-dark-raised: #22272b;
  --ads-text: #172b4d;
  --ads-text-subtle: #44546f;
  --ads-text-subtlest: #626f86;
  --ads-text-inverse: #ffffff;
  --ads-text-on-dark: #c7d1db;
  --ads-text-on-dark-subtle: #9fadbc;
  --ads-border: rgba(9, 30, 66, 0.14);
  --ads-border-bold: rgba(9, 30, 66, 0.24);
  --ads-border-dark: rgba(161, 189, 217, 0.16);
  --ads-focus: #388bff;
  --ads-radius-sm: 3px;
  --ads-radius-md: 6px;
  --ads-radius-lg: 8px;
  --ads-radius-xl: 12px;
  --ads-radius-full: 9999px;
  --ads-shadow-raised:
    0 1px 1px rgba(9, 30, 66, 0.25), 0 0 1px rgba(9, 30, 66, 0.31);
  --ads-shadow-overlay:
    0 4px 8px -2px rgba(9, 30, 66, 0.25), 0 0 1px rgba(9, 30, 66, 0.31);
  --ads-shadow-card:
    0 1px 3px rgba(9, 30, 66, 0.12), 0 0 1px rgba(9, 30, 66, 0.24);
  --ads-font:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ads-font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ads-text);
  background: var(--ads-surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

input {
  font: inherit;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--ads-focus);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--ads-brand);
  color: var(--ads-text-inverse);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--ads-radius-sm);
  transition: background 0.15s;
  white-space: nowrap;
}

.btn:hover {
  background: var(--ads-brand-hover);
}

.btn:active {
  background: var(--ads-brand-pressed);
}

.hero {
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: url("../assets/hero-bg.webp") center / cover no-repeat;
  position: relative;
}

@media (min-width: 768px) {
  .hero {
    min-height: auto;
    padding-bottom: 64px;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero__nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px 16px;
}

.hero__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ads-text-inverse);
  font-weight: 600;
  font-size: 18px;
}

.hero__logo img {
  width: 32px;
  height: 32px;
}

.hero__badge {
  background: var(--ads-surface-dark-raised);
  color: var(--ads-text-on-dark);
  font-size: 14px;
  padding: 8px 16px;
  border-radius: var(--ads-radius-full);
}

.hero__badge strong {
  color: var(--ads-success-bold);
}

.hero__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 32px;
  padding-bottom: 48px;
}

.hero__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  color: var(--ads-text-inverse);
  line-height: 1.15;
}

.hero__accent {
  color: var(--ads-brand);
}

.hero__subtitle {
  font-size: 20px;
  color: var(--ads-text-on-dark);
}

.hero__logos {
  display: flex;
  gap: 12px;
}

.hero__logos img {
  width: 48px;
  height: 48px;
  padding: 10px;
  background: var(--ads-surface);
  border-radius: var(--ads-radius-xl);
  box-shadow: var(--ads-shadow-raised);
}

.hero__note {
  font-size: 14px;
  color: var(--ads-text-on-dark-subtle);
}

.hero__social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.hero__avatars {
  display: flex;
}

.hero__avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--ads-surface-dark);
  margin-left: -10px;
}

.hero__avatars img:first-child {
  margin-left: 0;
}

.hero__rating {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__rating p {
  font-size: 14px;
  color: var(--ads-text-on-dark);
}

.hero__rating img {
  height: 18px;
  width: auto;
}

.hero__right {
  display: flex;
  justify-content: center;
}

.hero__form {
  background: var(--ads-surface);
  border-radius: var(--ads-radius-lg);
  padding: 32px 24px;
  box-shadow: var(--ads-shadow-overlay);
  max-width: 400px;
  width: 100%;
}

.hero__form-header {
  text-align: center;
  margin-bottom: 24px;
}

.hero__form-header img {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
}

.hero__form-header h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--ads-text);
}

.hero__form-header p {
  font-size: 13px;
  color: var(--ads-text-subtlest);
}

.form-field {
  position: relative;
  margin-bottom: 12px;
}

.form-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--ads-border-bold);
  border-radius: var(--ads-radius-md);
  font-size: 14px;
  background: var(--ads-surface);
  color: var(--ads-text);
  transition: border-color 0.15s;
}

.form-input:focus {
  border-color: var(--ads-brand);
}

.form-input::placeholder {
  color: var(--ads-text-subtlest);
}

.form-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--ads-brand);
  color: var(--ads-text-inverse);
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--ads-radius-sm);
  margin-top: 16px;
  transition: background 0.15s;
}

.form-btn:hover {
  background: var(--ads-brand-hover);
}

.hero__form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 11px;
  color: var(--ads-text-subtlest);
}

.hero__form-footer img {
  height: 20px;
  width: auto;
}

[data-error-status="inactive"] {
  display: none;
}

[data-for-error] {
  font-size: 12px;
  color: var(--ads-text-inverse);
  background: var(--ads-danger);
  padding: 4px 8px;
  margin-top: 4px;
  border-radius: var(--ads-radius-sm);
}

[data-check-icon] {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

[data-check-icon] img {
  width: 20px;
}

[data-check-icon="inactive"] {
  display: none;
}

[data-flow-status="inactive"] {
  display: none !important;
}

.celeb {
  padding: 64px 0;
  background: var(--ads-surface-sunken);
}

.celeb__grid {
  display: grid;
  gap: 24px;
}

.celeb__card {
  background: var(--ads-surface);
  border-radius: var(--ads-radius-xl);
  padding: 24px;
  box-shadow: var(--ads-shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.celeb__img img {
  width: 100%;
  border-radius: var(--ads-radius-xl);
  object-fit: cover;
  /* aspect-ratio: 4 / 3; */
}

.celeb__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.celeb__quote {
  width: 36px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(36%) sepia(78%) saturate(1000%)
    hue-rotate(196deg) brightness(97%) contrast(101%);
}

.celeb__name {
  font-size: 18px;
  font-weight: 600;
  color: var(--ads-text);
}

.celeb__role {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ads-text-subtlest);
  letter-spacing: 0.5px;
}

.celeb__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ads-text-subtle);
}

.market {
  padding: 64px 0 120px;
  background: var(--ads-surface-dark);
  overflow: visible;
}

@media (min-width: 768px) {
  .market {
    margin-bottom: -180px;
  }
}

.market__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.market__kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ads-text-on-dark-subtle);
}

.market__title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--ads-text-inverse);
}

.market__desc {
  font-size: 15px;
  color: var(--ads-text-on-dark-subtle);
  max-width: 520px;
}

.market__grid {
  display: grid;
  gap: 16px;
  margin-bottom: 48px;
}

.market__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.market__badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--ads-surface-dark-raised);
  border: 1px solid var(--ads-border-dark);
  border-radius: var(--ads-radius-xl);
}

.market__badge > img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ads-surface);
  padding: 6px;
}

.market__badge-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.market__badge-info strong {
  font-size: 14px;
  color: var(--ads-text-inverse);
}

.market__badge-info span {
  font-size: 12px;
  color: var(--ads-text-on-dark-subtle);
}

.market__badge-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--ads-success-bold);
}

.market__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.market__phone-blur {
  display: none;
}

.market__phone img {
  max-height: 380px;
  width: auto;
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 95%);
  mask-image: linear-gradient(to bottom, black 70%, transparent 95%);
}

.market__header--sub {
  margin-top: 48px;
}

.reviews {
  display: grid;
  gap: 16px;
}

.reviews--desktop {
  display: none;
}

.reviews--mobile {
  --collage-primary: var(--ads-brand);
  --collage-primary-muted: rgba(12, 102, 228, 0.25);
}

.reviews--mobile .review-card {
  width: 100%;
  min-width: 0;
}

.review-card {
  background: var(--ads-surface-raised);
  border: 1px solid var(--ads-border);
  border-radius: var(--ads-radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.review-card > img:first-child {
  height: 16px !important;
  width: 108px !important;
  max-width: none !important;
  margin-bottom: 12px;
  flex-shrink: 0;
  object-fit: contain;
}

.review-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ads-text);
  margin-bottom: 16px;
  flex: 1;
}

.review-card__user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__user > img {
  width: 40px;
  height: 40px;
  min-width: 40px;
  max-width: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.review-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ads-text);
}

.review-card__location {
  font-size: 12px;
  color: var(--ads-text-subtle);
}

.review-card__amount {
  margin-left: auto;
  background: var(--ads-brand);
  color: var(--ads-text-inverse);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--ads-radius-full);
}

.advantages {
  padding: 64px 0;
  background: var(--ads-surface-dark) url("../assets/advantages-bg.webp")
    center / cover no-repeat;
  position: relative;
}

.advantages::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 33, 37, 0.85);
}

.advantages > * {
  position: relative;
}

.advantages__layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.advantages__kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ads-brand);
  margin-bottom: 12px;
}

.advantages__heading {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--ads-text-inverse);
}

.accordion-item {
  border-bottom: 1px solid var(--ads-border-dark);
  padding: 16px 0;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  color: var(--ads-text-inverse);
  font-size: 16px;
  font-weight: 500;
}

.accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--ads-brand);
  border-radius: var(--ads-radius-md);
}

.accordion-icon img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.accordion-title {
  flex: 1;
}

.accordion-chevron {
  color: var(--ads-text-on-dark-subtle);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.accordion-item.is-open .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}

.accordion-item.is-open .accordion-panel {
  max-height: 200px;
}

.accordion-panel p {
  padding: 8px 0 0 56px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ads-text-on-dark-subtle);
}

.banner {
  background: var(--ads-brand);
  padding: 20px 0;
  text-align: center;
}

.banner p {
  font-size: 18px;
  font-weight: 600;
  color: var(--ads-text-inverse);
}

.banner strong {
  color: var(--ads-success-bold);
}

.about {
  padding: 64px 0;
}

.about__layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about__img img {
  width: 100%;
  border-radius: var(--ads-radius-xl);
  object-fit: cover;
  max-height: 360px;
}

.about__kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ads-text-subtlest);
  margin-bottom: 8px;
}

.about__title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--ads-text);
  margin-bottom: 16px;
}

.about__text {
  font-size: 16px;
  color: var(--ads-text-subtle);
  line-height: 1.6;
  margin-bottom: 24px;
}

.about__logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--ads-surface-sunken);
  padding: 16px 24px;
  border-radius: var(--ads-radius-xl);
  margin-bottom: 24px;
}

.about__logos img {
  height: 24px;
  width: auto;
}

.reviews-2 {
  padding: 64px 0;
  background: var(--ads-surface-dark-raised);
}

.reviews-2 .review-card {
  background: var(--ads-surface-dark);
  border-color: var(--ads-border-dark);
}

.reviews-2 .review-card__text {
  color: var(--ads-text-on-dark);
}

.reviews-2 .review-card__name {
  color: #fff;
}

.reviews-2 .review-card__location,
.reviews-2 .review-card__amount {
  color: rgba(255, 255, 255, 0.7);
}

.bento-reviews {
  display: none;
}

.review-card--wide {
  grid-column: span 2;
}

.reg-banner {
  padding: 40px 16px;
}

.reg-banner__box {
  background: var(--ads-brand);
  border-radius: var(--ads-radius-xl);
  padding: 16px 24px;
  text-align: center;
}

.reg-banner__box p {
  font-size: 16px;
  font-weight: 600;
  color: var(--ads-text-inverse);
}

.cta-final {
  padding: 64px 0;
  background: var(--ads-surface-dark);
}

.cta-final__layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}

.cta-final__img img {
  border-radius: var(--ads-radius-xl);
  max-height: 300px;
  object-fit: cover;
}

.cta-final__content h2 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: var(--ads-text-inverse);
  margin-bottom: 24px;
}

.footer {
  background: var(--ads-surface-dark);
  padding: 48px 0 0;
  border-top: 1px solid var(--ads-border-dark);
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ads-text-inverse);
  font-size: 16px;
  font-weight: 600;
}

.footer__brand img {
  width: 28px;
  height: 28px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__nav a {
  font-size: 14px;
  color: var(--ads-text-on-dark-subtle);
}

.footer__nav a:hover {
  color: var(--ads-text-inverse);
}

.footer__disclaimer {
  font-size: 11px;
  line-height: 1.5;
  color: var(--ads-text-on-dark-subtle);
  margin-bottom: 24px;
}

.footer__copy {
  font-size: 13px;
  color: var(--ads-text-inverse);
  padding: 16px 0;
  border-top: 1px solid var(--ads-border-dark);
  text-align: center;
}

.floating-btn {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 900;
  text-align: center;
}

.floating-btn .btn {
  display: block;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--ads-radius-lg);
  box-shadow: var(--ads-shadow-overlay);
}

.loading-wrapper {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.9);
  align-items: center;
  justify-content: center;
}

.loading-wrapper img {
  width: 64px;
}

.reveal-section {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal-section.is-visible {
  opacity: 1;
  transform: none;
}

collage-slider {
  --collage-primary: var(--ads-brand);
  --collage-primary-muted: rgba(12, 102, 228, 0.25);
  display: block;
  width: 100%;
}

collage-slider .collage-slider__viewport {
  min-height: 0;
}

collage-slider .collage-slider__slide {
  min-height: 100%;
  height: 100%;
  flex: 1;
}

collage-slider .collage-slider__slide .review-card {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

collage-slider .collage-slider__slide {
  line-height: 1.5;
}

collage-slider .collage-slider__slide img {
  width: auto;
  height: auto;
}

collage-slider .collage-slider__slide .review-card > img:first-child {
  height: 16px !important;
  width: 108px !important;
  max-width: none !important;
}

collage-slider .collage-slider__slide .review-card__user > img {
  width: 40px;
  height: 40px;
}

.iti {
  width: 100% !important;
}

.iti .iti__selected-dial-code {
  color: var(--ads-text) !important;
}

@media (min-width: 768px) {
  .hero__body {
    flex-direction: row;
    align-items: center;
  }

  .hero__left {
    flex: 1;
    min-width: 0;
  }

  .hero__right {
    flex-shrink: 0;
    width: 380px;
  }

  .hero__logos img:nth-child(4) {
    display: block;
  }

  .celeb__grid {
    grid-template-columns: 1fr 1fr;
  }

  .celeb__card {
    flex-direction: row;
    align-items: flex-start;
  }

  .celeb__img {
    width: 160px;
    flex-shrink: 0;
  }

  .celeb__img img {
    aspect-ratio: 1;
    height: 160px;
    width: 160px;
  }

  .celeb__text {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .celeb__card {
    flex-direction: column;
  }

  .celeb__img {
    width: 100%;
  }

  .celeb__img img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: cover;
  }
}

@media (min-width: 768px) {
  .market__header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .market__grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .market__phone img {
    max-height: 420px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .reviews--desktop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .reviews--desktop .review-card {
    height: 100%;
  }

  .reviews--mobile {
    display: none;
  }

  .bento-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .bento-reviews .review-card {
    height: 100%;
  }

  .review-card--wide {
    grid-column: span 2;
  }

  .reviews-2 .reviews--mobile {
    display: none;
  }

  .advantages__layout {
    flex-direction: row;
    align-items: flex-start;
  }

  .advantages__left {
    width: 38%;
    flex-shrink: 0;
  }

  .advantages__right {
    flex: 1;
  }

  .about__layout {
    flex-direction: row;
    align-items: center;
  }

  .about__img {
    width: 35%;
    flex-shrink: 0;
  }

  .about__content {
    flex: 1;
  }

  .testimonial__row {
    flex-direction: row;
    align-items: center;
  }

  .testimonial__user {
    flex-shrink: 0;
    width: 260px;
  }

  .cta-final__layout {
    flex-direction: row;
    text-align: left;
  }

  .cta-final__img {
    flex-shrink: 0;
    width: 35%;
  }

  .footer__top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .floating-btn {
    display: none;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}

.info-highlight {
  padding: 64px 0;
}

.info-highlight__grid {
  display: grid;
  gap: 24px;
}

.info-highlight__card {
  background: linear-gradient(
    135deg,
    var(--ads-surface-raised) 0%,
    var(--ads-surface) 100%
  );
  border: 1px solid var(--ads-border);
  border-radius: var(--ads-radius-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.info-highlight__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--ads-brand);
  border-radius: 4px 0 0 4px;
}

.info-highlight__title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ads-text);
}

.info-highlight__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ads-text-subtle);
}

@media (min-width: 768px) {
  .info-highlight__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.reviews-section {
  padding: 64px 0;
  background: var(--ads-surface);
  position: relative;
  z-index: 1;
  margin-top: -80px;
  border-radius: var(--ads-radius-xl) var(--ads-radius-xl) 0 0;
}

.reviews-section .market__kicker {
  font-size: 14px;
  color: var(--ads-brand);
  font-weight: 600;
  margin-bottom: 8px;
}

.reviews-section .market__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--ads-text);
}

.reviews-section .market__desc {
  font-size: 16px;
  color: var(--ads-text-subtle);
  max-width: 480px;
}

.cta-form {
  padding: 64px 0;
  background: #0d1117;
  color: #fff;
}

.cta-form__layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cta-form__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 8px;
}

.cta-form__desc {
  font-size: 16px;
  opacity: 0.85;
}

.cta-form__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-form__fields {
  display: grid;
  gap: 12px;
}

.cta-form__stats {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.cta-form__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-form__stat strong {
  font-size: 24px;
  font-weight: 700;
  color: var(--ads-brand);
}

.cta-form__stat span {
  font-size: 13px;
  opacity: 0.7;
}

.cta-form__form .form-btn {
  margin-top: 4px;
}

@media (min-width: 768px) {
  .cta-form__layout {
    flex-direction: row;
    align-items: center;
  }

  .cta-form__content {
    flex: 1;
  }

  .cta-form__form {
    flex: 1;
    max-width: 420px;
  }

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

.cta-form--alt {
  padding: 64px 0;
  background: var(--ads-surface);
}

.cta-form--alt__inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.cta-form--alt__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ads-text);
}

.cta-form--alt__desc {
  font-size: 16px;
  color: var(--ads-text-subtle);
  margin-bottom: 24px;
}

.cta-form--alt__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--ads-surface-raised);
  border: 1px solid var(--ads-border);
  border-radius: var(--ads-radius-xl);
  padding: 32px;
}

.cta-form--alt__fields {
  display: grid;
  gap: 12px;
}

@media (min-width: 768px) {
  .cta-form--alt__fields {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
