/* ===========================
   ROOT + RESET
=========================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #050712;
  --bg-elevated: #090f28;
  --bg-glass: rgba(9, 15, 40, 0.9);
  --accent: #28e0ff;
  --accent-soft: rgba(40, 224, 255, 0.16);
  --accent-2: #9aa7ff;
  --accent-hot: #ff4fa3;
  --ink: #eaf6ff;
  --muted: rgba(230, 236, 255, 0.72);
  --stroke: rgba(180, 196, 255, 0.24);
  --danger: #ff3366;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.7);
  --shadow-subtle: 0 10px 30px rgba(5, 7, 18, 0.9);

  --transition-fast: 0.2s ease-out;
  --transition-med: 0.3s ease;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #070a1a;
  background: radial-gradient(circle at top center, #121637 0%, #070a1a 60%, #030414 100%);
  background-attachment: fixed; /* фиксируем фон */
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
}

/* убираем любые внутренние перекрытия */
.section,
.section-dark,
.container,
.glass-panel {
  background: none !important;
  box-shadow: none;
}

/* убираем любые ::before / ::after неоновые заливки, чтобы фон не прерывался */
body::before,
body::after,
.section::before,
.section::after {
  content: none !important;
}

body {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #11163a 0, #040515 55%);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* ===========================
   GLOBAL NEON BACKGROUND
   (continuous through sections)
=========================== */

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* яркие мягкие неоновые пятна */
body::before {
  background:
    radial-gradient(circle at 10% 15%, rgba(40, 224, 255, 0.22) 0, transparent 40%),
    radial-gradient(circle at 85% 40%, rgba(154, 167, 255, 0.22) 0, transparent 48%),
    radial-gradient(circle at 20% 80%, rgba(255, 79, 163, 0.15) 0, transparent 45%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

/* доп. флер по центру — без полос */
body::after {
  background:
    radial-gradient(circle at 50% 60%, rgba(40, 224, 255, 0.12), transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(154, 167, 255, 0.08), transparent 70%);
  mix-blend-mode: screen;
  opacity: 0.6;
}

/* контент над неоном */
main,
.site-header,
.site-footer,
#toTopBtn {
  position: relative;
  z-index: 1;
}

/* ===========================
   LAYOUT BASICS
=========================== */
.container {
  width: min(1400px, 92%);
  margin-inline: auto
}

.section {
  position: relative;
}

.section-padded {
  padding: 45px 0;
}

/* секции прозрачные — единый фон */
.section-dark {
  background: transparent;
}

/* Glass panel */
.glass-panel {
  position: relative;
  background: radial-gradient(circle at top left, rgba(40, 224, 255, 0.08), transparent 55%),
    radial-gradient(circle at bottom right, rgba(255, 79, 163, 0.06), transparent 55%),
    var(--bg-glass);
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  box-shadow:
    var(--shadow-soft),
    0 0 0 1px rgba(35, 90, 160, 0.4);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.glass-panel:hover {
  transform: translateY(-2px);
  border-color: rgba(40, 224, 255, 0.9);
  box-shadow:
    0 0 26px rgba(40, 224, 255, 0.7),
    0 22px 50px rgba(0, 0, 0, 0.95);
}


/* ===========================
   HERO
=========================== */

.hero {
  padding: 96px 0 72px;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 0, rgba(40, 224, 255, 0.25) 0, transparent 45%),
    radial-gradient(circle at 90% 20%, rgba(154, 167, 255, 0.22) 0, transparent 50%);
  opacity: 1;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 28px;
  z-index: 1;
}

.hero-copy {
  padding: 32px 28px 28px;
}

.label-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.label {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(120, 214, 255, 0.8);
  color: var(--accent);
  background: rgba(4, 10, 32, 0.95);
   margin-bottom: 10px;
}

.label-hot {
  border-color: rgba(255, 79, 163, 0.9);
  color: #ffe9f5;
  background: radial-gradient(circle at 0 0, rgba(255, 79, 163, 0.7), #170814);
 
}

.label-outline {
  border-color: rgba(154, 167, 255, 0.9);
  color: var(--accent-2);
}

.label-thin {
  border-radius: 999px;
  padding-inline: 12px;
  font-size: 10px;
  border-color: rgba(120, 214, 255, 0.4);
  color: var(--muted);
}

/* ярче заголовки — неоновый градиент */
/* .hero-copy h1,
.section-head h2 {
  background: linear-gradient(120deg, #ffffff, var(--accent), var(--accent-hot));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
} */

.hero-copy h1 {
  font-size: clamp(2.4rem, 3.4vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* Buttons */
.btn {
  color: #000;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  outline: 0;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), color var(--transition-fast), filter var(--transition-fast);
}

.btn-primary {
  background: radial-gradient(circle at 0 0, #ffffff, #28e0ff);
  color: #02030a;
  box-shadow:
    0 0 18px rgba(40, 224, 255, 1),
    0 18px 40px rgba(2, 6, 20, 0.9);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.05);
  box-shadow:
    0 0 24px rgba(40, 224, 255, 1),
    0 22px 52px rgba(2, 6, 20, 1);
}

.btn-ghost {
  border: 1px solid rgba(120, 214, 255, 0.9);
  background: radial-gradient(circle at 0 0, rgba(10, 22, 80, 0.95), #050712);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(1, 3, 12, 1);
}

.btn-ghost:hover {
  background: radial-gradient(circle at 0 0, rgba(10, 22, 90, 1), #050712);
  transform: translateY(-2px);
}

/* яркий призовой стиль для некоторых кнопок */
.tier-card--accent .btn-primary {
  background: radial-gradient(circle at 0 0, #ffffff, var(--accent-hot));
  box-shadow:
    0 0 20px rgba(255, 79, 163, 0.9),
    0 20px 48px rgba(3, 2, 10, 0.9);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.hero-meta {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: 14px 20px;
  font-size: 12px;
  color: var(--muted);
}

.hero-meta strong {
  color: var(--ink);
  font-weight: 600;
}

/* Hero side */
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* .hero-card {
  padding: 20px 20px 18px;
} */

.hero-card h2 {
  font-size: 18px;
  margin-bottom: 6px;
}

.hero-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

.hero-times {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.hero-times-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
}

.hero-times-value {
  display: inline-flex;
  margin-top: 2px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(120, 214, 255, 0.9);
  background: rgba(5, 10, 30, 0.96);
  font-size: 12px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
}

.hero-note .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 0, #ffffff, var(--accent));
  box-shadow: 0 0 12px rgba(40, 224, 255, 1);
}

.hero-strip {
  padding: 14px 16px 15px;
  font-size: 13px;
  color: var(--muted);
}

/* ===========================
   SECTION HEAD
=========================== */

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  /* margin-bottom: 32px; */
}

.section-sub {
  max-width: 360px;
  font-size: 14px;
  color: var(--muted);
}

/* ===========================
   CONCEPT
=========================== */

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
}

.split-copy h2 {
  margin: 10px 0 12px;
  font-size: 22px;
}

.split-copy p {
  font-size: 14px;
  color: var(--muted);
  max-width: 420px;
}

.split-copy p + p {
  margin-top: 8px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pill {
  font-size: 11px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(120, 214, 255, 0.9);
  color: var(--ink);
  background: rgba(3, 9, 40, 0.95);
}

/* ===========================
   IMAGE CARDS
=========================== */

.card-thumb {
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 8px);
  margin: -10px -10px 10px;
  max-height: 180px;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform var(--transition-med), filter var(--transition-med);
}

.img-card:hover .card-thumb img,
.perf-card:hover .card-thumb img {
  transform: scale(1.06);
  filter: brightness(1.08);
}

.card-thumb-small {
  max-height: 120px;
}

.img-card {
  padding: 14px 10px 14px;
}

.img-card h3 {
  font-size: 14px;
  margin-bottom: 6px;
}

.img-card p {
  font-size: 12px;
  color: var(--muted);
}
/* ===========================
   LINEUP — Neon Stage Cards
=========================== */

/* сетка карточек */
.card-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.head-perf {
  display: flex;
  justify-content: space-between;
}


/* карточка выступления */
.perf-card {
  position: relative;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 0, rgba(40, 224, 255, 0.16), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255, 79, 163, 0.14), transparent 55%),
    rgba(6, 9, 28, 0.96);
  border: 1px solid rgba(40, 224, 255, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

/* неоновая полоска сверху карточки */
.perf-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(40, 224, 255, 0.2), rgba(154, 167, 255, 0.16), rgba(255, 79, 163, 0.2));
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity 0.25s ease;
}

.perf-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 79, 163, 0.9);
  background:
    radial-gradient(circle at 0 0, rgba(40, 224, 255, 0.22), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255, 79, 163, 0.2), transparent 55%),
    rgba(6, 9, 28, 0.98);
}
.perf-card:hover::before {
  opacity: 1;
}

/* картинка — яркая, с внутренней рамкой */
.perf-card .card-thumb {
  margin: 0 0 14px;
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
  max-height: none;
  border: 1px solid rgba(40, 224, 255, 0.5);
  background:
    radial-gradient(circle at 0 0, rgba(40, 224, 255, 0.2), transparent 55%),
    rgba(5, 9, 28, 0.96);
}

/* картинка внутри */
.perf-card .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  transform: scale(1.03);
  transition: transform 0.25s ease, filter 0.25s ease;
}

