/* ════════════════════════════════════════════════════════════════════════════════
   TESORVENZA — MAIN STYLESHEET
════════════════════════════════════════════════════════════════════════════════ */

/* ─── 1. RESET ───────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
input,
button {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}
button {
  cursor: pointer;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
* {
  min-width: 0;
}

/* ─── 2. TOKENS ──────────────────────────────────────────────────────────────── */
:root {
  --clr-bg: #ede9e0;
  --clr-surface: #ffffff;
  --clr-border: #ddd8ce;

  --clr-accent: #2a9d7c;
  --clr-accent-2: #1a7d5e;

  --clr-text: #1a1a1a;
  --clr-text-muted: #706b64;

  --font-body: 'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-fast: 150ms;
}

/* ─── 3. GLOBAL ──────────────────────────────────────────────────────────────── */
html {
  font-size: 16px;
}
body {
  font-family: var(--font-body);

  color: var(--clr-text);
}

/* ─── 4. SHARED ──────────────────────────────────────────────────────────────── */

/* Avatars */
.avatars {
  display: flex;
  align-items: center;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  overflow: hidden;
  flex-shrink: 0;
  background: #ccc;
}
.avatar + .avatar {
  margin-left: -10px;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Crypto badges */
.crypto-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.crypto-badge--btc {
  background: #f7931a;
}
.crypto-badge--usdt {
  background: #26a17b;
}
.crypto-badge--bnb {
  background: #f3ba2f;
}
.crypto-badge img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* Arrow btn */
.arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 100px;
  background: #3a3a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 0 14px;
  width: auto;
  gap: 4px;
  transition: background var(--dur-fast);
}
.arrow-btn:hover {
  background: var(--clr-accent);
}

/* Payment icons */
.payment-icons {
  margin-top: 150px;
}
.payment-icons img {
  object-fit: contain;
}

/* Secure badge */
.secure-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--clr-text-muted);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  padding: 4px 9px;
  background: rgba(255, 255, 255, 0.7);
}
.secure-badge svg {
  color: var(--clr-accent);
}

/* ─── 5. HERO ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: -webkit-fill-available; /* iOS fix */
  background: var(--clr-bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* BG image — пустынный ландшафт */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  transform: translateZ(0); /* создаёт отдельный compositing layer */
  will-change: transform;
  -webkit-transform: translateZ(0);
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* NAV */

.hero__nav {
  position: relative;
  z-index: 10;
  padding: 12px 20px;
  margin: 16px 24px 0;
}

.hero__nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.07);

  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  padding: 10px 20px 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__rating {
  font-size: 14px;
  color: var(--clr-text-muted);
  white-space: nowrap;
}
.nav__rating strong {
  color: var(--clr-text);
  font-weight: 700;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo__text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__rating {
  font-size: 14px;
  color: var(--clr-text-muted);
}
.nav__rating strong {
  color: var(--clr-text);
  font-weight: 700;
}

/* INNER GRID */
.hero__inner {
  position: relative;
  z-index: 5;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 40px;
  align-items: center;
  padding: 60px 40px 80px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

/* LEFT */
.hero__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__title {
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--clr-text);
}
.hero__title em {
  font-style: normal;
  color: var(--clr-accent);
  font-weight: 900;
  display: block;
}

.hero__subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--clr-text);
  margin-top: -12px;
}

.hero__badges {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f5f0ec;
  max-width: 220px;
  padding: 8px;
  border-radius: 90px;
}

/* RIGHT — FORM CARD */
.reg-card {
  background: #f5f0ec80;
  border: none;
  border-radius: 0;
  padding: 28px 30px 34px;
  box-shadow: none;
  border-radius: 45px;
}

.reg-card__notice {
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-text-muted);
  text-align: center;
  padding: 12px 20px;
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.reg-card__title {
  font-size: 34px;
  font-weight: 800;
  color: var(--clr-text);
  text-align: center;
  margin-bottom: 28px;
}

.leadform {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0;
}

.leadform__fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.leadform__input {
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-text);
  transition:
    border-color var(--dur-fast),
    box-shadow var(--dur-fast),
    background var(--dur-fast);
}

.leadform__input::placeholder {
  color: var(--clr-text-muted);
  opacity: 1;
}

.leadform__input:hover {
  border-color: #c4bdb2;
}

