:root {
      --bg: #07090d;
      --bg-2: #0c1016;
      --card: #12171f;
      --line: rgba(255,255,255,.08);
      --text: #f4f7f5;
      --muted: #9aa6a0;
      --neon: #3dff7a;
      --gold: #f0c43a;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: "Manrope", system-ui, sans-serif;
      background: var(--bg);
      color: #fff;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }
    p { color: #fff; }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; color: inherit; }
    .wrap { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }

    header {
      position: sticky; top: 0; z-index: 30;
      height: 82px;
      background: rgba(7,9,13,.94);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line);
    }
    .header-inner {
      height: 100%;
      display: flex; align-items: center; justify-content: space-between;
      gap: 24px;
    }
    .logo {
      display: flex; align-items: center; gap: 12px;
      font-family: "Unbounded", sans-serif;
      font-size: 15px; font-weight: 600; letter-spacing: .08em;
      text-transform: uppercase;
    }
    .logo img {
      width: 148px;
      height: auto;
      max-height: 72px;
      object-fit: contain;
    }
    nav { display: flex; align-items: center; gap: 22px; }
    nav a {
      font-size: 13px; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: rgba(255,255,255,.78);
    }
    nav a:hover { color: var(--neon); }
    nav .nav-lk {
      padding: 10px 16px;
      font-size: 12px;
      letter-spacing: .06em;
      white-space: nowrap;
      color: var(--neon);
      flex-shrink: 0;
    }
    nav .nav-lk:hover {
      color: #04140a;
      background: var(--neon);
    }
    nav .nav-lk svg { display: block; flex-shrink: 0; }
    .burger {
      display: none; width: 42px; height: 42px;
      border: 1px solid var(--line); background: rgba(0,0,0,.3);
      border-radius: 10px; cursor: pointer; color: #fff;
    }

    .hero {
      position: relative;
      min-height: 88vh;
      display: flex;
      align-items: center;
      padding: 70px 0 80px;
      background:
        linear-gradient(90deg, rgba(6,10,16,.72) 0%, rgba(6,10,16,.28) 42%, rgba(6,10,16,.08) 100%),
        url("hero-clean.jpg") center right / cover no-repeat;
    }
    .hero-banner { display: none; }
    .hero-copy { display: block; max-width: 680px; }
    .hero-copy h1 {
      font-family: "Unbounded", sans-serif;
      font-size: clamp(42px, 7vw, 86px);
      line-height: .92;
      letter-spacing: -0.03em;
      text-transform: uppercase;
      margin: 10px 0 18px;
    }
    .hero-copy .sub {
      font-size: clamp(15px, 1.6vw, 20px);
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255,255,255,.78);
      max-width: 520px;
      margin-bottom: 32px;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      border-radius: 12px; padding: 14px 22px;
      font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
      font-size: 13px; cursor: pointer; border: 0;
      transition: .15s ease;
    }
    .btn-neon {
      background: transparent;
      color: var(--neon);
      border: 2px solid var(--neon);
      box-shadow: 0 0 24px rgba(61,255,122,.12);
    }
    .btn-neon:hover {
      background: var(--neon);
      color: #04140a;
      box-shadow: 0 0 28px rgba(61,255,122,.35);
    }
    .btn-fill { background: var(--neon); color: #04140a; }
    .btn-fill:hover { filter: brightness(1.08); }
    .btn-ghost {
      background: transparent;
      border: 1px solid rgba(255,255,255,.16);
      color: #fff;
    }
    .btn-ghost:hover {
      border-color: var(--neon);
      color: var(--neon);
      box-shadow: 0 0 22px rgba(61,255,122,.22);
    }
    .glow {
      border: 1px solid var(--line);
      transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }
    .glow:hover {
      border-color: var(--neon);
      box-shadow: 0 0 0 1px rgba(61,255,122,.18), 0 0 28px rgba(61,255,122,.16);
      transform: translateY(-3px);
    }

    .lead-block { max-width: 820px; }
    .lead-block h2, .split-block h2 {
      font-family: "Unbounded", sans-serif;
      font-size: clamp(28px, 3.4vw, 42px);
      line-height: 1.15;
      margin-bottom: 18px;
    }
    .lead-block p, .split-block p { color: #fff; font-size: 18px; }
    .split-block {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 28px;
      align-items: center;
    }
    .split-photo {
      margin: 0;
      border-radius: 18px;
      overflow: hidden;
      min-height: 240px;
    }
    .split-photo img {
      width: 100%;
      height: 100%;
      min-height: 240px;
      object-fit: cover;
      display: block;
    }

    .plus-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .plus-card {
      background: var(--card);
      border-radius: 18px;
      padding: 26px 24px;
      min-height: 200px;
    }
    .plus-card h3 {
      font-family: "Unbounded", sans-serif;
      font-size: 18px;
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .plus-card p { color: #fff; font-size: 15px; }
    .plus-ico {
      width: 64px; height: 64px; margin: 0 0 14px;
      display: block;
      background: none;
    }
    .plus-ico img {
      width: 64px; height: 64px;
      object-fit: contain;
      object-position: center;
      display: block;
      background: transparent;
      filter: brightness(1.35) contrast(1.15) saturate(1.2);
    }

    .gallery-head { text-align: center; max-width: 720px; margin: 0 auto 32px; }
    .gallery-head .tag {
      color: var(--neon); font-weight: 800; font-size: 13px;
      letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px;
    }
    .gallery-head p { color: #fff; }
    .g-grid {
      display: grid;
      grid-template-columns: 1.25fr 1fr 1fr;
      grid-template-rows: 220px 220px;
      gap: 14px;
    }
    .g-grid a {
      display: block; overflow: hidden; border-radius: 16px;
      border: 1px solid var(--line);
      background: #0b0f14;
    }
    .g-grid a:first-child { grid-row: 1 / span 2; }
    .g-grid img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .35s ease;
    }
    .g-grid a:hover img { transform: scale(1.05); }
    .g-more { display: none; margin-top: 14px; }
    .g-more.show { display: grid; }
    .g-more {
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .g-more a {
      display: block; overflow: hidden; border-radius: 16px;
      aspect-ratio: 16/10; border: 1px solid var(--line);
    }
    .g-more img { width: 100%; height: 100%; object-fit: cover; }
    .g-toggle-wrap { text-align: center; margin-top: 22px; }
    .g-toggle {
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 999px;
      padding: 12px 22px;
      font-weight: 700;
      cursor: pointer;
    }
    .g-toggle:hover {
      border-color: var(--neon);
      color: var(--neon);
      box-shadow: 0 0 22px rgba(61,255,122,.2);
    }

    .lightbox {
      position: fixed; inset: 0; z-index: 80;
      background: rgba(0,0,0,.88);
      display: none; align-items: center; justify-content: center;
      padding: 24px;
    }
    .lightbox.open { display: flex; }
    .lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; border-radius: 12px; }
    .lb-close, .lb-prev, .lb-next {
      position: absolute; background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.16); color: #fff;
      width: 46px; height: 46px; border-radius: 50%; cursor: pointer; font-size: 22px;
    }
    .lb-close { top: 18px; right: 18px; }
    .lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
    .lb-next { right: 18px; top: 50%; transform: translateY(-50%); }

    .joy {
      background:
        radial-gradient(900px 300px at 10% 0%, rgba(61,255,122,.08), transparent 50%),
        var(--card);
      border-radius: 24px;
      padding: 48px 44px;
    }
    .joy h2 {
      font-family: "Unbounded", sans-serif;
      font-size: clamp(26px, 3vw, 38px);
      margin-bottom: 16px;
    }
    .joy p { color: #fff; font-size: 17px; }
    .joy { pointer-events: auto; }
    .joy:hover { transform: none; box-shadow: none; border-color: transparent; }
    .joy.split-block { align-items: center; }

    .contact-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 22px;
    }
    .c-item {
      background: #0b100e;
      border-radius: 16px;
      padding: 18px 18px 16px;
    }
    .c-item b {
      display: block;
      color: var(--neon);
      font-size: 12px;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .c-item p, .c-item a { color: #e8eee9; font-weight: 700; }

    section { padding: 84px 0; }
    .sec-title {
      text-align: center;
      font-family: "Unbounded", sans-serif;
      font-size: clamp(28px, 3.4vw, 40px);
      margin-bottom: 36px;
      letter-spacing: -0.02em;
    }

    .tariffs {
      display: grid;
      grid-template-columns: 1fr 1.12fr 1fr;
      gap: 18px;
      align-items: stretch;
    }
    .t-card {
      position: relative;
      background: var(--card);
      border-radius: 18px;
      padding: 36px 26px 28px;
      text-align: left;
      min-height: 260px;
    }
    .t-card.featured {
      background: #101820;
      border: 2px solid var(--gold);
      box-shadow: 0 0 0 1px rgba(240,196,58,.12), 0 0 36px rgba(240,196,58,.12);
      transform: translateY(-8px);
    }
    .t-num {
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #c9d3cd;
      margin-bottom: 16px;
    }
    .t-when {
      font-family: "Unbounded", sans-serif;
      font-size: 22px;
      margin-bottom: 8px;
    }
    .t-card .price {
      font-family: "Unbounded", sans-serif;
      font-size: 48px;
      line-height: 1;
      color: #fff;
      margin: 4px 0 14px;
    }
    .t-card .price.gold { color: var(--gold); }
    .t-card .price span {
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0;
      color: var(--muted);
      margin-left: 4px;
    }
    .t-card p { color: #fff; font-size: 14px; }
    .t-badge {
      position: absolute;
      top: -12px;
      right: 18px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 6px 10px;
      border-radius: 999px;
    }
    .t-badge-main { background: var(--gold); color: #1a1406; }
    .t-badge-sale { background: rgba(61,255,122,.16); color: var(--neon); border: 1px solid rgba(61,255,122,.35); }
    .ok {
      display: inline-flex; align-items: center; gap: 8px;
      margin-top: 18px; color: var(--neon); font-weight: 700; font-size: 14px;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .s-card {
      background: var(--card);
      border-radius: 18px;
      padding: 28px 24px;
      text-align: center;
      min-width: 0;
    }
    .s-card h3 {
      font-family: "Unbounded", sans-serif;
      font-size: 18px; text-transform: uppercase;
      margin: 8px 0 10px;
      overflow-wrap: anywhere;
      hyphens: auto;
    }
    .s-card p { color: #fff; font-size: 14px; }
    .term-badges { display: flex; justify-content: center; gap: 8px; margin: 12px 0; }
    .term-badges span {
      width: 42px; height: 42px; border-radius: 8px;
      display: grid; place-items: center;
      font-weight: 800; font-size: 18px; color: #fff;
    }
    .b { background: #2f6bff; }
    .c { background: #3db8ff; }
    .d { background: #2a8cff; }

    .about {
      display: grid;
      grid-template-columns: .7fr 1.1fr .7fr;
      gap: 22px;
      align-items: center;
    }
    .about h2 {
      font-family: "Unbounded", sans-serif;
      font-size: 32px; margin-bottom: 16px;
    }
    .about .addr {
      font-weight: 800; letter-spacing: .04em;
      text-transform: uppercase; font-size: 14px;
      color: rgba(255,255,255,.86);
      margin-bottom: 16px;
    }
    .map-frame {
      border-radius: 18px; overflow: hidden;
      border: 1px solid var(--line);
      background: #fff;
    }
    .map-frame img, .map-frame iframe { width: 100%; height: 400px; border: 0; display: block; }
    .shot {
      width: min(260px, 100%);
      aspect-ratio: 1;
      border-radius: 50%;
      overflow: hidden;
      border: 6px solid #1a212b;
      box-shadow: 0 0 0 2px var(--neon), 0 20px 40px rgba(0,0,0,.4);
      margin: 0 auto;
    }
    .shot img { width: 100%; height: 100%; object-fit: cover; }

    .how { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .how article {
      background: var(--card);
      border-radius: 16px;
      padding: 22px;
    }
    .how b { color: var(--neon); font-family: "Unbounded", sans-serif; font-size: 20px; display: block; margin-bottom: 8px; }
    .how p { color: #fff; font-size: 14px; }

    .safety-head { text-align: center; max-width: 720px; margin: 0 auto 32px; }
    .safety-head .tag {
      display: inline-block;
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 6px 12px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--neon);
      margin-bottom: 14px;
    }
    .safety-head .sec-title { margin-bottom: 10px; }
    .safety-head em {
      font-style: italic;
      font-family: Georgia, "Times New Roman", serif;
      color: var(--neon);
      font-weight: 500;
    }
    .safety-head p { color: #fff; }
    .safety-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .safety-card {
      background: var(--card);
      border-radius: 18px;
      padding: 26px 22px;
    }
    .safety-ico {
      width: 42px; height: 42px;
      color: var(--neon);
      margin-bottom: 18px;
    }
    .safety-ico svg { width: 36px; height: 36px; }
    .safety-card h3 {
      font-family: "Unbounded", sans-serif;
      font-size: 18px;
      margin-bottom: 10px;
    }
    .safety-card p { color: #fff; font-size: 14px; }

    .reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    #reviews { scroll-margin-top: 110px; }
    .rev-wrap {
      display: grid;
      grid-template-columns: 46px 1fr 46px;
      gap: 12px;
      align-items: stretch;
      padding: 14px 0 8px;
    }
    .rev-viewport {
      overflow-x: hidden;
      overflow-y: visible;
      padding: 12px 8px 16px;
    }
    .rev-track {
      display: flex;
      gap: 16px;
      transition: transform .35s ease;
    }
    .rev {
      background: var(--card);
      border-radius: 16px;
      padding: 22px;
      flex: 0 0 calc((100% - 32px) / 3);
      min-height: 260px;
      display: flex;
      flex-direction: column;
    }
    .rev p {
      color: #fff;
      font-size: 14px;
      margin: 10px 0 14px;
      flex: 1;
    }
    .rev b { display: block; }
    .rev-date { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; }
    .stars { color: var(--gold); letter-spacing: 2px; }
    .rev-nav {
      width: 46px; height: 46px; border-radius: 50%;
      border: 1px solid var(--line);
      background: var(--card);
      color: #fff;
      font-size: 26px;
      cursor: pointer;
    }
    .rev-nav:hover {
      border-color: var(--neon);
      color: var(--neon);
      box-shadow: 0 0 18px rgba(61,255,122,.22);
    }
    .rev-dots {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin-top: 16px;
    }
    .rev-dots button {
      width: 7px; height: 7px; border-radius: 50%;
      border: 0; background: rgba(255,255,255,.22); cursor: pointer;
    }
    .rev-dots button.on { background: var(--neon); }
    .rev-all { text-align: center; margin-top: 22px; }
    .yrev {
      position: relative;
      max-width: 860px;
      height: 640px;
      margin: 0 auto;
      border-radius: 18px;
      overflow: hidden;
      background: var(--card);
    }
    .yrev iframe {
      width: 100%;
      height: calc(100% - 28px);
      border: 0;
      display: block;
      background: #12171f;
    }
    .yrev-cap {
      position: absolute;
      left: 0; right: 0; bottom: 8px;
      text-align: center;
      color: rgba(255,255,255,.45);
      font-size: 11px;
    }
    .yrev-cap:hover { color: var(--neon); }


    .faq { max-width: 860px; margin: 0 auto; display: grid; gap: 10px; }
    details {
      background: var(--card);
      border-radius: 14px;
      padding: 4px 18px;
    }
    details[open] {
      border-color: var(--neon);
      box-shadow: 0 0 0 1px rgba(61,255,122,.18), 0 0 24px rgba(61,255,122,.12);
    }
    summary { cursor: pointer; list-style: none; padding: 14px 0; font-weight: 800; }
    summary::-webkit-details-marker { display: none; }
    details p { color: #fff; padding-bottom: 14px; font-size: 15px; }

    .contact-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 20px;
    }
    .contact-info {
      background: linear-gradient(180deg, #121a14, #0c1210);
      border: 1px solid rgba(61,255,122,.18);
      border-radius: 20px;
      padding: 36px;
    }
    .big-phone {
      font-family: "Unbounded", sans-serif;
      font-size: clamp(24px, 3vw, 34px);
      display: block; margin: 12px 0 8px;
      color: var(--neon);
    }
    form {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 28px;
      display: grid; gap: 12px;
    }
    label { font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
    input, textarea, select {
      width: 100%; background: #0b0f14;
      border: 1px solid var(--line);
      border-radius: 12px; padding: 13px 14px; outline: none;
    }
    input:focus, textarea:focus, select:focus { border-color: var(--neon); }
    textarea { min-height: 100px; resize: vertical; }

    footer {
      border-top: 1px solid var(--line);
      padding: 28px 0 36px;
    }
    .foot {
      display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
      align-items: center; color: var(--muted); font-size: 14px;
    }
    .foot .logo { font-size: 13px; color: #fff; }
    .foot .logo img { width: 120px; max-height: 58px; }

    .float-wa {
      position: fixed; right: 18px; bottom: 18px; z-index: 50;
      width: 58px; height: 58px; border-radius: 50%;
      background: #25D366; color: #fff;
      display: grid; place-items: center;
      box-shadow: 0 10px 28px rgba(37,211,102,.4);
    }

    @media (max-width: 980px) {
      nav { display: none; }
      nav.open {
        display: flex; flex-direction: column; gap: 16px;
        position: absolute; top: 82px; left: 0; right: 0;
        background: #0b0f14; padding: 20px 24px 28px;
        border-bottom: 1px solid var(--line);
      }
      .burger { display: grid; place-items: center; }
      .tariffs, .about, .how, .reviews, .contact-grid, .plus-grid, .contact-cards, .g-more, .safety-grid { grid-template-columns: 1fr 1fr; }
      .services { grid-template-columns: 1fr; }
      .rev { flex-basis: calc((100% - 16px) / 2); min-height: 240px; }
      .g-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 180px 180px; }
      .g-grid a:first-child { grid-row: 1; grid-column: 1 / span 2; }
      .joy { padding: 28px 22px; }
      .split-block { grid-template-columns: 1fr; }
      .t-card.featured { transform: none; }
      .hero { min-height: 78vh; background-position: 70% center; }
      .shot { margin-top: 8px; }
    }
    @media (max-width: 640px) {
      .wrap { width: min(1200px, calc(100% - 24px)); }
      .hero { padding: 110px 0 64px; }
      .hero-copy h1 { font-size: 40px; }
      .logo span { display: none; }
      .rev-wrap { grid-template-columns: 36px 1fr 36px; }
      .rev { flex-basis: 100%; min-height: 220px; }
      .services,
      .plus-grid,
      .tariffs,
      .how,
      .safety-grid,
      .contact-cards,
      .contact-grid,
      .g-more { grid-template-columns: 1fr; }
      .s-card { padding: 22px 18px; }
      .s-card h3 { font-size: 16px; line-height: 1.25; }
      .term-badges span { width: 38px; height: 38px; font-size: 16px; }
    }

    .section-alt { background: var(--bg-2); }
    .mt-36 { margin-top: 36px; }
    .mt-28 { margin-top: 28px; }
    .mt-22 { margin-top: 22px; }
    .mb-8 { margin-bottom: 8px; }
    .mb-10 { margin-bottom: 10px; }
    .mb-16 { margin-bottom: 16px; }
    .mb-18 { margin-bottom: 18px; }
    .title-left { text-align: left; }
    .text-gold { color: var(--gold); }
    .text-muted { color: var(--muted); }
    .check-mark { color: var(--neon); font-size: 28px; margin-bottom: 6px; }
    .form-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
    .form-title { font-family: "Unbounded", sans-serif; font-size: 22px; }
    .form-ok { display: none; color: var(--neon); font-weight: 700; }

    .mt-18 { margin-top: 18px; }
