body {
  font-family: Arial, sans-serif;
  background: #0b1120;
  color: #ffffff;
  line-height: 1.5;
}

.no-scroll {
  overflow: hidden;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 15, 29, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__link {
  color: #cbd5e1;
  transition: 0.2s;
}

.nav__link:hover,
.nav__link--active {
  color: #ffffff;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px auto;
  background: #ffffff;
  border-radius: 4px;
  transition: 0.3s;
}

.burger--active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.burger--active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  padding: 64px 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 10px 16px;
  margin-bottom: 22px;
}

.hero__badge-dot,
.hero__label-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
}

.hero__title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero__subtitle {
  color: #cbd5e1;
  max-width: 540px;
  margin-bottom: 24px;
}

.hero__cta-row {
  margin-bottom: 28px;
}

.btn-primary {
  display: inline-block;
  background: #6d5dfc;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 14px 22px;
  cursor: pointer;
  transition: 0.2s;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  display: inline-block;
  background: #1f2937;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 22px;
}

.hero__card {
  background: rgba(255, 255, 255, 0.05);
  padding: 18px;
  border-radius: 28px;
}

.hero__image img {
  border-radius: 20px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  background: #060b16;
  padding: 12px 18px;
  border-radius: 999px;
}

.section {
  padding: 56px 0;
}

.section__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.section__title {
  font-size: 36px;
  margin-bottom: 10px;
}

.section__subtitle {
  color: #94a3b8;
}

.series-counter {
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  border-radius: 999px;
  color: #ffffff;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card,
.about-box,
.contact-form,
.empty-state {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 22px;
  padding: 22px;
}

.product-card--completed {
  background: rgba(34, 197, 94, 0.18);
  border: 2px solid #22c55e;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.25);
}

.product-card__image {
  margin-bottom: 16px;
}

.product-card__image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
}

.product-card__body {
  display: flex;
  flex-direction: column;
}

.product-card__title {
  font-size: 22px;
  margin-bottom: 10px;
}

.product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #cbd5e1;
  margin-bottom: 14px;
}

.product-card__price {
  color: #ffffff;
}

.product-card__progress {
  margin-bottom: 14px;
  color: #cbd5e1;
}


.product-card__btn {
  width: 100%;
  border: none;
  background: #ffffff;
  color: #111827;
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 700;
  margin-top: 10px;
}

.product-card__btn:hover {
  opacity: 0.9;
}

.product-card__btn--danger {
  background: #ef4444;
  color: #ffffff;
}

.status-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #111827;
  color: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-box p + p {
  margin-top: 18px;
}
.about-list {
  margin-top: 12px;
  padding-left: 20px;
  color: #cbd5e1;
}

.about-list li {
  margin-bottom: 10px;
}

.link-of {
  color: #f3dcdc;
  text-decoration: none;
  touch-action: auto;
}
.link-of:hover{
  color: #6d5dfc;
  text-decoration: underline;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  color: #cbd5e1;
  font-weight: 600;
}

.form-input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #111827;
  color: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
}


.empty-state {
  text-align: center;
}

.empty-state h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.empty-state p {
  color: #cbd5e1;
}

.footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__links {
  display: flex;
  gap: 18px;
  color: #cbd5e1;
}

@media (max-width: 992px) {
  .hero__inner,
  .products {
    grid-template-columns: 1fr 1fr;
  }

  .hero__title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .nav {
    position: fixed;
    top: 76px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 76px);
    background: #0f172a;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 22px;
    transition: 0.3s;
  }

  .nav--open {
    right: 0;
  }

  .hero__inner,
  .products {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 34px;
  }

  .section__title {
    font-size: 30px;
  }
}