body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #fefefe;
  color: #333;
  line-height: 1.6;
}

h1, h2 {
  color: #fff;
  margin-bottom: .5em;
}
h3 {
    color: #5a2ca0;
}

a { color: #ff6b35; text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.about-section {
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, #000, #5a2ca0);
  color: #fff;
  text-align: center;
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-item {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.about-item p {
    color: #000;
}
.about-item:hover {
  transform: translateY(-5px);
}

.about-item i {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.about-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.about-item p {
  font-size: 1rem;
  opacity: 0.85;
}

.flex { display: flex; }
.between { justify-content: space-between; }
.center { align-items: center; }
#offers {
    background: linear-gradient(189deg, #000000 0%, #2d1550 50%, #5a2ca0 100%);
}
/* Header */
.site-header {
  background: linear-gradient(184deg, #000000 0%, #2d1550 50%, #5a2ca0 100%);
  color: #fff;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .brand { font-weight: bold; font-size: 1.2em; color: #fff; display: flex; gap: .5em; align-items: center; }
.site-header .nav { display: flex; gap: 1em; }
.site-header .nav a { color: #fff; }

/* Burger */
.burger { background: none; border: none; display: none; flex-direction: column; gap: 4px; }
.burger span { width: 25px; height: 3px; background: #fff; border-radius: 2px; }

/* Hero */
.hero { background: linear-gradient(5deg, #000000 0%, #2d1550 50%, #5a2ca0 100%);
 color: #fff; padding: 60px 0; }
.hero-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 2em; }
.hero-text { flex: 1; }
.hero-img { flex: 1; text-align: center; }
.hero img { max-width: 100%; border-radius: 8px; }

/* Buttons */
.btn-main { background: #5a2ca0; color: #fff; padding: .8em 1.2em; border-radius: 6px; display: inline-block; }
.btn-outline { border: 2px solid #5a2ca0; color: #5a2ca0; padding: 1em 1.2em; border-radius: 6px; background: #fff; }

/* Parallax */
.parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 60px 20px;
}
#about.parallax { background-image: url("../img/parallax-about.jpg"); }
#faq.parallax { background-image: url("../img/parallax-about.jpg"); }

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 8px;
    color: #333;
    display: flex
;
    justify-content: center;
    align-items: center;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5em; }

/* Offers */
#offers { padding: 60px 20px; }
.offer-card { border: 2px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(6px); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2em; background: #fff; border-radius: 8px; padding: 20px; }
.offer-info { display: flex; gap: 1.5em; }
.offer-action { text-align: center; }
.offer-card h3 {
  color: #000; /* акцентный цвет для заголовка */
}
a:hover {
    text-decoration: none;
}
p {
    color: #fff;
}
.pay-icon {
  max-width: 60px;
  margin: 5px;
}

.star-rating {
  color: #ffdd00;
  font-size: 1.5rem;
}

.btn-neon {
  background: linear-gradient(90deg, #5a2ca0, #000);
  color: #fff;
  border: none;
  padding: 12px 20px;
  text-transform: uppercase;
  font-weight: bold;
  transition: 0.3s;
}

.btn-neon:hover {
  filter: brightness(1.2);
}
/* FAQ */

.faq-item { margin-bottom: 1em; }
.faq-question {
    width: 100%;
    background: #fff;
    color: #000;
    font-weight: 700;
    border: none;
    padding: 20px;
    text-align: left;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1em; /* чтобы был отступ, но не создавал высоту */
  background: linear-gradient(90deg, #5a2ca0, #000);
  border-radius: 6px;
  color: #fff; /* на белый для контраста */
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  padding: 1em; /* показываем padding только при открытии */
}
.parallax-responsible {
  background: url('../img/parallax-responsible.jpg') no-repeat center center fixed;
  background-size: cover;
  backdrop-filter: blur(5px);
  color: #fff;
}

.responsible-card {
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: #fff;
}
section#responsible {
    background: linear-gradient(178deg, #5a2ca0, #000);
    padding: 60px 20px;
}

.responsible-card h3 {
  margin-bottom: 10px;
}

.responsible-card p, .responsible-card li {
  font-size: 0.95rem;
  line-height: 1.5;
}
/* Footer */
.site-footer { background: linear-gradient(356deg, #5a2ca0, #000); color: #fff; padding: 40px 20px; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2em; }
.footer-grid nav, .footer-grid .logos { display: flex; flex-direction: column; gap: .5em; }
.footer-grid img { max-height: 40px; }
.small { font-size: .85em; opacity: 0.8; }
.danger { color: #ff6b35; }

/* Popup */
.popup-overlay { position: fixed; inset: 0; background: #0009; display: flex; justify-content: center; align-items: center; z-index: 2000; }
.popup-card { background: #fff; padding: 20px; border-radius: 8px; max-width: 400px; text-align: center; }
.popup-card p, .popup-card h2 {
    color: #000;
}
.popup-actions { display: flex; gap: 1em; margin-top: 1em; justify-content: center; }

.site-footer {
  
  color: #fff;
  font-family: "Inter", sans-serif;
}

.site-footer .neon-text {
  color: #5a2ca0;
  text-shadow: 0 0 5px #5a2ca0, 0 0 10px #5a2ca0;
}

.footer-logos {
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-logo {
  width: 60px;
  height: auto;
  object-fit: contain;
}

.footer-pages {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #5a2ca0;
}
.card-container {
    display:flex;  gap: 0px; margin-top:20px; justify-content:center; flex-direction: row;
}
.top-banner {
    background-color: #5a2ca0;
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 10px;
}
main.privacy-content h2 {
      color: #9b5de5;
      margin-top: 2rem;
    }
    main.privacy-content ul {
      padding-left: 1.5rem;
      margin-top: 1rem;
      color: #fff;
    }


@media (max-width: 1000px) {
.card-container {
        flex-direction: column;
    }
}
@media (max-width: 900px) {
    #burger {
  width: 35px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .responsible-card {
    text-align: center;
  }
}

@media (max-width: 768px) {
    #burger {
    display: flex;
  }
  #burger span {
  display: flex;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform-origin: center;
}


#burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

#burger.active span:nth-child(2) {
  opacity: 0;
}

#burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
    .footer-logo {
    width: 50px;
    margin: 5px;
  }

  .footer-pages {
    flex-direction: column;
    gap: 0.75rem;
  }

  .site-footer p {
    font-size: 0.875rem;
    line-height: 1.4;
  }
  .site-header .nav { display: none; flex-direction: column; background: #5a2ca0; position: absolute; top: 60px; right: 10px; padding: 1em; border-radius: 8px; }
  .burger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
.hero-inner {
    flex-direction: column-reverse;
}
.responsible-card {
    padding: 20px;
  }

  .parallax-responsible {
    background-attachment: scroll; /* отключаем fixed для мобильных для лучшей производительности */
  }
}

@media (max-width: 600px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