/* лёгкий zoom и подсветка при ховере */
.perf-card:hover .card-thumb img {
  transform: scale(1.07);
  filter: brightness(1.08) saturate(1.05);
}

/* заголовок + тег */
.perf-card header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

/* имя — чуть ярче, как неоновая подпись */
.perf-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(120deg, #ffffff, #28e0ff, #ff4fa3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* тег — неоновая таблетка */
.perf-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(154, 167, 255, 0.9);
  color: #eaf2ff;
  background: radial-gradient(circle at 0 0, rgba(154, 167, 255, 0.32), rgba(6, 10, 32, 0.98));
}

/* текст */
.perf-card p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

/* низ карточки */
.perf-meta {
  margin-top: auto;
  list-style: none;
  font-size: 11px;
  color: var(--muted);
}
.perf-meta strong {
  color: var(--ink);
  font-weight: 600;
}

/* адаптив: уменьшенная высота на мобильных */
@media (max-width: 960px) {
  .perf-card .card-thumb {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .perf-card .card-thumb {
    height: 220px;
  }
}




/* === OVERRIDE: big images in lineup + before/after === */

/* десктоп — 500px */
.perf-card .card-thumb,
.switch-card .card-thumb {
  margin: 0 0 14px;
  border-radius: 16px;
  overflow: hidden;
  height: 500px !important;
  max-height: none !important;
  border: 1px solid rgba(40, 224, 255, 0.4);
  background:
    radial-gradient(circle at 0 0, rgba(40, 224, 255, 0.18), transparent 55%),
    rgba(5, 9, 28, 0.94);
  box-shadow:
    0 0 14px rgba(40, 224, 255, 0.35),
    0 10px 24px rgba(0, 0, 0, 0.8);
}

.perf-card .card-thumb img,
.switch-card .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  object-position: top;
}

