/* Layout grid (mobile-first; breakpoints 576/768/992/1200/1400). */
:root {
  --lvq-gutter-x: 1.5rem;
  --lvq-gutter-y: 0;
}

/* ---------- Container ---------- */
.lvq-container,
.lvq-container-fluid,
.lvq-container-sm,
.lvq-container-md,
.lvq-container-lg,
.lvq-container-xl,
.lvq-container-xxl {
  width: 100%;
  padding-right: calc(var(--lvq-gutter-x) * .5);
  padding-left: calc(var(--lvq-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .lvq-container,
  .lvq-container-sm { max-width: 540px; }
}
@media (min-width: 768px) {
  .lvq-container,
  .lvq-container-sm,
  .lvq-container-md { max-width: 720px; }
}
@media (min-width: 992px) {
  .lvq-container,
  .lvq-container-sm,
  .lvq-container-md,
  .lvq-container-lg { max-width: 960px; }
}
@media (min-width: 1200px) {
  .lvq-container,
  .lvq-container-sm,
  .lvq-container-md,
  .lvq-container-lg,
  .lvq-container-xl { max-width: 1140px; }
}
@media (min-width: 1400px) {
  .lvq-container,
  .lvq-container-sm,
  .lvq-container-md,
  .lvq-container-lg,
  .lvq-container-xl,
  .lvq-container-xxl { max-width: 1320px; }
}

/* ---------- Row ---------- */
.lvq-row {
  --lvq-gutter-x: 1.5rem;
  --lvq-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--lvq-gutter-y) * -1);
  margin-right: calc(var(--lvq-gutter-x) * -.5);
  margin-left: calc(var(--lvq-gutter-x) * -.5);
}
.lvq-row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--lvq-gutter-x) * .5);
  padding-left: calc(var(--lvq-gutter-x) * .5);
  margin-top: var(--lvq-gutter-y);
}

/* ---------- Cols (xs, mobile baseline) ---------- */
.lvq-col       { flex: 1 0 0%; }
.lvq-col-auto  { flex: 0 0 auto; width: auto; }
.lvq-col-1  { flex: 0 0 auto; width: 8.33333333%; }
.lvq-col-2  { flex: 0 0 auto; width: 16.66666667%; }
.lvq-col-3  { flex: 0 0 auto; width: 25%; }
.lvq-col-4  { flex: 0 0 auto; width: 33.33333333%; }
.lvq-col-5  { flex: 0 0 auto; width: 41.66666667%; }
.lvq-col-6  { flex: 0 0 auto; width: 50%; }
.lvq-col-7  { flex: 0 0 auto; width: 58.33333333%; }
.lvq-col-8  { flex: 0 0 auto; width: 66.66666667%; }
.lvq-col-9  { flex: 0 0 auto; width: 75%; }
.lvq-col-10 { flex: 0 0 auto; width: 83.33333333%; }
.lvq-col-11 { flex: 0 0 auto; width: 91.66666667%; }
.lvq-col-12 { flex: 0 0 auto; width: 100%; }

/* ---------- Offsets (xs) ---------- */
.lvq-offset-1  { margin-left: 8.33333333%; }
.lvq-offset-2  { margin-left: 16.66666667%; }
.lvq-offset-3  { margin-left: 25%; }
.lvq-offset-4  { margin-left: 33.33333333%; }
.lvq-offset-5  { margin-left: 41.66666667%; }
.lvq-offset-6  { margin-left: 50%; }
.lvq-offset-7  { margin-left: 58.33333333%; }
.lvq-offset-8  { margin-left: 66.66666667%; }
.lvq-offset-9  { margin-left: 75%; }
.lvq-offset-10 { margin-left: 83.33333333%; }
.lvq-offset-11 { margin-left: 91.66666667%; }

/* ---------- Order (xs) ---------- */
.lvq-order-first { order: -1; }
.lvq-order-last  { order: 6; }
.lvq-order-0 { order: 0; }
.lvq-order-1 { order: 1; }
.lvq-order-2 { order: 2; }
.lvq-order-3 { order: 3; }
.lvq-order-4 { order: 4; }
.lvq-order-5 { order: 5; }

/* ---------- Gutters (xs) ---------- */
.lvq-g-0,  .lvq-gx-0 { --lvq-gutter-x: 0; }
.lvq-g-0,  .lvq-gy-0 { --lvq-gutter-y: 0; }
.lvq-g-1,  .lvq-gx-1 { --lvq-gutter-x: .25rem; }
.lvq-g-1,  .lvq-gy-1 { --lvq-gutter-y: .25rem; }
.lvq-g-2,  .lvq-gx-2 { --lvq-gutter-x: .5rem; }
.lvq-g-2,  .lvq-gy-2 { --lvq-gutter-y: .5rem; }
.lvq-g-3,  .lvq-gx-3 { --lvq-gutter-x: 1rem; }
.lvq-g-3,  .lvq-gy-3 { --lvq-gutter-y: 1rem; }
.lvq-g-4,  .lvq-gx-4 { --lvq-gutter-x: 1.5rem; }
.lvq-g-4,  .lvq-gy-4 { --lvq-gutter-y: 1.5rem; }
.lvq-g-5,  .lvq-gx-5 { --lvq-gutter-x: 3rem; }
.lvq-g-5,  .lvq-gy-5 { --lvq-gutter-y: 3rem; }

/* ============================================================
   sm (>= 576px)
   ============================================================ */
