:root {



  --bg: #050814;



  --bg-soft: #0b1020;



  --accent: #32e0ff;



  --accent2: #7c4dff;



  --text: #f5f7ff;



  --muted: #9ba1c3;



  --danger: #ff3366;



  --radius-lg: 12px;



  --radius-md: 9px;



  --radius-sm: 999px;



  --shadow-3d: 0 40px 80px rgba(0, 0, 0, 0.55);



}



* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



body {



  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;



  background: radial-gradient(circle at top, #101632 0, #050814 60%);



  color: var(--text);



  min-height: 100vh;



  overflow-x: hidden;



}



a {
  color: inherit;
  text-decoration: none;
}







.page-shell {



  max-width: 1120px;



  margin: 0 auto;



  padding: 20px 16px 48px;



  display: flex;



  flex-direction: column;



  gap: 22px;



}







header {



  display: flex;



  align-items: center;



  justify-content: space-between;



  gap: 16px;



}







.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}



.brand-logo {



  width: 40px;
  height: 40px;
  border-radius: 16px;



  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);



  object-fit: contain;



  display: block;



}



.brand-text-main {
  font-weight: 650;
  font-size: 18px;
}



.brand-text-sub {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}







.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}



.chip {



  padding: 6px 16px;
  border-radius: var(--radius-sm);



  border: 1px solid rgba(255, 255, 255, 0.12);



  font-size: 14px;
  color: var(--muted);



  backdrop-filter: blur(10px);



  background: rgba(7, 10, 24, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;



}

.chip-typing {
  color: #FFD700 !important;
  font-weight: 800 !important;
  border-color: rgba(255, 215, 0, 0.4) !important;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
  min-width: 210px;
}

.cursor {
  display: inline-block;
  margin-left: 2px;
  color: #FFD700;
  animation: blink 0.7s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}







.btn {



  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;



  padding: 10px 16px;
  border-radius: var(--radius-sm);



  font-size: 13px;
  border: none;
  cursor: pointer;



  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;



  white-space: nowrap;



}



.btn-primary {



  background: linear-gradient(135deg, var(--accent), var(--accent2));



  color: #050814;



  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);



}



.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.6);
}



.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
}



.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
}







/* HERO */



.hero {



  display: grid;



  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);



  gap: 22px;



  align-items: stretch;



}



.hero-left {



  padding: 22px;



  border-radius: var(--radius-lg);



  background: radial-gradient(circle at top left, rgba(50, 224, 255, 0.18), transparent 55%),



    linear-gradient(145deg, rgba(17, 25, 54, 0.98), rgba(4, 7, 18, 0.98));



  box-shadow: var(--shadow-3d);



  position: relative;



  overflow: hidden;



}



.hero-pill {



  display: inline-flex;
  align-items: center;
  gap: 8px;



  padding: 5px 11px;
  border-radius: var(--radius-sm);



  border: 1px solid rgba(50, 224, 255, 0.35);



  background: rgba(6, 13, 32, 0.9);



  color: var(--accent);



  font-size: 11px;



  margin-bottom: 12px;



}



.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(50, 224, 255, 0.7);
}







.hero-title {



  font-size: clamp(32px, 5.5vw, 48px);



  line-height: 1.15;



  margin-bottom: 10px;



  display: flex;



  flex-direction: column;



  align-items: flex-start;



}

.hero-city {
  font-size: 0.75em;
  font-weight: 400;
  opacity: 0.9;
}



.hero-title-line-large {



  font-size: clamp(28px, 5vw, 42px);



  line-height: 1.15;



}



.hero-title-line-small {



  font-size: clamp(16px, 2.5vw, 22px);



  line-height: 1.15;



  white-space: nowrap;



  margin-top: 8px;



}



