/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #020309;
  color: #f9fafb;
}

/* ===== VARIABLES & BASE ===== */
:root {
  --bg-page: #020309;
  --bg-main: #050813;
  --bg-section: transparent;
  --bg-section-soft: #0b111f;
  --bg-card: #111827;
  --accent: #c7ff4f;
  --accent-strong: #9dff3d;
  --accent-soft: rgba(199, 255, 79, 0.12);
  --accent-glow: 0 0 30px rgba(199, 255, 79, 0.7);
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --border-subtle: 1px solid rgba(148, 163, 184, 0.2);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 22px 55px rgba(0, 0, 0, 0.8);
}

.page {
  min-height: 100vh;
  background: radial-gradient(circle at top center, #0a1220 0, #020309 60%);
  color: var(--text-main);
  position: relative;
  overflow: hidden;
}

/* side glows */
.page::before,
.page::after {
  content: "";
  position: fixed;
  top: 10%;
  width: 260px;
  height: 520px;
  pointer-events: none;
  z-index: -1;
  filter: blur(14px);
  opacity: 0.8;
}

.page::before {
  left: -120px;
  background: radial-gradient(circle, rgba(199, 255, 79, 0.85) 0, transparent 60%);
}

.page::after {
  right: -140px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0, transparent 60%);
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.header {
  position: relative;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(
      90deg,
      rgba(4, 7, 14, 0.96),
      rgba(3, 5, 10, 0.96)
    );
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 0, #ffffff 0, #c7ff4f 45%, #020309 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #020309;
  box-shadow: var(--accent-glow);
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header__logo-title {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header__logo-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__link {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #b3ff70);
  transition: width 0.25s ease;
}

.nav__link:hover {
  color: var(--text-main);
}

.nav__link:hover::after {
  width: 100%;
}

.header__cta {
  font-size: 14px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: none;
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background-color 0.18s ease, color 0.18s ease;
}

.btn--accent {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #020309;
  box-shadow: var(--accent-glow);
}

.btn--accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 40px rgba(199, 255, 79, 0.85);
}

.btn--ghost {
  background: rgba(15, 23, 42, 0.8);
  color: var(--text-main);
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.btn--ghost:hover {
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(199, 255, 79, 0.5);
}

.btn--full {
  width: 100%;
}

.btn--with-icon {
  padding-right: 18px;
}

.btn__icon {
  font-size: 14px;
}

/* ===== HERO ===== */
.hero {
  padding: 60px 0 80px;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 520px;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--accent);
  margin: 0 0 10px;
}

.hero__title {
  margin: 0 0 18px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 800;
   background: linear-gradient(90deg, #ffffff, #baff4f 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 18px rgba(186, 255, 79, 0.5),
    0 0 36px rgba(255, 255, 255, 0.2);
}

.hero__title span {
  display: inline-block;
  position: relative;
  padding: 12px 20px;
  margin-top: 8px;
  border-radius: 10px;
  background: linear-gradient(135deg, #c7ff4f 0, #8fff4b 50%, #84ff97 100%);
  color: #020309;
  box-shadow: var(--accent-glow);
}

.hero__subtitle {
  margin: 0 0 26px;
  color: var(--text-muted);
  font-size: 15px;
  max-width: 440px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 12px;
  color: var(--text-muted);
}

.hero__note-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--accent);
}

/* HERO IMAGE */
.hero__visual {
  position: relative;
}

.hero__image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft), var(--accent-glow);
  background: radial-gradient(circle at top left, rgba(199, 255, 79, 0.2), #020617 60%);
}

.hero__image {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  transform: scale(1.02);
}

.hero__badge-card {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(3, 7, 18, 0.9);
  border: 1px solid rgba(199, 255, 79, 0.6);
  box-shadow: 0 0 24px rgba(199, 255, 79, 0.4);
}

.hero__badge {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(199, 255, 79, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: var(--accent);
}

.hero__badge-text {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== STRIP BANNER ===== */
.strip-banner {
  background: rgba(5, 8, 19, 0.98);
  padding: 12px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid rgba(15, 23, 42, 0.95);
}

.strip-banner__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--text-muted);
}

.strip-banner__icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(15, 23, 42, 0.9);
}

