* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #08080c;
  color: #ffffff;
}

html {
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

.ai-section {

  width: 100%;

  padding: 120px 0;

  position: relative;

  background:
    linear-gradient(
      rgba(5,5,15,0.88),
      rgba(5,5,15,0.92)
    ),
    url("images/backgrounds/ai-bg.jpg");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  background-attachment: fixed;

}
.ai-section::before {

  content: "";

  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at center,
      rgba(123,44,255,0.18),
      transparent 60%
    );

  pointer-events: none;

}

.music-section {

  width: 100%;

  padding: 120px 0;

  position: relative;

  background:
    linear-gradient(
      rgba(0,0,0,0.82),
      rgba(0,0,0,0.88)
    ),
    url("images/backgrounds/music-bg.jpg");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  background-attachment: fixed;

}

.music-section::before {

  content: "";

  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at center,
      rgba(0,212,255,0.15),
      transparent 60%
    );

  pointer-events: none;

}

.section-content {

  max-width: 1200px;

  margin: auto;

  padding: 0 24px;
  
position: relative;

  z-index: 2;
}

.hero {
  min-height: 100vh;

  background:
    linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.75)
    ),
    url("images/backgrounds/hero-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 24px;
  position: relative;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  opacity: 0.85;
}

.nav-links a:hover {
  opacity: 1;
  color: #00d4ff;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
}

.hero-content {
  max-width: 900px;
  margin: 150px auto 0;
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.hero h1 {
  font-size: clamp(42px, 8vw, 82px);
  margin: 28px 0 20px;
  line-height: 1;
}

.hero p {
  max-width: 700px;
  margin: auto;
  font-size: 20px;
  color: #d7d7e0;
}

.hero-buttons {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 24px;
  border-radius: 14px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.primary {
  background: linear-gradient(135deg, #7b2cff, #00d4ff);
  color: white;
}

.secondary {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}

.section {
  max-width: 1200px;
  margin: auto;
  padding: 90px 24px;
}

.section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 16px;
}

.section-text {
  text-align: center;
  color: #bdbdcc;
  max-width: 700px;
  margin: 0 auto 36px;
}

.cards,
.price-grid,
.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card,
.price-card,
.news-card,
.work-card {

  background: rgba(255,255,255,0.05);

  backdrop-filter: blur(18px);

  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 26px;

  padding: 24px;

  box-shadow:
    0 10px 40px rgba(0,0,0,0.35);

  transition: 0.35s;
}

.work-card:hover,
.card:hover,
.price-card:hover,
.news-card:hover {

  transform: translateY(-8px);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.45);

}

.card p,
.news-card p,
.work-info p,
.price-card li {
  color: #c9c9d6;
}

.filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.filter {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: white;
  cursor: pointer;
}

.filter.active,
.filter:hover {
  background: #7b2cff;
}

.portfolio {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.work-card {
  overflow: hidden;
  padding: 0;
}

.work-card img,
.work-card video {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  background: #000;
}

.work-info {
  padding: 22px;
}

.audio-box {
  padding: 30px;
}

.audio-box audio {
  width: 100%;
}

.price-card {
  position: relative;
}

.price-card.featured {
  border-color: #00d4ff;
  transform: translateY(-10px);
}

.price {
  font-size: 30px;
  font-weight: 800;
  color: #00d4ff;
}

.price-card ul {
  padding-left: 20px;
}

.news-card span {
  color: #00d4ff;
  font-size: 14px;
}

.contact-form {
  max-width: 700px;
  margin: auto;
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 16px;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.email-note {
  text-align: center;
  color: #bdbdcc;
  margin-top: 24px;
}

.footer {
  padding: 30px;
  text-align: center;
  color: #aaa;
  background: #050507;
}

/* Адаптация под планшеты */
@media (max-width: 900px) {
  .cards,
  .price-grid,
  .news-list,
  .portfolio {
    grid-template-columns: 1fr 1fr;
  }
}

/* Адаптация под телефоны */
@media (max-width: 650px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 75px;
    right: 24px;
    left: 24px;
    flex-direction: column;
    background: #111;
    padding: 20px;
    border-radius: 18px;
  }

  .nav-links.show {
    display: flex;
  }

  .hero-content {
    margin-top: 100px;
  }

  .cards,
  .price-grid,
  .news-list,
  .portfolio {
    grid-template-columns: 1fr;
  }

  .work-card img,
  .work-card video {
    height: 230px;
  }

  .section {
    padding: 65px 18px;
  }

  .section h2 {
    font-size: 32px;
  }
}
@keyframes limiartFadeIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}
.limiart-brand-250 {

    height: 90px;

}

.limiart-brand-icon {

    width: 54px;
    height: 54px;

}

.limiart-brand-title {

    font-size: 30px;

}

.limiart-brand-subtitle {

    font-size: 10px;
    letter-spacing: 3px;

}
.limiart-brand-icon {

    opacity: 0;

    animation:
        limiartFadeIn .8s ease forwards;

    filter:
        drop-shadow(0 0 8px rgba(168,101,255,.35));

}
.limiart-brand-title {

    opacity: 0;

    animation:
        limiartFadeIn .8s ease .15s forwards;

}
.limiart-brand-subtitle {

    opacity: 0;

    animation:
        limiartFadeIn .8s ease .3s forwards;

}