@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* === FINAL v3: dark base + Ontico purple === */
:root {
  --bg:        #0f0d18;
  --bg-2:      #181527;
  --bg-3:      #211d33;
  --bg-4:      #2b2640;
  --border:    rgba(255,255,255,0.08);
  --border-2:  rgba(255,255,255,0.16);
  --text:      #f4f3f8;
  --text-2:    #b5b1c4;
  --text-3:    #7d798e;
  --text-4:    #4a4760;
  --accent:    #7c5cff;
  --accent-2:  #9d83ff;
  --accent-dim:rgba(124,92,255,0.10);
  --accent-line: rgba(124,92,255,0.28);
  --green:     #4ade80;
  --warn:      #f5a524;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-2); text-decoration: none; }
a:hover { color: var(--text); }
::selection { background: var(--accent); color: #fff; }

/* ── TOPBAR ── */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15,13,24,0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo {
  font-weight: 700; font-size: 15px;
  display: flex; align-items: center; gap: 10px;
}
.logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}
.logo span { color: var(--text-3); font-weight: 500; }

.topbar-contacts {
  display: flex; gap: 20px;
  font-size: 13px; color: var(--text-3);
}
.topbar-contacts a { color: var(--text-3); }
.topbar-contacts a:hover { color: var(--text); }

.topbar-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px;
  background: var(--accent); color: #fff;
  border-radius: 100px; font-size: 13px; font-weight: 600;
  transition: transform 0.15s, background 0.15s;
  cursor: pointer; border: none; font-family: inherit;
}
.topbar-cta:hover { transform: translateY(-1px); color: #fff; background: var(--accent-2); }

@media (max-width: 720px) {
  .topbar-contacts { display: none; }
  .topbar-inner { padding: 12px 18px; }
}

/* ── LAYOUT ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 18px; } }

.section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
@media (max-width: 720px) { .section { padding: 64px 0; } }

.section-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-2);
  padding: 5px 12px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-line);
  border-radius: 100px;
  margin-bottom: 24px;
}

h1, h2, h3 {
  letter-spacing: -0.025em; font-weight: 700; line-height: 1.12;
  text-wrap: balance;        /* равномерно распределяет строки заголовков */
}
h1 { font-size: 60px; margin-bottom: 24px; }
h1 .soft { color: var(--text-2); font-weight: 500; }
h2 { font-size: 40px; margin-bottom: 20px; max-width: 880px; }
h3 { font-size: 22px; }
.lead {
  font-size: 18px; line-height: 1.55;
  color: var(--text-2); max-width: 760px;
  font-weight: 400;
  text-wrap: pretty;         /* не оставляет одиночные слова на последней строке */
}
/* применяем pretty ко всем смысловым параграфам и пунктам списков */
p, li, .compare-item, .layer-text, .layer-list li,
.week-list li, .aud-list li, .t-list li,
.corp-cta-desc, .mini-form-conditions li,
.corp-modal-section p, .corp-modal-section ul li,
.participation-list li, .participation > p, .faq-a {
  text-wrap: pretty;
}
@media (max-width: 900px) {
  h1 { font-size: 44px; }
  h2 { font-size: 30px; }
  .lead { font-size: 17px; }
}
@media (max-width: 480px) {
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
}

/* ── HERO + COMPARE ── */
.hero {
  padding: 100px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; left: 50%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 60%);
  transform: translateX(-50%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-2);
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-line);
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green); border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
}

.hero-buttons {
  display: flex; gap: 12px; margin-top: 32px;
  flex-wrap: wrap; align-items: center;
}
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px; font-weight: 600;
  transition: all 0.15s;
  cursor: pointer; border: none;
  font-family: inherit;
  text-align: center;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-1px); color: #fff; }
