/*
Theme Name: Ranvik Ru
Theme URI: https://ranvik.icu
Author: Ranvik Ru
Description: Уникальная тема WordPress для ranvik.icu — русскоязычный сайт о сервисе Ranvik (агрегатор нейросетей). Собрана с нуля под бренд по site-builder-kit.
Version: 1.0.0
Text Domain: rv-theme
*/

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Geist', Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--rv-bg);
  color: var(--rv-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
header img, footer img {max-width: 90%;
    max-height: 90%;
    display: block;
    margin: 0 auto;}
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }
h2 {margin-bottom: 15px;}
/* ============================================================
   ТОКЕНЫ — тёмная тема: светло-коричневый + светло-голубой акценты
   ============================================================ */
:root {
  color-scheme: dark;

  --rv-bg: #14120f;
  --rv-bg-alt: #1a1713;
  --rv-surface: #221d18;
  --rv-surface-2: #2b241e;
  --rv-border: #896d50;
  --rv-ink: #f6f0e8;
  --rv-text: #c5bbb0;
  --rv-muted: #a5988b;

  /* Акценты: светло-коричневый (основной) + светло-голубой (вторичный) */
  --rv-accent: #d9a86c;
  --rv-accent-2: #8ecae6;
  --rv-accent-hover: #e6bb85;
  --rv-accent-grad: linear-gradient(135deg, #d9a86c 0%, #d3b184 45%, #8ecae6 100%);
  /* Текст поверх акцентных заливок — они светлые, поэтому чернила тёмные */
  --rv-accent-ink: #1a1410;
  --rv-accent-soft: rgba(217,168,108,.12);
  --rv-accent-2-soft: rgba(142,202,230,.12);

  --rv-success: #7ed09b;
  --rv-danger: #f08d84;
  --rv-info: #8ecae6;
  --rv-warning: #f0b866;

  /* Контрастные полосы — темнее фона страницы, а не светлее */
  --rv-dark-bg: #100e0c;
  --rv-dark-bg-2: #0c0a08;
  --rv-dark-surface: #1c1814;
  --rv-dark-border: rgba(255,255,255,.09);
  --rv-dark-text: rgba(255,255,255,.72);

  --rv-radius-sm: 8px;
  --rv-radius: 14px;
  --rv-radius-lg: 22px;
  --rv-shadow: 0 8px 24px rgba(0,0,0,.45);
  --rv-shadow-lg: 0 20px 48px rgba(0,0,0,.55);
  --rv-header-h: 72px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.site-main { display: block; }
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--alt { background: var(--rv-bg-alt); }
.section--dark { background: var(--rv-dark-bg); color: var(--rv-dark-text); border-block: 1px solid var(--rv-border); }
.section--dark .section__title, .section--dark h3 { color: #fff; }

.section__head { max-width: 680px; margin: 0 0 48px; }
.section__eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 600; letter-spacing: .02em;
  color: var(--rv-accent); text-transform: uppercase; margin-bottom: 14px;
}
.section__title { font-size: clamp(1.6rem, 2.4vw, 2.2rem); font-weight: 700; color: var(--rv-ink); line-height: 1.25; }
.section__lead { margin-top: 14px; font-size: 1.05rem; line-height: 1.6; color: var(--rv-text); }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal--visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px; font-weight: 600; font-size: .96rem;
  border: 1px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--rv-accent-grad); color: var(--rv-accent-ink); box-shadow: 0 10px 24px rgba(217,168,108,.22); }
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(217,168,108,.32); }
.btn--ghost { background: transparent; color: var(--rv-ink); border-color: var(--rv-border); }
.btn--ghost:hover { border-color: var(--rv-accent); color: var(--rv-accent); }
.btn--sm { padding: 9px 18px; font-size: .88rem; }
.btn--lg { padding: 16px 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20,18,15,.82); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-color: var(--rv-border); box-shadow: 0 4px 20px rgba(0,0,0,.4); }
.header__inner { display: flex; align-items: center; gap: 20px; height: var(--rv-header-h); }

