:root {
  --bg: #f5f5f5;
  --text: #0a0a0a;
  --muted: #9a9a9a;
  --card: #ffffff;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --gold: #f5c518;
  --dot: #d1d5db;
  --dot-active: #2563eb;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  min-height: 100vh;
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.brand__icon svg {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 9px;
}
.brand__name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Headline */
.headline {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 36px;
}

/* Trust block — single image, scales proportionally */
.trust {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0 36px;
}
.trust__image {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
}

/* Reviews */
.reviews {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto 32px;
  padding: 0 56px;
}
.reviews__viewport {
  overflow: hidden;
  border-radius: 18px;
}
.reviews__track {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.review {
  flex: 0 0 100%;
  background: var(--card);
  border-radius: 18px;
  padding: 22px 24px 24px;
  box-shadow: var(--shadow);
}
.review__stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.review__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.review__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: #1f1f1f;
}

.reviews__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  z-index: 2;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  margin-top: -20px;
}
.reviews__nav:hover { transform: translateY(-50%) scale(1.05); }
.reviews__nav:active { transform: translateY(-50%) scale(0.95); }
.reviews__nav svg { width: 20px; height: 20px; }
.reviews__nav--prev { left: 0; }
.reviews__nav--next { right: 0; }

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dot);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.reviews__dot--active {
  background: var(--dot-active);
  transform: scale(1.15);
}

/* CTA */
.cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 420px;
  padding: 20px 28px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}
.cta:hover { background: var(--accent-hover); }
.cta:active { transform: scale(0.98); }
.cta svg { width: 18px; height: 18px; }

/* Mobile */
@media (max-width: 600px) {
  .page { padding: 24px 16px 32px; }
  .headline { font-size: 26px; margin-bottom: 24px; }
  .trust { margin: 8px 0 24px; }
  .reviews { padding: 0 44px; margin-bottom: 24px; }
  .reviews__nav { width: 34px; height: 34px; }
  .reviews__nav svg { width: 16px; height: 16px; }
  .review { padding: 18px 20px 20px; }
  .review__name { font-size: 16px; }
  .review__text { font-size: 14px; }
  .cta { font-size: 17px; padding: 18px 24px; }
}

@media (max-width: 360px) {
  .reviews { padding: 0 36px; }
}
