/* =========================================================
   Общие контентные блоки главной страницы: гайд, инфо о крипте,
   способы оплаты, новости, FAQ. Используются во всех вариантах.
   ========================================================= */

.content-section {
  position: relative;
  z-index: 1;
  padding: 50px 0;
}
.content-section__head {
  max-width: 680px;
  margin: 0 0 28px;
}
.content-section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin: 0 0 10px;
}
.content-section__head p {
  color: var(--text-1);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* ---------- featured deposit-guide teaser ---------- */
.deposit-feature {
  background: linear-gradient(135deg, rgba(255, 207, 74, 0.08), rgba(18, 184, 134, 0.10));
  border: 1px solid rgba(255, 207, 74, 0.35);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
}
.deposit-feature__body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.6rem);
  margin: 0 0 14px;
}
.deposit-feature__body p {
  color: var(--text-1);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 14px;
  max-width: 720px;
}
.deposit-feature__body .btn { margin-top: 6px; }

/* ---------- guide checklist ---------- */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.guide-item {
  display: flex;
  gap: 14px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.guide-item__icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255, 207, 74, 0.1);
  border: 1px solid rgba(255, 207, 74, 0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.guide-item__body h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin: 0 0 6px;
}
.guide-item__body p {
  color: var(--text-1);
  font-size: 0.86rem;
  line-height: 1.55;
  margin: 0;
}

/* ---------- crypto info ---------- */
.crypto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.crypto-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.crypto-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.crypto-card__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-0);
  border: 1px solid var(--panel-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.crypto-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.crypto-card__ticker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
}
.crypto-card__name {
  font-size: 0.85rem;
  color: var(--text-2);
}
.crypto-card p {
  color: var(--text-1);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}

/* ---------- exchanges ---------- */
.exchange-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.exchange-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  font-size: 0.88rem;
  color: var(--text-1);
  transition: border-color .15s, transform .15s;
}
.exchange-tile:hover { border-color: var(--jade); transform: translateY(-2px); }
.exchange-tile img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-0);
}

/* ---------- payment methods ---------- */
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.payment-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-size: 0.88rem;
  color: var(--text-1);
  transition: border-color .15s, transform .15s;
}
.payment-tile:hover { border-color: var(--jade); transform: translateY(-2px); }
.payment-tile__icon { font-size: 1.3rem; }

/* ---------- news ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.news-card {
  display: block;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: border-color .15s, transform .15s;
}
.news-card:hover { border-color: var(--jade); transform: translateY(-2px); }
.news-card__date {
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.news-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin: 0 0 8px;
  line-height: 1.4;
}
.news-card p {
  color: var(--text-1);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0 0 12px;
}
.news-card__link {
  font-size: 0.8rem;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.news-card:hover .news-card__link { color: var(--gold); }

/* ---------- FAQ accordion ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 4px 20px;
}
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}
.faq-item__caret {
  flex-shrink: 0;
  color: var(--text-2);
  transition: transform .25s;
}
.faq-item.is-open .faq-item__caret { transform: rotate(180deg); color: var(--gold); }

.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-item.is-open .faq-item__a {
  grid-template-rows: 1fr;
}
.faq-item__a-inner {
  overflow: hidden;
}
.faq-item__a p {
  color: var(--text-1);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0 0 16px;
}

@media (max-width: 720px) {
  .guide-grid { grid-template-columns: 1fr; }
}