/* планшеты */
@media (max-width: 960px) {
  .perf-card .card-thumb,
  .switch-card .card-thumb {
    height: 360px !important;
  }
}

/* телефоны */
@media (max-width: 640px) {
  .perf-card .card-thumb,
  .switch-card .card-thumb {
    height: 240px !important;
  }
}

/* ===========================
   VIP ROOMS
=========================== */

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.tier-card {
  padding: 22px 18px 18px;
}

.tier-card--accent {
  border-color: rgba(255, 79, 163, 0.9);
  box-shadow:
    0 0 24px rgba(255, 79, 163, 0.9),
    var(--shadow-subtle);
}

.tier-label {
  display: inline-flex;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 6px;
}

.tier-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.tier-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.tier-list {
  list-style: none;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}

/* ===========================
   NEON NIGHTS (PROGRAM)
=========================== */

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.schedule-card {
  padding: 20px 16px 16px;
}

.schedule-card h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.schedule-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.schedule-list {
  list-style: none;
  font-size: 12px;
  color: var(--muted);
}

/* средняя карточка расписания — акцент */
.schedule-grid .schedule-card:nth-child(2) {
  border-color: rgba(40, 224, 255, 0.9);
  box-shadow:
    0 0 20px rgba(40, 224, 255, 0.7),
    0 18px 40px rgba(0, 0, 0, 0.95);
}

/* ===========================
   GALLERY / BAR / MEMBERS / EVENTS / SAFETY
=========================== */

.gallery-grid,
.bar-grid,
.member-grid,
.events-grid,
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* центральные карточки галерей/бара/ивентов тоже чуть ярче */
.gallery-grid .img-card:nth-child(2),
.bar-grid .img-card:nth-child(2),
.events-grid .img-card:nth-child(2) {
  border-color: rgba(40, 224, 255, 0.9);
}

/* ===========================
   CONTACT / LOCATION
=========================== */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr);
  gap: 22px;
}

.contact-main {
  padding: 24px 20px 20px;
}

.contact-main h2 {
  margin: 10px 0 12px;
  font-size: 22px;
}

.contact-main p {
  font-size: 14px;
  color: var(--muted);
  max-width: 460px;
}

.contact-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0 20px;
}

.contact-cols h3 {
  font-size: 13px;
  margin-bottom: 6px;
}

.contact-cols p {
  font-size: 13px;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-side {
  padding: 22px 18px 18px;
}

.contact-side h3 {
  font-size: 15px;
  margin-bottom: 10px;
}

.rules-list {
  list-style: none;
  font-size: 13px;
  color: var(--muted);
}

.rules-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
}

/* ===========================
   SAFETY
=========================== */

.safety-grid .mini-card p {
  font-size: 13px;
  color: var(--muted);
}

/* ===========================
   FOOTER
=========================== */

.site-footer {
  border-top: 1px solid rgba(67, 92, 180, 0.7);
  padding: 28px 0 40px;
  background: transparent;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 12px;
  color: var(--muted);
}

.footer-logo {
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.footer-links a:hover {
  color: #ffffff;
}

/* ===========================
   BACK TO TOP BUTTON
=========================== */

#toTopBtn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(120, 214, 255, 0.9);
  background: radial-gradient(circle at 0 0, rgba(40, 224, 255, 1), #050712);
  color: #01030a;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(120%);
  opacity: 0;
  transition: opacity var(--transition-med), transform var(--transition-med), box-shadow var(--transition-fast), transform var(--transition-fast);
  z-index: 3;
}

#toTopBtn.visible {
  transform: translateY(0);
  opacity: 1;
}