.hero-gradient {



  background: linear-gradient(120deg, #ffffff, #a2f5ff, #c3b5ff);



  -webkit-background-clip: text;
  background-clip: text;



  color: transparent;



}



.hero-sub {



  font-size: 13px;



  color: var(--muted);



  max-width: 520px;



  margin-bottom: 16px;



}



.hero-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.hero-badge {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: var(--muted);
  background: rgba(7, 11, 26, 0.9);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: default;
}

.hero-badge:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: var(--accent);
  background: linear-gradient(110deg,
      rgba(7, 11, 26, 0.9) 30%,
      rgba(50, 224, 255, 0.3) 48%,
      rgba(124, 77, 255, 0.3) 52%,
      rgba(7, 11, 26, 0.9) 70%);
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}





.contacts-card {



  margin-top: 14px;



  padding: 12px 12px;



  border-radius: 16px;



  border: 1px solid rgba(255, 255, 255, 0.08);



  background: rgba(7, 10, 24, 0.65);



  display: grid;



  gap: 10px;



  font-size: 15px;



  color: var(--text);



  animation: contacts-pulse 4s ease-in-out infinite;



  transform-origin: center;



}



@keyframes contacts-pulse {



  0%,
  100% {

    transform: scale(1);

    box-shadow: 0 0 0 rgba(50, 224, 255, 0);

    border-color: rgba(255, 255, 255, 0.08);

  }



  50% {

    transform: scale(1.02);

    box-shadow: 0 0 24px rgba(50, 224, 255, 0.35);

    border-color: rgba(50, 224, 255, 0.55);

  }



}



.contacts-card small {
  color: var(--muted);
  font-size: 13px;
}



.contacts-line {
  display: flex;
  gap: 10px;
  align-items: baseline;
  flex-wrap: wrap;
}



.contacts-label {
  color: var(--muted);
  width: 112px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}



.link-accent {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}







/* RIGHT: 3D + image overlay */



.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

.promo-banner {
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.15), rgba(124, 77, 255, 0.15));
  border: 1px solid rgba(255, 51, 102, 0.4);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  margin-top: 20px;
  width: 100%;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 51, 102, 0.25);
  border-color: rgba(255, 51, 102, 0.6);
}

.promo-text {
  display: flex;
  flex-direction: column;
}

.promo-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.promo-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

.promo-price {
  text-align: right;
  flex-shrink: 0;
}

.price-old {
  font-size: 15px;
  text-decoration: line-through;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}

.price-new {
  font-size: 32px;
  font-weight: 800;
  color: #ff3366;
  text-shadow: 0 0 10px rgba(255, 51, 102, 0.5);
  display: block;
  animation: price-pulse 1.5s ease-in-out infinite;
}

@keyframes btn-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(50, 224, 255, 0.4);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(50, 224, 255, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(50, 224, 255, 0);
  }
}

.promo-btn {
  background: var(--accent);
  color: #050814;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  animation: btn-pulse 2s infinite;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}


@keyframes price-pulse {

  0%,
  100% {
    transform: scale(1);
    text-shadow: 0 0 10px rgba(255, 51, 102, 0.5);
  }

  50% {
    transform: scale(1.1);
    text-shadow: 0 0 25px rgba(255, 51, 102, 0.8);
  }
}





.device-card {



  position: relative;



  border-radius: var(--radius-lg);



  background: radial-gradient(circle at top, #1a213f 0, #050814 60%);



  box-shadow: var(--shadow-3d);



  flex: 1;



  overflow: hidden;



  transform-style: preserve-3d;



  transition: transform 0.2s ease-out;



}



.device-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 16px;
}



.device-status {



  position: absolute;



  top: 14px;
  right: 14px;



  padding: 6px 10px;



  border-radius: var(--radius-sm);



  background: rgba(10, 214, 141, 0.12);



  color: #9dffc6;



  font-size: 10px;



  text-transform: uppercase;



  letter-spacing: 0.14em;



  border: 1px solid rgba(122, 246, 191, 0.35);



  z-index: 3;



  cursor: pointer;



  transition: opacity 0.2s;



}



.device-status:hover {



  opacity: 0.8;



}



/* Модальное окно */



.modal-overlay {



  display: none;



  position: fixed;



  top: 0;



  left: 0;



  width: 100%;



  height: 100%;



  background: rgba(0, 0, 0, 0.75);



  z-index: 10000;



  align-items: center;



  justify-content: center;



  backdrop-filter: blur(4px);



}



.modal-overlay.active {



  display: flex;



}



.modal-content {



  background: linear-gradient(145deg, rgba(11, 16, 40, 0.98), rgba(5, 8, 22, 0.98));



  border: 1px solid rgba(255, 255, 255, 0.1);



  border-radius: var(--radius-lg);



  padding: 24px;



  max-width: 600px;



  width: 90%;



  max-height: 80vh;



  overflow-y: auto;



  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);



  position: relative;



}



