

 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f7f7f7;
  color: #111;
  font-family: "Comfortaa", sans-serif;
}

h1, h2, h3, h4 {
  font-family: "Science Gothic", sans-serif;
  margin-bottom: 15px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  padding: 20px 60px;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  z-index: 10;
  transition: all 0.3s ease;
}

nav {
  margin-left: auto;
  margin-right: 40px;
}

.logo-img {
  height: 85px;
  margin-top: 5px;
}

nav a {
  margin-right: 30px;
  text-decoration: none;
  color: #111;
}

.lang-switch a {
  margin-left: 12px;
  font-size: 14px;
  cursor: pointer;
  opacity: 0.6;
}

.lang-switch a:hover {
  opacity: 1;
}

.hero1 {
  padding: 140px 60px 100px;
  color: #fff;
  background:
    linear-gradient(to right,
      rgba(0,0,0,0.85) 0%,
      rgba(0,0,0,0.85) 50%,
      rgba(0,0,0,0.6) 100%
    ),
    url("img/1306.jpg") center/cover no-repeat;
  background-attachment: fixed;
}

.hero1 h4 {
  font-size: 36px;
  margin-bottom: 25px;
}

.hero1 p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero2 {
  padding: 120px 60px;
  color: #fff;
  background: linear-gradient(120deg, #111, #2b2b2b);
}

.section {
  padding: 60px;
}

.light-section {
  padding: 60px;
  color: #000000;
}

.light-section p{
  color: #000;
}

.footer {
  padding: 40px 60px;
  background: #111;
  color: #777;
}

.animate-left,
.animate-right,
.animate-up {
  opacity: 0;
  transform: translateX(0) translateY(0);
}

.animate-left { transform: translateX(-80px); }
.animate-right { transform: translateX(80px); }
.animate-up { transform: translateY(60px); }

.item-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.what-item-grid p {
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #ffffff0a;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  color: #000000;
}


.what-item-grid p:hover {
  transform: translateY(-5px);
}

.item-gr {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  counter-reset: step;
}

.item-gr .item-title {
  font-weight: 700;
  font-family: "Science Gothic", sans-serif;
  display: inline-block;
  margin-bottom: 6px;
}

.item-gr p {
  position: relative;
  padding: 25px 20px 20px 80px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  transition: all 0.35s ease;
  counter-increment: step;
}

.item-gr p::before {
  content: "0" counter(step);
  position: absolute;
  left: 20px;
  top: 20px;
  font-family: "Science Gothic", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: rgba(255,255,255,0.25);
}

.item-gr p:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
}

.gold {
  text-align: center;
  padding: 60px 40px;
  color: #000000;
  border: 2px solid rgba(0,0,0,0.1);
  background: linear-gradient(120deg, #f8f8f8, #ffffff);
}

.qw {
  text-align: center;
}

.mobile-toggle {
  display: none;
  cursor: pointer;
  margin-left: auto;
}

.mobile-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: #fff;
  padding: 100px 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s ease;
  z-index: 20;
}

.mobile-menu.active {
  right: 0;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-links a {
  text-decoration: none;
  color: #111;
  font-size: 18px;
}

.mobile-lang {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.mobile-close {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 22px;
  cursor: pointer;
  opacity: 0.6;
}

.mobile-close:hover {
  opacity: 1;
}

@media (max-width: 900px) {
  .section, .hero1, .hero2 { padding: 60px 30px; }
  .item-gr { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .logo-text, .lang-switch { display: none; }
  .mobile-toggle { display: block; }
}


/* ============================= */
/* Исправление видимости текста в light-section */
/* ============================= */

.light-section,
.light-section h1,
.light-section h2,
.light-section h3,
.light-section h4,
.light-section p,
.light-section span,
.light-section a,
.light-section .wig {
    color: #000 !important; /* принудительно ставим чёрный */
}

/* Если у элементов есть inline-стили с белым цветом, !important их перекроет */