#toTopBtn:hover {
  box-shadow:
    0 0 18px rgba(40, 224, 255, 1),
    0 22px 52px rgba(0, 0, 0, 1);
  transform: translateY(-2px);
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .card-row,
  .tier-grid,
  .schedule-grid,
  .contact-grid,
  .contact-cols,
  .gallery-grid,
  .bar-grid,
  .member-grid,
  .events-grid,
  .safety-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-meta {
    grid-template-columns: minmax(0, 1fr);
  }

  header .btn {
    display: none;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-inner {
    min-height: 64px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-list {
    position: absolute;
    right: 0;
    top: 52px;
    background: rgba(3, 7, 24, 0.98);
    border-radius: 18px;
    border: 1px solid rgba(120, 214, 255, 0.7);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.95);
    padding: 14px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transform-origin: top right;
    transform: scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
  }

  .nav-list.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 80px;
  }

  .section-padded {
    padding: 30px 0;
  }

  .hero-copy {
    padding: 22px 18px 18px;
  }

  .glass-panel {
    border-radius: 14px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== HERO SECTION ===== */

.main {
  position: relative;
 
  margin: 0 auto;
  padding: 80px 40px 220px; /* нижний паддинг под рост девушки */
  background: linear-gradient(145deg, #1a0028 0%, #2a0020 50%, #3b002f 100%);
  border-radius: 24px;
  overflow: hidden; /* чтобы картинка не вылезала за секцию */
  color: #fff;
  border-color: rgba(255, 79, 163, 0.9);
    box-shadow: 0 0 24px rgba(255, 79, 163, 0.9), var(--shadow-subtle);
  margin-top: 30px;
}

/* Заголовок + розовая плашка */

.main h1 {
  margin: 0 0 40px;
  text-align: center;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
}

.main h1 span {
  position: relative;
  display: inline-block;
  padding: 18px 60px;
  background: #ff2975;
  border-radius: 6px;
  color: #fff;
}

/* “косые” края, как на макете */
.main h1 span::before,
.main h1 span::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 26px;
  width: 140%;
  background: #ff2975;
  border-radius: 4px;
}

.main h1 span::before {
  bottom: 100%;
  transform: translate(-50%, 8px) skewY(-3deg);
}

.main h1 span::after {
  top: 100%;
  transform: translate(-50%, -8px) skewY(3deg);
}

/* ===== ДЕВУШКА (2 картинки друг на друге) ===== */

.main__girl {
  position: absolute;
  left: 60%;
  bottom: 400px;
  transform: translateX(-50%);
  width: 470px;
  max-width: 45vw;
  z-index: 2;
}

.main__girl img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: opacity 0.4s ease-in-out;
}

/* первая картинка видна по умолчанию */
.main__girl img:first-child {
  opacity: 1;
  z-index: 2;
}

/* вторая — под ней и прозрачная */
.main__girl img:last-child {
  opacity: 0;
  z-index: 1;
}

/* при ховере по блоку с девушкой – меняем местами */
.main__girl:hover img:first-child {
  opacity: 0;
}

.main__girl:hover img:last-child {
  opacity: 1;
}

/* ===== НИЖНИЙ БЛОК: текст слева, кнопка справа ===== */

.main__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between; /* текст слева, кнопка справа */
  gap: 32px;
  margin-top: 40px;
  position: relative;
  z-index: 3; /* выше фона, ниже девушки по центру */
}

.main__title {
  max-width: 460px;
}

.main__title .subheader {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #ff4f8a;
}

.main__title p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #f5f5f5;
}

/* Кнопка */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
  border: none;
}

.btn__fill {
  padding: 14px 34px;
  background: linear-gradient(90deg, #ff4b8b, #ff7bbf);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 22px rgba(255, 75, 139, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn__fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(255, 75, 139, 0.8);
}

/* ===== АДАПТИВ ===== */

@media (max-width: 900px) {
  .main {
    padding: 60px 20px 200px;
  }

  .main h1 {
    font-size: 38px;
  }

  .main__bottom {
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .btn__fill {
    align-self: flex-start;
  }

  .main__girl {
    width: 270px !important;
    position: absolute;
    left: 50%;
    bottom: 240px;
    transform: translateX(-50%);
    width: 360px;
    max-width: 90vw;
    z-index: 2;
  }
}

@media (max-width: 600px) {
  .main {
    padding: 50px 16px 180px;
  }

  .main h1 {
    font-size: 30px;
  }

  .main__girl {
    width: 220px;
  }
}



/* ===========================
   BEFORE / AFTER SECTION
=========================== */

.switch-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.switch-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

/* карточки — в духе perf-card, но универсальные */
.switch-card {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
}

/* блок под картинку + яркий лейбл */
.switch-thumb {
  position: relative;
  margin-bottom: 14px;
}

/* внутренняя рамка с картинкой */
.switch-card .card-thumb {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  height: 500px;
  border: 1px solid rgba(40, 224, 255, 0.4);
  background:
    radial-gradient(circle at 0 0, rgba(40, 224, 255, 0.18), transparent 55%),
    rgba(5, 9, 28, 0.94);
  box-shadow:
    0 0 14px rgba(40, 224, 255, 0.35),
    0 10px 24px rgba(0, 0, 0, 0.8);
}

.switch-card .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  transform: scale(1.02);
  transition: transform 0.25s ease, filter 0.25s ease;
}

/* лёгкий zoom при hover на карточку */
.switch-card:hover .card-thumb img {
  transform: scale(1.06);
  filter: brightness(1.06);
}

/* яркие лейблы BEFORE / AFTER */
.switch-tag {
  position: absolute;
  top: 10px;
  left: 12px;
  z-index: 2;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #01030a;
  box-shadow:
    0 0 14px rgba(0, 0, 0, 0.7),
    0 0 24px rgba(40, 224, 255, 0.6);
}

.switch-tag-before {
  background: linear-gradient(100deg, #28e0ff, #9aa7ff);
}

.switch-tag-after {
  background: linear-gradient(100deg, #ff4fa3, #ff9ad5);
}

/* заголовок + текст карточек */
.switch-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.switch-card p {
  font-size: 13px;
  color: var(--muted);
}

/* адаптив */
@media (max-width: 960px) {
  .switch-pair {
    grid-template-columns: minmax(0, 1fr);
  }

  .switch-card .card-thumb {
    height: 210px;
  }
}

@media (max-width: 640px) {
  .switch-card .card-thumb {
    height: 190px;
  }
}




/* ===========================
   STATS / WHY US
=========================== */

/* центрируем заголовок секции */
.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0px;
}

.section-sub--center {
  max-width: 520px;
  text-align: center;
}

/* заголовок "Why CHOOSE us" */
.stats-title {
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stats-title span {
  background: linear-gradient(100deg, #28e0ff, #9aa7ff, #ff4fa3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* сетка карточек */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

/* сама карточка */
.stat-card {
  border-radius: 18px;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 0 0, rgba(40, 224, 255, 0.15), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255, 79, 163, 0.1), transparent 55%),
    rgba(7, 10, 30, 0.9);
  border: 1px solid rgba(40, 224, 255, 0.35);
  box-shadow:
    0 0 18px rgba(40, 224, 255, 0.35),
    0 18px 40px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 79, 163, 0.9);
  box-shadow:
    0 0 24px rgba(255, 79, 163, 0.8),
    0 22px 52px rgba(0, 0, 0, 1);
}

/* цифра */
.stat-number {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: linear-gradient(120deg, #ffffff, #ffd27f, #ff9c4f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-number span {
  font-size: 0.7em;
  margin-left: 2px;
}

/* подпись */
.stat-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 18px;
}

/* иконка-чип внизу */
.stat-icon {
  margin-top: 10px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 0, #ffd27f, #ff9c4f);
  box-shadow:
    0 0 18px rgba(255, 156, 79, 0.9),
    0 10px 26px rgba(0, 0, 0, 0.85);
}

.stat-icon span {
  font-size: 18px;
  color: #1a0b06;
}

/* адаптив */
@media (max-width: 960px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}












/* ===========================
   VELVET TRANSFORMATIONS
=========================== */

.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0px;
}

.section-sub--center {
  max-width: 520px;
  text-align: center;
}

/* сетка 3×2 */
.transform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* карточка-обертка */
.transform-card {
  padding: 10px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 0 0, rgba(40, 224, 255, 0.16), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255, 79, 163, 0.12), transparent 55%),
    rgba(5, 8, 26, 0.96);
  border: 1px solid rgba(40, 224, 255, 0.45);
  box-shadow:
    0 0 18px rgba(40, 224, 255, 0.35),
    0 18px 40px rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.transform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 79, 163, 0.9);
  box-shadow:
    0 0 26px rgba(255, 79, 163, 0.8),
    0 22px 54px rgba(0, 0, 0, 1);
}

