 * { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg: #090b0c;
      --bg-soft: #0f1417;
      --panel: rgba(255,255,255,0.04);
      --panel-strong: rgba(255,255,255,0.07);
      --line: rgba(255,255,255,0.10);
      --text: #f4f6f2;
      --muted: #a5afa7;
      --muted-2: #7d8780;
      --accent: #a4fe1b;
      --shadow: 0 24px 80px rgba(0,0,0,0.45);
      --container: 1320px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: Inter, Arial, sans-serif;
      background:
        radial-gradient(circle at top right, rgba(164,254,27,0.08), transparent 22%),
        radial-gradient(circle at left center, rgba(255,255,255,0.04), transparent 18%),
        linear-gradient(180deg, #070809 0%, #0a0e10 30%, #090b0c 100%);
      color: var(--text);
      line-height: 1.5;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
      opacity: 0.45;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .section {
      position: relative;
      padding: 96px 0;
    }

    .section::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 20px;
      bottom: 20px;
      transform: translateX(-50%);
      width: min(var(--container), calc(100% - 32px));
      border-radius: 30px;
      pointer-events: none;
      opacity: 0.55;
      z-index: 0;
    }

    .pattern-grid::before {
      background-image:
        linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(180deg, transparent, black 12%, black 88%, transparent);
    }

    .pattern-radial::before {
      background:
        radial-gradient(circle at 12% 20%, rgba(164,254,27,0.09), transparent 20%),
        radial-gradient(circle at 86% 74%, rgba(255,255,255,0.05), transparent 16%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.018), transparent 40%);
    }

    .pattern-diagonal::before {
      background: repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 22px);
      mask-image: linear-gradient(180deg, transparent, black 10%, black 90%, transparent);
    }

    .pattern-frame::before {
      border: 1px solid rgba(255,255,255,0.04);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
      background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0));
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 60;
      backdrop-filter: blur(18px);
      background: rgba(8,10,11,0.72);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      min-height: 82px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.24em;
      text-transform: uppercase;
    }

    .logo-mark {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      position: relative;
      border: 1px solid rgba(164,254,27,0.35);
      background:
        linear-gradient(180deg, rgba(164,254,27,0.14), rgba(164,254,27,0.02)),
        rgba(255,255,255,0.02);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), 0 10px 30px rgba(0,0,0,0.3);
    }

    .logo-mark::before {
      content: "V";
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      font-size: 20px;
      font-weight: 900;
      color: var(--accent);
      text-shadow: 0 0 18px rgba(164,254,27,0.4);
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav a {
      color: var(--muted);
      font-size: 14px;
      transition: 0.24s ease;
      position: relative;
      padding: 10px 2px;
    }

    .nav a::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: 2px;
      width: 0;
      height: 1px;
      background: linear-gradient(90deg, var(--accent), rgba(164,254,27,0.2));
      box-shadow: 0 0 18px rgba(164,254,27,0.4);
      transition: width 0.26s ease;
    }

    .nav a:hover { color: var(--text); }
    .nav a:hover::before { width: 100%; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      padding: 0 22px;
      border-radius: 16px;
      border: 1px solid transparent;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      transition: 0.25s ease;
      cursor: pointer;
    }

    .btn-sm {
      min-height: 42px;
      padding: 0 14px;
      border-radius: 12px;
      font-size: 11px;
      letter-spacing: 0.08em;
    }

    .btn-primary {
      color: #0a0d0a;
      background: linear-gradient(180deg, #b9ff59 0%, #a4fe1b 55%, #8fe400 100%);
      box-shadow: 0 14px 40px rgba(164,254,27,0.22), 0 0 0 1px rgba(255,255,255,0.08) inset;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 50px rgba(164,254,27,0.28), 0 0 36px rgba(164,254,27,0.26);
    }

    .btn-secondary {
      color: var(--text);
      border-color: rgba(255,255,255,0.12);
      background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
    }

    .btn-secondary:hover {
      border-color: rgba(164,254,27,0.34);
      background: linear-gradient(180deg, rgba(164,254,27,0.10), rgba(255,255,255,0.03));
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.02);
      color: var(--muted);
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 20px rgba(164,254,27,0.85);
    }

    h1, h2, h3, h4 {
      font-family: Inter, Arial, sans-serif;
      letter-spacing: -0.03em;
      line-height: 0.98;
      font-weight: 800;
    }

    h1 {
      font-size: clamp(44px, 6.8vw, 92px);
      max-width: 900px;
      text-transform: uppercase;
    }

    h2 {
      font-size: clamp(32px, 4vw, 56px);
      max-width: 780px;
      text-transform: uppercase;
    }

    h3 { font-size: clamp(20px, 2vw, 28px); }

    .lead {
      font-size: clamp(18px, 2vw, 22px);
      line-height: 1.45;
      color: #d5ddd6;
      max-width: 760px;
    }

    .muted {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 28px;
      margin-bottom: 36px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      position: relative;
    }

    .hero {
      padding: 42px 0 64px;
    }

    .hero-shell {
      position: relative;
      min-height: 720px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 34px;
      overflow: hidden;
      background:
        linear-gradient(115deg, rgba(7,9,10,0.94) 0%, rgba(7,9,10,0.72) 42%, rgba(7,9,10,0.30) 100%),
        url('../img/h-blag.png') center/cover;
      box-shadow: var(--shadow);
    }

    .hero-shell-game {
      background:
        linear-gradient(115deg, rgba(7,9,10,0.94) 0%, rgba(7,9,10,0.72) 42%, rgba(7,9,10,0.30) 100%),
        url('../img/razdel-igra.png') center/cover !important;
    }

    .hero-shell-sport {
      background:
        linear-gradient(115deg, rgba(7,9,10,0.94) 0%, rgba(7,9,10,0.72) 42%, rgba(7,9,10,0.30) 100%),
        url('../img/razdel-sport.png') center/cover !important;
    }

    .hero-grid {
      min-height: 720px;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.72fr);
      gap: 28px;
      align-items: end;
      padding: 62px;
    }

    .breadcrumbs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      margin-bottom: 18px;
      color: var(--muted);
      font-size: 13px;
    }

    .breadcrumbs span:last-child { color: var(--text); }

    .hero-copy p {
      margin-top: 22px;
      max-width: 720px;
      font-size: 18px;
      color: #d3ddd5;
      line-height: 1.65;
    }

    .hero-points,
    .filters,
    .products-grid,
    .cards-4,
    .cards-3,
    .grid-2,
    .gallery-grid,
    .footer-grid,
    .cta-grid,
    .spec-grid {
      display: grid;
      gap: 18px;
    }

    .hero-points { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 26px; max-width: 760px; }
    .filters { grid-template-columns: repeat(7, minmax(0, 1fr)); }
    .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: 1.1fr 0.8fr 0.8fr 1fr; }
    .cta-grid { grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr); align-items: end; }
    .spec-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 24px; }

    .hero-point,
    .filter-btn,
    .product-card,
    .mini-card,
    .wide-panel,
    .gallery-item,
    .cta-box,
    .cta-side,
    .contact-card {
      min-width: 0;
    }

    .hero-point,
    .mini-card,
    .wide-panel,
    .cta-side,
    .contact-card {
      border: 1px solid rgba(255,255,255,0.08);
      background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
      box-shadow: var(--shadow);
    }

    .hero-point {
      padding: 16px;
      border-radius: 18px;
      color: var(--muted);
      font-size: 13px;
      min-height: 78px;
      display: flex;
      align-items: end;
    }

    .glass-card,
    .mini-card,
    .contact-card,
    .cta-side {
      padding: 24px;
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,0.08);
      background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
      box-shadow: 0 24px 50px rgba(0,0,0,0.24);
      backdrop-filter: blur(16px);
    }

    .hero-side {
      display: grid;
      gap: 16px;
      align-self: stretch;
      align-content: end;
    }

    .hero-side-title,
    .mini-card-number,
    .product-code {
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 12px;
    }

    .wide-panel {
      padding: 34px;
      border-radius: 30px;
      position: relative;
      overflow: hidden;
    }

    .wide-panel::after,
    .mini-card::after,
    .cta-box::after {
      content: "";
      position: absolute;
      inset: auto -10% -20% auto;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(164,254,27,0.12), transparent 70%);
      pointer-events: none;
    }

    .filter-btn {
      min-height: 48px;
      padding: 0 16px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
      color: var(--text);
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.22s ease;
    }

    .filter-btn:hover,
    .filter-btn.active {
      border-color: rgba(164,254,27,0.30);
      background: linear-gradient(180deg, rgba(164,254,27,0.12), rgba(255,255,255,0.03));
      box-shadow: 0 0 20px rgba(164,254,27,0.10);
    }

    .product-card {
      display: flex;
      flex-direction: column;
      border-radius: 26px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
      box-shadow: var(--shadow);
      transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    }

    .product-card.is-hidden {
      display: none;
    }

    .product-card:hover {
      transform: translateY(-4px);
      border-color: rgba(164,254,27,0.22);
      box-shadow: 0 26px 70px rgba(0,0,0,0.46), 0 0 0 1px rgba(164,254,27,0.05) inset;
    }

    .product-image {
      height: 260px;
      background-size: cover;
      background-position: center;
      position: relative;
      cursor: zoom-in;
    }

    .product-image-open {
      position: absolute;
      right: 14px;
      top: 14px;
      z-index: 2;
      min-height: 34px;
      padding: 0 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(9,11,12,0.58);
      color: #f1f5ef;
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      backdrop-filter: blur(10px);
      pointer-events: none;
    }

    .product-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(9,11,12,0.08), rgba(9,11,12,0.42));
    }

    .product-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    

    .product-specs {
      display: grid;
      gap: 0;
      padding: 2px 0 4px;
    }

    .product-spec {
      display: grid;
      grid-template-columns: 132px 1fr;
      gap: 12px;
      align-items: start;
      padding: 10px 0;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .product-spec:first-child {
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .product-spec-label {
      font-size: 11px;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--muted-2);
      line-height: 1.45;
    }

    .product-spec-value {
      font-size: 13px;
      color: #e4ece4;
      line-height: 1.55;
    }

    .product-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: auto;
      padding-top: 6px;
    }

    .product-actions .btn-primary {
      box-shadow: none;
      background: linear-gradient(180deg, rgba(164,254,27,0.14), rgba(164,254,27,0.08));
      color: var(--text);
      border: 1px solid rgba(164,254,27,0.22);
    }

    .product-actions .btn-primary:hover {
      box-shadow: 0 0 18px rgba(164,254,27,0.12);
      transform: translateY(-1px);
    }

    .product-actions .btn-secondary {
      background: rgba(255,255,255,0.03);
    }

    .mini-card {
      padding: 26px;
      border-radius: 22px;
      position: relative;
      overflow: hidden;
    }

    .mini-card.highlight {
      background: linear-gradient(180deg, rgba(164,254,27,0.12), rgba(255,255,255,0.03));
      border-color: rgba(164,254,27,0.20);
    }

    .gallery-item {
      min-height: 280px;
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      background-size: cover;
      background-position: center;
      position: relative;
      box-shadow: var(--shadow);
    }

    .gallery-item::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7,9,10,0.08), rgba(7,9,10,0.78));
    }

    .gallery-item span {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 16px;
      z-index: 1;
      color: #f0f5ef;
      font-size: 14px;
      font-weight: 600;
    }

    .cta-box {
      border-radius: 32px;
      padding: 42px;
      border: 1px solid rgba(164,254,27,0.2);
      background: linear-gradient(180deg, rgba(164,254,27,0.10), rgba(255,255,255,0.03));
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 999;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(5,7,8,0.92);
      backdrop-filter: blur(10px);
    }

    .lightbox.active {
      display: flex;
    }

    .lightbox-inner {
      position: relative;
      width: min(1400px, 100%);
      height: min(88vh, 980px);
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.10);
      box-shadow: 0 30px 120px rgba(0,0,0,0.65);
      background: #090b0c;
    }

    .lightbox-image {
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: #090b0c;
    }

    .lightbox-close {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 2;
      min-height: 42px;
      padding: 0 14px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(9,11,12,0.72);
      color: var(--text);
      cursor: pointer;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    footer {
      padding: 36px 0 52px;
      border-top: 1px solid rgba(255,255,255,0.06);
      margin-top: 32px;
    }

    .footer-title {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--muted-2);
      margin-bottom: 12px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a,
    .footer-links span {
      color: var(--muted);
      font-size: 14px;
    }

    @media (max-width: 1200px) {
      .hero-grid,
      .products-grid,
      .cards-4,
      .cards-3,
      .grid-2,
      .gallery-grid,
      .footer-grid,
      .cta-grid,
      .spec-grid,
      .filters {
        grid-template-columns: 1fr 1fr;
      }

      .hero-grid { padding: 42px; }
      .section-head { flex-direction: column; align-items: start; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .hero-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 860px) {
      .container {
        width: calc(100% - 20px);
      }

      .nav {
        display: none;
      }

      .site-header {
        backdrop-filter: blur(14px);
      }

      .header-inner {
        min-height: 72px;
        gap: 14px;
      }

      .logo {
        gap: 10px;
        font-size: 11px;
        letter-spacing: 0.16em;
      }

      .logo-mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
      }

      .logo-mark::before {
        font-size: 18px;
      }

      .header-inner > .btn {
        min-height: 40px;
        padding: 0 12px;
        border-radius: 10px;
        font-size: 10px;
        letter-spacing: 0.06em;
      }

      .hero {
        padding: 12px 0 32px;
      }

      .hero-shell {
        min-height: auto;
        border-radius: 22px;
        background-position: center center;
        overflow: hidden;
      }

      .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr !important;
        gap: 18px;
        padding: 20px;
        width: 100%;
        min-width: 0;
      }

      .breadcrumbs {
        gap: 6px;
        margin-bottom: 14px;
        font-size: 11px;
        line-height: 1.4;
      }

      .eyebrow {
        padding: 7px 12px;
        margin-bottom: 14px;
        font-size: 10px;
        letter-spacing: 0.10em;
      }

      h1 {
        font-size: clamp(30px, 9vw, 42px);
        line-height: 1.02;
        max-width: 100%;
      }

      h2 {
        font-size: clamp(26px, 7vw, 34px);
        line-height: 1.04;
        max-width: 100%;
      }

      h3 {
        font-size: 20px;
        line-height: 1.08;
      }

      .lead {
        font-size: 15px;
        line-height: 1.55;
        max-width: 100%;
      }

      .hero-copy p,
      .muted {
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
        word-break: break-word;
        overflow-wrap: anywhere;
      }

      .hero-side {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
        min-width: 0;
      }

      .hero-side .glass-card:last-child {
        display: none;
      }

      .hero-copy,
      .hero-copy > *,
      .hero-side > * {
        max-width: 100%;
        min-width: 0;
      }

      .hero-points,
      .filters,
      .products-grid,
      .cards-4,
      .cards-3,
      .grid-2,
      .gallery-grid,
      .footer-grid,
      .cta-grid,
      .spec-grid {
        grid-template-columns: 1fr !important;
      }

      .hero-points {
        gap: 10px;
        margin-top: 18px;
        max-width: 100%;
      }

      .hero-point {
        min-height: auto;
        padding: 12px 14px;
        font-size: 12px;
        border-radius: 14px;
        width: 100%;
        min-width: 0;
      }

      .section {
        padding: 64px 0;
      }

      .section::before {
        width: calc(100% - 20px);
        top: 10px;
        bottom: 10px;
        border-radius: 20px;
      }

      .section-head {
        margin-bottom: 24px;
        gap: 14px;
        padding-bottom: 12px;
      }

      .wide-panel,
      .cta-box,
      .glass-card,
      .mini-card,
      .contact-card,
      .cta-side {
        padding: 20px;
        border-radius: 18px;
        width: 100%;
        min-width: 0;
        max-width: 100%;
      }

      .mini-card,
      .product-card,
      .gallery-item {
        min-height: unset;
      }

      .mini-card-number,
      .product-code,
      .hero-side-title {
        font-size: 10px;
        letter-spacing: 0.12em;
        margin-bottom: 10px;
      }

      .filters {
        gap: 10px;
      }

      .filter-btn {
        min-height: 44px;
        padding: 0 14px;
        border-radius: 12px;
        font-size: 12px;
      }

      .products-grid {
        margin-top: 18px !important;
        gap: 14px;
      }

      .product-image {
        height: 220px;
      }

      .product-image-open {
        right: 10px;
        top: 10px;
        min-height: 30px;
        padding: 0 9px;
        font-size: 10px;
      }

      .product-body {
        padding: 18px;
        gap: 12px;
      }

      .tags {
        gap: 8px;
      }

      .tag {
        min-height: 30px;
        padding: 0 10px;
        font-size: 11px;
      }

      .product-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
      }

      .product-actions .btn,
      .product-actions .btn-sm {
        width: 100%;
        min-height: 40px;
        padding: 0 10px;
        border-radius: 10px;
        font-size: 10px;
        letter-spacing: 0.06em;
      }

      .cards-4,
      .cards-3,
      .grid-2,
      .gallery-grid,
      .spec-grid {
        gap: 14px;
      }

      .gallery-item {
        min-height: 220px;
        border-radius: 18px;
      }

      .gallery-item span {
        left: 14px;
        right: 14px;
        bottom: 14px;
        font-size: 13px;
        line-height: 1.45;
      }

      .cta-box {
        padding: 22px;
        border-radius: 22px;
      }

      .cta-grid {
        gap: 14px;
      }

      .cta-side {
        padding: 18px;
      }

      .cta-box .btn,
      .cta-box .btn-sm,
      .hero .btn {
        width: 100%;
        min-width: 0;
      }

      .cta-box div[style*="display:flex"],
      .hero-copy div[style*="display:flex"] {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 10px !important;
        width: 100%;
      }

      .footer-grid {
        gap: 22px;
      }

      footer {
        padding: 28px 0 40px;
      }

      .footer-title {
        margin-bottom: 10px;
        font-size: 12px;
      }

      .footer-links {
        gap: 8px;
      }

      .footer-links a,
      .footer-links span {
        font-size: 13px;
        line-height: 1.55;
      }

      .lightbox {
        padding: 10px;
      }

      .lightbox-inner {
        width: 100%;
        height: min(82vh, 760px);
        border-radius: 18px;
      }

      .lightbox-close {
        top: 10px;
        right: 10px;
        min-height: 38px;
        padding: 0 12px;
        border-radius: 10px;
        font-size: 11px;
      }
    }


    .image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding: 40px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.95);
  align-items: center;
  justify-content: center;
}

.image-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 6px;
}

.image-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lead-modal.active {
  display: flex;
}

.lead-modal-box {
  width: 100%;
  max-width: 480px;
  background: #151515;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  padding: 32px;
  color: #fff;
  position: relative;
}

.lead-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

#leadForm {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

#leadForm input,
#leadForm textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-family: inherit;
}

#leadForm textarea {
  min-height: 110px;
  resize: vertical;
}

.lead-consent {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
}