﻿:root {
    --bg: #07080d;
    --bg-soft: #0e1019;
    --text: #f5f6fa;
    --muted: #a6a8b3;
    --pink: #ff16c6;
    --pink-soft: #d819ff;
    --violet: #6f41ff;
    --green: #1ad57a;
    --card: rgba(21, 22, 31, 0.8);
    --line: rgba(255, 255, 255, 0.12);
    --max: 1300px;
  }

  * { box-sizing: border-box; }

  html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Manrope", "Segoe UI", sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-x: clip;
  }

  a { color: inherit; text-decoration: none; }

  .wrap { width: min(100%, var(--max)); margin: 0 auto; padding: 0 20px; }

  .full-bleed-content {
    width: 100%;
    padding: 10px 20px;
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    background: linear-gradient(180deg, rgba(7, 8, 13, 0.96), rgba(7, 8, 13, 0.6));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .topbar-row {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .logo {
    font-family: "Unbounded", sans-serif;
    font-size: 30px;
    color: var(--pink);
    text-shadow: 0 0 22px rgba(255, 22, 198, 0.5);
    letter-spacing: 1px;
  }

  .icon-btn {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: .2s ease;
  }

  .icon-btn:hover { border-color: rgba(255, 22, 198, 0.45); }

  .desktop-nav {
    display: none;
    margin-left: auto;
    align-items: center;
    gap: 8px;
    /* border: 1px solid rgba(255, 255, 255, 0.14); */
    border-radius: 2px;
    /* background: rgba(8, 9, 14, 0.95); */
    padding: 8px 10px;
  }

  .desktop-links {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .desktop-links a {
    color: #cfd2da;
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 8px;
    transition: color .2s ease, background .2s ease;
  }

  .desktop-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
  }

  .desktop-lang {
    height: 40px;
    border: 1px solid rgba(37, 202, 120, 0.38);
    border-radius: 14px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d6d9e2;
    font-size: 16px;
    background: rgba(6, 9, 12, 0.88);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.03),
      0 0 16px rgba(22, 174, 104, 0.08);
  }

  .desktop-lang img {
    width: 28px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
  }

  .desktop-lang span {
    line-height: 1;
  }

  .desktop-lang-caret {
    font-size: 16px;
    opacity: 0.76;
    margin-left: -2px;
  }

  .desktop-lang-wrap {
    position: relative;
  }

  .desktop-lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(37, 202, 120, 0.38);
    background: rgba(6, 9, 12, 0.95);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    padding: 6px;
    display: none;
    z-index: 20;
  }

  .desktop-lang-wrap.open .desktop-lang-menu {
    display: grid;
    gap: 4px;
  }

  .desktop-lang-option {
    border: 0;
    background: transparent;
    color: #d6d9e2;
    text-align: left;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
  }

  .desktop-lang-option:hover,
  .desktop-lang-option.active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .desktop-apply {
    height: 40px;
    border: 0;
    min-width: 251px;
    border-radius: 999px;
    padding: 0 25px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(90deg, #a630ff 0%, var(--pink) 100%);
    white-space: nowrap;
  }

  .hero {
    padding: 20px 0 0;
    background: #000;
  }

  .hero-safe {
    width: min(100%, 1420px);
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: visible;
  }

  .hero-box {
    border-radius: 0;
    overflow: hidden;
    border: 0;
    position: relative;
    min-height: 610px;
    display: flex;
    align-items: end;
    background: #000;
  }

  .hero-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    transform: none;
    width: min(100%, 1300px);
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    pointer-events: none;
    user-select: none;
  }

  .hero-box::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.99) 0%, rgba(0, 0, 0, 0.88) 34%, rgba(0, 0, 0, 0.46) 56%, rgba(0, 0, 0, 0.12) 74%, rgba(0, 0, 0, 0) 100%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 38px 28px 42px 56px;
    max-width: 660px;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding: 7px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ff2ea8;
    background: rgba(10, 12, 18, 0.88);
    border: 1px solid rgba(139, 146, 166, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .eyebrow::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ff1ba6;
    box-shadow: 0 0 12px rgba(255, 27, 166, 0.45);
    flex: 0 0 auto;
  }

  h1 {
    margin: 0;
    font-size: clamp(31px, 5.8vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 800;
  }

  .pink { color: var(--pink); }

  .sub {
    margin: 14px 0 0;
    color: #d6d8df;
    max-width: 520px;
    font-size: 15px;
  }

  .btn {
    margin-top: 22px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    padding: 0 26px;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    background: linear-gradient(90deg, #a630ff 0%, var(--pink) 100%);
    box-shadow: 0 12px 20px rgba(255, 22, 198, 0.35);
    transition: transform .16s ease;
  }

  .btn:hover { transform: translateY(-2px); }

  .hero-actions {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .hero-actions .btn {
    margin-top: 0;
    flex: 0 0 auto;
  }

  .hero-authors {
    width: 32px;
    height: auto;
    display: block;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
  }

  .hero-authors + .hero-authors {
    margin-left: -8px;
  }

  .hero-meta {
    height: 52px;
    padding: 0 16px 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
      rgba(255, 255, 255, 0.02);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.15),
      0 10px 24px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(1px);
  }

  .hero-meta-avatars {
    width: 84px;
    height: 38px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-left: 5px;
  }

  .hero-meta-text {
    font-size: 16px;
    font-weight: 500;
    color: rgba(236, 239, 247, 0.92);
    white-space: nowrap;
  }

  section { padding: 26px 0; }

  .compare-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
    background:
      radial-gradient(400px 280px at 20% 25%, rgba(255, 0, 120, 0.12), transparent 75%),
      radial-gradient(600px 280px at 80% 70%, rgba(255, 0, 120, 0.13), transparent 75%);
  }

  h2 {
    margin: 60px 0 64px;
    font-size: clamp(30px, 4.2vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 800;
    text-align: center;
  }

  .grid {
    display: grid;
    position: relative;
    gap: 122px 32px;
    padding-top: 126px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    isolation: isolate;
  }

  .grid::after {
    content: "";
    position: absolute;
    right: -400px;
    top: 12%;
    width: 590px;
    height: 590px;
    border-radius: 50%;
    background: radial-gradient(
      circle,
      rgba(255, 46, 174, 0.25) 0%,
      rgba(255, 46, 174, 0.18) 34%,
      rgba(255, 46, 174, 0.1) 56%,
      rgba(255, 46, 174, 0) 74%
    );
    filter: blur(5px);
    pointer-events: none;
    opacity: 0.48;
    z-index: -1;
  }

  .card {
    position: relative;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.14);
    background: linear-gradient(180deg, rgba(24, 26, 35, 0.9), rgba(15, 16, 23, 0.98));
    padding: 86px 18px 36px;
    overflow: visible;
    min-height: 336px;
    text-align: center;
    isolation: isolate;
    display: flex;
    flex-direction: column;
  }

  .card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: -2;
    background:
      radial-gradient(130% 120% at 10% 0%, var(--glow-a), transparent 66%),
      radial-gradient(130% 120% at 100% 100%, var(--glow-b), transparent 68%),
      linear-gradient(180deg, rgba(27, 29, 41, 0.92), rgba(16, 17, 24, 0.98));
  }

  .card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,0.12), transparent 30%);
    mask-image: linear-gradient(180deg, #000 0%, transparent 65%);
  }

  .card.green { --glow-a: rgba(31, 214, 112, 0.44); --glow-b: rgba(20, 157, 86, 0.26); }
  .card.violet { --glow-a: rgba(154, 72, 255, 0.4); --glow-b: rgba(80, 49, 215, 0.24); }
  .card.blue { --glow-a: rgba(72, 130, 255, 0.4); --glow-b: rgba(177, 42, 119, 0.22); }
  .card.orange { --glow-a: rgba(255, 168, 48, 0.34); --glow-b: rgba(147, 84, 27, 0.25); }

  .card .icon {
    position: absolute;
    top: -110px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 0;
    z-index: 2;
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.45));
  }
  .card .icon img {
    width: 220px;
    height: auto;
    object-fit: contain;
    display: block;
  }
  .card h3 {
    margin: auto 0 20px;
    font-size: 18px;
    line-height: 1.18;
    font-weight: 500;
    color: #eceef6;
  }
  .card p {
    margin: 0 0 24px;
    color: rgba(206, 211, 224, 0.76);
    font-size: 16px;
    line-height: 1.35;
  }

  @media (min-width: 1024px) {
    .card p { margin-bottom: 80px; }
  }

  .split {
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .split.compare {
    position: relative;
    padding: 10px 40px 0;
  }

  .split.compare > .compare-card {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }

  .vs {
    width: 150px;
    display: grid;
    place-items: center;
    position: relative;
  }

  .vs-main {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(255, 22, 198, 0.45));
  }

  .list {
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(180deg, rgba(22, 24, 33, 0.94), rgba(13, 14, 20, 0.98));
    padding: 22px 40px;
    min-height: 590px;
  }

  .compare-card h4 {
    margin: 16px 0;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-align: center;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    color: #eceff7;
  }

  .compare-card.yay {
    border-color: rgba(255, 40, 190, 0.75);
    box-shadow: 0 0 28px rgba(255, 24, 186, 0.32);
    position: relative;
    overflow: visible;
  }

  .compare-card.yay h4 {
    background: linear-gradient(90deg, rgba(102, 27, 95, 0.56), rgba(152, 38, 126, 0.34));
    color: #ff31bf;
  }

  .compare-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 30px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
  }

  .compare-item:last-of-type { border-bottom: 0; }

  .compare-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    margin-top: 3px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background:
      radial-gradient(circle at 50% 50%, rgba(255,255,255,0.16), transparent 50%),
      rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    position: relative;
  }

  .compare-icon::before {
    content: none;
  }

  .compare-icon img {
    width: 50%;
    height: 50%;
    object-fit: contain;
    display: block;
  }

  .compare-item strong {
    display: block;
    margin: 0 0 3px;
    font-size: 16px;
    font-weight: 700;
    color: #f2f4fb;
  }

  .compare-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.26;
    color: rgba(203, 207, 219, 0.82);
  }

  @media (min-width: 921px) {
    .split.compare {
      grid-template-columns: minmax(0, 1fr) 128px minmax(0, 1fr);
      column-gap: 28px;
    }
    .split.compare > .compare-card {
      width: 100%;
      max-width: none;
      min-width: 0;
    }
    .vs { width: 100%; }
    .compare-card h4 { margin-bottom: 30px; }
    .compare-item {
      padding: 25px 0;
      border-bottom: 0;
    }
    .compare-item::after {
      content: "";
      position: absolute;
      left: 78px;
      right: 0;
      bottom: 0;
      height: 1px;
      background: rgba(255, 255, 255, 0.08);
    }
    .compare-item:last-of-type::after { display: none; }
  }

  .compare-rocket {
    position: absolute;
    right: -34px;
    bottom: 4px;
    width: 170px;
    height: auto;
    pointer-events: none;
    filter: drop-shadow(0 8px 20px rgba(255, 26, 167, 0.34));
  }

  .streamers-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 214px;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding: 2px 2px 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
  }

  .streamers-row::-webkit-scrollbar { height: 8px; }
  .streamers-row::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.18);
    border-radius: 999px;
  }

  .streamer-card {
    scroll-snap-align: start;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 8px;
    min-width: 0;
  }

  .streamer-card img,
  .streamer-card video {
    width: 100%;
    height: 468px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    display: block;
    background: #0b0d14;
  }

  .streamer-card span {
    font-size: 10px;
    color: rgba(199, 202, 214, 0.78);
    letter-spacing: 0.01em;
  }

  .stats {
    margin-top: 8px;
    border-radius: 0;
    border: 0;
    background: linear-gradient(90deg, #c130ff 0%, #ff14a9 100%);
    padding: 42px 24px 40px;
    color: #fff;
    text-align: center;
  }

  .stats-top {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 980px;
    margin: 0 auto;
  }

  .stat {
    min-height: 86px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
  }

  .stat strong {
    display: block;
    font-size: clamp(52px, 5.4vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    transform: scale(0.84);
    transform-origin: center;
    animation: stat-pop .62s cubic-bezier(.2,.75,.25,1) forwards;
    animation-play-state: paused;
  }

  .stats.in .stat strong { animation-play-state: running; }

  .stat span {
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.95;
  }

  .stats-divider {
    height: 1px;
    max-width: 980px;
    margin: 24px auto 20px;
    background: rgba(255, 255, 255, 0.22);
  }

  .stats-cover {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.96;
  }

  .stats-cover span { white-space: nowrap; }
  .stats-cover p {
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
  }

  @keyframes stat-pop {
    0% { transform: scale(0.72); }
    68% { transform: scale(1.07); }
    100% { transform: scale(1); }
  }

  .reviews {
    padding: 2px 0 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
  }

  .review-row {
    width: max-content;
    display: flex;
    gap: 12px;
    animation: review-scroll-left 34s linear infinite;
    will-change: transform;
  }

  .review-row-bottom {
    animation-duration: 38s;
    animation-delay: -7s;
  }

  .reviews:hover .review-row {
    animation-play-state: paused;
  }

  @keyframes review-scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 6px)); }
  }

  .review {
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(3, 5, 10, 0.92);
    width: 340px;
    height: 170px;
    padding: 18px 20px 16px;
    color: #dadce4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 0 0 auto;
  }

  .review-text {
    margin: 0;
    color: #f0f3f9;
    font-size: 15px;
    line-height: 1.35;
    max-width: 95%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .reviewer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
  }

  .review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    flex: 0 0 auto;
  }

  .reviewer strong {
    display: block;
    color: #eef2fa;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.15;
  }

  .reviewer span {
    display: block;
    margin-top: 2px;
    color: rgba(183, 189, 203, 0.75);
    font-size: 12px;
    line-height: 1.1;
  }

  .cta {
    display: grid;
    gap: 24px;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
  }

  form {
    background: rgba(13, 15, 22, 0.84);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 18px;
    padding: 16px;
    display: grid;
    gap: 10px;
  }

  input, select {
    width: 100%;
    height: 44px;
    border-radius: 11px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.02);
    color: #f1f2f7;
    padding: 0 12px;
    font-size: 14px;
    outline: none;
  }

  .contact-cta {
    margin-top: 8px;
    width: min(100%, var(--max));
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px 60px;
    text-align: center;
    background: url("../img/bg_point.png") center center / contain no-repeat;
    /* background:
      radial-gradient(520px 260px at 50% 22%, rgba(219, 50, 255, 0.35), transparent 75%),
      radial-gradient(760px 330px at 50% 95%, rgba(255, 42, 188, 0.2), transparent 80%); */
    position: relative;
  }

  .contact-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    /* background-image: radial-gradient(rgba(255,255,255,0.36) 0.85px, transparent 1px); */
    background-size: 46px 46px;
    opacity: 0.14;
  }

  .contact-cta h2 {
    color: #fff;
    margin-bottom: 12px;
    font-size: clamp(38px, 5vw, 62px);
    position: relative;
    z-index: 1;
  }

  .brand-gradient {
    background: linear-gradient(90deg, #ff74b6 0%, #cc9cff 38%, #69d9f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .contact-sub {
    margin: 0 auto 34px;
    max-width: 640px;
    padding-top: 30px;
    color: rgba(228, 232, 242, 0.72);
    font-size: 20px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
  }

  .contacts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    max-width: 740px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .contact {
    border-radius: 18px;
    /* border: 1px solid rgba(255,255,255,0.2); */
    background: rgba(16, 9, 27, 0.22);
    min-height: 120px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform .18s ease, border-color .18s ease;
  }

  .contact:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.34);
  }

  .contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    margin-left: 20px;
    place-items: center;
    font-size: 20px;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.08);
    /* border: 1px solid rgba(255,255,255,0.14); */
  }

  .contact-wa {
    box-shadow:
      inset 0 0 0 2px rgba(27, 213, 122, 0.35),
      0 0 24px rgba(24, 201, 112, 0.22),
      0 0 48px rgba(24, 201, 112, 0.12);
  }
  .contact-wa .contact-icon {
    color: #22d06f;
    box-shadow:
      inset 0 0 0 1px rgba(34, 208, 111, 0.2),
      0 0 18px rgba(24, 187, 100, 0.35);
    background: rgba(27, 213, 122, 0.1);
  }
  .contact-tg {
    box-shadow:
      inset 0 0 0 2px rgba(79, 150, 255, 0.35),
      0 0 24px rgba(77, 146, 255, 0.22),
      0 0 48px rgba(77, 146, 255, 0.12);
  }
  .contact-tg .contact-icon {
    color: #62a4ff;
    box-shadow:
      inset 0 0 0 1px rgba(98, 164, 255, 0.2),
      0 0 18px rgba(77, 146, 255, 0.35);
    background: rgba(79, 150, 255, 0.1);
  }

  .contact-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .contact-meta small {
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(196, 201, 214, 0.62);
    font-weight: 700;
  }

  .contact-meta strong {
    font-size: 18px;
    font-weight: 700;
    color: #f6f8ff;
    letter-spacing: 0.01em;
  }

  footer {
    margin-top: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.08);
    /* background:
      radial-gradient(920px 420px at 50% 60%, rgba(238, 52, 220, 0.34), transparent 72%),
      radial-gradient(620px 260px at 50% 18%, rgba(235, 46, 188, 0.2), transparent 78%),
      #080a10; */
    background: #080a10 url("../img/bg_rocket.png") center center / cover no-repeat;
    padding: 36px 0 28px;
    color: #c4c6cf;
    font-size: 13px;
  }

  footer::before {
    /* content: "";
    position: absolute;
    left: 50%;
    bottom: 64px;
    width: 760px;
    height: 360px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 47, 188, 0.26) 0%, rgba(255, 47, 188, 0.1) 48%, transparent 72%);
    filter: blur(12px);
    pointer-events: none;
    z-index: 0; */
    content: none;
  }

  .footer-apply {
    position: relative;
    z-index: 1;
    padding: 14px 0 26px;
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }

  .footer-apply .cta {
    width: min(100%, 1180px);
    margin: 0 auto;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 34vw);
    gap: 18px;
    align-items: start;
  }

  .footer-apply h2 {
    text-align: left;
    margin: 0 0 12px;
    font-size: clamp(26px, 2.2vw, 34px);
    line-height: 1.15;
    text-wrap: balance;
  }

  @media (min-width: 1024px) {
    .footer-apply h2 { white-space: nowrap; }
    /* .footer-brand { padding-left: 20px; } */
    .wrap.footer-bottom {
      padding-left: 0;
      padding-right: 0;
    }
  }

  .footer-apply .sub {
    display: block;
    margin: 0;
    max-width: 540px;
    font-size: 14px;
    color: rgba(215, 221, 236, 0.78);
  }


  .footer-apply form {
    min-height: 100%;
    padding: 14px;
    border-radius: 16px;
  }

  .footer-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(520px, 1fr) minmax(190px, 220px) minmax(110px, 110px);
    justify-content: normal;
    column-gap: 38px;
    row-gap: 24px;
    align-items: start;
    padding: 40px 0 50px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .footer-brand p {
    margin: 10px 0 0;
    max-width: 350px;
    color: rgba(201, 206, 220, 0.62);
    font-size: 15px;
    line-height: 1.45;
  }

  .footer-logo {
    width: 96px;
    height: auto;
    display: block;
    margin-top: -62px;
  }

  .footer-brand-links {
    margin-top: 14px;
    display: flex;
    gap: 20px;
  }

  .footer-brand-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 0;
    background: rgba(120, 78, 138, 0.34);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  }

  .footer-brand-links a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
  }

  .footer-col { padding-top: 0; }
  .footer-main .footer-col:nth-of-type(1) { justify-self: start; }
  .footer-main .footer-col:nth-of-type(2) { justify-self: start; }

  .footer-col h4 {
    margin: 0 0 14px;
    font-size: 13px;
    letter-spacing: 0.09em;
    color: rgba(241, 245, 255, 0.92);
    font-weight: 700;
  }

  .footer-col a,
  .footer-col p {
    display: block;
    margin: 0 0 10px;
    color: rgba(195, 201, 217, 0.68);
    font-size: 15px;
    line-height: 1.45;
  }
  .footer-col.minM a {
    margin-bottom: 0;
  }

  .footer-col p { margin-bottom: 0; }

  .footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding-top: 18px;
  }

  .footer-bottom p {
    margin: 0;
    color: rgba(186, 191, 205, 0.58);
    font-size: 12px;
  }

  .footer-bottom div {
    display: flex;
    gap: 20px;
  }

  .footer-bottom a {
    color: rgba(186, 191, 205, 0.6);
    font-size: 12px;
  }

  .drawer {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    z-index: 40;
    display: none;
    background: transparent;
  }

  .drawer.open { display: block; }

  .drawer-panel {
    width: 100%;
    background: #05060b;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,22,198,0.45);
    border-radius: 0 0 24px 24px;
    padding: 10px 16px 12px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.38);
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: var(--muted);
    font-size: 16px;
  }

  .menu-item.active { color: var(--pink); font-weight: 700; }
  .menu-item:last-child { border-bottom: none; }
  .menu-item span img { width: 14px; height: 14px; display: block; }

  .lang-page {
    position: fixed;
    inset: 0;
    z-index: 41;
    background: #05060b;
    display: none;
    padding: 24px;
  }

  .lang-page.open { display: block; }

  .lang-top {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--pink);
    font-size: 29px;
    margin-bottom: 32px;
    cursor: pointer;
  }

  .lang-page h3 { margin: 0 0 24px; font-size: 53px; font-weight: 500; }

  .lang-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--muted);
    font-size: 28px;
    padding: 12px 0;
  }

  .lang-option.active { color: var(--pink); font-weight: 700; }

  [data-animate] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease;
  }

  [data-animate].in {
    opacity: 1;
    transform: translateY(0);
  }

  @media (min-width: 1280px) {
    .desktop-nav { display: inline-flex; }
    #openMenu { display: none; }
    .hero-box { overflow: visible; }
    .hero-image {
      right: -242px;
      width: 1320px;
    }
  }

  @media (max-width: 1023px) {
    .topbar-row { min-height: 74px; }
    .hero-safe { padding: 0 14px; }
    .hero-box {
      min-height: 420px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.08);
    }
    .hero-image {
      inset: 0;
      transform: none;
      width: 100%;
      object-position: center center;
    }
    .hero-box::before {
      background: linear-gradient(90deg, rgba(5, 6, 10, 0.88) 0%, rgba(5, 6, 10, 0.62) 42%, rgba(5, 6, 10, 0.22) 100%);
    }
    .hero-content { padding: 24px 16px 20px; }
    .hero-meta { height: 48px; padding-right: 12px; gap: 10px; }
    .hero-meta-avatars { width: 74px; height: 34px; }
    .hero-authors { width: 29px; }
    .hero-authors + .hero-authors { margin-left: -8px; }
    .hero-meta-text { font-size: 14px; }
  }

  @media (max-width: 920px) {
    .grid::after { display: none; }
    .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cta { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; gap: 16px; }
    .vs { justify-self: center; width: 120px; }
    .list { min-height: 0; }
    .compare-card { padding: 16px; }
    .compare-card h4 { font-size: 22px; margin-bottom: 10px; }
    .compare-item {
      padding: 14px 0;
      grid-template-columns: 36px 1fr;
      gap: 12px;
      border-bottom: 0;
      position: relative;
    }
    .compare-item::after {
      content: "";
      position: absolute;
      left: 48px;
      right: 0;
      bottom: 0;
      height: 1px;
      background: rgba(255, 255, 255, 0.08);
    }
    .compare-item:last-of-type::after { display: none; }
    .compare-icon { width: 24px; height: 24px; }
    .compare-icon::before { left: 7px; top: 7px; width: 8px; height: 8px; }
    .compare-item strong { font-size: 13px; }
    .compare-item p { font-size: 12px; }
    .compare-rocket { width: 72px; right: -22px; bottom: -8px; }
  }

  @media (max-width: 820px) and (min-width: 641px) {
    .footer-main {
      grid-template-columns: minmax(282px, 1fr) minmax(145px, 170px) minmax(130px, 150px);
      column-gap: 20px;
      row-gap: 14px;
      padding: 24px 0 20px;
    }
    .footer-logo { width: 102px; }
    .footer-brand p {
      max-width: 340px;
      font-size: 14px;
      line-height: 1.28;
      margin-top: 12px;
    }
    .footer-brand-links { margin-top: 14px; }
    .footer-col { padding-top: 30px; }
    .footer-col h4 {
      font-size: 11px;
      margin-bottom: 10px;
      letter-spacing: 0.07em;
    }
    .footer-col a, .footer-col p {
      font-size: 12px;
      margin-bottom: 7px;
      line-height: 1.35;
    }
    .footer-bottom {
      padding-top: 14px;
      align-items: flex-start;
    }
    .footer-bottom p { font-size: 11px; }
    .footer-bottom div { display: none; }
  }

  @media (max-width: 640px) {
    .wrap { padding: 0 14px; }
    .split{ padding:10px 0 0!important; }
    .full-bleed-content { padding: 0 14px; }
    .hero {
      padding-top: 0;
      padding-bottom: 0;
    }
    .hero-safe { padding: 0; }
    .hero-box {
      min-height: 0;
      border-radius: 0;
      border: 0;
      display: block;
      overflow: hidden;
      background: #07080d;
    }
    .hero-image {
      position: relative;
      inset: auto;
      width: 100%;
      height: auto;
      aspect-ratio: 375 / 265;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
    .hero-box::before {
      background: linear-gradient(180deg, rgba(5, 6, 10, 0.08) 0%, rgba(5, 6, 10, 0.42) 100%);
    }
    .hero-content {
      position: relative;
      max-width: none;
      padding: 14px 14px 24px;
      background: #07080d;
    }
    .eyebrow { display: none; }
    h1 {
      font-size: 24px;
      line-height: 1.2;
      margin-bottom: 0;
    }
    h2 {
      font-size: 28px;
      margin: 10px 0 36px;
    }
    .sub { display: none; }
    .btn { width: 100%; font-size: 16px; }
    .hero-actions {
      margin-top: 18px;
      display: block;
      position: static;
    }
    .hero-meta {
      display: inline-flex;
      position: absolute;
      left: 14px;
      top: -56px;
      z-index: 3;
      transform: scale(0.92);
      transform-origin: left center;
    }
    .streamers-row {
      grid-auto-columns: 170px;
      gap: 10px;
      padding-bottom: 10px;
    }
    .streamer-card img,
    .streamer-card video {
      height: 372px;
      border-radius: 9px;
    }
    .streamer-card span { font-size: 9px; }
    .grid { grid-template-columns: 1fr 1fr; gap: 30px 10px; padding-top: 20px; }
    .card { min-height: 154px; padding: 52px 10px 18px; border-radius: 16px; }
    .card h3 { font-size: 13px; margin-bottom: 5px; }
    .card p { font-size: 10px; line-height: 1.25; margin-bottom: 12px; }
    .card .icon { top: -26px; }
    .card .icon img { width: 68px; height: 68px; }
    .stats {
      padding: 28px 14px 26px;
      margin-top: 4px;
    }
    .stats-top {
      grid-template-columns: 1fr;
      gap: 14px;
      max-width: 380px;
    }
    .stat strong { font-size: 46px; }
    .stat span { font-size: 11px; margin-top: 6px; }
    .stats-divider { margin: 18px auto 14px; }
    .stats-cover {
      flex-direction: column;
      gap: 8px;
      font-size: 10px;
    }
    .stats-cover p {
      font-size: 11px;
      line-height: 1.4;
      text-align: center;
    }
    .reviews { gap: 10px; padding-bottom: 8px; }
    .review-row { gap: 10px; animation-duration: 28s; }
    .review-row-bottom { animation-duration: 31s; }
    .review { width: 290px; height: 152px; padding: 14px 14px 12px; }
    .review-text { font-size: 13px; line-height: 1.35; }
    .reviewer { gap: 8px; margin-top: 8px; }
    .review-avatar { width: 36px; height: 36px; }
    .reviewer strong { font-size: 13px; }
    .reviewer span { font-size: 11px; }
    .contact-cta {
      width: min(100%, var(--max));
      margin-left: auto;
      margin-right: auto;
      padding: 0 14px 24px;
    }
    .contact-sub {
      font-size: 13px;
      margin-bottom: 16px;
      padding: 0 8px;
    }
    .contacts {
      grid-template-columns: 1fr;
      gap: 12px;
      max-width: none;
    }
    .contact {
      min-height: 84px;
      border-radius: 14px;
      padding: 12px;
      gap: 10px;
    }
    .contact-icon {
      width: 38px;
      height: 38px;
      font-size: 18px;
    }
    .contact-meta small {
      font-size: 11px;
      line-height: 1.1;
    }
    .contact-meta strong {
      font-size: 18px;
      line-height: 1.15;
    }
    .footer-main {
      grid-template-columns: 1fr 1fr;
      gap: 16px 12px;
      padding-bottom: 20px;
    }
    .footer-brand { grid-column: 1 / -1; }
    .footer-apply {
      padding: 8px 0 18px;
    }
    .footer-apply .cta {
      width: 100%;
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .footer-apply h2 {
      text-align: center;
      font-size: 23px;
      margin-bottom: 8px;
    }
    .footer-apply .sub {
      text-align: center;
      font-size: 13px;
      margin: 0 auto;
    }
    .footer-logo { width: 90px; margin-top: -30px; }
    .footer-brand p { font-size: 16px; margin-top: 10px; }
    .footer-col { padding-top: 0; }
    .footer-main .footer-col:nth-of-type(1),
    .footer-main .footer-col:nth-of-type(2) { justify-self: start; }
    .footer-col h4 { margin-bottom: 10px; font-size: 12px; }
    .footer-col a, .footer-col p { font-size: 14px; margin-bottom: 6px; }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      margin-top: 10px;
    }
    .footer-bottom p, .footer-bottom a { font-size: 12px; }
    .menu-item { font-size: 24px; }
    .lang-page h3, .lang-option { font-size: 24px; }
    .drawer { top: 74px; }
    .drawer-panel { border-radius: 0 0 20px 20px; padding: 10px 16px 14px; }
  }