/* сам кадр */
.transform-thumb {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 500px;
}

.transform-thumb img {
  object-position: top;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.transform-card:hover .transform-thumb img {
  transform: scale(1.07);
  filter: brightness(1.05);
}

/* бейджи BEFORE / AFTER */
.transform-tag {
  position: absolute;
  top: 12px;
  left: 14px;
  z-index: 2;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #01030a;
  box-shadow:
    0 0 12px rgba(0, 0, 0, 0.7),
    0 0 20px rgba(255, 156, 79, 0.8);
}

.transform-tag--before {
  background: linear-gradient(110deg, #28e0ff, #9aa7ff);
}

.transform-tag--after {
 background: linear-gradient(100deg, #ff4fa3, #ff9ad5);
}

/* плашка "CENSORED" (опционально) */
.transform-censor {
  position: absolute;
  left: 50%;
  bottom: 18%;
  transform: translateX(-50%);
  padding: 6px 18px;
  background: #000;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 6px;
}

/* адаптив */
@media (max-width: 960px) {
  .transform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .transform-thumb {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .transform-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .transform-thumb {
    height: 260px;
  }
}






/* ===========================
   NEON CTA (DeepNude-style hero)
=========================== */

#neon-offer .cta-shell {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 40px 40px;
  display: flex;
  align-items: center;
  min-height: 280px;
  background:
    radial-gradient(circle at 0 0, rgba(40, 224, 255, 0.18), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255, 79, 163, 0.14), transparent 55%),
    rgba(5, 7, 24, 0.98);
}

/* левая колонка с текстом */

#neon-offer .cta-copy {
  max-width: 520px;
  z-index: 1;
}

#neon-offer .cta-heading {
  margin: 16px 0 14px;
  font-size: 32px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: linear-gradient(120deg, #ffffff, #28e0ff, #ff4fa3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#neon-offer .cta-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 26px;
}

#neon-offer .cta-btn {
  padding-inline: 30px;
}

/* правая картинка — единая PNG, прижата к правому нижнему краю */

#neon-offer .cta-media {
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none; /* чтобы клики не блокировала */
}

#neon-offer .cta-media img {
  display: block;
  width: min(420px, 42vw);
  max-height: 100%;
  object-fit: contain;

}


/* адаптив */

@media (max-width: 960px) {
 
  
.cta-media{
  display: none;
}

  #neon-offer .cta-media {
    right: 50%;
    bottom: -40px;
    transform: translateX(50%);
  }

  #neon-offer .cta-media img {
    width: min(360px, 80vw);
    transform: translate(0, 0);
  }

  #neon-offer .cta-media::before {
    inset: -6% -14% -14% -14%;
  }
}

@media (max-width: 640px) {
  
  #neon-offer .cta-heading {
    font-size: 26px;
    letter-spacing: 0.12em;
  }

  #neon-offer .cta-text {
    font-size: 15px;
  }
}





/* ===========================
   ENERGY BOARD
=========================== */