.site-logo { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.site-logo__icon { display: inline-flex;
    line-height: 0;
    width: 40px;
    height: 40px;
    background: #29231b;
    border-radius: 8px;
    box-shadow: 0 5px 5px #93bfd3, -1px 0 5px #93bfd3, 1px 0 5px #93bfd3;}
.site-logo__text { font-size: 1.14rem; font-weight: 800; color: var(--rv-ink); letter-spacing: -.01em; }
.site-logo__ru { color: var(--rv-accent); font-weight: 700; }

.site-nav { display: flex; align-items: center; gap: 26px; margin: 0 auto; }
.site-nav a { font-size: .92rem; font-weight: 600; color: var(--rv-text); }
.site-nav a:hover { color: var(--rv-accent); }

.header__actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }

.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: var(--rv-surface); border: none; border-radius: 10px; padding: 0;
}
.burger span { width: 18px; height: 2px; margin: 0 auto; background: var(--rv-ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; gap: 2px;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--rv-bg-alt); border-bottom: 1px solid var(--rv-border);
  box-shadow: var(--rv-shadow-lg);
  max-height: 0; overflow: hidden; transition: max-height .25s ease;
}
.mobile-nav.open { max-height: 560px; overflow-y: auto; }
.mobile-nav a { padding: 14px 24px; font-weight: 600; color: var(--rv-ink); border-top: 1px solid var(--rv-border); }
.mobile-nav a:first-child { border-top: none; }

@media (max-width: 900px) {
  .site-nav { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: flex; }
}
@media (max-width: 480px) {
  .header-cta .header-cta__text-full { display: none; }
  .header-cta .header-cta__text-short { display: inline; }
  .header-cta { padding: 9px 14px; font-size: .85rem; }
}
.header-cta__text-short { display: none; }
@media (max-width: 360px) {
  .site-logo__text { display: none; }
  .container { padding: 0 14px; }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.rv-breadcrumb { padding: 16px 0; font-size: .85rem; color: var(--rv-muted); }
.rv-breadcrumb__link { color: var(--rv-muted); }
.rv-breadcrumb__link:hover { color: var(--rv-accent); }
.rv-breadcrumb__sep { margin: 0 8px; }
.rv-breadcrumb__current { color: var(--rv-ink); font-weight: 600; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 64px 0 88px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 480px;
  background: radial-gradient(60% 60% at 30% 20%, rgba(217,168,108,.16), transparent 70%),
              radial-gradient(50% 50% at 80% 10%, rgba(142,202,230,.13), transparent 70%);
  pointer-events: none; z-index: -1;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } }

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  border-radius: 999px; background: var(--rv-surface); border: 1px solid var(--rv-border);
  font-size: .84rem; font-weight: 600; color: var(--rv-text); margin-bottom: 22px;
}
.hero__badge i { width: 15px; height: 15px; color: var(--rv-accent); }
.hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; color: var(--rv-ink); line-height: 1.16; letter-spacing: -.02em; }
.hero__lead { margin-top: 20px; font-size: 1.14rem; line-height: 1.65; color: var(--rv-text); max-width: 560px; }
.hero__actions { margin-top: 32px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__satellites { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 10px; }
.hero__satellite {
  font-size: .82rem; font-weight: 600; color: var(--rv-muted);
  padding: 6px 12px; border-radius: 999px; background: var(--rv-bg-alt); border: 1px solid var(--rv-border);
}

.hero__panel {
  padding: 16px 0;
    margin: 0 auto;
    max-width: 380px;
}
.hero__panel-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--rv-border); }
.hero__panel-row:last-child { border-bottom: none; }
.hero__panel-row span:first-child { font-size: .88rem; color: var(--rv-muted); }
.hero__panel-row strong { font-size: .95rem; color: var(--rv-ink); }
.hero__panel-models { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.hero__model-chip { font-size: .78rem; font-weight: 700; padding: 5px 10px; border-radius: 8px; background: var(--rv-surface); color: var(--rv-ink); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--rv-surface); border: 1px solid var(--rv-border); border-radius: var(--rv-radius);
  padding: 28px; box-shadow: var(--rv-shadow);
}
.card__icon {
  display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
  border-radius: 12px; background: linear-gradient(135deg, #af7f45 0%, #a57b44 45%, #6a99af 100%); margin-bottom: 16px;
}
.card__icon i { width: 22px; height: 22px; color: var(--rv-accent-ink); stroke-width: 2; }
.card h3 { font-size: 1.08rem; font-weight: 700; color: var(--rv-ink); margin-bottom: 8px; }
.card p { font-size: .94rem; line-height: 1.6; color: var(--rv-text); }

.card--dark { background: var(--rv-dark-surface); border-color: var(--rv-dark-border); }
.card--dark h3 { color: #fff; }
.card--dark p { color: var(--rv-dark-text); }

/* ============================================================
   TABLE (сравнение)
   ============================================================ */
.table-wrap { overflow-x: auto; border-radius: var(--rv-radius); border: 1px solid var(--rv-border); }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--rv-surface); }
table.compare th, table.compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--rv-border); font-size: .92rem; }
table.compare th { background: var(--rv-bg-alt); font-weight: 700; color: var(--rv-ink); }
table.compare td { color: var(--rv-text); }
table.compare tr:last-child td { border-bottom: none; }
table.compare td.is-brand, table.compare th.is-brand { background: var(--rv-accent-soft); font-weight: 700; color: var(--rv-ink); }
table.compare .yes { color: var(--rv-success); font-weight: 700; }
table.compare .no { color: var(--rv-danger); font-weight: 700; }

