/* BIMCHINE — japanese cinematic dark landing */

:root {
  --bg: #0A0A0A;
  --ink: #F5F1E8;
  --ink-mute: #9A9A9A;
  --red: #C8302E;
  --red-deep: #8f1a12;
  --red-bright: #e34a48;
  --paper: #f0d4a1;
  --paper-warm: #f4dfbd;
  --ochre: #c8894f;
  --gold: #d6b67a;
}

html, body { background: #0A0A0A; color: var(--ink); }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Typography */
.font-display { font-family: 'Cormorant Garamond', 'Times New Roman', serif; letter-spacing: 0.02em; }
.font-hand { font-family: 'Caveat', 'Comic Sans MS', cursive; }
.font-mono { font-family: 'JetBrains Mono', 'Courier New', monospace; }

.tracking-tightcaps { letter-spacing: 0.04em; }
.tracking-wide-caps { letter-spacing: 0.18em; }
.tracking-extra { letter-spacing: 0.32em; }

/* Color tokens */
.text-red-cinnabar { color: var(--red); }
.text-ink { color: var(--ink); }
.text-mute { color: var(--ink-mute); }
.text-paper { color: var(--paper); }
.text-paper-warm { color: var(--paper-warm); }
.bg-cinnabar { background: var(--red); }
.border-cinnabar { border-color: var(--red); }
.border-ochre { border-color: rgba(200, 137, 79, 0.75); }

/* Film grain overlay */
.film-grain::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
  opacity: var(--grain-opacity, 0.05);
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.85'/%3E%3C/svg%3E");
}

/* Vignette around viewport for cinema feel */
.cinema-vignette::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.55) 100%);
}

/* Red glow utility */
.red-glow {
  box-shadow:
    0 0 0 1px rgba(200, 48, 46, 0.45) inset,
    0 0 28px rgba(200, 48, 46, 0.45),
    0 0 60px rgba(200, 48, 46, 0.25);
}
.red-glow-soft {
  box-shadow: 0 0 24px rgba(200, 48, 46, 0.30), 0 0 48px rgba(200, 48, 46, 0.18);
}
.text-glow-red { text-shadow: 0 0 16px rgba(200, 48, 46, 0.55); }
.text-glow-warm { text-shadow: 0 2px 24px rgba(0,0,0,0.7), 0 0 32px rgba(244, 223, 189, 0.18); }

/* CTA button — pill with enso */
.cta-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  text-decoration: none;
  padding: 1.1rem 2.4rem 1.1rem 1.4rem;
  border-radius: 9999px;
  background: linear-gradient(180deg, #d8332f 0%, #b3261f 100%);
  color: #fff5e6;
  letter-spacing: 0.22em;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  border: 1px solid rgba(255, 220, 200, 0.18);
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s ease;
  cursor: pointer;
}
.cta-pill::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 9999px;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(200,48,46,0.62), transparent 70%);
  filter: blur(16px);
  animation: ctaPulse 2.5s ease-in-out infinite;
}
.cta-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(200,48,46,0.45), 0 0 80px rgba(200,48,46,0.35);
}
.cta-pill:hover .enso-mark { transform: rotate(12deg) scale(1.04); }
.enso-mark {
  width: 46px; height: 46px;
  flex-shrink: 0;
  background-image: url('../uploads/enso_ring.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
  filter: drop-shadow(0 0 8px rgba(244,223,189,0.4));
}

@keyframes ctaPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.06); }
}

/* Floating */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}
.float-y { animation: floatY 3s ease-in-out infinite; }

/* Pulse opacity for dao stamp */
@keyframes daoPulse {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}
.dao-pulse { animation: daoPulse 3s ease-in-out infinite; }

/* Maple sway */
@keyframes mapleSway {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  50%      { transform: rotate(1.2deg) translateY(-2px); }
}
.maple-sway { animation: mapleSway 5s ease-in-out infinite; transform-origin: top left; }
.maple-sway-r { animation: mapleSway 5.4s ease-in-out infinite reverse; transform-origin: top right; }