.energy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 20px;
}

/* левая панель */
.energy-left {
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.energy-kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.energy-title {
  font-size: 18px;
  text-transform: uppercase;
}

/* чипы */
.energy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.energy-pill {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(120, 214, 255, 0.9);
  color: var(--ink);
  background: radial-gradient(circle at 0 0, rgba(40, 224, 255, 0.24), rgba(5, 9, 32, 0.96));
}

.energy-pill--hot {
  border-color: rgba(255, 79, 163, 0.9);
  background: radial-gradient(circle at 0 0, rgba(255, 79, 163, 0.4), rgba(10, 4, 22, 0.98));
}

/* маленькие неоновые “счетчики” */
.energy-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.energy-badge {
  border-radius: 14px;
  padding: 8px 10px;
  background:
    radial-gradient(circle at 0 0, rgba(40, 224, 255, 0.18), transparent 55%),
    rgba(5, 9, 28, 0.96);
  border: 1px solid rgba(40, 224, 255, 0.4);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.energy-badge-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.energy-badge-value {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
/* ===== INFINITE MARQUEE (no gap) ===== */
.energy-strip {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(40, 224, 255, 0.45);
  background:
    radial-gradient(circle at 0 0, rgba(40, 224, 255, 0.25), transparent 60%),
    rgba(5, 9, 28, 0.98);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.energy-marquee {
  display: flex;
  white-space: nowrap;
  animation: energy-marquee-loop 20s linear infinite;
}

.energy-marquee span {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding-inline: 32px;
  color: var(--ink);
  opacity: 0.9;
}

@keyframes energy-marquee-loop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); } /* Бесшовно циклично */
}

/* текст под бегущей строкой */
.energy-subline {
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.9;
}


/* правая колонка */
.energy-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* эквалайзер */
.energy-eq {
  padding: 16px 16px 14px;
}

.energy-eq-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.energy-eq-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.energy-eq-status {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 79, 163, 0.9);
  color: #ffe9f8;
  background: radial-gradient(circle at 0 0, rgba(255, 79, 163, 0.45), rgba(12, 4, 20, 0.96));
}

/* вертикальные полосы */
.energy-eq-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 90px;
  margin-bottom: 10px;
}

.energy-eq-bars .bar {
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, #28e0ff, #9aa7ff, #ff4fa3);
  opacity: 0.9;
  transform-origin: bottom center;
  animation: energy-bar 1.4s ease-in-out infinite;
}

.bar-1 { height: 40%; animation-delay: 0s; }
.bar-2 { height: 65%; animation-delay: 0.1s; }
.bar-3 { height: 85%; animation-delay: 0.2s; }
.bar-4 { height: 70%; animation-delay: 0.3s; }
.bar-5 { height: 50%; animation-delay: 0.4s; }
.bar-6 { height: 80%; animation-delay: 0.5s; }
.bar-7 { height: 60%; animation-delay: 0.6s; }

@keyframes energy-bar {
  0%, 100% { transform: scaleY(0.9); opacity: 0.9; }
  50%      { transform: scaleY(1.1); opacity: 1; }
}

/* легенда */
.energy-eq-legend {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  color: var(--muted);
}

.energy-eq-legend .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.dot-blue {
  background: #28e0ff;
}

.dot-lilac {
  background: #9aa7ff;
}

.dot-hot {
  background: #ff4fa3;
}