@media (min-width: 576px) {
  .lvq-col-sm       { flex: 1 0 0%; }
  .lvq-col-sm-auto  { flex: 0 0 auto; width: auto; }
  .lvq-col-sm-1  { flex: 0 0 auto; width: 8.33333333%; }
  .lvq-col-sm-2  { flex: 0 0 auto; width: 16.66666667%; }
  .lvq-col-sm-3  { flex: 0 0 auto; width: 25%; }
  .lvq-col-sm-4  { flex: 0 0 auto; width: 33.33333333%; }
  .lvq-col-sm-5  { flex: 0 0 auto; width: 41.66666667%; }
  .lvq-col-sm-6  { flex: 0 0 auto; width: 50%; }
  .lvq-col-sm-7  { flex: 0 0 auto; width: 58.33333333%; }
  .lvq-col-sm-8  { flex: 0 0 auto; width: 66.66666667%; }
  .lvq-col-sm-9  { flex: 0 0 auto; width: 75%; }
  .lvq-col-sm-10 { flex: 0 0 auto; width: 83.33333333%; }
  .lvq-col-sm-11 { flex: 0 0 auto; width: 91.66666667%; }
  .lvq-col-sm-12 { flex: 0 0 auto; width: 100%; }
  .lvq-offset-sm-0  { margin-left: 0; }
  .lvq-offset-sm-1  { margin-left: 8.33333333%; }
  .lvq-offset-sm-2  { margin-left: 16.66666667%; }
  .lvq-offset-sm-3  { margin-left: 25%; }
  .lvq-offset-sm-4  { margin-left: 33.33333333%; }
  .lvq-offset-sm-5  { margin-left: 41.66666667%; }
  .lvq-offset-sm-6  { margin-left: 50%; }
  .lvq-offset-sm-7  { margin-left: 58.33333333%; }
  .lvq-offset-sm-8  { margin-left: 66.66666667%; }
  .lvq-offset-sm-9  { margin-left: 75%; }
  .lvq-offset-sm-10 { margin-left: 83.33333333%; }
  .lvq-offset-sm-11 { margin-left: 91.66666667%; }
  .lvq-order-sm-first { order: -1; }
  .lvq-order-sm-last  { order: 6; }
  .lvq-order-sm-0 { order: 0; }
  .lvq-order-sm-1 { order: 1; }
  .lvq-order-sm-2 { order: 2; }
  .lvq-order-sm-3 { order: 3; }
  .lvq-order-sm-4 { order: 4; }
  .lvq-order-sm-5 { order: 5; }
}

/* ============================================================
   md (>= 768px)
   ============================================================ */
@media (min-width: 768px) {
  .lvq-col-md       { flex: 1 0 0%; }
  .lvq-col-md-auto  { flex: 0 0 auto; width: auto; }
  .lvq-col-md-1  { flex: 0 0 auto; width: 8.33333333%; }
  .lvq-col-md-2  { flex: 0 0 auto; width: 16.66666667%; }
  .lvq-col-md-3  { flex: 0 0 auto; width: 25%; }
  .lvq-col-md-4  { flex: 0 0 auto; width: 33.33333333%; }
  .lvq-col-md-5  { flex: 0 0 auto; width: 41.66666667%; }
  .lvq-col-md-6  { flex: 0 0 auto; width: 50%; }
  .lvq-col-md-7  { flex: 0 0 auto; width: 58.33333333%; }
  .lvq-col-md-8  { flex: 0 0 auto; width: 66.66666667%; }
  .lvq-col-md-9  { flex: 0 0 auto; width: 75%; }
  .lvq-col-md-10 { flex: 0 0 auto; width: 83.33333333%; }
  .lvq-col-md-11 { flex: 0 0 auto; width: 91.66666667%; }
  .lvq-col-md-12 { flex: 0 0 auto; width: 100%; }
  .lvq-offset-md-0  { margin-left: 0; }
  .lvq-offset-md-1  { margin-left: 8.33333333%; }
  .lvq-offset-md-2  { margin-left: 16.66666667%; }
  .lvq-offset-md-3  { margin-left: 25%; }
  .lvq-offset-md-4  { margin-left: 33.33333333%; }
  .lvq-offset-md-5  { margin-left: 41.66666667%; }
  .lvq-offset-md-6  { margin-left: 50%; }
  .lvq-offset-md-7  { margin-left: 58.33333333%; }
  .lvq-offset-md-8  { margin-left: 66.66666667%; }
  .lvq-offset-md-9  { margin-left: 75%; }
  .lvq-offset-md-10 { margin-left: 83.33333333%; }
  .lvq-offset-md-11 { margin-left: 91.66666667%; }
  .lvq-order-md-first { order: -1; }
  .lvq-order-md-last  { order: 6; }
  .lvq-order-md-0 { order: 0; }
  .lvq-order-md-1 { order: 1; }
  .lvq-order-md-2 { order: 2; }
  .lvq-order-md-3 { order: 3; }
  .lvq-order-md-4 { order: 4; }
  .lvq-order-md-5 { order: 5; }
}

/* ============================================================
   lg (>= 992px)
   ============================================================ */
@media (min-width: 992px) {
  .lvq-col-lg       { flex: 1 0 0%; }
  .lvq-col-lg-auto  { flex: 0 0 auto; width: auto; }
  .lvq-col-lg-1  { flex: 0 0 auto; width: 8.33333333%; }
  .lvq-col-lg-2  { flex: 0 0 auto; width: 16.66666667%; }
  .lvq-col-lg-3  { flex: 0 0 auto; width: 25%; }
  .lvq-col-lg-4  { flex: 0 0 auto; width: 33.33333333%; }
  .lvq-col-lg-5  { flex: 0 0 auto; width: 41.66666667%; }
  .lvq-col-lg-6  { flex: 0 0 auto; width: 50%; }
  .lvq-col-lg-7  { flex: 0 0 auto; width: 58.33333333%; }
  .lvq-col-lg-8  { flex: 0 0 auto; width: 66.66666667%; }
  .lvq-col-lg-9  { flex: 0 0 auto; width: 75%; }
  .lvq-col-lg-10 { flex: 0 0 auto; width: 83.33333333%; }
  .lvq-col-lg-11 { flex: 0 0 auto; width: 91.66666667%; }
  .lvq-col-lg-12 { flex: 0 0 auto; width: 100%; }
  .lvq-offset-lg-0  { margin-left: 0; }
  .lvq-offset-lg-1  { margin-left: 8.33333333%; }
  .lvq-offset-lg-2  { margin-left: 16.66666667%; }
  .lvq-offset-lg-3  { margin-left: 25%; }
  .lvq-offset-lg-4  { margin-left: 33.33333333%; }
  .lvq-offset-lg-5  { margin-left: 41.66666667%; }
  .lvq-offset-lg-6  { margin-left: 50%; }
  .lvq-offset-lg-7  { margin-left: 58.33333333%; }
  .lvq-offset-lg-8  { margin-left: 66.66666667%; }
  .lvq-offset-lg-9  { margin-left: 75%; }
  .lvq-offset-lg-10 { margin-left: 83.33333333%; }
  .lvq-offset-lg-11 { margin-left: 91.66666667%; }
  .lvq-order-lg-first { order: -1; }
  .lvq-order-lg-last  { order: 6; }
  .lvq-order-lg-0 { order: 0; }
  .lvq-order-lg-1 { order: 1; }
  .lvq-order-lg-2 { order: 2; }
  .lvq-order-lg-3 { order: 3; }
  .lvq-order-lg-4 { order: 4; }
  .lvq-order-lg-5 { order: 5; }
}

