    .ngg-container { 
      max-width:1366px;
      margin:auto; 
      background-color: #000; 
      color: #fff; }

    :root {
      --blue: #0089fb;
      --blue-dark: #0065ce;
      --white: #ffffff;
      --black: #000000;
      --border: rgba(255,255,255,0.35);
    }

    .body {
      font-family: 'Inter', sans-serif;
      background: var(--black);
      color: var(--white);
      font-size: 16px;
      line-height: 1.5;
    }

    .ngg-body {
      font-family: 'Inter', sans-serif;
      background: var(--black) !important;
      color: var(--white);
      font-size: 16px;
      line-height: 1.5;
      width:100%; margin:0; padding:0;
    }

    img { display: block; max-width: 100%; }
    a   { text-decoration: none; color: inherit; }

    /* ── LAYOUT HELPERS ───────────────────────────────── */
    .container {
      max-width: 1366px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .section { padding: 56px 0; }
    .section-sm { padding: 36px 0; }

    .ngg-section-title {
      text-align: center;
      font-size: clamp(16px, 2.5vw, 22px);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 36px;
      justify-content: center;
    }

    hr.divider {
      border: none;
      border-top: 0px solid var(--border);
    }

    /* ── BUTTONS ──────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: inherit;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 11px 28px;
      border-radius: 5px;
      border: none;
      cursor: pointer;
      white-space: nowrap;
    }
    .btn-primary { background: var(--blue); color: var(--white); }
    .btn-primary:hover { background: #007ae0; }
    .btn-outline { background: transparent; color: var(--white); border: 1px solid var(--border); }
    .btn-outline:hover { border-color: var(--white); }
    .btn-sm { padding: 7px 18px; font-size: 11px; }

    /* ── NAVBAR ───────────────────────────────────────── */
    .nav {
      background: var(--black);
      padding: 10px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--border);
      position: relative;
      top: 0;
      z-index: 100;
    }
    .nav__logo { height: 33px; width: auto; }
    .nav__links { display: flex; gap: 28px; list-style: none; }
    .nav__links a {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.8);
    }
    .nav__links a:hover { color: var(--white); }
    .nav__hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }
    .nav__hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: 0.25s;
    }

    /* ── HERO ─────────────────────────────────────────── */
    .hero {
      position: relative;
      overflow: hidden;
      min-height: 420px;
      display: flex;
      align-items: center;
    }
    .hero__bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: right center;
      opacity: 1;
    }
    .hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.12) 0%);
      z-index: 1;
    }
    .hero__content {
      position: relative;
      z-index: 2;
      max-width: 500px;
      padding: 56px 24px 56px 40px;
    }
    .hero__eyebrow {
      font-size: 1.8rem;
      font-weight: 600;
      color: var(--blue);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .hero__title {
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 800;
      text-transform: uppercase;
      line-height: 1.05;
      letter-spacing: 0.06em;
      margin-bottom: 18px;
    }
    .hero__desc {
      font-size: 14px;
      font-weight: 400;
      color: rgba(255,255,255,0.75);
      line-height: 1.65;
      margin-bottom: 28px;
      max-width: 380px;
    }
    .hero__cta {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    /* ── FEATURE STRIP ────────────────────────────────── */
    .feat-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .feat-strip__item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      padding: 20px 12px;
      text-align: center;
      border-right: 1px solid var(--border);
    }
    .feat-strip__item:last-child { border-right: none; }
    .feat-strip__icon { width: 40px; height: 40px; object-fit: contain; }
    .feat-strip__label {
      font-size: 1.5rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--white);
    }

    /* ── PROS SECTION ─────────────────────────────────── */
    .pros {
      display: grid;
      grid-template-columns: 260px 1fr 220px;
      border-bottom: 1px solid var(--border);
    }
    .pros__img-wrap {
      overflow: hidden;
      min-height: 240px;
    }
    .pros__img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: left top;
    }
    .pros__content {
      padding: 40px 36px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .pros__heading {
      font-size: clamp(18px, 2.5vw, 24px);
      font-weight: 600;
      text-transform: uppercase;
      line-height: 1.2;
      margin-bottom: 12px;
    }
    .pros__desc {
      font-size: 1.5rem;
      font-weight: 600;
      color: rgba(255,255,255,0.8);
      line-height: 1.6;
    }
    .pros__chovy {
      padding: 40px 24px;
      border-left: 0px solid var(--border);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
    }
    .pros__chovy-name {
      font-size: 26px;
      font-weight: 600;
      text-transform: uppercase;
      color: var(--white);
    }
    .pros__chovy-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: rgba(255,255,255,0.6);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    /* ── HITS SECTION ─────────────────────────────────── */
    .hits {
      display: grid;
      grid-template-columns: 400px 1fr;
      gap: 0;
      border-bottom: 1px solid var(--border);
    }
    .hits__content {
      padding: 48px 36px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hits__eyebrow {
      font-size: 2rem;
      font-weight: 600;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 6px;
    }
    .hits__title {
      font-size: clamp(16px, 2vw, 20px);
      font-weight: 600;
      color: var(--blue);
      text-transform: uppercase;
      line-height: 1.3;
      margin-bottom: 12px;
    }
    .hits__desc {
      font-size: 1.5rem;
      font-weight: 600;
      color: rgba(255,255,255,0.8);
      line-height: 1.6;
      margin-bottom: 28px;
    }
    .hits__features { display: flex; flex-direction: column; gap: 18px; }
    .hits__icons { display:flex; flex-direction:row; gap:18px; align-items:center; }
    .hits__icons div img { width: 60px; height: 60px; object-fit: contain; flex-shrink: 0; }
    .hits__icons > div:first-child { width: 60px; flex-shrink: 0; }
    .hits__feat-label {
      font-size: 1.8rem;
      font-weight: 600;
      color: var(--blue);
      text-transform: uppercase;
      margin-bottom: 3px;
    }
    .hits__feat-desc {
      font-size: 1.5rem;
      font-weight: 600;
      color: rgba(255,255,255,0.8);
      line-height: 1.5;
    }
    .hits__media {
      position: relative;
      min-height: 300px;
      overflow: hidden;
    }
    .hits__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
    }

    /* ── FEATURE CARDS ────────────────────────────────── */
    .eng { border-bottom: 1px solid var(--border); }
    .feat-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
    }
    .feat-card {
      border-right: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0px;
      padding: 0px 0px;
      text-align: center;
    }
    .feat-card:last-child { border-right: none; }
    .feat-card__img {
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover;
      border-radius: 4px;
    }
    .feat-card__name {
      font-size: 16px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      line-height: 1.4;
      color: var(--white);
      position: relative;
      z-index: 1;
    }
    /* name sits above image → pull image up to overlap */
    .feat-card__name + .feat-card__img {
      margin-top: -38px;
    }
    /* image sits above name → pull name up to overlap */
    .feat-card__img + .feat-card__name {
      margin-top: -38px;
    }
    .feat-card__desc {
      font-size: 1.5rem;
      font-weight: 600;
      color: rgba(255,255,255,0.7);
      line-height: 1.5;
    }

    /* ── SENSOR STATS ─────────────────────────────────── */
    .sensor {
      display: grid;
      grid-template-columns: 500px 1fr;
      border-bottom: 1px solid var(--border);
    }
    .sensor__img-wrap {
      overflow: hidden;
      min-height: 220px;
    }
    .sensor__img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .sensor__content {
      padding: 40px 36px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 24px;
    }
    .sensor__stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      text-align: center;
    }
    .sensor__value {
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 600;
      color: var(--blue);
      line-height: 1;
      margin-bottom: 4px;
    }
    .sensor__label {
      font-size: 1.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--white);
      margin-bottom: 4px;
    }
    .sensor__desc {
      font-size: 1.5rem;
      font-weight: 600;
      color: rgba(255,255,255,0.6);
      line-height: 1.5;
    }

    /* ── COMPARISON TABLE ─────────────────────────────── */
    .compare { border-bottom: 1px solid var(--border); overflow-x: auto; }
    .compare__table {
      width: 100%;
      border-collapse: collapse;
      min-width: 480px;
    }
    .compare__table th,
    .compare__table td {
      padding: 10px 14px;
      text-align: center;
      font-size: 1.5rem;
      font-weight: 600;
      border: 1px solid var(--border);
    }
    .compare__table th {
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-size: 1.8rem;
      background: rgba(255,255,255,0.04);
    }
    .compare__table th img {
      display: inline-block;
      max-width: 80px;
      width: 80px;
      vertical-align: middle;
      margin-right: 8px;
    }
    .compare__table th:nth-child(2) {
      background: rgba(0,137,251,0.15);
      color: var(--blue);
      border-top: 3px solid var(--blue);
    }
    .compare__table td:first-child {
      text-align: left;
      color: rgba(255,255,255,0.6);
    }
    .compare__table td:nth-child(2) {
      background: rgba(0,137,251,0.07);
    }
    .compare__table tr:hover td { background: rgba(255,255,255,0.03); }
    .compare__table tr:hover td:nth-child(2) { background: rgba(0,137,251,0.12); }

    /* ── PRODUCT SPOTLIGHT ────────────────────────────── */
    .product {
      display: grid;
      grid-template-columns: 1fr auto auto;
      gap: 32px;
      align-items: start;
      padding: 48px 0;
      border-bottom: 1px solid var(--border);
    }
    .product__label {
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--blue);
      text-transform: uppercase;
      line-height: 1.3;
      margin-bottom: 10px;
    }
    .product__desc {
      font-size: 1.8rem;
      font-weight: 600;
      color: rgba(255,255,255,0.8);
      line-height: 1.65;
      margin-bottom: 22px;
      /*max-width: 280px;*/
    }
    .footer2021.is-lp { background-color:#000 !important; }
    .product__badges {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }
    .product__badge {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .product__badge img { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }
    .product__badge-text { font-size: 1.5rem; font-weight: 600; color: var(--white); line-height: 1.4; }
    .product__badge-text strong { display: block; text-transform: uppercase; font-size: 1.8rem; }

    .product__imagery {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .product__img {
      width: 160px;
      height: 160px;
      object-fit: cover;
      border-radius: 6px;
    }
    .product__color-row {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .product__color-label {
      font-size: 11px;
      font-weight: 400;
      color: var(--white);
    }
    .product__swatch {
      display: inline-block;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.4);
    }
    .product__swatch--white { background: #ffffff; }
    .product__swatch--black { background: #1a1a1a; }

    .product__price-col {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: center;
      min-width: 180px;
    }
    .product__price {
      font-size: 32px;
      font-weight: 400;
      color: var(--white);
    }

    /* ── EXPLORE MORE ─────────────────────────────────── */
    .explore { padding-top: 48px; padding-bottom: 56px; }
    .item-bullets {
      list-style: disc;
      padding-left: 16px;
      margin: 5% 0 10%;
      font-size: 1.5rem;
      color: rgba(255,255,255,0.99);
      line-height: 1.6;
      min-height:90px;
    }
    .explore-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
    }
    .explore-card {
      padding: 20px 16px;
      border-right: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .explore-card:last-child { border-right: none; }
    .explore-card__name {
      font-size: 11px;
      font-weight: 600;
      color: var(--white);
      text-transform: uppercase;
      line-height: 1.3;
    }
    .explore-card__features {
      font-size: 9px;
      font-weight: 600;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
      flex: 1;
    }

    /* ════════════════════════════════════════════════════
       RESPONSIVE BREAKPOINTS
    ════════════════════════════════════════════════════ */

    /* ── Tablet (≤ 900px) ─────────────────────────────── */
    @media (max-width: 900px) {
      .pros__img-wrap img { object-fit: contain; }
      .nav__links { display: none; }
      .nav__hamburger { display: flex; }

      .feat-strip {
        grid-template-columns: repeat(2, 1fr);
      }
      .feat-strip__item:nth-child(2) { border-right: none; }
      .feat-strip__item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
      .feat-strip__item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }

      .pros {
        grid-template-columns: 200px 1fr;
        grid-template-rows: auto auto;
      }
      .pros__img-wrap { grid-row: 1 / 3; }
      .pros__chovy {
        border-left: 1px solid var(--border);
        border-top: 1px solid var(--border);
        padding: 20px 24px;
      }

      .hits {
        grid-template-columns: 1fr;
      }
      .hits__media {
        min-height: 220px;
        order: -1;
      }

      .feat-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .feat-card:nth-child(3) { border-right: none; }
      .feat-card:nth-child(4),
      .feat-card:nth-child(5),
      .feat-card:nth-child(6) { border-top: 1px solid var(--border); }
      .feat-card:nth-child(6) { border-right: none; }

      .feat-card { padding:20px 0; }
      .sensor {
        grid-template-columns: 1fr;
      }
      .sensor__img-wrap { min-height: 180px; }
      .sensor__stats { grid-template-columns: repeat(3, 1fr); }

      .product {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
      }
      .product__price-col {
        align-items: flex-start;
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 16px;
      }

      .explore-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .explore-card:nth-child(2) { border-right: none; }
      .explore-card:nth-child(3),
      .explore-card:nth-child(4) { border-top: 1px solid var(--border); }
      .explore-card:nth-child(4) { border-right: none; }
    }

    /* ── Mobile (≤ 600px) ─────────────────────────────── */
    @media (max-width: 600px) {
      .section { padding: 36px 0; }
      .section-sm { padding: 24px 0; }

      .hero { min-height: 320px; }
      .hero__content { padding: 40px 20px; }
      .hero__desc { font-size: 13px; }
      .hero__cta { flex-direction: column; align-items: flex-start; }

      .item-bullets { text-align: left; }
      .feat-strip {
        grid-template-columns: repeat(2, 1fr);
      }

      .pros {
        grid-template-columns: 1fr;
        grid-template-rows: 200px auto auto;
      }
      .pros__img-wrap { grid-row: 1; }
      .pros__content { padding: 24px 20px; }
      .pros__chovy {
        border-left: none;
        border-top: 1px solid var(--border);
        padding: 20px 20px;
      }

      .hits { grid-template-columns: 1fr; }
      .hits__content { padding: 28px 20px; }

      .feat-grid { grid-template-columns: repeat(2, 1fr); }
      .feat-card:nth-child(2) { border-right: none; }
      .feat-card:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
      .feat-card:nth-child(4),
      .feat-card:nth-child(5) { border-top: 1px solid var(--border); }
      .feat-card:nth-child(4) { border-right: none; }
      .feat-card:nth-child(5) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
      .feat-card:nth-child(6) { border-top: 1px solid var(--border); border-right: none; }

      .sensor { grid-template-columns: 1fr; }
      .sensor__content { padding: 24px 20px; }
      .sensor__stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
      .sensor__value { font-size: 24px; }

      .compare__table th,
      .compare__table td { padding: 8px 10px; font-size: 10px; }

      .product {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 32px 0;
      }
      .product__imagery { align-items: flex-start; }
      .product__price-col {
        flex-direction: column;
        align-items: stretch;
        grid-column: auto;
      }
      .product__price { font-size: 28px; }

      .explore-grid { grid-template-columns: 1fr; }
      .explore-card { border-right: none !important; }
      .explore-card + .explore-card { border-top: 1px solid var(--border); }
    }
  