/* ==========================================================================
   AimWolf — Design System
   Dark · RU only · Mobile-first · Gaming-focused
   ========================================================================== */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
button, a { font: inherit; cursor: pointer; }
button { border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TOKENS ===== */
:root {
  --bg-primary: #0A1628;
  --bg-secondary: #122544;
  --bg-elevated: #1A2F58;

  --accent: #FF5500;
  --accent-hover: #FF7733;
  --accent-glow: rgba(255, 85, 0, 0.40);
  --accent-dim: rgba(255, 85, 0, 0.10);

  --accent-red: #FF2D55;
  --accent-red-glow: rgba(255, 45, 85, 0.35);

  --success: #22C55E;

  --text-primary: #FFFFFF;
  --text-muted: #9BA8C2;
  --text-dim: #6B7894;

  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 85, 0, 0.45);

  --font-display: "Russo One", "Oswald", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --container: 1200px;
  --section-pad: clamp(64px, 10vw, 120px);
  --radius: 14px;
  --radius-lg: 22px;

  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);

  color-scheme: dark;
}

/* ===== BASE ===== */
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
}

/* Ambient-подфон на всю страницу — фиксированный, движется вместе со скроллом */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 75% 25%, rgba(255, 85, 0, 0.13), transparent 70%),
    radial-gradient(ellipse 50% 45% at 20% 75%, rgba(255, 45, 85, 0.09), transparent 70%);
}

::selection {
  background: var(--accent);
  color: var(--bg-primary);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION TAG (// БОЛЬ, // КТО МЫ и т.п.) ===== */
.section-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--accent-red);
  margin-bottom: 18px;
  text-transform: uppercase;
  text-align: center;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--accent);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity var(--transition);
}
.site-header__brand:hover { opacity: 0.85; }
.site-header__logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.site-header__name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  position: relative;
}
.btn--primary {
  background: var(--accent);
  color: var(--bg-primary);
  box-shadow: 0 6px 20px var(--accent-glow);
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--accent-glow);
}
.btn--primary:active { transform: translateY(0); }
.btn--small { padding: 9px 18px; font-size: 14px; }
.btn--large { padding: 16px 32px; font-size: 17px; }
.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  box-shadow: none;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: none;
}
.btn--ghost:active { transform: translateY(0); }
.btn__arrow {
  display: inline-block;
  transition: transform var(--transition);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Pulse-эффект на главных CTA — язык мобильных игр */
.btn--pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: pulse-ring 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 var(--accent-glow); }
  70%  { box-shadow: 0 0 0 18px rgba(255, 85, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 85, 0, 0); }
}

/* ===== SECTION TITLE ===== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.8vw, 48px);
  line-height: 1.1;
  letter-spacing: 0.005em;
  margin-bottom: clamp(40px, 6vw, 64px);
  text-align: center;
}
.section-title__accent { color: var(--accent); display: inline-block; margin-left: 4px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0 clamp(80px, 12vw, 140px);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 15% 40%, rgba(255, 85, 0, 0.22), transparent 55%),
    radial-gradient(ellipse at 85% 85%, rgba(255, 45, 85, 0.14), transparent 55%);
  mask-image: linear-gradient(180deg, black 0%, black 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, black 65%, transparent 100%);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.025) 0,
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px,
    transparent 14px
  );
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* SVG-прицел — фоновая декорация, медленно вращается и пульсирует */
.hero__crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(110vmin, 760px);
  height: min(110vmin, 760px);
  color: var(--accent);
  opacity: 0.10;
  z-index: -1;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: crosshair-rotate 90s linear infinite, crosshair-pulse 5s ease-in-out infinite;
  filter: drop-shadow(0 0 12px var(--accent-glow));
}
@keyframes crosshair-rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes crosshair-pulse {
  0%, 100% { opacity: 0.08; }
  50%      { opacity: 0.14; }
}

.hero__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8.5vw, 110px);
  line-height: 1;
  letter-spacing: 0.005em;
  margin-bottom: 28px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.hero__title-accent {
  color: var(--accent);
  display: inline-block;
}
.hero__subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-muted);
  margin: 0 auto 40px;
  max-width: 540px;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero__fomo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--border-hover);
  background: var(--accent-dim);
  border-radius: 999px;
  font-size: 14px;
  color: var(--text-primary);
}
.hero__fomo strong {
  color: var(--accent);
  font-weight: 700;
}
.hero__fomo-icon { font-size: 16px; }