.modal-close {



  position: absolute;



  top: 16px;



  right: 16px;



  background: rgba(255, 255, 255, 0.1);



  border: 1px solid rgba(255, 255, 255, 0.2);



  color: var(--text);



  width: 32px;



  height: 32px;



  border-radius: 50%;



  cursor: pointer;



  display: flex;



  align-items: center;



  justify-content: center;



  font-size: 20px;



  line-height: 1;



  transition: background 0.2s;



}



.modal-close:hover {



  background: rgba(255, 255, 255, 0.2);



}



.modal-content h2 {



  font-size: 20px;



  margin-bottom: 16px;



  color: var(--text);



}



.modal-content p {



  color: var(--muted);



  font-size: 14px;



  line-height: 1.6;



  margin-bottom: 16px;



}



.modal-content ul {



  color: var(--muted);



  font-size: 14px;



  line-height: 1.8;



  margin-bottom: 16px;



  padding-left: 20px;



}



.modal-content li {



  margin-bottom: 8px;



}



.device-label {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}



.device-name {
  font-size: 13px;
  margin-bottom: 10px;
}







.threejs-stage {
  width: 100%;
  aspect-ratio: 20 / 9;
  /* ближе к пропорциям оригинальной фотографии */
  border-radius: 18px;
  overflow: hidden;
  background: #020414;
  border: 1px solid rgba(50, 224, 255, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
  position: relative;
}



.threejs-stage img {



  width: 100%;



  height: 100%;



  object-fit: cover;



  object-position: center;



  display: block;



  filter: saturate(1.03) contrast(1.02);



}







.visual-strip {



  display: grid;



  grid-template-columns: repeat(3, minmax(0, 1fr));



  gap: 10px;



  margin-top: 12px;



}



.visual-link {



  display: block;



  text-decoration: none;



  color: inherit;



}



.visual {



  border-radius: 24px;



  overflow: hidden;



  border: 1px solid rgba(255, 255, 255, 0.08);



  background:



    radial-gradient(circle at top, rgba(50, 224, 255, 0.16), transparent 55%),



    linear-gradient(145deg, #111528, #050814);



  aspect-ratio: 5 / 6;
  /* пониже по вертикали */



  position: relative;



  padding: 16px 12px 14px;



  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;


}

.visual:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 24px 48px rgba(50, 224, 255, 0.2);
  background: linear-gradient(110deg,
      rgba(17, 21, 40, 0.95) 30%,
      rgba(50, 224, 255, 0.2) 48%,
      rgba(124, 77, 255, 0.2) 52%,
      rgba(17, 21, 40, 0.95) 70%);
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
}



.visual img {



  width: 78%;



  height: auto;



  max-height: 148%;



  object-fit: contain;



  object-position: center;



  display: block;



  margin: 0 auto;



  filter: saturate(1.05) contrast(1.05);



}



.visual .cap {



  position: absolute;



  left: 50%;



  bottom: 8px;



  transform: translateX(-50%);



  padding: 6px 14px;



  border-radius: 999px;



  font-size: 14px;



  font-weight: 500;



  background: rgba(5, 8, 20, 0.86);



  border: 1px solid rgba(255, 255, 255, 0.14);



  backdrop-filter: blur(10px);



  white-space: nowrap;



}







/* Sections */



.section {



  padding: 18px;



  border-radius: var(--radius-lg);



  background: linear-gradient(145deg, rgba(11, 16, 40, 0.98), rgba(5, 8, 22, 0.98));



  border: 1px solid rgba(255, 255, 255, 0.06);



  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);



}



