/* Основные стили */
:root {
  --primary: #38bdf8;
  --secondary: #1e293b;
  --bg: #0f172a;
  --text: #e2e8f0;
  --accent: #38bdf8;
  --danger: #ef4444;
  --success: #10b981;
  --radius: 10px;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Навигация */
.site-nav {
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: "Russo One", sans-serif;
  font-size: 1.2rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--text);
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(56,189,248,.25);
  color: var(--text);
  font-size: 1.2rem;
  padding: 8px 12px;       /* ↑ чуть больше кликабельность */
  border-radius: 10px;     /* ↑ фокус-стиль */
}

/* Контейнер */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px 16px;
}

.section-title {
  text-align: center;
  font-family: "Russo One", sans-serif;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.support-sub {
  text-align: center;
  color: #94a3b8;
  margin-bottom: 24px;
}

/* Формы */
form {
  background-color: var(--secondary);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 1px solid #334155;
  background-color: #1e293b;
  color: var(--text);
  font-size: 1rem;
  outline: none;
  transition: border 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
}

/* Кнопки */
.btn,
button {
  display: inline-block;
  background-color: var(--accent);
  color: var(--bg);
  padding: 10px 18px;
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.15s;
}

.btn:hover,
button:hover {
  background-color: #0ea5e9;
  transform: translateY(-1px);
}

.btn:active,
button:active {
  transform: translateY(0);
}

/* Карточки / блоки */
.neo-surface {
  background-color: var(--secondary);
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* FAQ */
.qa {
  background-color: var(--secondary);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  margin-bottom: 14px;
  padding: 12px 16px;
}

.qa summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--accent);
}

.qa .a {
  margin-top: 10px;
  color: var(--text);
  line-height: 1.5;
}

/* Поддержка */
.support-cta {
  text-align: center;
  margin-top: 20px;
}

.support-contact {
  background-color: var(--accent);
  color: var(--bg);
  text-decoration: none;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: var(--radius);
  transition: 0.3s;
}

.support-contact:hover {
  background-color: #0ea5e9;
}

/* Раздел безопасности */
#security {
  background-color: var(--secondary);
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: var(--radius);
  margin-top: 32px;
}

#security h2 {
  color: var(--accent);
  margin-top: 0;
}

#security ul {
  list-style: disc;
  margin-left: 20px;
  padding-left: 0;
}

#security li {
  margin-bottom: 8px;
  line-height: 1.5;
}

#security a {
  color: var(--accent);
  text-decoration: underline;
}

/* Подвал */
.footer {
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
  color: #94a3b8;
  border-top: 1px solid #1e293b;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: var(--secondary);
    position: absolute;
    top: 60px;
    right: 10px;
    border-radius: var(--radius);
    padding: 10px;
  }
  .nav-toggle { display: block; }
  .nav-menu.active { display: flex; }
}