.btn-secondary {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-secondary:hover { border-color: var(--text); color: var(--text); }

.compare-section {
  padding-bottom: 100px;
  position: relative; z-index: 1;
}
.compare-intro {
  margin-top: 80px;
  margin-bottom: 32px;
  max-width: 800px;
}
.compare-intro h2 {
  font-size: 32px;
  margin-bottom: 14px;
}
.compare-intro p { color: var(--text-2); font-size: 17px; line-height: 1.55; }

.compare {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 800px) { .compare { grid-template-columns: 1fr; } }
.compare-col {
  padding: 28px;
  border-radius: 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.compare-col.club {
  background: linear-gradient(160deg, var(--accent-dim) 0%, var(--bg-2) 100%);
  border-color: var(--accent-line);
}
.compare-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 6px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.compare-col.out .compare-tag { background: var(--bg-4); color: var(--text-2); }
.compare-col.club .compare-tag { background: var(--accent); color: #fff; }
.compare-item {
  padding: 14px 0;
  border-top: 1px solid var(--border);
  font-size: 14px; color: var(--text);
  line-height: 1.5;
  flex: 1;
  display: flex; align-items: flex-start;
  min-height: 72px;
}
.compare-item:first-of-type {
  border-top: none;
  padding-top: 0;
}
.compare-item:last-of-type { padding-bottom: 0; }

/* ── LAYERS ── */
.layers {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 900px) { .layers { grid-template-columns: 1fr; } }
.layer {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.layer:hover {
  border-color: var(--accent-line);
  transform: translateY(-2px);
}
.layer-num {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}
.layer-title { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.layer-pill {
  display: inline-block;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
  background: var(--bg-4); color: var(--text-2);
  margin-left: 8px; vertical-align: middle;
}
.layer-sub { font-size: 13px; color: var(--text-3); margin-bottom: 16px; }
.layer-text { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.layer-list { list-style: none; margin-top: 14px; }
.layer-list li {
  padding: 5px 0 5px 20px; position: relative;
  color: var(--text-2); font-size: 13px; line-height: 1.5;
}
.layer-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--accent-2); font-weight: 700;
}

/* ── AUDIENCE ── */
.audience {
  margin-top: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 720px) { .audience { grid-template-columns: 1fr; } }
.aud-card {
  padding: 28px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  border-top: 3px solid var(--accent);
}
.aud-card.mng { border-top-color: #5b8def; }
.aud-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
  background: var(--accent-dim); color: var(--accent-2);
  margin-bottom: 14px;
}
.aud-card.mng .aud-tag { background: rgba(91,141,239,0.12); color: #8ab0ff; }
.aud-title { font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.aud-list { list-style: none; }
.aud-list li {
  padding: 9px 0 9px 22px;
  color: var(--text-2); font-size: 14px;
  border-top: 1px solid var(--border);
  position: relative; line-height: 1.4;
}
.aud-list li:first-child { border-top: none; padding-top: 0; }
.aud-list li::before {
  content: '→'; position: absolute; left: 0; top: 9px;
  color: var(--accent-2); font-weight: 700;
}
.aud-card .aud-list li:first-child::before { top: 0; }
.aud-card.mng .aud-list li::before { color: #8ab0ff; }

/* ── УСЛОВИЕ УЧАСТИЯ — visible block before pricing ── */
.participation {
  margin-top: 32px;
  background: transparent;
  border: none;
  border-left: 2px solid var(--accent-line);
  border-radius: 0;
  padding: 4px 0 4px 24px;
  position: relative;
}
@media (max-width: 720px) { .participation { padding-left: 18px; } }
.participation-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 10px;
}
.participation h3 {
  font-size: 18px; font-weight: 700; margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.participation > p {
  font-size: 14px; color: var(--text-2); line-height: 1.55;
  margin-bottom: 14px; max-width: 760px;
}
.participation-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 8px;
}
.participation-list li {
  padding: 0 0 0 24px;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 13.5px; color: var(--text-2);
  line-height: 1.5;
  position: relative;
}
.participation-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--accent-2); font-weight: 700;
  font-size: 14px;
}
.participation-list li strong {
  color: var(--text);
  font-weight: 600;
}

/* ── TARIFFS — 4 main + 2 stacked corp ── */
.tariffs-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 580px) { .tariffs-grid { grid-template-columns: 1fr; } }

.tariff-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.tariff-card:hover { border-color: var(--border-2); transform: translateY(-2px); }
.tariff-card.free {
  border-style: dashed;
  border-color: var(--border-2);
}
.tariff-card.featured {
  background: linear-gradient(160deg, var(--accent-dim) 0%, var(--bg-2) 60%);
  border-color: var(--accent-line);
  border-width: 1.5px;
  box-shadow: 0 0 50px -22px var(--accent-dim);
}

.t-name {
  font-size: 12px; font-weight: 700;
  color: var(--text-3); text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.tariff-card.featured .t-name { color: var(--accent-2); }
.tariff-card.free .t-name { color: var(--green); }

.t-price {
  font-size: 36px; font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
}
.t-price.free-price { color: var(--green); font-size: 28px; }
.t-per { font-size: 12px; color: var(--text-3); margin-top: 5px; margin-bottom: 22px; }

.t-list { list-style: none; flex: 1; }
.t-list li {
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text);
  line-height: 1.45;
}
.t-list li:first-child { border-top: none; padding-top: 0; }
.t-list li.muted { color: var(--text-3); }
.t-list li.muted::before { content: '—  '; color: var(--text-4); }
.t-list li.strong { color: var(--accent-2); font-weight: 600; }
.tariff-card.featured .t-list li { border-color: rgba(124,92,255,0.16); }

.t-cta {
  margin-top: 24px;
  width: 100%;
  padding: 13px 16px;
  border-radius: 11px;
  font-size: 13px; font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s;
  border: none;
  text-decoration: none;
  text-align: center;
  display: block;
}
.t-cta.primary { background: var(--accent); color: #fff; }
.t-cta.primary:hover { background: var(--accent-2); color: #fff; }
.t-cta.outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-2);
}
.t-cta.outline:hover { border-color: var(--text); color: var(--text); }

/* ── HOW-IT-WORKS — компактная полоса 4 шагов ── */
.how-join {
  margin-top: 32px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.how-join-header {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 18px;
}
.how-join-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-2);
}
.how-join-sub {
  font-size: 13px; color: var(--text-3);
  line-height: 1.5;
}
.how-join-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 720px) { .how-join-steps { grid-template-columns: 1fr; } }
.how-join-step {
  padding: 16px 18px;
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  border-radius: 0;
  position: relative;
  display: flex; align-items: flex-start;
  gap: 12px;
}
.how-join-step:last-child { border-right: none; }
@media (max-width: 720px) {
  .how-join-step { border-right: none; border-bottom: 1px solid var(--border); }
  .how-join-step:last-child { border-bottom: none; }
}
.how-join-step-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent-2);
  font-size: 12px; font-weight: 700;
  border: 1px solid var(--accent-line);
}
.how-join-step-text {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.45;
}