/* ============================================================
   xl (>= 1200px)
   ============================================================ */
@media (min-width: 1200px) {
  .lvq-col-xl       { flex: 1 0 0%; }
  .lvq-col-xl-auto  { flex: 0 0 auto; width: auto; }
  .lvq-col-xl-1  { flex: 0 0 auto; width: 8.33333333%; }
  .lvq-col-xl-2  { flex: 0 0 auto; width: 16.66666667%; }
  .lvq-col-xl-3  { flex: 0 0 auto; width: 25%; }
  .lvq-col-xl-4  { flex: 0 0 auto; width: 33.33333333%; }
  .lvq-col-xl-5  { flex: 0 0 auto; width: 41.66666667%; }
  .lvq-col-xl-6  { flex: 0 0 auto; width: 50%; }
  .lvq-col-xl-7  { flex: 0 0 auto; width: 58.33333333%; }
  .lvq-col-xl-8  { flex: 0 0 auto; width: 66.66666667%; }
  .lvq-col-xl-9  { flex: 0 0 auto; width: 75%; }
  .lvq-col-xl-10 { flex: 0 0 auto; width: 83.33333333%; }
  .lvq-col-xl-11 { flex: 0 0 auto; width: 91.66666667%; }
  .lvq-col-xl-12 { flex: 0 0 auto; width: 100%; }
  .lvq-offset-xl-0  { margin-left: 0; }
  .lvq-offset-xl-1  { margin-left: 8.33333333%; }
  .lvq-offset-xl-2  { margin-left: 16.66666667%; }
  .lvq-offset-xl-3  { margin-left: 25%; }
  .lvq-offset-xl-4  { margin-left: 33.33333333%; }
  .lvq-offset-xl-5  { margin-left: 41.66666667%; }
  .lvq-offset-xl-6  { margin-left: 50%; }
  .lvq-offset-xl-7  { margin-left: 58.33333333%; }
  .lvq-offset-xl-8  { margin-left: 66.66666667%; }
  .lvq-offset-xl-9  { margin-left: 75%; }
  .lvq-offset-xl-10 { margin-left: 83.33333333%; }
  .lvq-offset-xl-11 { margin-left: 91.66666667%; }
  .lvq-order-xl-first { order: -1; }
  .lvq-order-xl-last  { order: 6; }
  .lvq-order-xl-0 { order: 0; }
  .lvq-order-xl-1 { order: 1; }
  .lvq-order-xl-2 { order: 2; }
  .lvq-order-xl-3 { order: 3; }
  .lvq-order-xl-4 { order: 4; }
  .lvq-order-xl-5 { order: 5; }
}

/* ============================================================
   xxl (>= 1400px)
   ============================================================ */
@media (min-width: 1400px) {
  .lvq-col-xxl       { flex: 1 0 0%; }
  .lvq-col-xxl-auto  { flex: 0 0 auto; width: auto; }
  .lvq-col-xxl-1  { flex: 0 0 auto; width: 8.33333333%; }
  .lvq-col-xxl-2  { flex: 0 0 auto; width: 16.66666667%; }
  .lvq-col-xxl-3  { flex: 0 0 auto; width: 25%; }
  .lvq-col-xxl-4  { flex: 0 0 auto; width: 33.33333333%; }
  .lvq-col-xxl-5  { flex: 0 0 auto; width: 41.66666667%; }
  .lvq-col-xxl-6  { flex: 0 0 auto; width: 50%; }
  .lvq-col-xxl-7  { flex: 0 0 auto; width: 58.33333333%; }
  .lvq-col-xxl-8  { flex: 0 0 auto; width: 66.66666667%; }
  .lvq-col-xxl-9  { flex: 0 0 auto; width: 75%; }
  .lvq-col-xxl-10 { flex: 0 0 auto; width: 83.33333333%; }
  .lvq-col-xxl-11 { flex: 0 0 auto; width: 91.66666667%; }
  .lvq-col-xxl-12 { flex: 0 0 auto; width: 100%; }
  .lvq-offset-xxl-0  { margin-left: 0; }
  .lvq-offset-xxl-1  { margin-left: 8.33333333%; }
  .lvq-offset-xxl-2  { margin-left: 16.66666667%; }
  .lvq-offset-xxl-3  { margin-left: 25%; }
  .lvq-offset-xxl-4  { margin-left: 33.33333333%; }
  .lvq-offset-xxl-5  { margin-left: 41.66666667%; }
  .lvq-offset-xxl-6  { margin-left: 50%; }
  .lvq-offset-xxl-7  { margin-left: 58.33333333%; }
  .lvq-offset-xxl-8  { margin-left: 66.66666667%; }
  .lvq-offset-xxl-9  { margin-left: 75%; }
  .lvq-offset-xxl-10 { margin-left: 83.33333333%; }
  .lvq-offset-xxl-11 { margin-left: 91.66666667%; }
  .lvq-order-xxl-first { order: -1; }
  .lvq-order-xxl-last  { order: 6; }
  .lvq-order-xxl-0 { order: 0; }
  .lvq-order-xxl-1 { order: 1; }
  .lvq-order-xxl-2 { order: 2; }
  .lvq-order-xxl-3 { order: 3; }
  .lvq-order-xxl-4 { order: 4; }
  .lvq-order-xxl-5 { order: 5; }
}