/* Kanji breathing */
@keyframes kanjiBreath {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
.kanji-breath { animation: kanjiBreath 2.4s ease-in-out infinite; }

/* Trophy gold glow */
@keyframes trophyGlow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(214,182,122,0.4)); }
  50%      { filter: drop-shadow(0 0 18px rgba(214,182,122,0.9)) drop-shadow(0 0 30px rgba(214,182,122,0.5)); }
}
.trophy-glow { animation: trophyGlow 2.6s ease-in-out infinite; }

/* Timeline running blik — travels down the line ~every 5s */
.tl-blik {
  position: absolute;
  left: 31px;
  width: 3px;
  height: 64px;
  border-radius: 3px;
  background: linear-gradient(180deg, transparent, rgba(255,214,150,0.95) 45%, rgba(255,150,80,0.9) 55%, transparent);
  box-shadow: 0 0 16px rgba(255,170,80,0.9), 0 0 30px rgba(232,160,48,0.5);
  filter: blur(0.4px);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  animation: tlBlik 5s ease-in-out infinite;
}
@keyframes tlBlik {
  0%   { top: 30px; opacity: 0; }
  6%   { opacity: 1; }
  34%  { opacity: 1; }
  44%  { top: calc(100% - 100px); opacity: 0; }
  100% { top: calc(100% - 100px); opacity: 0; }
}

/* Timeline node lantern flicker */
.tl-node { animation: lanternFlicker 4.2s ease-in-out infinite; }
@keyframes lanternFlicker {
  0%, 100% { box-shadow: 0 0 18px rgba(201,47,47,0.55), 0 0 36px rgba(201,47,47,0.28), inset 0 0 18px rgba(201,47,47,0.35); }
  18%      { box-shadow: 0 0 27px rgba(201,47,47,0.82), 0 0 52px rgba(232,120,60,0.4), inset 0 0 20px rgba(232,120,60,0.45); }
  33%      { box-shadow: 0 0 13px rgba(201,47,47,0.42), 0 0 26px rgba(201,47,47,0.2), inset 0 0 15px rgba(201,47,47,0.3); }
  56%      { box-shadow: 0 0 31px rgba(232,130,60,0.85), 0 0 58px rgba(232,160,48,0.45), inset 0 0 22px rgba(232,130,60,0.5); }
  75%      { box-shadow: 0 0 16px rgba(201,47,47,0.5), 0 0 30px rgba(201,47,47,0.24), inset 0 0 16px rgba(201,47,47,0.32); }
}

/* Pricing kanji glow (gold variant stronger) */
.pr-kanji-glow { animation: prKanjiGlow 3.4s ease-in-out infinite; }
@keyframes prKanjiGlow {
  0%, 100% { filter: drop-shadow(0 0 3px color-mix(in srgb, var(--pr-glow) 30%, transparent)); }
  50%      { filter: drop-shadow(0 0 12px color-mix(in srgb, var(--pr-glow) 62%, transparent)); }
}
.pr-kanji-glow-gold { animation: prKanjiGlowGold 2.8s ease-in-out infinite; }
@keyframes prKanjiGlowGold {
  0%, 100% { filter: drop-shadow(0 0 6px color-mix(in srgb, var(--pr-glow) 48%, transparent)); }
  50%      { filter: drop-shadow(0 0 20px color-mix(in srgb, var(--pr-glow) 88%, transparent)) drop-shadow(0 0 34px color-mix(in srgb, var(--pr-glow) 45%, transparent)); }
}

/* Drifting fog / mist over dark backdrops */
.fog-layer {
  position: absolute;
  inset: -12%;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0.55;
  background:
    radial-gradient(58% 48% at 22% 42%, rgba(206,196,184,0.06), transparent 72%),
    radial-gradient(52% 44% at 72% 60%, rgba(196,186,176,0.05), transparent 72%),
    radial-gradient(42% 40% at 48% 26%, rgba(214,204,192,0.045), transparent 72%);
  animation: fogDrift 42s ease-in-out infinite alternate;
}
.fog-layer.fog-alt {
  opacity: 0.4;
  background:
    radial-gradient(54% 46% at 64% 34%, rgba(200,190,180,0.05), transparent 72%),
    radial-gradient(46% 42% at 30% 66%, rgba(208,198,186,0.045), transparent 72%);
  animation: fogDrift 58s ease-in-out infinite alternate-reverse;
}
@keyframes fogDrift {
  0%   { transform: translate3d(-2.5%, 0.5%, 0) scale(1.04); }
  100% { transform: translate3d(3%, -2%, 0) scale(1.13); }
}