/* ── BOT NOTE в модалке (короткий поясняющий блок) ── */
.modal-bot-note {
  margin-top: 6px;
  margin-bottom: 18px;
  padding: 12px 16px;
  background: var(--bg-3);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}
.modal-bot-note strong { color: var(--text); font-weight: 600; }
.corp-cta {
  margin-top: 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.corp-cta-text { min-width: 0; flex: 1; }
.corp-cta-title {
  font-size: 16px; font-weight: 700;
  margin-bottom: 4px;
}
.corp-cta-desc {
  font-size: 13px; color: var(--text-2);
  line-height: 1.5;
}
.corp-cta-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 24px;
  border-radius: 100px;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.corp-cta-btn:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: #fff;
  transform: translateY(-1px);
}
@media (max-width: 720px) {
  .corp-cta { flex-direction: column; align-items: flex-start; padding: 22px; }
  .corp-cta-btn { width: 100%; justify-content: center; }
}

/* ── MODALS ── */
.modal-bg {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center; justify-content: center;
  z-index: 100;
  padding: 20px;
  overflow-y: auto;
}
.modal-bg.open { display: flex; }
.modal {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 20px;
  max-width: 560px; width: 100%;
  padding: 36px;
  position: relative;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
@media (max-width: 480px) { .modal { padding: 28px 22px; } }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: none; border: none;
  font-size: 24px;
  color: var(--text-3);
  cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 50%;
  transition: all 0.15s;
  z-index: 2;
}
.modal-close:hover { background: var(--bg-3); color: var(--text); }
.modal-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 10px;
}
.modal-title {
  font-size: 26px; font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.modal-price {
  font-size: 17px; color: var(--text-2);
  margin-bottom: 24px;
}
.modal-price strong { color: var(--text); font-weight: 700; }

/* ── MINI-FORM (для физлица) ── */
.mini-form-conditions {
  background: var(--bg-3);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 22px;
}
.mini-form-conditions-h {
  font-size: 13px; font-weight: 700;
  color: var(--accent-2);
  margin-bottom: 10px;
}
.mini-form-conditions ul {
  list-style: none;
  margin: 0; padding: 0;
}
.mini-form-conditions li {
  font-size: 13px; color: var(--text-2);
  padding: 5px 0 5px 18px;
  position: relative;
  line-height: 1.5;
}
.mini-form-conditions li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--accent-2); font-weight: 700;
}