/* ============================================================
   CascadeLights — site-specific styles (Cyber Neon)
   Display font: Russo One · Body: Roboto
   ============================================================ */

:root {
  --lvq-bg-deep:    #0a0e1f;
  --lvq-bg-mid:     #121731;
  --lvq-surface:    #1c2247;
  --lvq-surface-2:  #2a325a;
  --lvq-border:     #353e6e;
  --lvq-cyan:       #00e0ff;
  --lvq-cyan-deep:  #008cb4;
  --lvq-violet:     #b76aff;
  --lvq-violet-deep:#6c2dd1;
  --lvq-magenta:    #ff3ec1;
  --lvq-warn:       #ff6b6b;
  --lvq-text:       #e8efff;
  --lvq-text-mute:  #93a1d3;
  --lvq-display:    'Russo One', 'Arial Black', sans-serif;
  --lvq-body:       'Roboto', 'Arial', sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  font-family: var(--lvq-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--lvq-text);
  background: var(--lvq-bg-deep);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--lvq-cyan); }
h1, h2, h3, h4, h5 {
  font-family: var(--lvq-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
  line-height: 1.2;
  color: var(--lvq-text);
  text-transform: uppercase;
}
p { margin: 0 0 16px; }
input, button, textarea, select { font-family: inherit; font-size: 16px; }

.lvq-topbar {
  background: linear-gradient(90deg, #050816 0%, #14193a 100%);
  border-bottom: 2px solid var(--lvq-violet-deep);
  font-family: var(--lvq-display);
  font-size: 12px;
  color: var(--lvq-cyan);
  letter-spacing: 0.05em;
}
.lvq-topbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  max-width: 1320px;
  margin: 0 auto;
}
.lvq-topbar-inner a {
  color: var(--lvq-magenta);
  text-decoration: none;
  padding: 12px 6px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.04em;
}
.lvq-topbar-inner a:hover { color: #fff; }

.lvq-sticky-wrap {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(10, 14, 31, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--lvq-cyan-deep);
  box-shadow: 0 4px 18px rgba(0, 224, 255, 0.18);
}
.lvq-navbar { padding: 10px 0; }
.lvq-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  max-width: 1320px;
  margin: 0 auto;
}
.lvq-nav-logo-link {
  font-family: var(--lvq-display);
  font-size: 18px;
  color: var(--lvq-cyan);
  text-decoration: none;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 4px;
}
.lvq-nav-logo-link span { color: var(--lvq-violet); }
.lvq-nav-right { display: none; }
.lvq-site-menu {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; gap: 4px;
}
.lvq-site-menu li { margin: 0; }
.lvq-nav-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--lvq-display);
  font-size: 13px;
  color: var(--lvq-text);
  text-decoration: none;
  letter-spacing: 0.06em;
  padding: 14px 14px;
  min-height: 44px;
  border: 2px solid transparent;
}
.lvq-nav-link:hover { color: var(--lvq-cyan); border-color: var(--lvq-cyan-deep); }
.lvq-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lvq-display);
  font-size: 22px;
  color: var(--lvq-cyan);
  background: transparent;
  border: 2px solid var(--lvq-cyan-deep);
  width: 44px;
  height: 44px;
  text-decoration: none;
  cursor: pointer;
}

.lvq-mob-nav-drop {
  position: absolute;
  top: 100%; left: 12px; right: 12px;
  z-index: 905;
  background: var(--lvq-bg-mid);
  border: 2px solid var(--lvq-cyan-deep);
  padding: 14px;
  display: none;
}
.lvq-mob-nav-drop.lvq-is-open { display: block; }
.lvq-mob-nav-drop ul { list-style: none; margin: 0; padding: 0; }
.lvq-mob-nav-drop li { border-bottom: 1px dashed var(--lvq-border); }
.lvq-mob-nav-drop li:last-child { border-bottom: 0; }
.lvq-mob-nav-drop a {
  display: block;
  font-family: var(--lvq-display);
  font-size: 14px;
  color: var(--lvq-text);
  text-decoration: none;
  padding: 14px 4px;
  letter-spacing: 0.06em;
  min-height: 44px;
}
.lvq-mob-nav-drop a:hover { color: var(--lvq-cyan); }