/* Lantern glow flicker */
.lantern-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: blur(7px);
  background: radial-gradient(circle, rgba(255,184,96,0.5) 0%, rgba(255,150,70,0.22) 38%, transparent 70%);
  animation: lanternFlick 4.3s ease-in-out infinite;
  z-index: 1;
}
@keyframes lanternFlick {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  22%      { opacity: 0.8; }
  38%      { opacity: 0.46; }
  56%      { opacity: 0.94; transform: scale(1.05); }
  72%      { opacity: 0.58; }
}

/* Paper sway for route scrolls */
.route-sway { animation: routeSway 6s ease-in-out infinite; transform-origin: 50% 0%; }
@keyframes routeSway {
  0%, 100% { transform: rotate(-1deg); }
  50%      { transform: rotate(1deg); }
}

/* Dao seal — "stamp" pop on hover */
.dao-stamp { cursor: pointer; }
.dao-stamp:hover { animation: daoStampPop 0.45s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes daoStampPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* QR code highlight on hover */
.qr-hover {
  cursor: pointer;
  border-radius: 6px;
  transition: filter 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.qr-hover:hover {
  filter: brightness(1.18) drop-shadow(0 0 14px rgba(201,47,47,0.7)) !important;
  box-shadow: 0 0 0 1px rgba(201,47,47,0.6), 0 0 22px rgba(201,47,47,0.55);
  transform: scale(1.06);
}

/* Paper card body */
.paper-card {
  position: relative;
  background: linear-gradient(180deg, #f0d4a1 0%, #e3c182 100%);
  color: #3a2614;
  border-radius: 4px;
  padding: 1.5rem 1.5rem 1.4rem;
  box-shadow: 0 16px 30px rgba(0,0,0,0.55), 0 2px 0 rgba(0,0,0,0.15) inset;
}
.paper-card::after {
  /* charred edges via mask */
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(40,20,10,0.45), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(40,20,10,0.42), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(40,20,10,0.5), transparent 32%),
    radial-gradient(circle at 100% 100%, rgba(40,20,10,0.45), transparent 32%);
  border-radius: inherit;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.washi {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(-1.5deg);
  width: 62%;
  height: 22px;
  background: repeating-linear-gradient(135deg, #c8302e 0 6px, #a82624 6px 12px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
  border-radius: 1px;
}
.washi::before, .washi::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 8px;
  background: rgba(0,0,0,0.18);
}
.washi::before { left: 4px; }
.washi::after { right: 4px; }
.paper-card:hover .washi { transform: translateX(-50%) rotate(0.5deg); }

/* Parchment card (route map) */
.parchment-card {
  background-image: url('../uploads/card_parchment.webp');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  color: #2a1a0e;
  border-radius: 6px;
  padding: 1.9rem 1.7rem 1.7rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  position: relative;
  min-height: 280px;
}

/* SectionBlend */
.section-blend {
  position: relative;
  height: 12rem;
  margin-top: -6rem;
  margin-bottom: -6rem;
  pointer-events: none;
  z-index: 5;
  background: linear-gradient(to bottom, transparent 0%, rgba(8,6,4,0.78) 50%, transparent 100%);
}

/* Hairline */
.hairline { height: 1px; background: linear-gradient(90deg, transparent, var(--red), transparent); }
.hairline-warm { height: 1px; background: linear-gradient(90deg, transparent, rgba(244,223,189,0.5), transparent); }

/* Number medallion */
.medallion {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #d83532, #8f1a12 70%);
  display: flex; align-items: center; justify-content: center;
  color: #f5e9c8;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.85rem;
  flex-shrink: 0;
  box-shadow:
    0 0 0 2px rgba(214,182,122,0.55) inset,
    0 0 0 4px #6a120c inset,
    0 0 0 5px rgba(214,182,122,0.35) inset,
    0 10px 22px rgba(0,0,0,0.55),
    0 0 22px rgba(200,48,46,0.35);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.parchment-card:hover .medallion { transform: rotate(8deg); }

/* Platform card */
.platform-card {
  position: relative;
  background: rgba(8, 6, 4, 0.56);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(200, 137, 79, 0.75);
  border-radius: 10px;
  padding: 1.5rem 1.6rem;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), border-color 0.5s ease, box-shadow 0.5s ease;
  overflow: hidden;
}
.platform-card::before {
  /* inner glow */
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 36px rgba(200, 137, 79, 0.22);
  pointer-events: none;
}
.platform-card::after {
  /* sweeping highlight on intro */
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 30%;
  left: -40%;
  background: linear-gradient(90deg, transparent, rgba(244,223,189,0.12), transparent);
  pointer-events: none;
  transition: left 1.4s cubic-bezier(0.22,1,0.36,1);
}
.platform-card.intro::after { left: 130%; }
.platform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 48, 46, 0.85);
  box-shadow: 0 18px 40px rgba(0,0,0,0.6), 0 0 30px rgba(200,48,46,0.25);
}
.platform-card:hover .kanji-big { animation-duration: 1.6s; }

.kanji-big {
  font-family: 'Noto Serif JP', 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 5rem;
  line-height: 1;
  color: var(--red);
  filter: drop-shadow(0 0 18px rgba(200,48,46,0.45));
}

/* Platform material wall — faint blurred peek of real content */
.why-mat-wall {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  column-count: 4;
  column-gap: 16px;
  padding: 360px 22px 22px;
  filter: blur(0.4px) saturate(0.96) brightness(0.98);
  opacity: 0.92;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 150% 92% at 50% 56%, #000 64%, rgba(0,0,0,0.4) 84%, transparent 100%);
          mask-image: radial-gradient(ellipse 150% 92% at 50% 56%, #000 64%, rgba(0,0,0,0.4) 84%, transparent 100%);
}
.why-mat-wall img {
  width: 100%;
  display: block;
  margin-bottom: 16px;
  border-radius: 12px;
  break-inside: avoid;
  border: 1px solid rgba(220, 160, 90, 0.16);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
@media (max-width: 1000px) { .why-mat-wall { column-count: 3; padding-top: 300px; } }
@media (max-width: 640px) { .why-mat-wall { column-count: 2; opacity: 0.42; padding-top: 240px; } }

/* Reason card (not-course / own pace) */
.reason-card {
  position: relative;
  background: rgba(15, 9, 6, 0.66);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(220, 140, 80, 0.55);
  border-radius: 18px;
  padding: 1.6rem 1.8rem 1.6rem 1.7rem;
  box-shadow:
    inset 0 0 36px rgba(220, 140, 60, 0.18),
    0 16px 40px rgba(0,0,0,0.55);
  display: flex; align-items: flex-start; gap: 1.4rem;
}
.check-seal {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #b32622, #791410 80%);
  border: 2px solid rgba(220,160,80,0.85);
  display: grid; place-items: center;
  color: #ffeacd;
  box-shadow:
    inset 0 0 16px rgba(255, 180, 90, 0.4),
    0 0 22px rgba(200, 48, 46, 0.45);
}

/* Path dashed line shared */
.dashed-red {
  stroke: #C8302E;
  stroke-width: 1.2;
  stroke-dasharray: 7 10;
  fill: none;
  opacity: 0.42;
}

/* Diamond ornament */
.diamond {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--paper-warm);
  transform: rotate(45deg);
  vertical-align: middle;
  margin: 0 0.6rem;
  opacity: 0.85;
}

/* prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .float-y, .dao-pulse, .maple-sway, .maple-sway-r,
  .kanji-breath, .trophy-glow,
  .tl-blik, .tl-node, .pr-kanji-glow, .pr-kanji-glow-gold,
  .fog-layer, .lantern-glow, .route-sway,
  .cta-pill::before { animation: none !important; }
}

/* Tweaks panel z-index above grain */
.tweaks-panel-root { z-index: 200 !important; }

/* Focus rings */
*:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--paper-warm), 0 0 0 4px #000;
  border-radius: 4px;
}