/* карточка с тайм-слотами */
.energy-slots {
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.energy-slots-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.energy-slots-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.energy-slot-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.energy-slot {
  border-radius: 12px;
  padding: 8px 10px;
  background:
    radial-gradient(circle at 0 0, rgba(40, 224, 255, 0.18), transparent 55%),
    rgba(5, 9, 28, 0.96);
  border: 1px solid rgba(40, 224, 255, 0.35);
}

.energy-slot-time {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.energy-slot-tag {
  margin-top: 2px;
  font-size: 11px;
  color: var(--muted);
}

.energy-slot-tag--hot {
  color: #ffe4f4;
}

/* пояснение */
.energy-note {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
}

/* адаптив */
@media (max-width: 960px) {
  .energy-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .energy-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .energy-slot-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .energy-badges {
    grid-template-columns: minmax(0, 1fr);
  }

  .energy-slot-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .energy-strip span {
    animation-duration: 20s;
  }
}







/* ===== Expert Review — Neon Nova style ===== */

.expertreview {
  padding: 72px 0;
  background: transparent;
}

/* неоновые акценты в тексте */
.expertreview .highlight,
.expertreview .mark {
  background: linear-gradient(120deg, #ffffff, #28e0ff, #ff4fa3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* layout */
.expertReview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

/* card — стеклянная панель в твоём стиле */
.review-card {
  background:
    radial-gradient(circle at 0 0, rgba(40, 224, 255, 0.12), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255, 79, 163, 0.12), transparent 55%),
    rgba(5, 7, 24, 0.96);
  border: 1px solid rgba(180, 196, 255, 0.28);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(40, 224, 255, 0.9);
  box-shadow:
    0 0 22px rgba(40, 224, 255, 0.65),
    0 22px 50px rgba(0, 0, 0, 0.95);
  background:
    radial-gradient(circle at 0 0, rgba(40, 224, 255, 0.18), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255, 79, 163, 0.18), transparent 55%),
    rgba(5, 7, 24, 0.98);
}

.review-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}

.review-card span {
  color: var(--muted);
  font-size: 12px;
  font-style: italic;
  margin-top: 6px;
  opacity: 0.85;
}

/* gradient links — подчёркивание как неоновый луч */
.review-card p a {
  position: relative;
  display: inline-block;
  background: linear-gradient(120deg, #28e0ff, #9aa7ff, #ff4fa3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  text-decoration: none;
  padding-bottom: 2px;
  transition: filter 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
  opacity: 1;
  filter: brightness(1.05);
}

.review-card p a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(120deg, #28e0ff, #9aa7ff, #ff4fa3);
  opacity: 0.9;
  box-shadow: 0 0 12px rgba(40, 224, 255, 0.6);
  transition: box-shadow 0.18s ease, opacity 0.18s ease;
}

.review-card p a:hover,
.review-card p a:focus {
  filter: brightness(1.12);
  transform: translateY(-1px);
  outline: none;
}

.review-card p a:hover::after,
.review-card p a:focus::after {
  opacity: 1;
  box-shadow:
    0 0 16px rgba(40, 224, 255, 0.9),
    0 0 22px rgba(255, 79, 163, 0.9);
}

/* responsive */
@media (max-width: 1024px) {
  .expertReview {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .review-card {
    padding: 20px 18px;
  }

  .review-card p {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .expertreview {
    padding: 60px 0;
  }
}




































/*   CUSTOM SCROLLBAR — Neon Nova   */
::-webkit-scrollbar {
  width: 8px;              /* ширина вертикального скролла */
}

/* дорожка */
::-webkit-scrollbar-track {
  background: rgba(5, 7, 24, 0.85); /* тёмный, чуть прозрачный */
  border-radius: 999px;
  margin: 10px 0;
}

/* ползунок */
::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, #28e0ff, #9aa7ff, #ff4fa3);
  border: 2px solid rgba(5, 7, 24, 1); /* даёт “тонкий” вид на тёмном фоне */
}

/* hover — немного ярче, но без перегруза */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #3df0ff, #b3bfff, #ff6fbc);
}

/* active — лёгкий акцент, без белого */
::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #ff4fa3, #28e0ff);
}










/* ===================== */
/* Hover эффект как в header/footer */
/* ===================== */
.left a {
  position: relative;
  color: rgba(230, 236, 255, 0.8);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    color 0.25s ease,
    text-shadow 0.25s ease,
    transform 0.18s ease;
}

/* неоновая дымка позади текста */
.left a::before {
  content: "";
  position: absolute;
  inset: -6px -10px;
  border-radius: 999px;
  background: radial-gradient(
    140% 220% at 50% 0,
    rgba(40, 224, 255, 0.32),
    transparent 65%
  );
  opacity: 0;
  transform: translateY(6px);
  filter: blur(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  z-index: -1;
}

/* hover/focus — активируем эффект */
.left a:hover,
.left a:focus-visible {
  color: #ffffff;
  text-shadow: 0 0 16px rgba(40, 224, 255, 0.9);
  transform: translateY(-1px);
}

.left a:hover::before,
.left a:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}













/* ===========================
   HERO — Neon Nova
=========================== */

.hero {
  padding: 48px 0 36px;
}

.hero-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  
  overflow: hidden;
  border-radius: var(--radius-md, 18px);
  /* стекло + неоновая подложка */
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(40,224,255,.14), transparent 60%),
    radial-gradient(120% 120% at 100% 100%, rgba(255,79,163,.14), transparent 60%),
    rgba(5, 7, 24, .92);
  border: 1px solid rgba(40,224,255,.28);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: border-color .25s ease, transform .25s ease;
}

.hero-card:hover {
  border-color: rgba(40,224,255,.55);
  transform: translateY(-2px);
}

/* левая половина с картинкой */
.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: none;                 /* убрал -45px */
}

/* лёгкая затемняющая вуаль + неоновый флер сверху */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,7,24,0) 45%, rgba(5,7,24,.55) 100%),
    radial-gradient(60% 50% at 10% 0%, rgba(40,224,255,.20), transparent 60%);
  mix-blend-mode: screen;
}

/* правая колонка с текстом */
.hero-content {
  padding: 34px 28px 26px;
  display: flex;
  flex-direction: column;
}

