:root {
  --bg: #050812;
  --bg-alt: #101525;
  --accent: #f7c948;
  --accent-soft: rgba(247, 201, 72, 0.12);
  --text: #f5f5f5;
  --muted: #b0b7c9;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --radius-lg: 18px;
  --radius-xl: 28px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.4);
  --max-width: 1040px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1b2340 0, #050812 55%, #020309 100%);
  color: var(--text);
  line-height: 1.6;
}

/* Layout */

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

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(5, 8, 18, 0.92);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 11px;
  color: var(--muted);
}

.main-nav {
  display: flex;
  gap: 12px;
}

.nav-link {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-link.active {
  background: var(--accent-soft);
  color: var(--accent);
}

.header-phone {
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
}

/* Hero */

.section.hero {
  padding: 64px 0 56px;
}

.hero-inner {
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 100%;
  max-width: 820px;
  background: rgba(7, 10, 25, 0.96);
  border-radius: var(--radius-xl);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 220px;
}

.hero-card h1,
.hero-card h2,
.hero-card h3 {
  margin-top: 0;
}

.hero-card p {
  margin: 0 0 10px;
  font-size: 14px;
  color: #dde1f0;
}

.hero-card ul {
  margin: 0 0 12px 18px;
  padding: 0;
  font-size: 14px;
  color: #dde1f0;
}

/* Buttons */

.actions-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.15s ease;
}

.btn.primary {
  background: var(--accent);
  color: #2a1a00;
  border-color: var(--accent);
}

.btn.primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 12px 0 16px;
  background: rgba(3, 5, 12, 0.98);
  font-size: 13px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.footer-contacts {
  display: flex;
  gap: 6px;
  align-items: center;
}

.footer-contacts a {
  color: var(--muted);
  text-decoration: none;
}

.footer-contacts a:hover {
  color: var(--text);
}

/* Responsive */

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-card {
    border-radius: 22px;
    padding: 22px 16px 18px;
  }
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ===== BRAND (small logo near name) ===== */

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 26px;
  height: 26px;
  display: block;
  object-fit: contain;

  /* без фону, без рамок */
  background: none;
  border: none;
  padding: 0;
}