/* Section base padding */
.section-pad { padding-block: 7rem; }

@media (max-width: 768px) {
  .section-pad { padding-block: 4.5rem; }
  .kanji-big { font-size: 3.5rem; }

  /* ===== Мобильная адаптация (добавлено при интеграции лендинга) =====
     Экспорт desktop-first с инлайновыми style (фикс. px, display:grid).
     !important в media-query перебивает инлайн-стили в JSX. */

  /* Гард от горизонтального скролла */
  html, body { overflow-x: hidden; max-width: 100%; }

  /* Инлайн-сетки (мульти-колонка) → одна колонка во всю ширину */
  [style*="grid-template-columns"] {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
    column-gap: 0 !important;
  }

  /* Фикс-ширины Tailwind (w-[NNNpx]) и инлайн → не шире вьюпорта */
  [class*="w-["] { max-width: 100% !important; }
  [style*="width: 1420px"], [style*="width:1420px"],
  [style*="width: 980px"],  [style*="width:980px"],
  [style*="width: 1000px"], [style*="width:1000px"],
  [style*="width: 900px"],  [style*="width:900px"],
  [style*="width: 768px"],  [style*="width:768px"],
  [style*="width: 720px"],  [style*="width:720px"] {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* ── Точечные фиксы по фидбеку (по секциям) ── */

  /* FAQ: масштабированную desktop-сцену прячем, ниже — аккордеон */
  #faq .faq-scaler { display: none !important; }

  /* Goals: большой заголовок над стопкой карточек, а не внахлест */
  #goals [style*="translate(-50%, -50%)"] {
    position: static !important; transform: none !important;
    margin-top: 0 !important; width: auto !important;
  }
  #goals h2 { white-space: normal !important; font-size: 30px !important; }
  #goals h2 span { font-size: 40px !important; }
  #goals .absolute p { font-size: 13px !important; }

  /* Route (Карта пути): заголовок не вылезает за верхний рваный край пергамента
     (больше отступ сверху, меньше по бокам — на мобиле карточка уже) */
  #map h3 { font-size: 0.95rem !important; }
  #map .route-sway { padding: 40px 22px 22px 30px !important; }

  /* ── Перф на мобиле: тяжелые непрерывные эффекты выключаем ── */
  /* backdrop-blur (дорогая перекомпозиция каждого блюра) — глобально на мобиле */
  *, *::before, *::after { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
  /* анимированное зерно (fixed full-screen paint) и туман-оверлеи */
  .film-grain::after { display: none !important; }
  .fog-layer { display: none !important; }

  /* Reviews: завершающая строка переносится, а не обрезается по краям */
  .rv-ornament-label { white-space: normal !important; letter-spacing: 0.12em !important; }

  /* FAQ mobile accordion */
  .faq-mobile { display: block !important; padding: 46px 20px 54px; max-width: 560px; margin: 0 auto; }
  .faq-m-title { font-family: 'Cormorant Garamond', serif; font-size: 30px; color: #F5F1E8; text-align: center; letter-spacing: 0.04em; line-height: 1.1; margin: 0 0 22px; }
  .faq-m-sub { text-align: center; color: #9a8f86; font-size: 13px; margin: 6px 0 24px; }
  .faq-m-item { border: 1px solid rgba(201,47,47,0.28); border-radius: 10px; margin-bottom: 12px; background: rgba(20,6,6,0.5); overflow: hidden; }
  .faq-m-item.open { border-color: rgba(201,47,47,0.65); }
  .faq-m-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 15px 16px; background: none; border: none; color: #F5F1E8; font-family: 'Cormorant Garamond', serif; font-size: 17px; line-height: 1.25; text-align: left; cursor: pointer; }
  .faq-m-pm { color: #C8302E; font-size: 22px; flex-shrink: 0; line-height: 1; }
  .faq-m-a { padding: 2px 16px 16px; }
  .faq-m-a p { color: #cfc3b8; font-size: 14px; line-height: 1.6; margin: 0 0 8px; }
  .faq-m-a p:last-child { margin-bottom: 0; }
}

/* FAQ-аккордеон скрыт на десктопе (показывается только в моб. media-query) */
.faq-mobile { display: none; }

/* Custom scrollbar look (subtle) */
::-webkit-scrollbar { width: 10px; background: #050505; }
::-webkit-scrollbar-thumb { background: #1a1310; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #2a1d18; }