/* ===== PAIN ===== */
.pain {
  padding: var(--section-pad) 0 clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.pain .container { position: relative; z-index: 1; }
.pain__grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 14px;
  margin-left: -24px;
  margin-right: -24px;
  padding: 4px 24px 18px;
  margin-bottom: 56px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-dim) transparent;
}
.pain__grid::-webkit-scrollbar { height: 6px; }
.pain__grid::-webkit-scrollbar-thumb { background: var(--accent-dim); border-radius: 3px; }
@media (min-width: 720px) {
  .pain__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible;
    gap: 18px;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }
}
.pain-card {
  position: relative;
  flex: 0 0 78%;
  scroll-snap-align: start;
  padding: 28px 24px 28px 28px;
  background: transparent;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-red);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 720px) {
  .pain-card { flex: initial; }
}
/* Hover-вспышка — «активация» карточки, как урон в игре */
.pain-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--accent-dim) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: -1;
}
.pain-card:hover {
  border-color: var(--border-hover);
  border-left-color: var(--accent);
  transform: translateY(-4px);
}
.pain-card:hover::after { opacity: 1; }
.pain-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--accent-red-glow));
  transition: filter var(--transition), transform var(--transition);
}
.pain-card:hover .pain-card__icon {
  filter: drop-shadow(0 0 16px var(--accent-glow));
  transform: scale(1.06) rotate(-2deg);
}
.pain-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.pain-card__text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}
.pain__note {
  text-align: center;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* ===== ABOUT ===== */
.about {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.about .container { position: relative; z-index: 1; }
.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.about-card {
  padding: 32px 28px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}
.about-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.about-card__icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.about-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: var(--accent);
}
.about-card__text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== DIFF ===== */
.diff {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.diff .container { position: relative; z-index: 1; }
.diff__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 720px;
  margin: 0 auto;
}
.diff-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: border-color var(--transition), transform var(--transition);
}
.diff-row:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.diff-row__bad,
.diff-row__good {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.diff-row__good {
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.diff-row__bad p,
.diff-row__good p {
  font-size: 15px;
  line-height: 1.55;
}
.diff-row__bad p { color: var(--text-muted); }
.diff-row__good p { color: var(--text-primary); }
.diff-row__mark {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 1px;
}
.diff-row__mark--bad {
  background: rgba(255, 45, 85, 0.15);
  color: var(--accent-red);
}
.diff-row__mark--good {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
}

/* ===== STATUS ===== */
.status {
  padding: var(--section-pad) 0 clamp(72px, 8vw, 96px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pain::before,
.about::before,
.diff::before,
.status::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(80px, 22%, 220px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.status .container { position: relative; z-index: 1; }
.status__inner {
  max-width: 720px;
  margin: 0 auto;
}
.status__lead {
  font-size: clamp(20px, 2.4vw, 26px);
  margin-bottom: 36px;
  color: var(--text-primary);
}
.status__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  text-align: left;
}
.status__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 22px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  font-size: 16px;
  color: var(--text-muted);
  transition: border-color var(--transition), transform var(--transition);
}
.status__item:hover {
  border-color: var(--border-hover);
  border-left-color: var(--accent-hover);
  transform: translateY(-4px);
}
.status__icon {
  font-size: 22px;
  flex-shrink: 0;
}
.status__cta-text {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 16px;
}

/* В status тэг центрируется */
.status .section-tag { display: inline-block; }

/* ===== LOCATIONS ===== */
.locations {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.locations::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(80px, 22%, 220px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.locations .container { position: relative; z-index: 1; }
.locations__lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
  color: var(--text-muted);
  font-size: clamp(15px, 1.6vw, 17px);
}
.locations__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}
.loc-card {
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}
.loc-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.loc-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.loc-card__icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.loc-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.02em;
}
.loc-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.loc-card__row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 14px;
}
.loc-card__row dt {
  flex-shrink: 0;
  width: 76px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  text-transform: lowercase;
  letter-spacing: 0.04em;
}
.loc-card__row dd {
  color: var(--text-primary);
}
.loc-card__ping {
  color: var(--accent) !important;
  font-family: var(--font-mono);
  font-weight: 600;
}
.loc-card__note {
  margin-top: auto;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
}
.locations__foot {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
}

/* ===== PRICING ===== */
.pricing {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(80px, 22%, 220px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.pricing .container { position: relative; z-index: 1; }
.pricing__lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
  color: var(--text-muted);
  font-size: clamp(15px, 1.6vw, 17px);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}
.price-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.price-card--best {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--bg-elevated), var(--bg-secondary));
}
.price-card--best:hover {
  border-color: var(--accent-hover);
}
.price-card__badge {
  position: absolute;
  top: -10px;
  right: 16px;
  padding: 4px 10px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--border-hover);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-card__badge--best {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
}
.price-card__head {
  margin-bottom: 14px;
}
.price-card__period {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.price-card__tagline {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}
.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}
.price-card__amount {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--accent);
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.price-card__per {
  font-size: 13px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.price-card__hint {
  margin-top: auto;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}
.price-card__save {
  margin-top: auto;
  font-size: 13px;
  color: var(--success);
  font-family: var(--font-mono);
  line-height: 1.4;
}
.price-card__save strong {
  font-weight: 700;
  letter-spacing: 0.02em;
}
.price-card__save--best {
  color: var(--accent);
}
.pricing__included {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  padding: 18px 22px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 28px;
}
.pricing__included-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.pricing__included-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 14px;
  color: var(--text-muted);
}
.pricing__included-list li {
  position: relative;
  padding-left: 20px;
}
.pricing__included-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}
.pricing__perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.pricing__perk {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-muted);
}
.pricing__perk-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.pricing__perk strong {
  color: var(--text-primary);
  font-weight: 600;
}
.pricing__foot {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
}