.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--text-2);
  margin-bottom: 8px;
}
.field label .req { color: var(--accent-2); }
.field input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.15s;
}
.field input[type="text"]:focus {
  outline: none;
  border-color: var(--accent);
}
.field input[type="text"]::placeholder { color: var(--text-4); }
.field-hint {
  font-size: 12px; color: var(--text-3);
  margin-top: 6px;
}
.field-error {
  font-size: 12px; color: var(--warn);
  margin-top: 6px;
  display: none;
}
.field.error input[type="text"] { border-color: var(--warn); }
.field.error .field-error { display: block; }

.checkbox {
  display: flex; align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s;
  margin-bottom: 10px;
}
.checkbox:hover { border-color: var(--border-2); }
.checkbox input[type="checkbox"] {
  flex-shrink: 0;
  appearance: none;
  width: 20px; height: 20px;
  border: 1.5px solid var(--border-2);
  border-radius: 5px;
  background: var(--bg);
  cursor: pointer;
  margin-top: 1px;
  position: relative;
  transition: all 0.15s;
}
.checkbox input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.checkbox input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.checkbox-label {
  font-size: 13px; color: var(--text);
  line-height: 1.5;
}
.checkbox-label a { color: var(--accent-2); text-decoration: underline; }
.checkbox-label a:hover { color: var(--text); }

.submit-btn {
  width: 100%;
  padding: 15px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px; font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  margin-top: 18px;
  transition: all 0.15s;
}
.submit-btn:hover:not(:disabled) {
  background: var(--accent-2);
  transform: translateY(-1px);
}
.submit-btn:disabled {
  background: var(--bg-4);
  color: var(--text-3);
  cursor: not-allowed;
}

/* ── CORP MODAL CONTENT ── */
.corp-modal-section {
  margin-bottom: 22px;
}
.corp-modal-section h4 {
  font-size: 13px; font-weight: 700;
  color: var(--accent-2);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.corp-modal-section ul {
  list-style: none;
  background: var(--bg-3);
  border-radius: 10px;
  padding: 14px 18px;
}
.corp-modal-section ul li {
  font-size: 14px; color: var(--text);
  padding: 6px 0 6px 18px;
  position: relative; line-height: 1.5;
}
.corp-modal-section ul li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--accent-2); font-weight: 700;
}
.corp-modal-section p {
  font-size: 14px; color: var(--text-2);
  line-height: 1.6;
  background: var(--bg-3);
  border-radius: 10px;
  padding: 14px 18px;
}

/* ── FAQ ── */
.faq-list { margin-top: 28px; }
.faq-item {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 17px; font-weight: 600;
  cursor: pointer; gap: 16px;
}
.faq-q::after {
  content: '+';
  font-size: 24px; color: var(--accent-2); font-weight: 300;
  transition: transform 0.2s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding-top: 14px;
  color: var(--text-2);
  font-size: 15px; line-height: 1.65;
}
.faq-item.open .faq-a { display: block; }

/* ── FOOTER ── */
footer {
  padding: 56px 0 36px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h5 {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 14px;
}
.footer-col p, .footer-col a {
  font-size: 13px; color: var(--text-2);
  display: block; padding: 3px 0;
}
.footer-col a:hover { color: var(--text); }
.footer-legal {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 11px; color: var(--text-3); line-height: 1.6;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 200;
  max-width: 720px;
  margin: 0 auto;
  display: flex; align-items: center;
  gap: 18px;
  padding: 16px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 14px;
  box-shadow: 0 12px 40px -12px rgba(0,0,0,0.6);
}
.cookie-banner.hidden { display: none; }
.cookie-text {
  flex: 1;
  font-size: 13px; color: var(--text-2);
  line-height: 1.5;
}
.cookie-text a { color: var(--accent-2); text-decoration: underline; }
.cookie-text a:hover { color: var(--text); }
.cookie-ok {
  flex-shrink: 0;
  padding: 9px 22px;
  background: var(--accent); color: #fff;
  border: none; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.cookie-ok:hover { background: var(--accent-2); transform: translateY(-1px); }
.cookie-close {
  flex-shrink: 0;
  background: none; border: none;
  color: var(--text-3);
  font-size: 22px; line-height: 1;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-close:hover { background: var(--bg-3); color: var(--text); }
@media (max-width: 600px) {
  .cookie-banner {
    flex-wrap: wrap;
    left: 12px; right: 12px; bottom: 12px;
    padding: 16px;
    gap: 12px;
  }
  .cookie-close { position: absolute; top: 10px; right: 10px; }
  .cookie-text { flex-basis: 100%; padding-right: 28px; }
  .cookie-ok { width: 100%; }
}