.section h2 {
  font-size: 18px;
  margin-bottom: 10px;
}



.section p {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 12px;
  max-width: 720px;
}



.location-content {



  display: flex;



  gap: 12px;



  margin-top: 12px;



}



.map-container {



  flex: 0 0 70%;



  height: 400px;



  border-radius: var(--radius-md);



  overflow: hidden;



  border: 1px solid rgba(255, 255, 255, 0.1);



}



.map-container iframe {



  width: 100%;



  height: 100%;



  border: none;



  display: block;



}



.location-image {



  flex: 0 0 30%;



  height: 400px;



  border-radius: var(--radius-md);



  overflow: hidden;



  border: 1px solid rgba(255, 255, 255, 0.1);



}



.location-image img {



  width: 100%;



  height: 100%;



  object-fit: cover;



  display: block;



}



@media (max-width: 768px) {



  .location-content {



    flex-direction: column;



  }



  .location-image {



    height: 300px;



  }



}







/* Блок контактов */



.contact-cta {



  display: flex;



  align-items: center;



  justify-content: space-between;



  gap: 24px;



  padding: 24px;



  border-radius: var(--radius-lg);



  background: linear-gradient(145deg, rgba(11, 16, 40, 0.98), rgba(5, 8, 22, 0.98));



  border: 1px solid rgba(255, 255, 255, 0.06);



  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);



}



.contact-cta-left {



  flex: 1;



}



.contact-cta-title {



  font-size: 51px;



  font-weight: 600;



  color: var(--text);



  margin-bottom: 8px;



  line-height: 1.3;



}



.contact-cta-status {



  display: flex;



  align-items: center;



  gap: 8px;



  color: #9dffc6;



  font-size: 14px;



  animation: blink 2s ease-in-out infinite;



}



.status-dot {



  width: 8px;



  height: 8px;



  border-radius: 50%;



  background: #0ad68d;



  box-shadow: 0 0 8px rgba(10, 214, 141, 0.6);



  animation: pulse 2s infinite;



}



@keyframes pulse {



  0%,
  100% {
    opacity: 1;
  }



  50% {
    opacity: 0.6;
  }



}



@keyframes blink {



  0%,
  100% {
    opacity: 1;
  }



  50% {
    opacity: 0.4;
  }



}



.contact-cta-right {



  display: flex;



  flex-direction: column;



  gap: 10px;



  flex: 0 0 45%;



  min-width: 280px;



}



.btn-call {



  display: flex;



  align-items: center;



  justify-content: center;



  gap: 8px;



  padding: 14px 24px;



  background: #0ad68d;



  color: white;



  border: none;



  border-radius: var(--radius-md);



  font-size: 15px;



  font-weight: 600;



  cursor: pointer;



  text-decoration: none;



  transition: all 0.2s;



  box-shadow: 0 4px 12px rgba(10, 214, 141, 0.3);



  width: 100%;



}



.btn-call:hover {



  background: #08c57a;



  transform: translateY(-1px);



  box-shadow: 0 6px 16px rgba(10, 214, 141, 0.4);



}



.btn-social-group {



  display: flex;



  gap: 10px;



  width: 100%;



}



.btn-social {



  flex: 1;



  display: flex;



  align-items: center;



  justify-content: center;



  padding: 14px;



  border: none;



  border-radius: var(--radius-md);



  cursor: pointer;



  text-decoration: none;



  transition: all 0.2s;



}



.btn-telegram {



  background: #0088cc;



}



.btn-telegram:hover {



  background: #0077b5;



  transform: translateY(-1px);



}



.btn-vk {



  background: #0077ff;



}



.btn-vk:hover {



  background: #0066dd;



  transform: translateY(-1px);



}



.btn-social svg {



  width: 20px;



  height: 20px;



  fill: white;



}



.btn-social img {



  width: 20px;



  height: 20px;



  object-fit: contain;



  display: block;



}