/* ===== FAQ ===== */
.faq {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(80px, 22%, 220px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.faq .container { position: relative; z-index: 1; }
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] {
  border-color: var(--border-hover);
}
.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(16px, 1.8vw, 17px);
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition);
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { color: var(--accent); }
.faq-item__chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.faq-item__chevron::before,
.faq-item__chevron::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}
.faq-item__chevron::before {
  width: 12px;
  height: 2px;
}
.faq-item__chevron::after {
  width: 2px;
  height: 12px;
}
.faq-item[open] .faq-item__chevron {
  border-color: var(--accent);
  transform: rotate(180deg);
}
.faq-item[open] .faq-item__chevron::after {
  opacity: 0;
}
.faq-item__a {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}
.faq-item__a p + p { margin-top: 10px; }
.faq-item__a a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--accent-dim);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--transition);
}
.faq-item__a a:hover { text-decoration-color: var(--accent); }
.faq-item__a strong { color: var(--text-primary); }

/* Уважение к reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .faq-item__chevron,
  .faq-item__chevron::before,
  .faq-item__chevron::after {
    transition: none;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-primary);
  padding: 40px 0 28px;
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.site-footer__progress {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--accent-dim);
  border: 1px solid var(--border-hover);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-primary);
}
.site-footer__progress a {
  color: var(--accent);
  transition: color var(--transition);
}
.site-footer__progress a:hover { color: var(--accent-hover); }
.site-footer__toggle {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: color var(--transition), border-color var(--transition);
}
.site-footer__toggle:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
}
.site-footer__toggle[aria-pressed="true"] {
  color: var(--accent);
  border-color: var(--border-hover);
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}
.site-footer__logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}
.site-footer__links a {
  color: var(--accent);
  transition: color var(--transition);
}
.site-footer__links a:hover { color: var(--accent-hover); }
.site-footer__legal {
  font-size: 12px;
  color: var(--text-dim);
  max-width: 600px;
  line-height: 1.6;
  margin-top: -10px;
}
.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 10px;
  font-size: 11px;
  font-weight: 400;
  color: #4F5970;
  letter-spacing: 0.02em;
}
.site-footer__legal-links a {
  color: #5A6580;
  font-weight: 400;
  text-decoration: none;
  transition: color var(--transition);
}
.site-footer__legal-links a:hover {
  color: var(--text-muted);
  text-decoration: underline;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .btn--pulse::before { animation: none; }
}

/* Явный пользовательский тогл (кнопка в футере) */
body.no-motion *, body.no-motion *::before, body.no-motion *::after {
  animation-duration: 0.01ms !important;
  transition-duration: 0.01ms !important;
}
body.no-motion .btn--pulse::before { animation: none; }
body.no-motion .hero__crosshair { animation: none; opacity: 0.06; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