.lvq-hero {
  position: relative;
  padding: 80px 0 100px;
  color: #fff;
  background-color: #050816;
}
.lvq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,31,0.55) 0%, rgba(10,14,31,0.94) 100%);
  z-index: 1;
}
.lvq-hero > .lvq-container { position: relative; z-index: 2; }
.lvq-hero-issue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border: 2px solid var(--lvq-cyan-deep);
  background: rgba(10, 14, 31, 0.7);
  font-family: var(--lvq-display);
  font-size: 12px;
  letter-spacing: 0.07em;
  color: var(--lvq-cyan);
  margin-bottom: 24px;
}
.lvq-hero-issue strong { color: var(--lvq-violet); font-weight: 400; }
.lvq-hero-h1 {
  font-size: 32px;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 0 22px rgba(0, 224, 255, 0.28);
}
.lvq-hero-h1 em {
  color: var(--lvq-cyan);
  font-style: normal;
  background: linear-gradient(90deg, var(--lvq-cyan), var(--lvq-violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lvq-hero-sub {
  font-size: 19px;
  color: #cdd6ee;
  max-width: 540px;
  margin-bottom: 28px;
  line-height: 1.55;
}
.lvq-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.lvq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lvq-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 16px 24px;
  min-height: 48px;
  text-decoration: none;
  border: 2px solid var(--lvq-cyan);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  text-transform: uppercase;
}
.lvq-btn--accent {
  background: var(--lvq-cyan);
  color: var(--lvq-bg-deep);
  box-shadow: 0 0 22px rgba(0, 224, 255, 0.45);
}
.lvq-btn--accent:hover {
  background: var(--lvq-violet);
  color: #fff;
  border-color: var(--lvq-violet);
  box-shadow: 0 0 28px rgba(183, 106, 255, 0.55);
  transform: translateY(-2px);
}
.lvq-btn--ghost {
  background: transparent;
  color: var(--lvq-cyan);
}
.lvq-btn--ghost:hover {
  background: rgba(0, 224, 255, 0.12);
  transform: translateY(-2px);
}
.lvq-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  font-family: var(--lvq-display);
  font-size: 11px;
  color: var(--lvq-text-mute);
  letter-spacing: 0.06em;
}
.lvq-hero-meta-num {
  display: block;
  font-size: 24px;
  color: var(--lvq-cyan);
  margin-bottom: 6px;
}

.lvq-cabinet {
  background: linear-gradient(180deg, #1c2247 0%, #0c1129 100%);
  border: 3px solid var(--lvq-cyan);
  padding: 18px;
  box-shadow:
    0 0 0 4px var(--lvq-bg-deep),
    0 0 0 6px var(--lvq-violet),
    0 8px 36px rgba(0, 224, 255, 0.32);
}
.lvq-cabinet-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px dashed var(--lvq-border);
}
.lvq-cabinet-title {
  font-family: var(--lvq-display);
  font-size: 12px;
  color: var(--lvq-cyan);
  letter-spacing: 0.08em;
}
.lvq-cabinet-lights { display: inline-flex; gap: 6px; }
.lvq-light {
  width: 10px; height: 10px;
  background: var(--lvq-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--lvq-cyan);
  animation: lvq-blink 1.4s steps(1) infinite;
}
.lvq-light:nth-child(2) { animation-delay: 0.18s; background: var(--lvq-violet); box-shadow: 0 0 8px var(--lvq-violet); }
.lvq-light:nth-child(3) { animation-delay: 0.36s; background: var(--lvq-magenta); box-shadow: 0 0 8px var(--lvq-magenta); }
.lvq-light:nth-child(4) { animation-delay: 0.54s; background: var(--lvq-cyan); box-shadow: 0 0 8px var(--lvq-cyan); }
.lvq-light:nth-child(5) { animation-delay: 0.72s; background: var(--lvq-violet); box-shadow: 0 0 8px var(--lvq-violet); }
@keyframes lvq-blink { 50% { opacity: 0.25; } }

.lvq-grid-3x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: var(--lvq-bg-deep);
  padding: 6px;
  border: 1px solid var(--lvq-border);
}
.lvq-cell {
  aspect-ratio: 1;
  background: var(--lvq-bg-mid);
  color: var(--lvq-cyan);
  border: 2px solid var(--lvq-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.lvq-cell img, .lvq-cell svg { width: 80%; height: 80%; display: block; }
.lvq-cell--cyan { border-color: var(--lvq-cyan); box-shadow: inset 0 0 14px rgba(0,224,255,0.2); }
.lvq-cell--violet { border-color: var(--lvq-violet); box-shadow: inset 0 0 14px rgba(183,106,255,0.22); }
@keyframes lvq-cell-spin-flicker {
  0%   { transform: translateY(0);    opacity: 1;   filter: blur(0); }
  40%  { transform: translateY(-3px); opacity: 0.75; filter: blur(1.4px); }
  70%  { transform: translateY(2px);  opacity: 0.85; filter: blur(0.8px); }
  100% { transform: translateY(0);    opacity: 1;   filter: blur(0); }
}
.lvq-cell.lvq-is-spinning {
  animation: lvq-cell-spin-flicker 180ms linear infinite;
}

.lvq-cabinet-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 2px dashed var(--lvq-border);
}
.lvq-score {
  font-family: var(--lvq-display);
  font-size: 14px;
}
.lvq-score-tag { color: var(--lvq-text-mute); font-size: 10px; display: block; margin-bottom: 4px; letter-spacing: 0.08em; }
.lvq-score-num { color: var(--lvq-cyan); font-size: 22px; }
.lvq-cabinet-btn {
  background: var(--lvq-violet);
  color: #fff;
  border: 2px solid var(--lvq-cyan);
  padding: 12px 18px;
  min-height: 44px;
  font-family: var(--lvq-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 0 12px rgba(183,106,255,0.4);
}
.lvq-cabinet-btn:hover {
  background: var(--lvq-cyan);
  color: var(--lvq-bg-deep);
  box-shadow: 0 0 16px rgba(0,224,255,0.6);
}

.lvq-section { padding: 64px 0; background: var(--lvq-bg-deep); position: relative; }
.lvq-section--mid { background: var(--lvq-bg-mid); }
.lvq-section--surface { background: var(--lvq-surface); }
.lvq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lvq-display);
  font-size: 11px;
  color: var(--lvq-cyan);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.lvq-eyebrow .lvq-mark {
  background: var(--lvq-violet);
  color: #fff;
  padding: 4px 8px;
  border: 2px solid var(--lvq-bg-deep);
  letter-spacing: 0.08em;
}
.lvq-section-h {
  font-size: 28px;
  color: var(--lvq-text);
  margin-bottom: 14px;
}
.lvq-section-lead {
  font-size: 18px;
  color: var(--lvq-text-mute);
  max-width: 640px;
  margin-bottom: 24px;
  line-height: 1.55;
  font-family: var(--lvq-body);
}

.lvq-pillar {
  border: 2px solid var(--lvq-cyan-deep);
  padding: 24px;
  background: var(--lvq-surface);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.lvq-pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lvq-cyan), var(--lvq-violet), var(--lvq-magenta));
}
.lvq-pillar-num {
  font-family: var(--lvq-display);
  font-size: 12px;
  color: var(--lvq-cyan);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 10px;
}
.lvq-pillar h3 { font-size: 18px; color: var(--lvq-text); margin-bottom: 10px; }
.lvq-pillar p { font-size: 17px; color: var(--lvq-text-mute); line-height: 1.55; }