@media (max-width: 768px) {



  .contact-cta {



    flex-direction: column;



    align-items: flex-start;



  }



  .contact-cta-right {



    width: 100%;



  }



  .btn-social-group {



    width: 100%;



  }



}







.prices-grid {



  display: grid;



  grid-template-columns: repeat(4, minmax(0, 1fr));



  gap: 12px;



  margin-top: 10px;



}



.price-card {
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 10, 24, 0.55);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  background: linear-gradient(110deg,
      rgba(7, 10, 24, 0.55) 30%,
      rgba(50, 224, 255, 0.2) 48%,
      rgba(124, 77, 255, 0.2) 52%,
      rgba(7, 10, 24, 0.55) 70%);
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
}



.price-card::before {



  content: "";



  position: absolute;



  inset: -35%;



  background: radial-gradient(circle at top, rgba(50, 224, 255, 0.18), transparent 55%);



  opacity: .55;



  pointer-events: none;



}



.price-title {
  font-weight: 650;
  font-size: 19.5px;
  margin-bottom: 6px;
  position: relative;
  color: #FFD700;
}



.price-from {
  font-size: 18px;
  font-weight: 800;
  position: relative;
}



.price-from span {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}



.price-list {
  margin-top: 8px;
  display: grid;
  gap: 6px;
  position: relative;
}



.price-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  color: var(--muted);
}



.price-line b {
  color: var(--text);
  font-weight: 650;
}







.note {



  margin-top: 12px;



  padding: 10px 12px;



  border-radius: 16px;



  border: 1px solid rgba(255, 255, 255, 0.08);



  color: var(--muted);



  font-size: 11px;



  background: rgba(7, 10, 24, 0.55);



}







.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

footer {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 2px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  transition: all 0.2s ease;
  color: var(--muted);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(50, 224, 255, 0.3);
}

/* Contacts Modal Specifics */
.contacts-modal-content {
  max-width: 480px !important;
}

.contacts-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(50, 224, 255, 0.2);
  transform: translateX(4px);
}

.contact-icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(50, 224, 255, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.contact-info strong {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info span,
.contact-info a {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.contact-item.work-hours {
  align-items: flex-start;
}

.work-days {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
  width: 100%;
}

.day-line {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 17px;
  gap: 15px;
}

.day-line span {
  color: var(--muted);
  font-weight: 400;
}

.day-line b {
  color: #fff;
  font-weight: 700;
}

.danger-text b {
  color: var(--danger) !important;
}







/* Responsive */



@media (max-width: 900px) {



  .hero {
    grid-template-columns: minmax(0, 1fr);
  }



  .hero-right {
    order: -1;
  }



}



@media (max-width: 720px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .header-cta {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: center;
  }

  .header-cta .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .btn-group {
    justify-content: center;
    width: 100%;
  }

  .prices-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .visual-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .threejs-stage {
    aspect-ratio: 16 / 11;
  }
}



@media (max-width: 900px) {



  .prices-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }



}



@media (max-width: 520px) {



  .prices-grid {
    grid-template-columns: minmax(0, 1fr);
  }



  .visual-strip {
    grid-template-columns: minmax(0, 1fr);
  }



  .threejs-stage {
    aspect-ratio: 16 / 11;
  }



}

/* Дополнительные стили для страниц категорий */
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}


.card {
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 10, 24, 0.55);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(50, 224, 255, 0.15);
  background: linear-gradient(110deg,
      rgba(7, 10, 24, 0.55) 30%,
      rgba(50, 224, 255, 0.2) 48%,
      rgba(124, 77, 255, 0.2) 52%,
      rgba(7, 10, 24, 0.55) 70%);
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(50, 224, 255, 0.14), transparent 55%);
  opacity: .7;
  pointer-events: none;
}

.card h3 {
  font-size: 13px;
  margin-bottom: 6px;
  position: relative;
}

.card p {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
  position: relative;
}

.threejs-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(50, 224, 255, 0.18), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 35%);
  pointer-events: none;
  z-index: 2;
}

/* Hero badges для страниц категорий (flex вместо grid) */
.hero-badges.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}


@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Slideshow */
.slideshow-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}