/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #060b18;
  color: #e6edf3;
  line-height: 1.6;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== HEADER ===== */
.header {
  background: #0d1b2a;
  border-bottom: 1px solid #1f2a44;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.brand img {
  height: 40px;
}

.nav-actions {
  display: flex;
  gap: 10px;
}

/* ===== BUTTONS ===== */
.btn,
.btn-primary,
.btn-secondary {
  padding: 10px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn {
  background: #1c2a4a;
  color: #fff;
}

.btn-primary {
  background: linear-gradient(90deg, #ff512f, #ff7b00);
  color: #fff;
}

.btn-secondary {
  background: #1f2a44;
  color: #cbd5f5;
}

/* ===== HERO ===== */
.hero {
  max-width: 1100px;
  margin: 40px auto;
  padding: 30px;
  display: flex;
  gap: 30px;
  align-items: center;
  background: radial-gradient(circle at left, #0f1c3d, #060b18);
  border-radius: 16px;
}

/* LEFT */
.hero-content {
  flex: 1;
}

/* RIGHT */
.hero-banner {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* IMAGE */
.hero-banner img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  display: block;
}

/* УБИРАЕМ СЕРЫЙ БЛОК */
.hero-banner,
.hero-banner * {
  background: transparent !important;
}

/* TEXT */
.hero h1 {
  font-size: 28px;
  margin-bottom: 15px;
}

.hero p {
  margin-bottom: 12px;
  color: #cbd5f5;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ===== TOC ===== */
.toc {
  max-width: 1100px;
  margin: 30px auto;
  padding: 20px;
  background: #0d1b2a;
  border-radius: 12px;
}

.toc ul {
  margin-top: 10px;
  padding-left: 20px;
}

.toc a {
  color: #6ea8ff;
  text-decoration: none;
}

/* ===== SECTIONS ===== */
section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 15px;
}

h2 {
  margin-bottom: 15px;
}

/* ===== TABLE ===== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.info-table th,
.info-table td {
  border: 1px solid #1f2a44;
  padding: 12px;
  text-align: left;
}

.info-table th {
  background: #0d1b2a;
}

/* ===== REVIEWS ===== */
.review {
  background: #0d1b2a;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* ===== FAQ ===== */
details {
  background: #0d1b2a;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}

summary {
  cursor: pointer;
  font-weight: bold;
}

/* ===== CTA ===== */
.cta {
  text-align: center;
  padding: 40px 20px;
}

.cta a {
  margin: 10px;
  display: inline-block;
}

/* ===== FOOTER ===== */
.footer {
  background: #0d1b2a;
  margin-top: 50px;
  padding: 40px 20px;
}

.footer .container {
  display: grid;
  gap: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: #6ea8ff;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  max-width: 1100px;
  margin: 20px auto;
  padding: 0 15px;
  font-size: 14px;
}

.breadcrumbs a {
  color: #6ea8ff;
  text-decoration: none;
}

/* ===== LOGIN ===== */
.login-hero {
  max-width: 500px;
  margin: 40px auto;
  padding: 30px;
  background: #0d1b2a;
  border-radius: 12px;
}

.login-box {
  margin-top: 15px;
}

.login-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: none;
}

.login-links {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .hero {
      flex-direction: column;
      text-align: center;
  }

  .hero-buttons {
      justify-content: center;
  }

  .nav {
      flex-direction: column;
      gap: 10px;
  }

}
.hero-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner-text {
  margin-top: 10px;
  text-align: center;
  max-width: 480px;
}

.banner-text h2 {
  font-size: 18px;
  margin-bottom: 5px;
}

.banner-text p {
  font-size: 14px;
  color: #cbd5f5;
}

.banner-text a {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  color: #6ea8ff;
  text-decoration: none;
}
/* Убираем фиолетовый visited */
a,
a:visited {
    color: #6ea8ff;
    text-decoration: none;
}

/* Hover эффект */
a:hover {
    color: #9cc4ff;
    text-decoration: underline;
}

/* Активное состояние */
a:active {
    color: #4f8cff;
}