.leadform__input:focus {
  outline: none;
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(42, 157, 124, 0.2);
  background: #fff;
}

.leadform__input--tel {
  letter-spacing: 0.02em;
}

.leadform .submit {
  width: 100%;
  margin-top: 0.25rem;
  padding: 16px 24px;
  border: none;
  border-radius: 100px;
  background: var(--clr-accent);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(42, 157, 124, 0.35);
  transition:
    background var(--dur-fast),
    transform var(--dur-fast),
    box-shadow var(--dur-fast);
}

.leadform .submit:hover {
  background: var(--clr-accent-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(42, 157, 124, 0.45);
}

.leadform .submit:active {
  transform: translateY(0);
}

.leadform .error-msg {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #c0392b;
  min-height: 1.25em;
  line-height: 1.35;
}

.leadform .error-msg.hide {
  display: none;
}

.form-preloader {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 240, 236, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: inherit;
  pointer-events: all;
}

.form-preloader.hidden {
  display: none !important;
}

.leadform .spinner {
  display: block;
  animation: leadform-spin 0.85s linear infinite;
  transform-origin: 25px 25px;
}

.leadform .spinner .path {
  stroke: var(--clr-accent);
}

@keyframes leadform-spin {
  to {
    transform: rotate(360deg);
  }
}

.hide {
  display: none !important;
}

.hidden {
  display: none !important;
}

.reg-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #f5f0ecde;
  padding: 40px 52px;
  border-radius: 35px;
}

/* Поля — только нижняя линия */
.form-group input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #655a51;
  border-radius: 0;
  padding: 14px 8px;
  font-size: 15px;
  color: var(--clr-text);
  transition: border-color var(--dur-fast);
}

.form-group input::placeholder {
  color: black;
}
.form-group input:focus {
  border-bottom-color: var(--clr-accent);
  outline: none;
  background: transparent;
  box-shadow: none;
}

/* Phone — тоже только нижняя линия */
.form-group--phone {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--clr-border);
  border-radius: 0;
  padding: 0;
  transition: border-color var(--dur-fast);
}
.form-group--phone:focus-within {
  border-bottom-color: var(--clr-accent);
  box-shadow: none;
  background: transparent;
}
.phone-prefix {
  padding: 14px 12px 14px 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-text-muted);
  border-right: none;
  background: transparent;
  white-space: nowrap;
  flex-shrink: 0;
}
.form-group--phone input {
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  flex: 1;
  padding: 14px 8px;
}
.form-group--phone input:focus {
  border: none;
  box-shadow: none;
}

/* Кнопка — pill */
.btn-register {
  width: 100%;
  padding: 16px;
  border-radius: 100px;
  background: var(--clr-accent);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-top: 24px;
  transition:
    background var(--dur-fast),
    transform var(--dur-fast);
  box-shadow: 0 4px 20px rgba(42, 157, 124, 0.35);
}
.btn-register:hover {
  background: var(--clr-accent-2);
  transform: translateY(-1px);
}
.btn-register:active {
  transform: translateY(0);
}

/* ─── 6. TESTIMONIALS ────────────────────────────────────────────────────────── */
.testimonials {
  position: relative;
  z-index: 6; /* поверх hero */
  margin-top: -80px; /* заходит на hero сверху */
  padding: 0 40px 80px;
  background: transparent;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.testi-card {
  display: flex;
  align-items: center; /* ← центр по вертикали */
  gap: 0;
  background: #f5f0ec;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  overflow: visible;
  position: relative;
  padding: 24px 24px 24px 0;
}

.testi-card__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  margin-left: -20px; /* выезжает влево */
  margin-top: 0; /* убрать старый отступ */
  align-self: center; /* ← по центру карточки */
  z-index: 2;
  background: #ddd;
}
.testi-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.testi-card__body {
  flex: 1;
  padding: 0 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Header row: name+role left, quote mark right */
.testi-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.testi-card__name {
  font-size: 45px;
  font-weight: 800;
  color: #363636;
  line-height: 1.2;
}

.testi-card__role {
  font-size: 12px;
  color: #655a51;
  margin-top: 4px;
  line-height: 1.4;
}

/* Large quote mark top-right */
.testi-card__quote-mark {
  font-size: 64px;
  line-height: 0.7;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  margin-top: 4px;
  background-image: url('../media/Touch.svg');
  font-family: Georgia, serif;
}

/* Quote text */
.testi-card__text {
  font-size: 13.5px;
  line-height: 1.72;
  color: #363636;
  font-style: normal;
}

/* ─── 7. CRYPTO PRICES ───────────────────────────────────────────────────────── */
.crypto-prices {
  background: #fff;
  padding: 80px 40px;
}

.crypto-prices__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* LEFT */
.crypto-prices__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  padding: 5px 14px 5px 5px;
  width: fit-content;
  background: #fff;
}
.section-label__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #3f8576;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--clr-text-muted);
  flex-shrink: 0;
}
.section-label__text {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

/* Title */
.crypto-prices__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--clr-text);
}