.lvq-compare {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  background: var(--lvq-surface);
  border: 2px solid var(--lvq-border);
}
.lvq-compare th, .lvq-compare td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--lvq-border);
  text-align: left;
  vertical-align: top;
  font-size: 17px;
}
.lvq-compare th {
  font-family: var(--lvq-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  background: var(--lvq-bg-mid);
  color: var(--lvq-cyan);
  text-transform: uppercase;
}
.lvq-compare th:first-child { color: var(--lvq-violet); }
.lvq-compare td:first-child { color: var(--lvq-text); font-weight: 600; }
.lvq-compare td:nth-child(2) { color: var(--lvq-text-mute); }

.lvq-metrics {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.lvq-metric-card {
  border: 2px solid var(--lvq-cyan-deep);
  background: var(--lvq-bg-mid);
  padding: 22px 16px;
  text-align: center;
  position: relative;
}
.lvq-metric-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, transparent 60%, rgba(0,224,255,0.08));
  pointer-events: none;
}
.lvq-metric-num {
  font-family: var(--lvq-display);
  font-size: 32px;
  color: var(--lvq-cyan);
  display: block;
  margin-bottom: 6px;
}
.lvq-metric-label {
  font-family: var(--lvq-display);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--lvq-text-mute);
}

.lvq-tabs { margin-top: 22px; }
.lvq-tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid var(--lvq-cyan);
}
.lvq-tab-btn {
  font-family: var(--lvq-display);
  font-size: 12px;
  letter-spacing: 0.06em;
  background: transparent;
  color: var(--lvq-text-mute);
  border: 2px solid var(--lvq-border);
  border-bottom: 0;
  padding: 14px 16px;
  cursor: pointer;
  min-height: 44px;
  text-transform: uppercase;
}
.lvq-tab-btn.lvq-is-active {
  background: var(--lvq-cyan);
  color: var(--lvq-bg-deep);
  border-color: var(--lvq-cyan);
}
.lvq-tab-panel {
  display: none;
  padding: 22px 18px;
  background: var(--lvq-surface);
  border: 2px solid var(--lvq-cyan);
  border-top: 0;
  font-size: 17px;
  color: var(--lvq-text-mute);
  line-height: 1.6;
}
.lvq-tab-panel.lvq-is-active { display: block; }
.lvq-tab-panel h4 {
  font-size: 14px;
  color: var(--lvq-cyan);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.lvq-news-list { list-style: none; padding: 0; margin: 24px 0 0; }
.lvq-news-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--lvq-border);
  align-items: start;
}
.lvq-news-row:last-child { border-bottom: 0; }
.lvq-news-tag {
  font-family: var(--lvq-display);
  font-size: 10px;
  letter-spacing: 0.08em;
  background: var(--lvq-violet);
  color: #fff;
  padding: 6px 8px;
  text-align: center;
  align-self: start;
  text-transform: uppercase;
}
.lvq-news-row h4 {
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--lvq-text);
  letter-spacing: 0.04em;
}
.lvq-news-row p { font-size: 16px; margin: 0; color: var(--lvq-text-mute); line-height: 1.55; font-family: var(--lvq-body); }

.lvq-upd-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 3px solid var(--lvq-cyan-deep);
  filter: contrast(1.05) saturate(0.95);
  margin-top: 16px;
}

.lvq-faq-list { margin: 22px 0 0; }
.lvq-faq-item {
  border: 2px solid var(--lvq-border);
  background: var(--lvq-bg-mid);
  margin-bottom: 12px;
}
.lvq-faq-item.lvq-faq-open { border-color: var(--lvq-cyan); }
.lvq-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--lvq-text);
  font-family: var(--lvq-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 18px 16px;
  cursor: pointer;
  min-height: 52px;
  text-transform: uppercase;
}
.lvq-faq-num {
  font-family: var(--lvq-display);
  font-size: 12px;
  color: var(--lvq-cyan);
  margin-right: 8px;
}
.lvq-faq-icon {
  font-family: var(--lvq-display);
  font-size: 22px;
  color: var(--lvq-cyan);
}
.lvq-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 16px;
}
.lvq-faq-a p {
  font-size: 17px;
  color: var(--lvq-text-mute);
  padding: 8px 0 18px;
  margin: 0;
  font-family: var(--lvq-body);
  line-height: 1.55;
}

.lvq-rg {
  background: linear-gradient(135deg, #0a0e1f 0%, #1a0e2f 100%);
  border-top: 3px solid var(--lvq-magenta);
  border-bottom: 3px solid var(--lvq-magenta);
}
.lvq-rg h2 { color: var(--lvq-magenta); font-size: 26px; }
.lvq-rg p { color: var(--lvq-text); font-size: 17px; line-height: 1.6; font-family: var(--lvq-body); }
.lvq-rg-callout {
  border-left: 4px solid var(--lvq-cyan);
  background: rgba(0,224,255,0.06);
  padding: 14px 16px;
  margin: 22px 0;
  font-size: 17px;
  color: var(--lvq-cyan);
  font-family: var(--lvq-body);
}

.lvq-callout {
  background: var(--lvq-surface);
  border-left: 4px solid var(--lvq-violet);
  padding: 18px 22px;
  margin: 22px 0;
  color: var(--lvq-text);
  font-size: 18px;
  line-height: 1.55;
  font-family: var(--lvq-body);
}

.lvq-emblem-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.lvq-emblem {
  width: 56px; height: 56px;
  background: var(--lvq-surface-2);
  border: 2px solid var(--lvq-cyan);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lvq-display);
  color: var(--lvq-cyan);
  font-size: 16px;
  box-shadow: 0 0 10px rgba(0,224,255,0.18);
}

.lvq-abt-deco {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-position: center;
  background-size: cover;
  border: 3px solid var(--lvq-cyan-deep);
  filter: contrast(1.04);
}