.hero h1 {
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  /* неоновый градиент в заголовке */
  background: linear-gradient(120deg, #ffffff, #28e0ff, #ff4fa3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.06;
}


.hero p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* кнопочная группа, если нужна */
.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* мини-карточка (бейдж внизу изображения) */
.mini-card {
  position: absolute;
  left: 28px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(40,224,255,.35);
  background:
    radial-gradient(100% 100% at 0 0, rgba(40,224,255,.14), transparent 60%),
    rgba(5, 7, 24, .96);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.mini-product {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px;
  align-items: center;
}

.mini-product img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(40,224,255,.28);
}

/* чипсы / метки */
.chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.chip {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid rgba(40,224,255,.35);
  background:
    radial-gradient(120% 120% at 0 0, rgba(40,224,255,.12), transparent 60%),
    rgba(5, 7, 24, .92);
}

.chip--it {
  border-color: rgba(255,79,163,.5);
  color: #ffffff;
  background:
    radial-gradient(120% 120% at 0 0, rgba(255,79,163,.18), transparent 60%),
    rgba(5,7,24,.92);
}

/* Mission */
.mission {
  padding: 36px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 22px;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1024px) {
  .hero-card {
    grid-template-columns: 1fr;
    min-height: 420px;
    max-height: none;
  }
  .mini-card {
    left: 20px;
    bottom: 18px;
  }
}

@media (max-width: 768px) {
  .hero-media { display: none; }
  .hero-card { display: block; }
  .hero-content { padding: 22px; }
}

@media (max-width: 480px) {
  .mini-card { position: static; margin-top: 14px; }
  .mission-grid { grid-template-columns: 1fr; }
}
/* ===========================
   HERO BUTTONS — Neon Nova style
=========================== */

/* базовая кнопка */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1px solid rgba(40, 224, 255, 0.35);
  color: #eaf6ff;
  background:
    radial-gradient(circle at 0 0, rgba(40,224,255,0.12), transparent 60%),
    rgba(5, 7, 24, 0.92);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.25s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

/* неоновая дымка (эффект подсветки) */
.btn::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    100% 120% at 50% 0%,
    rgba(40,224,255,0.25),
    rgba(255,79,163,0.15),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: scale(0.85);
  z-index: 0;
}

.btn:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* hover — мягкое свечение + подъём */
.btn:hover {
  color: #fff;
  border-color: rgba(40,224,255,0.8);
  box-shadow:
    0 0 12px rgba(40,224,255,0.5),
    0 0 24px rgba(255,79,163,0.35);
  transform: translateY(-2px);
}

/* ===== Основная кнопка с градиентом ===== */
.btn--primary {
  background: linear-gradient(135deg, #28e0ff 0%, #ff4fa3 100%);
  color: #0b0d10;
  border: none;
  box-shadow:
    0 0 14px rgba(40,224,255,0.5),
    0 0 24px rgba(255,79,163,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 20px rgba(40,224,255,0.8),
    0 0 30px rgba(255,79,163,0.6);
}

/* ===== Размер XS (если будешь использовать в мини-карточках) ===== */
.btn--xs {
  padding: 8px 18px;
  font-size: 13px;
  letter-spacing: 0.05em;
}

/* ===== Адаптив ===== */
@media (max-width: 640px) {
  .btn {
    font-size: 14px;
    padding: 12px 26px;
  }
}



/* ===========================
   HERO — fix positions, keep neon style
=========================== */

.hero {
  padding: 48px 0 36px;
}

.hero-card {
  position: relative;
  display: flex;
  grid-template-columns: 1.2fr 0.8fr; /* как было у тебя */
  max-height: 460px;
  overflow: hidden;
  border-radius: var(--radius-md, 18px);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(40,224,255,.14), transparent 60%),
    radial-gradient(120% 120% at 100% 100%, rgba(255,79,163,.14), transparent 60%),
    rgba(5, 7, 24, .92);
  border: 1px solid rgba(40,224,255,.28);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

/* ВАЖНО: возвращаем static, чтобы мини-карта якорилась как раньше */
.hero-media {
  position: static;
}

/* Возвращаем вертикальный сдвиг изображения */
.hero-media img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  display: block;
}

/* мягкая вуаль сверху, не ломает позиционирование */
.hero-media::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  user-select: none;
  box-shadow: inset 0 -80px 120px rgba(0, 0, 0, 0.16);
}

/* ВАЖНО: возвращаем исходные координаты мини-карты */
.mini-card {
  position: absolute;
  left: 390px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(40,224,255,.35);
  background:
    radial-gradient(100% 100% at 0 0, rgba(40,224,255,.14), transparent 60%),
    rgba(5, 7, 24, .96);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

/* Контент справа — без изменений в расположении */
.hero-content {
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 25px;
}

.hero h1 {
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  background: linear-gradient(120deg, #ffffff, #28e0ff, #ff4fa3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.06;
}


/* Кнопки — твоя неоновая стилистика */
.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1px solid rgba(40, 224, 255, 0.35);
  color: #eaf6ff;
  background:
    radial-gradient(circle at 0 0, rgba(40,224,255,0.12), transparent 60%),
    rgba(5, 7, 24, 0.92);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.25s ease;
}

.btn--primary {
  background: linear-gradient(135deg, #28e0ff 0%, #ff4fa3 100%);
  color: #0b0d10;
  border: none;
}

.btn:hover { transform: translateY(-2px); color:#fff; }

/* Чипсы — только оформление, не трогаем поведение */
.chips { display: flex; gap: 6px; flex-wrap: wrap; }

.chip {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid rgba(40,224,255,.35);
  background:
    radial-gradient(120% 120% at 0 0, rgba(40,224,255,.12), transparent 60%),
    rgba(5, 7, 24, .92);
}

.chip--it {
  border-color: rgba(255,79,163,.5);
  color: #ffffff;
  background:
    radial-gradient(120% 120% at 0 0, rgba(255,79,163,.18), transparent 60%),
    rgba(5,7,24,.92);
}

/* Адаптив — как у тебя: на мобилке скрываем левую колонку */
@media (max-width: 900px) {
  .hero-card { grid-template-columns: 1fr; min-height: 420px; }
}
@media (max-width: 768px) {
  .hero-card { display: block; }
  .hero-media { display: none; } /* чипы в мини-карте скрываются вместе с картинкой — как у тебя */
  .hero-content { padding: 20px; }
}