.strip-banner__text {
  flex: 1;
}

.strip-banner__link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.strip-banner__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), #b3ff70);
}

/* ===== SECTIONS GENERIC ===== */
section {
  padding: 55px 0;
  background: transparent;
}

.section__title {
  margin: 0 0 10px;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section__subtitle {
  margin: 0 0 26px;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 420px;
}

.section__cta {
  margin-top: 26px;
  text-align: center;
}

.section--two-column .section__inner,
.section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 40px;
}

/* ===== GRID CARDS ===== */
.grid-cards {
  margin-top: 32px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 18px 18px 20px;
  border-radius: var(--radius-md);
  background: radial-gradient(circle at top, rgba(199, 255, 79, 0.14), #020617 53%, #020309 100%);
  border: 1px solid rgba(148, 163, 184, 0.26);
  box-shadow: var(--shadow-soft);
}

.card__icon {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: radial-gradient(circle at 20% 0, #ffffff 0, #c7ff4f 40%, #020309 100%);
  box-shadow: var(--accent-glow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #020309;
  font-size: 18px;
}

.card__title {
  font-size: 15px;
}

.card__text {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}


.card-head {
  display: flex;
  gap: 15px;
  align-items: center;
}


/* ===== PANEL LIST SECTION ===== */
.section--two-column {
  /* keeps same background, just content styling */
}

.panel-list {
  padding: 20px 20px 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #020617 0, #020309 40%, #020617 100%);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: var(--shadow-soft);
}

.panel-list__title {
  margin: 0 0 14px;
  font-size: 15px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-list__items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.panel-list__item {
  position: relative;
  padding-left: 24px;
  font-size: 13px;
  color: var(--text-muted);
}

.panel-list__item .bullet {
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 0 0 2px rgba(199, 255, 79, 0.15);
  background: radial-gradient(circle at 30% 0, var(--accent), #0b1120 70%);
}

/* ===== TALL IMAGE GALLERY ===== */
.section--gallery {
  /* same background, emphasis via cards */
}

.tall-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.tall-card {
  border-radius: 24px;
  overflow: hidden;
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.tall-card__image-wrap {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.tall-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.tall-card__body {
  padding: 14px 16px 16px;
}

.tall-card__title {
  margin: 0 0 6px;
  font-size: 15px;
}

.tall-card__text {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== BEFORE / AFTER PAIRS ===== */
.section--pairs {
  /* visually tied with continuous background */
}

.pairs-grid {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.pair__image-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #020617;
  box-shadow: 0 0 35px rgba(199, 255, 79, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pair__image {
  width: 100%;
  height: 480px; /* немного больше для баланса */
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  display: block;
}




.pair__image-wrap--after {
  box-shadow: var(--shadow-soft), var(--accent-glow);
}

.pair__image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top;
}

.pair__label {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(3, 7, 18, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.pair__label--accent {
  border-color: rgba(199, 255, 79, 0.8);
  color: var(--accent);
}

/* ===== FINAL CTA ===== */
.section--final {
  /* continues same background */
}

.section__inner--final {
  align-items: center;
}

.final__visual {
  position: relative;
  min-height: 240px;
}

.final__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
}

.final__orb--one {
  width: 210px;
  height: 210px;
  left: -10px;
  top: 0;
  background: radial-gradient(circle at 10% 0, #ffffff 0, #c7ff4f 40%, #020309 90%);
  box-shadow: var(--accent-glow);
}

.final__orb--two {
  width: 140px;
  height: 140px;
  right: 0;
  bottom: 10px;
  background: radial-gradient(circle at 40% 0, #93c5fd 0, #111827 55%, #020309 90%);
  opacity: 0.7;
}

.final__panel {
  position: absolute;
  inset: 32px 16px 0 auto;
  max-width: 260px;
  padding: 16px 18px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(199, 255, 79, 0.14), #020617 50%, #020309 100%);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: var(--shadow-soft);
}

.final__tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.final__label {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
}

.final__meta {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.final__content .highlight {
  color: var(--accent);
}

/* BOOKING FORM */
.booking-form {
  margin-top: 18px;
  padding: 18px 18px 16px;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
}

.booking-form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.booking-form__field {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: #020617;
  color: var(--text-main);
  font-size: 13px;
}

.booking-form__field::placeholder {
  color: rgba(156, 163, 175, 0.8);
}

.booking-form__field:focus {
  outline: none;
  border-color: rgba(199, 255, 79, 0.8);
  box-shadow: 0 0 0 1px rgba(199, 255, 79, 0.5);
}

.booking-form__note {
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  padding: 22px 0 28px;
  background: #020309;
  border-top: 1px solid rgba(15, 23, 42, 0.95);
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
  font-size: 12px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.footer__logo-text {
  font-weight: 600;
}

.footer__copy {
  margin: 0;
  color: var(--text-muted);
}

.footer__center {
  color: var(--text-muted);
}

.footer__line {
  margin: 2px 0;
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.footer__link {
  color: var(--accent);
  text-decoration: none;
  font-size: 12px;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__btn {
  font-size: 12px;
  padding: 9px 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero__inner,
  .section__inner,
  .section--two-column .section__inner {
    grid-template-columns: minmax(0, 1fr);
  }
  

  .hero__visual {
    order: -1;
    margin-bottom: 20px;
  }

  .final__visual {
    margin-bottom: 26px;
  }

  .grid-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tall-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header__inner {
    gap: 10px;
  }

  .nav {
    display: none;
  }


  .container {
  width: 95%;
  max-width: 1180px;
  margin: 0 auto;
}

.strip-banner {
  display: none;
}

section {
    padding: 35px 0;
    background: transparent;
}


.hero .btn--ghost{
  display: none;
}

.hero {
  padding: 35px 0 0px;
}

.hero__inner{
  gap: 20px;
}

header .btn--accent {
  display: none;
}
}

@media (max-width: 720px) {
  .grid-cards,
  .tall-gallery {
    grid-template-columns: minmax(0, 1fr);
  }

  .strip-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__inner {
    grid-template-columns: minmax(0, 1fr);
    align-items: flex-start;
  }

  .footer__right {
    align-items: flex-start;
  }

  .pair {
    grid-template-columns: minmax(0, 1fr);
  }

  .pair__image {
    height: 260px;
  }

  .hero__image {
    height: 280px;
  }
}





/* ===== BACKGROUND GREEN GLOWS ===== */
.bg-glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  transform: translate(-50%, -50%);
}

.bg-glow--1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: 15%;
  background: radial-gradient(circle, rgba(199,255,79,0.9) 0%, transparent 70%);
}

.bg-glow--2 {
  width: 600px;
  height: 600px;
  top: 45%;
  right: -5%;
  background: radial-gradient(circle, rgba(200,255,150,0.8) 0%, transparent 75%);
}

.bg-glow--3 {
  width: 500px;
  height: 500px;
  bottom: 15%;
  left: 10%;
  background: radial-gradient(circle, rgba(180,255,100,0.75) 0%, transparent 80%);
}

.bg-glow--4 {
  width: 700px;
  height: 700px;
  bottom: -5%;
  right: 15%;
  background: radial-gradient(circle, rgba(255,255,255,0.45) 0%, transparent 70%);
  filter: blur(120px);
  opacity: 0.35;
}


@keyframes pulse {
  from { opacity: 0.4; transform: scale(1); }
  to { opacity: 0.7; transform: scale(1.2); }
}




/* ===== NEONBURST SECTION ===== */
.section--neonburst {
  position: relative;
  overflow: hidden;
}

.neonburst__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 50px;
  position: relative;
  z-index: 2;
}

.neonburst__text {
  position: relative;
  z-index: 3;
}

.neonburst__title {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.neonburst__title span {
  display: inline-block;
  background: linear-gradient(90deg, #c7ff4f, #8aff8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(199, 255, 79, 0.7);
}

.neonburst__subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.btn--large {
  padding: 16px 32px;
  font-size: 16px;
}

/* IMAGE + ORBS */
.neonburst__visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(199, 255, 79, 0.4);
}

.neonburst__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  filter: brightness(0.85) contrast(1.1);
}

/* floating orbs for glow animation */
.neonburst__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.7;
  filter: blur(90px);
  animation: floaty 10s infinite ease-in-out alternate;
}

.neonburst__orb--green {
  width: 300px;
  height: 300px;
  top: -60px;
  left: -60px;
  background: radial-gradient(circle, rgba(199,255,79,0.9) 0%, transparent 70%);
  animation-delay: 0s;
}

.neonburst__orb--white {
  width: 220px;
  height: 220px;
  bottom: -40px;
  right: 20px;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
  opacity: 0.4;
  animation-delay: 2s;
}

.neonburst__orb--pulse {
  width: 160px;
  height: 160px;
  top: 40%;
  left: 60%;
  background: radial-gradient(circle, rgba(160,255,120,0.9) 0%, transparent 80%);
  animation-delay: 4s;
}

@keyframes floaty {
  0% { transform: translateY(0) scale(1); opacity: 0.5; }
  100% { transform: translateY(-40px) scale(1.15); opacity: 0.8; }
}

/* ===== ADAPTIVE FOR NEONBURST ===== */

@media (max-width: 960px) {
  .section--neonburst {
    padding: 80px 0;
  }

  .neonburst__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .neonburst__text {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
  }

  .neonburst__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

}

@media (max-width: 720px) {
  .section--neonburst {
    padding: 60px 0;
  }

  .neonburst__title {
    font-size: 32px;
  }

  .neonburst__subtitle {
    font-size: 14px;
  }

  .neonburst__img {
    height: 320px;
  }

  .btn--large {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
  .neonburst__title {
    font-size: 26px;
  }

  .neonburst__img {
    height: 260px;
    border-radius: 22px;
  }

  .neonburst__inner {
    gap: 24px;
  }
}



/* ===== NEON MANIFESTO SECTION ===== */
.section--manifesto {
  position: relative;
}

.manifesto__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 50px;
  align-items: flex-start;
}

/* LEFT SIDE (HEAD) */
.manifesto__head {
  position: relative;
}

.manifesto__tag {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  border: 1px solid rgba(199, 255, 79, 0.75);
  background: rgba(3, 7, 18, 0.96);
  box-shadow: 0 0 18px rgba(199, 255, 79, 0.45);
  margin-bottom: 12px;
}

.manifesto__title {
  margin: 8px 0 14px;
  font-size: 28px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 800;
}

.manifesto__title span {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c7ff4f 0, #9dff7b 40%, #e5ffbf 100%);
  color: #020309;
  box-shadow: var(--accent-glow);
}

.manifesto__subtitle {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 360px;
}

/* RIGHT SIDE (LIST) */
.manifesto__body {
  position: relative;
  padding-left: 46px;
}

.manifesto__line {
  position: absolute;
  left: 14px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    rgba(199, 255, 79, 0.9),
    rgba(148, 163, 184, 0.4),
    rgba(199, 255, 79, 0.9)
  );
  box-shadow: 0 0 18px rgba(199, 255, 79, 0.7);
  opacity: 0.85;
}

.manifesto__item {
  position: relative;
  margin-bottom: 24px;
  padding: 12px 14px 14px 0;
  border-radius: 20px;
  background: radial-gradient(circle at top left, rgba(199, 255, 79, 0.14), #020617 55%, #020309 100%);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: var(--shadow-soft);
}

.manifesto__item:last-child {
  margin-bottom: 0;
}

.manifesto__badge {
  position: absolute;
  left: -36px;
  top: 16px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle, #c7ff4f 0, #14532d 70%, #020309 100%);
  box-shadow: 0 0 24px rgba(199, 255, 79, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #020309;
}

.manifesto__content {
  padding-left: 18px;
}

.manifesto__item-title {
  margin: 0 0 6px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.manifesto__item-text {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .manifesto__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .manifesto__body {
    padding-left: 40px;
  }

  .manifesto__badge {
    left: -30px;
  }
}

@media (max-width: 720px) {
  .manifesto__body {
    padding-left: 32px;
  }

  .manifesto__badge {
    left: -26px;
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .manifesto__title {
    font-size: 24px;
  }
}






/* ===== PARTNERS SECTION ===== */
.section--partners {
  position: relative;
  padding: 80px 0;
  overflow: visible;
}

/* Заголовок секции */
.partners-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 28px;
}

.partners-head .title {
  margin-bottom: 8px;
}

/* Мягкий зелёный ореол под секцией */
.partners-halo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, 90vw);
  height: 120px;
  margin-top: 24px;
  /* background: radial-gradient(
    60% 60% at 50% 50%,
    rgba(199, 255, 79, 0.25),
    rgba(24, 197, 94, 0.15) 60%,
    transparent 80%
  ); */
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}

/* Контейнер логотипов */
.partnerContainer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
}

/* Круглая неоновая плашка */
.partnerLogo {
  
  position: relative;
  display: block;
  height: clamp(90px, 12vw, 140px);
  width: clamp(90px, 12vw, 140px);
  padding: 12px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 0,
    rgba(199, 255, 79, 0.25),
    #020617 55%,
    #020309 100%
  );
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow:
    0 8px 26px rgba(0, 0, 0, 0.6),
    0 0 18px rgba(199, 255, 79, 0.25);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Внутреннее мягкое свечение */
.partnerLogo::before {
  content: "";
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(199, 255, 79, 0.3),
    transparent 70%
  );
  filter: blur(8px);
  opacity: 0.7;
}

/* Логотип внутри */
.partnerLogo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0.95) contrast(1.05);
  transition: filter 0.3s ease;
}

/* Hover эффект */
.partnerLogo:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: rgba(199, 255, 79, 0.8);
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.75),
    0 0 30px rgba(199, 255, 79, 0.5);
}

.partnerLogo:hover img {
  filter: brightness(1.1) contrast(1.15);
}

/* Адаптив */
@media (max-width: 768px) {
  .section--partners {
    padding: 60px 0;
  }

  .partnerContainer {
    gap: 22px;
  }

  .partnerLogo {
    height: 100px;
    width: 100px;
    padding: 10px;
  }
}



/*   CUSTOM SCROLLBAR — Green Neon   */
::-webkit-scrollbar {
  width: 8px;
}

/* дорожка */
::-webkit-scrollbar-track {
  background: rgba(2, 6, 15, 0.9);
  border-radius: 999px;
  margin: 10px 0;
}

/* ползунок */
::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, #eaffc0, #baff4f, #8aff8a);
  border: 2px solid #020309; /* тонкая зелёная “жила” на тёмном фоне */
}

/* hover — чуть ярче */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f6ffd5, #c8ff60, #9dff9a);
}

/* active — лёгкий контраст */
::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #baff4f, #ffffff);
}




/* ===================== */
/* Hover эффект как в header/footer — GREEN NEON */
/* ===================== */
.left a {
  position: relative;
  color: rgba(230, 236, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    color 0.25s ease,
    transform 0.18s ease;
}

/* электрическая неоновая “трасса” позади текста */
.left a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(186, 255, 79, 0.6) 20%,
    rgba(186, 255, 79, 0.9) 50%,
    rgba(186, 255, 79, 0.6) 80%,
    transparent 100%
  );
  background-size: 200% 100%;
  opacity: 0;
  transform: scale(0.9);
  filter: blur(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: -1;
}

/* hover/focus — активируем эффект */
.left a:hover,
.left a:focus-visible {
  color: #ffffff;
  transform: translateY(-2px);
}

.left a:hover::before,
.left a:focus-visible::before {
  opacity: 1;
  transform: scale(1);
  animation: neonPulse 1.6s linear infinite;
}

/* если ещё нет в файле — добавь эту анимацию один раз */
@keyframes neonPulse {
  0% {
    background-position: 200% 0;
    opacity: 0.7;
  }
  50% {
    background-position: 100% 0;
    opacity: 1;
  }
  100% {
    background-position: -200% 0;
    opacity: 0.7;
  }
}