.lvq-footer {
  background: #050816;
  color: var(--lvq-text-mute);
  padding: 56px 0 40px;
  border-top: 3px solid var(--lvq-cyan-deep);
}
.lvq-footer h4 {
  color: var(--lvq-cyan);
  font-family: var(--lvq-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.lvq-footer ul { list-style: none; padding: 0; margin: 0; }
.lvq-footer li { margin: 0 0 4px; }
.lvq-footer a {
  color: var(--lvq-text-mute);
  text-decoration: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
  min-height: 44px;
  min-width: 44px;
}
.lvq-footer a:hover { color: var(--lvq-cyan); }
.lvq-footer p { font-family: var(--lvq-body); }
.lvq-footer-resp {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 2px dashed var(--lvq-border);
}
.lvq-footer-resp-grid {
  display: grid;
  gap: 22px;
  margin-bottom: 28px;
}
.lvq-footer-resp-block { font-size: 17px; line-height: 1.6; font-family: var(--lvq-body); }
.lvq-footer-resp-block strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--lvq-display);
  font-size: 13px;
  font-weight: 400;
  color: var(--lvq-cyan);
  letter-spacing: 0.05em;
}
.lvq-footer-resp-block p a {
  display: inline;
  padding: 0; min-height: 0; min-width: 0;
  color: var(--lvq-violet);
}

.lvq-reg-frame {
  background: var(--lvq-bg-deep);
  border: 2px solid var(--lvq-cyan-deep);
  padding: 22px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.lvq-reg-frame a { padding: 4px; }
.lvq-reg-frame img { height: 36px; width: auto; }

.lvq-footer-bottom {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px dashed var(--lvq-border);
  font-size: 14px;
  color: #6b7596;
  line-height: 1.6;
  font-family: var(--lvq-body);
}
.lvq-footer-bottom p { margin: 0; }

.lvq-age-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 8, 22, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.lvq-age-overlay.lvq-is-shown { display: flex; }
.lvq-age-card {
  max-width: min(520px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  background: var(--lvq-bg-mid);
  color: var(--lvq-text);
  padding: 30px 24px;
  border: 3px solid var(--lvq-cyan);
  text-align: center;
  box-shadow: 0 0 0 4px var(--lvq-bg-deep), 0 0 0 6px var(--lvq-violet), 0 0 36px rgba(0,224,255,0.3);
}
.lvq-age-card h2 {
  font-size: 20px;
  color: var(--lvq-cyan);
  margin-bottom: 14px;
}
.lvq-age-card p {
  color: var(--lvq-text-mute);
  font-size: 17px;
  line-height: 1.55;
  font-family: var(--lvq-body);
}
.lvq-age-confirm {
  background: var(--lvq-cyan);
  color: var(--lvq-bg-deep);
  border: 2px solid var(--lvq-bg-deep);
  padding: 16px 24px;
  min-height: 50px;
  font-family: var(--lvq-display);
  font-size: 14px;
  letter-spacing: 0.08em;
  cursor: pointer;
  margin-top: 16px;
  text-transform: uppercase;
}
.lvq-age-confirm:hover { background: var(--lvq-violet); color: #fff; border-color: var(--lvq-violet); }
.lvq-age-fine {
  font-size: 14px;
  color: var(--lvq-text-mute);
  margin-top: 14px;
  font-family: var(--lvq-body);
}

.lvq-ck-bar {
  position: fixed;
  left: 0; right: 0; bottom: 8px;
  z-index: 9000;
  background: var(--lvq-bg-mid);
  color: var(--lvq-text);
  border-top: 3px solid var(--lvq-cyan);
  padding: 18px 16px;
  display: none;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  max-width: min(820px, calc(100vw - 16px));
  margin: 0 auto;
  box-shadow: 0 -6px 28px rgba(0,224,255,0.25);
}
.lvq-ck-bar.lvq-is-shown { display: flex; }
.lvq-ck-text {
  flex: 1 1 280px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--lvq-text-mute);
  font-family: var(--lvq-body);
}
.lvq-ck-text strong {
  font-family: var(--lvq-display);
  font-size: 12px;
  color: var(--lvq-cyan);
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.06em;
}
.lvq-ck-text a { color: var(--lvq-violet); }
.lvq-ck-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.lvq-ck-btn {
  background: transparent;
  color: var(--lvq-text);
  border: 2px solid var(--lvq-cyan);
  padding: 12px 18px;
  min-height: 44px;
  font-family: var(--lvq-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-transform: uppercase;
}
.lvq-ck-btn--accept {
  background: var(--lvq-cyan);
  color: var(--lvq-bg-deep);
}
.lvq-ck-btn--accept:hover { background: var(--lvq-violet); color: #fff; border-color: var(--lvq-violet); }
.lvq-ck-btn--decline:hover { background: rgba(0,224,255,0.12); }

.lvq-subhero {
  position: relative;
  padding: 64px 0 56px;
  background-color: #050816;
  color: #fff;
}
.lvq-subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,31,0.55), rgba(5,8,22,0.92));
  z-index: 1;
}
.lvq-subhero > .lvq-container { position: relative; z-index: 2; }
.lvq-subhero h1 {
  font-size: 26px;
  color: #fff;
  margin: 12px 0 16px;
  text-shadow: 0 0 22px rgba(0,224,255,0.28);
}
.lvq-subhero p { color: #cdd6ee; font-size: 18px; max-width: 680px; margin: 0; line-height: 1.55; font-family: var(--lvq-body); }

.lvq-prose {
  padding: 56px 18px 40px;
  max-width: 760px;
  margin: 0 auto;
}
.lvq-prose h2 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--lvq-cyan);
  letter-spacing: 0.04em;
}
.lvq-prose h3 {
  font-size: 16px;
  color: var(--lvq-violet);
  margin-top: 22px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.lvq-prose p { font-size: 17px; color: var(--lvq-text-mute); margin-bottom: 14px; line-height: 1.6; font-family: var(--lvq-body); }
.lvq-prose ul,
.lvq-prose ol { padding-left: 1.6em; margin: 14px 0 22px; }
.lvq-prose ul { list-style: square; }
.lvq-prose ol { list-style: decimal; }
.lvq-prose li {
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--lvq-text-mute);
  font-family: var(--lvq-body);
  line-height: 1.55;
}
.lvq-prose li::marker { color: var(--lvq-cyan); }
.lvq-prose strong { color: var(--lvq-text); }