/* --- Мобильная раскладка таблиц: строка → карточка, без горизонтальной прокрутки.
   Заголовки колонок берутся из data-label на <td>, поэтому работает без JS.
   Первая ячейка строки становится шапкой карточки. --- */
@media (max-width: 720px) {
  .table-wrap { overflow-x: visible; border: none; border-radius: 0; background: transparent; }
  table.compare { min-width: 0; width: 100%; background: transparent; border-collapse: separate; border-spacing: 0; }

  /* Шапка скрыта визуально, но остаётся для скринридеров */
  table.compare thead {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
  }

  table.compare tbody { display: block; }
  table.compare tr {
    display: block; background: var(--rv-surface);
    border: 1px solid var(--rv-border); border-radius: var(--rv-radius);
    margin-bottom: 14px; overflow: hidden;
  }
  table.compare tr:last-child { margin-bottom: 0; }

  table.compare td {
    display: grid; grid-template-columns: minmax(6.5rem, 40%) 1fr; gap: 4px 14px;
    align-items: start; padding: 11px 16px; font-size: .9rem;
    border: none; border-bottom: 1px solid var(--rv-border);
    overflow-wrap: anywhere;
  }
  table.compare td::before {
    content: attr(data-label);
    font-weight: 600; color: var(--rv-muted); font-size: .84rem;
  }
  /* Ячейка без data-label (первая в строке) — шапка карточки на всю ширину */
  table.compare td:first-child {
    display: block; padding: 13px 16px;
    font-weight: 700; font-size: 1rem; color: var(--rv-ink);
    background: var(--rv-surface-2);
  }
  table.compare td:first-child::before { content: none; }
  table.compare tr td:last-child { border-bottom: none; }

  table.compare td.is-brand { background: var(--rv-accent-soft); }
  table.compare td:first-child.is-brand { background: rgba(217,168,108,.18); }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  background: var(--rv-surface); border: 1px solid var(--rv-border); border-radius: var(--rv-radius-lg);
  padding: 30px 24px; text-align: center; position: relative;
}
.pricing-card--popular { border-color: var(--rv-accent); box-shadow: 0 16px 40px rgba(217,168,108,.16); transform: translateY(-6px); }
.pricing-card__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--rv-accent-grad); color: var(--rv-accent-ink); font-size: .74rem; font-weight: 700;
  padding: 5px 14px; border-radius: 999px;
}
.pricing-card__name { font-size: .92rem; font-weight: 700; color: var(--rv-muted); text-transform: uppercase; letter-spacing: .03em; }
.pricing-card__price { margin-top: 12px; font-size: 2.1rem; font-weight: 800; color: var(--rv-ink); }
.pricing-card__price span { font-size: .95rem; font-weight: 600; color: var(--rv-muted); }
.pricing-card__old { font-size: .86rem; color: var(--rv-muted); text-decoration: line-through; }
.pricing-card__save { display: inline-block; margin-top: 6px; font-size: .78rem; font-weight: 700; color: var(--rv-success); background: rgba(126,208,155,.14); padding: 3px 10px; border-radius: 999px; }
.pricing-card ul { margin: 20px 0 24px; text-align: left; display: flex; flex-direction: column; gap: 10px; }
.pricing-card li { display: flex; gap: 8px; font-size: .88rem; color: var(--rv-text); }
.pricing-card li i { width: 16px; height: 16px; color: var(--rv-accent); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   STAR RATING
   ============================================================ */
.star-rating { position: relative; display: inline-flex; line-height: 0; vertical-align: middle; }
.star-rating__bg, .star-rating__fg { display: flex; gap: 2px; }
.star-rating__bg { color: var(--rv-border); }
.star-rating__fg { position: absolute; inset: 0; overflow: hidden; white-space: nowrap; color: var(--rv-warning); }
.star-rating svg { width: var(--star-size, 20px); height: var(--star-size, 20px); flex-shrink: 0; }
.star-rating i, .star-rating [data-lucide] { display: block; }

/* ============================================================
   REVIEWS
   ============================================================ */
.review-card { background: var(--rv-surface); border: 1px solid var(--rv-border); border-radius: var(--rv-radius); padding: 26px; }
.review-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.review-card__author { font-weight: 700; color: var(--rv-ink); font-size: .96rem; }
.review-card__date { font-size: .78rem; color: var(--rv-muted); margin-top: 2px; }
.review-card__text { font-size: .92rem; line-height: 1.6; color: var(--rv-text); }

/* ============================================================
   FAQ
   ============================================================ */
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item { border: 1px solid var(--rv-border); border-radius: var(--rv-radius); background: var(--rv-surface); overflow: hidden; }
.faq__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; background: none; border: none; text-align: left; font-size: 1rem; font-weight: 700; color: var(--rv-ink);
}
.faq__question i { flex-shrink: 0; width: 20px; height: 20px; color: var(--rv-accent); transition: transform .2s ease; }
.faq__item.open .faq__question i { transform: rotate(180deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq__item.open .faq__answer { max-height: 600px; }
.faq__answer-inner { padding: 0 24px 22px; font-size: .93rem; line-height: 1.65; color: var(--rv-text); }

/* ============================================================
   QUIZ
   ============================================================ */
.quiz {
  background: var(--rv-surface); border: 1px solid var(--rv-border); border-radius: var(--rv-radius-lg);
  box-shadow: var(--rv-shadow-lg); padding: 36px; max-width: 640px; margin: 0 auto;
}
.quiz__progress { height: 6px; background: var(--rv-surface); border-radius: 999px; overflow: hidden; margin-bottom: 28px; }
.quiz__progress-fill { height: 100%; background: var(--rv-accent-grad); width: 0; transition: width .3s ease; }
.quiz__question { font-size: 1.24rem; font-weight: 700; color: var(--rv-ink); margin-bottom: 22px; }
.quiz__answers { display: flex; flex-direction: column; gap: 12px; }
.quiz__answer {
  text-align: left; padding: 16px 20px; border-radius: var(--rv-radius); border: 1px solid var(--rv-border);
  background: var(--rv-bg-alt); font-size: .96rem; font-weight: 600; color: var(--rv-ink); transition: border-color .15s ease, background .15s ease;
}
.quiz__answer:hover { border-color: var(--rv-accent); background: var(--rv-accent-soft); }
.quiz__result { display: none; text-align: center; }
.quiz__result h3 { font-size: 1.3rem; font-weight: 800; color: var(--rv-ink); margin-bottom: 12px; }
.quiz__result p { font-size: .96rem; color: var(--rv-text); line-height: 1.6; }
.quiz__result-actions { margin-top: 24px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.quiz__restart { margin-top: 18px; background: none; border: none; color: var(--rv-muted); font-size: .86rem; text-decoration: underline; }

/* ============================================================
   BADGES / MISC
   ============================================================ */
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.badge--success { background: rgba(126,208,155,.14); color: var(--rv-success); }
.badge--warning { background: rgba(240,184,102,.16); color: var(--rv-warning); }
.badge--danger { background: rgba(240,141,132,.14); color: var(--rv-danger); }

.callout { border-left: 3px solid var(--rv-accent); background: var(--rv-bg-alt); padding: 18px 22px; border-radius: 0 var(--rv-radius) var(--rv-radius) 0; font-size: .93rem; line-height: 1.6; color: var(--rv-text); }
.callout--warning { border-color: var(--rv-warning); }
.callout strong { color: var(--rv-ink); }

.steps { display: flex; flex-direction: column; gap: 20px; counter-reset: step; }
.step { display: flex; gap: 20px; }
.step__num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--rv-accent-grad);
  color: var(--rv-accent-ink); font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.step__body h3 { font-size: 1.02rem; font-weight: 700; color: var(--rv-ink); margin-bottom: 6px; }
.step__body p { font-size: .93rem; color: var(--rv-text); line-height: 1.6; }

.tabs__nav { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.tab-btn { padding: 10px 18px; border-radius: 999px; border: 1px solid var(--rv-border); background: var(--rv-surface); font-size: .88rem; font-weight: 600; color: var(--rv-text); }
.tab-btn.active { background: var(--rv-accent-grad); color: var(--rv-accent-ink); border-color: transparent; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.cta-band {
  background: var(--rv-dark-bg); color: #fff; border: 1px solid var(--rv-border); border-radius: var(--rv-radius-lg);
  padding: 56px 40px; text-align: center;
}
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.68); max-width: 560px; margin: 0 auto 28px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--rv-dark-bg-2); color: rgba(255,255,255,.65); border-top: 1px solid var(--rv-border); padding-top: 64px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand .site-logo__text { color: #fff; }
.footer__desc { margin: 16px 0 20px; font-size: .88rem; line-height: 1.6; max-width: 280px; }
.footer__col h3 { font-size: .86rem; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.9); margin-bottom: 16px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: .9rem; color: rgba(255,255,255,.6); }
.footer__col a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 8px; padding: 22px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; font-size: .82rem; }
.footer__disclaimer { color: rgba(255,255,255,.45); max-width: 620px; }

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero { padding: 40px 0 56px; }
}