/* Crypto list */
.crypto-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.crypto-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f8f6f2;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  transition: background var(--dur-fast);
}
.crypto-row:hover {
  background: #f0ede6;
}

.crypto-row__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.crypto-row__icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.crypto-row__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.crypto-row__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-text);
}
.crypto-row__sub {
  font-size: 13px;
  color: var(--clr-text-muted);
}
.crypto-row__change {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-accent);
  white-space: nowrap;
}

/* CTA button */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  border-radius: var(--radius-md);
  background: var(--clr-accent);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 20px rgba(42, 157, 124, 0.3);
  transition:
    background var(--dur-fast),
    transform var(--dur-fast),
    box-shadow var(--dur-fast);
}
.btn-primary:hover {
  background: var(--clr-accent-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(42, 157, 124, 0.4);
}
.btn-primary:active {
  transform: translateY(0);
}

/* RIGHT: phones */
.crypto-prices__right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.crypto-prices__img {
  width: 100%;
  max-width: 520px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* ─── 8. REVIEWS ─────────────────────────────────────────────────────────────── */
.reviews {
  background: #fff;
  padding: 80px 40px;
}

.reviews__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.reviews__title {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.3;
  color: var(--clr-text);
  max-width: 720px;
}

.reviews__subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: var(--clr-text-muted);
  max-width: 680px;
}

/* Slider container */
.reviews-slider {
  overflow: hidden;
  width: 100%;
}

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.review-card {
  background: #f8f6f2;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 calc(33.333% - 14px); /* ← ровно 3 колонки с учётом gap */
  box-sizing: border-box;
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #ddd;
}
.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.review-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-text);
}
.review-card__amount {
  display: inline-flex;
  align-items: center;
  background: #2a2a2a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
  padding: 4px 12px;
  width: fit-content;
}

.review-card__divider {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 0;
}

.review-card__stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--clr-text-muted);
}

/* Pagination */
.reviews-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.reviews-pagination__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--dur-fast);
}
.reviews-pagination__arrow:hover {
  color: var(--clr-text);
}

.reviews-pagination__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.reviews-pagination__dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0ccc6;
  transition:
    background var(--dur-fast),
    transform var(--dur-fast);
}
.reviews-pagination__dots .dot--active {
  background: var(--clr-text);
  transform: scale(1.2);
}

/* ─── 9. VANTAGGI ────────────────────────────────────────────────────────────── */
.vantaggi {
  background: #fff;
}

/* White top */
.vantaggi__top {
  padding: 72px 40px 40px;
}
.vantaggi__top-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.vantaggi__title {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.3;
  color: var(--clr-text);
  max-width: 560px;
}
.vantaggi__subtitle {
  font-size: 15px;
  color: var(--clr-text-muted);
}

/* Green bottom */
.vantaggi__bottom {
  position: relative;
  background: #7aad8f;
  padding: 52px 40px 0;
}

.vantaggi__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Grid */
.vantaggi__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.vantaggio-card {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background var(--dur-fast);
}
.vantaggio-card:hover {
  background: rgba(255, 255, 255, 0.38);
}

.vantaggio-card__icon {
  width: 110px;
  height: 160px;
  flex-shrink: 0;
}
.vantaggio-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vantaggio-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--clr-text);
  line-height: 1.25;
  margin-top: 16px; /* отступ — иконка сверху, текст снизу */
}

.vantaggio-card__text {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.6);
}