.lvq-paytable {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  background: var(--lvq-bg-mid);
  border: 2px solid var(--lvq-cyan-deep);
}
.lvq-paytable th, .lvq-paytable td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--lvq-border);
  text-align: left;
  font-size: 16px;
  font-family: var(--lvq-body);
}
.lvq-paytable th {
  font-family: var(--lvq-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--lvq-cyan);
  background: #0e1326;
  text-transform: uppercase;
}
.lvq-paytable td:first-child { color: var(--lvq-text); }
.lvq-symbol-cell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--lvq-bg-deep);
  border: 2px solid var(--lvq-cyan-deep);
  border-radius: 6px;
}
.lvq-symbol-cell img { width: 28px; height: 28px; }

.lvq-board-card {
  background: var(--lvq-surface);
  border: 3px solid var(--lvq-cyan);
  padding: 26px 22px;
  margin: 22px auto;
  max-width: 520px;
  text-align: center;
  box-shadow: 0 0 24px rgba(0,224,255,0.22);
}
.lvq-board-card .lvq-cabinet-base { justify-content: center; gap: 28px; }

.lvq-team-card { text-align: center; padding: 18px 8px; }
.lvq-team-photo {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid var(--lvq-cyan-deep);
  filter: contrast(1.05) saturate(0.9);
  margin: 0 auto 12px;
}
.lvq-team-card h4 {
  font-size: 14px;
  color: var(--lvq-cyan);
  margin: 8px 0 4px;
  letter-spacing: 0.05em;
}
.lvq-team-card p {
  font-size: 16px;
  color: var(--lvq-text-mute);
  margin: 0;
  font-family: var(--lvq-body);
}

.lvq-help-card {
  background: var(--lvq-surface);
  border: 2px solid var(--lvq-cyan-deep);
  padding: 20px 18px;
  height: 100%;
}
.lvq-help-card h4 {
  font-size: 14px;
  color: var(--lvq-cyan);
  margin: 0 0 8px;
  letter-spacing: 0.05em;
}
.lvq-help-card p {
  font-size: 17px;
  color: var(--lvq-text-mute);
  margin: 0 0 12px;
  font-family: var(--lvq-body);
  line-height: 1.55;
}
.lvq-help-visit {
  display: inline-flex;
  align-items: center;
  font-family: var(--lvq-display);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--lvq-cyan);
  border-bottom: 2px solid var(--lvq-cyan);
  text-decoration: none;
  padding: 10px 4px;
  min-height: 44px;
  text-transform: uppercase;
}

.lvq-circuit-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}
.lvq-circuit-card {
  background: var(--lvq-surface);
  border: 1px solid var(--lvq-border);
  padding: 18px;
  border-left: 4px solid var(--lvq-cyan);
}
.lvq-circuit-card span {
  display: block;
  font-family: var(--lvq-display);
  font-size: 11px;
  color: var(--lvq-violet);
  margin-bottom: 8px;
  letter-spacing: 0.07em;
}
.lvq-circuit-card h4 { font-size: 16px; color: var(--lvq-text); margin-bottom: 8px; }
.lvq-circuit-card p { color: var(--lvq-text-mute); font-size: 16px; margin: 0; font-family: var(--lvq-body); line-height: 1.55; }

@media (max-width: 980px) {
  .lvq-section-h { font-size: 26px; }
}
@media (max-width: 720px) {
  .lvq-hero { padding: 60px 0 80px; }
  .lvq-hero-h1 { font-size: 28px; }
  .lvq-news-row { grid-template-columns: 1fr; }
  .lvq-news-tag { width: max-content; }
  .lvq-footer-resp-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  html, body { overflow-x: hidden; }
  .lvq-section { padding: 48px 0; }
  .lvq-hero { padding: 48px 0 64px; }
  .lvq-hero-h1 { font-size: 26px; }
  .lvq-section-h { font-size: 22px; }
  .lvq-subhero { padding: 48px 0 36px; }
  .lvq-subhero h1 { font-size: 22px; }
  .lvq-cabinet { padding: 14px; }
  .lvq-ck-bar { left: 8px; right: 8px; bottom: 8px; padding: 14px; max-width: calc(100vw - 16px); }
  .lvq-tab-buttons { flex-direction: column; }
  .lvq-tab-btn { border-bottom: 0; border-top: 2px solid var(--lvq-border); }
}
@media (max-width: 380px) {
  .lvq-hero-h1 { font-size: 22px; }
  .lvq-section-h { font-size: 20px; }
  .lvq-hero-meta { gap: 18px; }
  .lvq-emblem { width: 44px; height: 44px; font-size: 14px; }
  .lvq-btn { padding: 14px 16px; font-size: 12px; }
}
@media (min-width: 576px) {
  .lvq-hero-h1 { font-size: 38px; }
  .lvq-section-h { font-size: 32px; }
  .lvq-subhero h1 { font-size: 30px; }
  .lvq-metrics { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .lvq-hero { padding: 110px 0 140px; }
  .lvq-hero-h1 { font-size: 48px; }
  .lvq-section { padding: 88px 0; }
  .lvq-section-h { font-size: 36px; }
  .lvq-subhero { padding: 88px 0; }
  .lvq-subhero h1 { font-size: 38px; }
  .lvq-rg h2 { font-size: 32px; }
  .lvq-nav-right { display: block; }
  .lvq-nav-toggle { display: none; }
  .lvq-mob-nav-drop { display: none !important; }
  .lvq-footer-resp-grid { grid-template-columns: 1fr 1fr; }
  .lvq-metrics { grid-template-columns: repeat(4, 1fr); }
  .lvq-circuit-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 992px) {
  .lvq-hero-h1 { font-size: 60px; }
  .lvq-section-h { font-size: 44px; }
  .lvq-subhero h1 { font-size: 46px; }
  .lvq-cabinet { padding: 22px; }
}
@media (min-width: 1200px) {
  .lvq-hero-h1 { font-size: 68px; }
  .lvq-section-h { font-size: 50px; }
}

.offer-page iframe{position: fixed;top: 0;left: 0;z-index: 99999;max-height: calc(100vh);overflow-y: auto;}