/* Bottom banner */
.vantaggi__banner {
  position: relative;
  z-index: 2;
  margin: 55px auto 0;
  max-width: 1200px;
  background: #3a3530;
  border-radius: 100px;
  padding: 18px 40px;
  text-align: center;
  transform: translateY(-25%);
}
.vantaggi__banner p {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.vantaggi__banner strong {
  font-weight: 800;
}

/* ─── 10. CHI SIAMO ──────────────────────────────────────────────────────────── */
.chi-siamo {
  background: #fff;
  padding: 100px 40px 80px; /* сверху отступ под выезжающий banner */
}

.chi-siamo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* LEFT */
.chi-siamo__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.chi-siamo__title {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.3;
  color: var(--clr-text);
}

.chi-siamo__text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--clr-text-muted);
}

/* RIGHT */
.chi-siamo__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
}

/* Coins */
.chi-siamo__coins {
  width: 100%;
}
.chi-siamo__coins img {
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
}

/* Exchange icons row */
.exchange-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  background: #f5f0ece5;
  padding: 8px;
  border-radius: 90px;
}

.exchange-icon {
  width: 48px;
  height: 44px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background var(--dur-fast);
}

.exchange-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.exchange-arrow:hover {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
}

/* ─── 11. COMMENTS ───────────────────────────────────────────────────────────── */
.comments {
  background: #fff;
  padding: 72px 40px 0;
}

.comments__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Row */
.comment-row {
  display: grid;
  grid-template-columns: 280px 1fr; /* ← фиксированная левая колонка */
  gap: 32px;
  background: #f5f0ec;
  border-radius: var(--radius-xl);
  padding: 24px 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.comment-row__left {
  display: flex;
  align-items: center;
  gap: 16px;
  align-self: flex-start;
}

.comment-row__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #ddd;
}
.comment-row__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.comment-row__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.comment-row__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-text);
  white-space: nowrap;
}

.comment-row__stars {
  color: #f5a623;
  font-size: 14px;
  letter-spacing: 1px;
}

/* Action buttons */
.comment-row__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  flex-wrap: nowrap; /* ← не переносить на следующую строку */
}

.comment-action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--clr-text-muted);
  background: #fff;
  white-space: nowrap; /* ← текст не переносится */
  flex-shrink: 0; /* ← кнопка не сжимается */
  flex-direction: row-reverse;
  transition:
    border-color var(--dur-fast),
    color var(--dur-fast);
}
.comment-action svg {
  flex-shrink: 0;
}
.comment-action:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

/* Text */
.comment-row__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--clr-text-muted);
  min-width: 0;
  word-break: break-word;
}

/* Bottom banner */
.comments__banner {
  margin: 32px auto 0;
  max-width: 1100px;
  background: #3a3530;
  border-radius: 100px;
  padding: 20px 40px;
  text-align: center;
}
.comments__banner p {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.comments__banner strong {
  font-weight: 800;
}

.comment-action__icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.promo-banner {
  position: relative;
  background: #8fbbaa;
  overflow: hidden;
  min-height: 280px;
  margin-top: 80px;
  margin-bottom: 80px;
}

.promo-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  pointer-events: none;
}

.promo-banner__content {
  position: relative;
  z-index: 2;
  padding: 64px 15px;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promo-banner__title {
  font-size: 70px;
  font-weight: 800;
  line-height: 1.2;
  color: #3a2e28;
}

.promo-banner__sub {
  font-size: 50px;
  font-weight: 500;
  color: #fff;
  opacity: 0.75;
}

.promo-banner__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── 13. FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: #f5f0ec80;
  border-top: 1px solid var(--clr-border);
}

/* Top row */
.site-footer__top {
  padding: 24px 40px;
}
.site-footer__top-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-footer__tagline {
  font-size: 14px;
  color: var(--clr-text-muted);
  flex: 1;
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: nowrap;
}
.site-footer__links a {
  font-size: 13px;

  white-space: nowrap;
  transition: color var(--dur-fast);
}
.site-footer__links a:hover {
  color: var(--clr-text);
}

/* Disclaimer */
.site-footer__disclaimer {
  padding: 28px 40px;
  border-bottom: 1px solid var(--clr-border);
}
.site-footer__disclaimer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.site-footer__disclaimer p {
  font-size: 11.5px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.38);
}

/* Copyright */
.site-footer__copy {
  padding: 20px 40px;
  text-align: center;
}
.site-footer__copy p {
  font-size: 13px;
}

.mobile-only {
  display: none;
}
