:root {
      /* Unified Theme Colors */
      --red-primary: #E8000D;
      /* Bold Security Red */
      --red-hover: #ff1a26;
      --red-dim: rgba(232, 0, 13, 0.12);

      /* Design 1 Variables (Dark Industrial) */
      --d1-black: #0a0a0a;
      --d1-black2: #111111;
      --d1-black3: #1a1a1a;
      --d1-white: #f5f5f5;
      --d1-white2: #cccccc;
      --d1-grey: #3a3a3a;
      --d1-grey2: #555;

      /* Design 2 Variables (Bold Editorial) */
      --d2-white: #FFFFFF;
      --d2-off-white: #F4F2EE;
      --d2-cream: #EDE9E0;
      --d2-black: #0D0D0D;
      --d2-black2: #1C1C1C;
      --d2-red-light: #FFF0F2;
      --d2-grey: #E0DDD7;
      --d2-grey2: #8A8680;
      --d2-border: #D0CCC4;

      /* Design 3 Variables (Magazine Theme) */
      --d3-black: #111111;
      --d3-coal: #1c1c1c;
      --d3-iron: #2a2a2a;
      --d3-ash: #444;
      --d3-silver: #aaa;
      --d3-smoke: #f0f0f0;
      --d3-white: #ffffff;
    }

    /* Global Resets & Body */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--d1-black);
      color: var(--d1-white);
      font-family: 'Barlow', sans-serif;
      overflow-x: hidden;
    }

    /* Typography Utilities */
    .font-display-bebas {
      font-family: 'Bebas Neue', sans-serif;
    }

    .font-display-anton {
      font-family: 'Anton', sans-serif;
    }

    .font-mono-space {
      font-family: 'Space Mono', monospace;
    }

    .font-body-outfit {
      font-family: 'Outfit', sans-serif;
    }

    /* ──────────────────────────────────────────────────────────
     TOPBAR & NAVIGATION (from Design 2 - Bold Editorial)
     ────────────────────────────────────────────────────────── */
    .topbar {
      background: var(--d2-black);
      padding: 10px 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: #aaa;
      letter-spacing: 0.3px;
      position: relative;
      z-index: 101;
    }

    .topbar a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.2s;
    }

    .topbar a:hover {
      color: var(--red-primary);
    }

    .topbar .divider {
      color: #444;
      margin: 0 12px;
    }

    .social-links a {
      color: #888;
      text-decoration: none;
      margin-left: 14px;
      font-size: 13px;
      transition: color 0.2s;
    }

    .social-links a:hover {
      color: var(--red-primary);
    }

    nav {
      background: var(--d2-white);
      border-bottom: 1px solid var(--d2-border);
      padding: 0 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 72px;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .logo-mark {
      width: 42px;
      height: 42px;
      background: var(--d2-black);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .logo-mark::after {
      content: '';
      position: absolute;
      bottom: -4px;
      right: -4px;
      width: 14px;
      height: 14px;
      background: var(--red-primary);
    }

    .logo-mark span {
      color: white;
      font-family: 'Anton', sans-serif;
      font-size: 18px;
    }

    .logo-wordmark {
      font-family: 'Anton', sans-serif;
      font-size: 22px;
      letter-spacing: 3px;
      color: var(--d2-black);
      line-height: 1;
    }

    .logo-wordmark small {
      display: block;
      font-family: 'DM Sans', sans-serif;
      font-size: 9px;
      font-weight: 400;
      letter-spacing: 4px;
      color: var(--d2-grey2);
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      gap: 0;
      list-style: none;
    }

    .nav-links li a {
      display: block;
      padding: 0 20px;
      height: 72px;
      line-height: 72px;
      color: var(--d2-black2);
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.5px;
      border-bottom: 3px solid transparent;
      transition: all 0.2s;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
      color: var(--red-primary);
      border-bottom-color: var(--red-primary);
    }

    .nav-right {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .cart-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--d2-off-white);
      border: 1px solid var(--d2-border);
      color: var(--d2-black);
      padding: 9px 18px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
    }

    .cart-btn:hover {
      background: var(--d2-cream);
      border-color: var(--d2-grey2);
    }

    .cart-badge {
      background: var(--red-primary);
      color: white;
      font-size: 10px;
      font-weight: 700;
      border-radius: 10px;
      padding: 1px 6px;
      min-width: 18px;
      text-align: center;
    }

    .quote-btn {
      background: var(--red-primary);
      color: white;
      border: none;
      padding: 10px 24px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
    }

    .quote-btn:hover {
      background: var(--red-hover);
    }

    /* ──────────────────────────────────────────────────────────
     SECTION 1: HERO SECTION (from Design 1 - Dark Industrial)
     ────────────────────────────────────────────────────────── */
    .hero {
      min-height: 88vh;
      background: var(--d1-black);
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(0deg, transparent, transparent 49px,
          rgba(232, 0, 13, 0.04) 50px),
        repeating-linear-gradient(90deg, transparent, transparent 49px,
          rgba(232, 0, 13, 0.04) 50px);
      pointer-events: none;
    }

    .hero-bg-text {
      position: absolute;
      right: -20px;
      bottom: -30px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 260px;
      line-height: 1;
      color: rgba(255, 255, 255, 0.03);
      pointer-events: none;
      user-select: none;
      white-space: nowrap;
    }

    .hero-left {
      padding: 80px 60px 80px 80px;
      position: relative;
      z-index: 2;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--red-dim);
      border: 1px solid var(--red-primary);
      color: var(--red-hover);
      padding: 6px 14px;
      border-radius: 2px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 28px;
    }

    .hero-tag::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--red-primary);
      border-radius: 50%;
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: 0.5;
        transform: scale(1.4)
      }
    }

    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 80px;
      line-height: 0.95;
      letter-spacing: 2px;
      margin-bottom: 24px;
    }

    .hero h1 em {
      color: var(--red-primary);
      font-style: normal;
      display: block;
    }

    .hero p {
      font-size: 16px;
      color: var(--d1-white2);
      line-height: 1.7;
      max-width: 460px;
      margin-bottom: 36px;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-primary-d1 {
      background: var(--red-primary);
      color: white;
      padding: 14px 32px;
      border: none;
      border-radius: 3px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.2s;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
      text-decoration: none;
      display: inline-block;
    }

    .btn-primary-d1:hover {
      background: var(--red-hover);
      transform: translateY(-2px);
    }

    .btn-outline-d1 {
      background: transparent;
      color: var(--d1-white);
      padding: 14px 32px;
      border: 1px solid var(--d1-grey);
      border-radius: 3px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
      display: inline-block;
    }

    .btn-outline-d1:hover {
      border-color: var(--d1-white);
    }

    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 52px;
      padding-top: 32px;
      border-top: 1px solid var(--d1-grey);
    }

    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 44px;
      color: var(--red-primary);
      line-height: 1;
    }

    .stat-label {
      font-size: 11px;
      color: var(--d1-white2);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-top: 4px;
    }

    .hero-right {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
    }

    .hero-cam-frame {
      width: 420px;
      height: 420px;
      border: 1px solid var(--d1-grey);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--d1-black3);
    }

    .hero-cam-frame::before,
    .hero-cam-frame::after {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      border-color: var(--red-primary);
      border-style: solid;
    }

    .hero-cam-frame::before {
      top: -1px;
      left: -1px;
      border-width: 2px 0 0 2px;
    }

    .hero-cam-frame::after {
      bottom: -1px;
      right: -1px;
      border-width: 0 2px 2px 0;
    }

    .cam-placeholder {
      width: 280px;
      height: 280px;
      background: radial-gradient(circle at 40% 40%, #2a2a2a, #111);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 60px rgba(232, 0, 13, 0.2), inset 0 0 40px rgba(0, 0, 0, 0.5);
      position: relative;
    }

    .cam-inner {
      width: 160px;
      height: 160px;
      background: radial-gradient(circle at 40% 40%, #3a3a3a, #1a1a1a);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--d1-grey);
    }

    .cam-lens {
      width: 80px;
      height: 80px;
      background: radial-gradient(circle at 35% 35%, #4a4a4a, #050505);
      border-radius: 50%;
      border: 3px solid var(--red-primary);
      box-shadow: 0 0 20px rgba(232, 0, 13, 0.4);
      position: relative;
    }

    .cam-lens::after {
      content: '';
      position: absolute;
      inset: 14px;
      background: radial-gradient(circle at 30% 30%, #222, #000);
      border-radius: 50%;
      box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1);
    }

    .scan-line {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
      animation: scan 3s linear infinite;
    }

    @keyframes scan {
      0% {
        top: 0
      }

      100% {
        top: 100%
      }
    }

    .hero-cam-frame .overlay-label {
      position: absolute;
      bottom: 14px;
      left: 14px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      color: var(--red-primary);
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .rec-dot {
      position: absolute;
      top: 14px;
      right: 14px;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 10px;
      color: var(--red-primary);
      letter-spacing: 1px;
    }

    .rec-dot::before {
      content: '';
      width: 8px;
      height: 8px;
      background: var(--red-primary);
      border-radius: 50%;
      animation: pulse 1s infinite;
    }

    /* ──────────────────────────────────────────────────────────
     SECTION 2: 500+ INSTALLATIONS DONE (from Design 3 - Magazine)
     ────────────────────────────────────────────────────────── */
    .mzg-stats-strip {
      background: var(--red-primary);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .mzg-stat-box {
      padding: 26px 36px;
      border-right: 1px solid rgba(255, 255, 255, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }

    .mzg-stat-box:last-child {
      border-right: none;
    }

    .mzg-stat-icon {
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .mzg-stat-icon svg {
      width: 20px;
      height: 20px;
    }

    .mzg-stat-num {
      font-family: 'Anton', sans-serif;
      font-size: 28px;
      color: white;
      letter-spacing: 1px;
      line-height: 1;
    }

    .mzg-stat-lbl {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.85);
      font-weight: 600;
      letter-spacing: 0.5px;
      margin-top: 2px;
      text-transform: uppercase;
    }

    /* ──────────────────────────────────────────────────────────
     SECTION COMMON STYLING FOR LIGHT THEMES
     ────────────────────────────────────────────────────────── */
    .light-theme-section {
      background: var(--d2-white);
      color: var(--d2-black);
      padding: 90px 80px;
    }

    .label-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      color: var(--red-primary);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 16px;
    }

    .label-tag::before {
      content: '//';
      color: var(--d2-grey2);
    }

    .section-h {
      font-family: 'Anton', sans-serif;
      font-size: 56px;
      letter-spacing: 2px;
      line-height: 1;
      margin-bottom: 16px;
      text-transform: uppercase;
    }

    .section-p {
      font-size: 15px;
      color: var(--d2-grey2);
      max-width: 480px;
      line-height: 1.75;
    }

    /* ──────────────────────────────────────────────────────────
     SECTION 3: OUR SERVICES (from Design 2 - Bold Editorial)
     ────────────────────────────────────────────────────────── */
    .be-svc-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 52px;
    }

    .be-svc-header a {
      color: var(--red-primary);
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
      letter-spacing: 1px;
      transition: color 0.2s;
    }

    .be-svc-header a:hover {
      color: var(--d2-black);
    }

    .be-svc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--d2-border);
      border: 1px solid var(--d2-border);
    }

    .be-svc-card {
      background: var(--d2-white);
      padding: 40px 36px;
      transition: all 0.3s;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .be-svc-card:hover {
      background: var(--d2-off-white);
    }

    .be-svc-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 3px;
      background: var(--red-primary);
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 0.3s;
    }

    .be-svc-card:hover::after {
      transform: scaleY(1);
    }

    .be-svc-icon-wrap {
      width: 56px;
      height: 56px;
      background: var(--d2-red-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 20px;
      border-radius: 4px;
    }

    .be-svc-card h3 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.3;
      color: var(--d2-black);
    }

    .be-svc-card p {
      font-size: 14px;
      color: var(--d2-grey2);
      line-height: 1.7;
    }

    .be-svc-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--red-primary);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      margin-top: 20px;
      transition: gap 0.2s;
    }

    .be-svc-link:hover {
      gap: 10px;
    }

    /* ──────────────────────────────────────────────────────────
     SECTION 4: FEATURED PRODUCTS (from Design 2 - Bold Editorial)
     ────────────────────────────────────────────────────────── */
    .products-section {
      background: var(--d2-off-white);
    }

    .be-prd-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 48px;
    }

    .be-prd-tabs {
      display: flex;
      gap: 0;
      border: 1px solid var(--d2-border);
      border-radius: 6px;
      overflow: hidden;
      background: white;
    }

    .be-prd-tab {
      padding: 10px 22px;
      background: white;
      border: none;
      font-size: 12px;
      font-weight: 600;
      color: var(--d2-grey2);
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: all 0.2s;
      border-right: 1px solid var(--d2-border);
      text-transform: uppercase;
    }

    .be-prd-tab:last-child {
      border-right: none;
    }

    .be-prd-tab.active,
    .be-prd-tab:hover {
      background: var(--red-primary);
      color: white;
    }

    .be-prd-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .be-prd-card {
      background: var(--d2-white);
      border: 1px solid var(--d2-border);
      border-radius: 8px;
      overflow: hidden;
      transition: all 0.3s;
      cursor: pointer;
      position: relative;
    }

    .be-prd-card:hover {
      border-color: var(--red-primary);
      box-shadow: 0 12px 36px rgba(217, 4, 41, 0.08);
      transform: translateY(-4px);
    }

    .be-prd-badge-wrap {
      position: relative;
    }

    .be-prd-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: var(--red-primary);
      color: white;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 3px 8px;
      border-radius: 3px;
      z-index: 2;
    }

    .be-prd-badge.sale {
      background: #ff9900;
    }

    .be-prd-img {
      height: 170px;
      background: var(--d2-off-white);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      border-bottom: 1px solid var(--d2-border);
    }

    .be-prd-img svg {
      max-width: 80%;
      max-height: 80%;
      transition: transform 0.4s;
    }

    .be-prd-card:hover .be-prd-img svg {
      transform: scale(1.06);
    }

    .be-prd-overlay {
      position: absolute;
      inset: 0;
      background: rgba(13, 13, 13, 0.75);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.2s;
    }

    .be-prd-card:hover .be-prd-overlay {
      opacity: 1;
    }

    .be-overlay-quick {
      background: white;
      color: var(--d2-black);
      border: none;
      padding: 9px 18px;
      border-radius: 4px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .be-overlay-quick:hover {
      background: var(--red-primary);
      color: white;
    }

    .be-prd-body {
      padding: 18px;
    }

    .be-prd-brand {
      font-family: 'Space Mono', monospace;
      font-size: 10px;
      color: var(--red-primary);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .be-prd-name {
      font-size: 14px;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 10px;
      color: var(--d2-black);
      height: 40px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }

    .be-prd-price {
      font-family: 'Anton', sans-serif;
      font-size: 22px;
      color: var(--d2-black);
      letter-spacing: 1px;
    }

    .be-prd-price small {
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      color: var(--d2-grey2);
      font-weight: 400;
      margin-left: 2px;
    }

    .be-prd-footer {
      padding: 12px 16px;
      border-top: 1px solid var(--d2-grey);
      display: flex;
      gap: 8px;
      background: #fafafa;
    }

    .be-btn-c {
      flex: 1;
      border: 1px solid var(--red-primary);
      background: var(--red-primary);
      color: white;
      padding: 8px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.5px;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .be-btn-c:hover {
      border-color: var(--red-hover);
      background: var(--red-hover);
      color: white;
    }

    .be-btn-b {
      flex: 1;
      background: var(--d2-black);
      border: none;
      color: white;
      padding: 8px;
      font-size: 11px;
      font-weight: 700;
      border-radius: 4px;
      cursor: pointer;
      transition: background 0.2s;
    }

    .be-btn-b:hover {
      background: var(--red-primary);
    }

    /* ──────────────────────────────────────────────────────────
     SECTION 5: WHY CHOOSE US (from Design 1 - Dark Industrial)
     ────────────────────────────────────────────────────────── */
    .why-section {
      background: var(--d1-black2);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      padding: 0;
      border-top: 1px solid var(--d1-grey);
      border-bottom: 2px solid var(--red-primary);
    }

    .why-left {
      padding: 90px 80px;
      background: var(--d1-black3);
      border-right: 2px solid var(--red-primary);
    }

    .why-right {
      padding: 90px 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .why-section .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red-primary);
      margin-bottom: 16px;
    }

    .why-section .section-label::before {
      content: '';
      width: 30px;
      height: 2px;
      background: var(--red-primary);
    }

    .why-section .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 54px;
      letter-spacing: 2px;
      line-height: 1;
      margin-bottom: 16px;
    }

    .why-section .section-sub {
      color: var(--d1-white2);
      font-size: 15px;
      max-width: 500px;
      line-height: 1.7;
    }

    .feature-list {
      margin-top: 40px;
    }

    .feature-item {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      padding: 22px 0;
      border-bottom: 1px solid var(--d1-grey);
    }

    .feature-item:first-child {
      padding-top: 0;
    }

    .feature-item:last-child {
      border-bottom: none;
    }

    .feature-check {
      width: 36px;
      height: 36px;
      flex-shrink: 0;
      background: var(--red-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      border-radius: 2px;
      margin-top: 2px;
      font-weight: 700;
      color: white;
    }

    .feature-item h4 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .feature-item p {
      font-size: 13px;
      color: var(--d1-white2);
      line-height: 1.6;
    }

    .big-number {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 140px;
      line-height: 1;
      color: var(--red-primary);
      display: block;
      margin-bottom: 10px;
    }

    .why-right .section-title {
      font-size: 48px;
    }

    .review-card {
      background: var(--d1-black3);
      padding: 24px;
      border-left: 3px solid var(--red-primary);
      margin-top: 30px;
    }

    .stars {
      color: var(--red-primary);
      font-size: 16px;
      margin-bottom: 10px;
      letter-spacing: 2px;
    }

    .review-text {
      font-size: 14px;
      color: var(--d1-white2);
      line-height: 1.7;
      font-style: italic;
      margin-bottom: 14px;
    }

    .reviewer {
      font-size: 13px;
      font-weight: 700;
    }

    .reviewer span {
      color: var(--d1-white2);
      font-weight: 400;
    }

    /* ──────────────────────────────────────────────────────────
     SECTION 6: AUTHORIZED PARTNER BRANDS (from Design 2 - Bold Editorial)
     ────────────────────────────────────────────────────────── */
    .be-brands-section {
      background: var(--d2-cream);
      padding: 56px 80px;
      text-align: center;
      border-bottom: 1px solid var(--d2-border);
    }

    .be-brands-label {
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      color: var(--d2-grey2);
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 32px;
    }

    .be-brands-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
      flex-wrap: wrap;
    }

    .be-brand-item {
      font-family: 'Anton', sans-serif;
      font-size: 22px;
      color: var(--d2-grey2);
      letter-spacing: 2px;
      transition: color 0.2s;
      cursor: default;
    }

    .be-brand-item:hover {
      color: var(--red-primary);
    }

    /* ──────────────────────────────────────────────────────────
     SECTION 7: CLIENT REVIEWS (from Design 2 - Bold Editorial)
     ────────────────────────────────────────────────────────── */
    .be-testimonials-section {
      background: var(--d2-white);
    }

    .be-test-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 48px;
    }

    .be-test-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .be-test-card {
      background: var(--d2-off-white);
      border: 1px solid var(--d2-border);
      border-radius: 8px;
      padding: 30px;
      position: relative;
    }

    .be-test-card::before {
      content: '"';
      font-family: 'Anton', sans-serif;
      font-size: 80px;
      color: var(--red-primary);
      opacity: 0.15;
      position: absolute;
      top: 10px;
      right: 20px;
      line-height: 1;
    }

    .be-stars {
      color: var(--red-primary);
      letter-spacing: 3px;
      font-size: 14px;
      margin-bottom: 14px;
    }

    .be-test-text {
      font-size: 14px;
      color: var(--d2-black2);
      line-height: 1.75;
      font-style: italic;
      margin-bottom: 20px;
    }

    .be-test-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .be-author-avatar {
      width: 40px;
      height: 40px;
      background: var(--d2-black);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: white;
      font-weight: 700;
      font-family: 'Anton', sans-serif;
    }

    .be-author-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--d2-black);
    }

    .be-author-role {
      font-size: 12px;
      color: var(--d2-grey2);
    }

    /* ──────────────────────────────────────────────────────────
     SECTION 8: CTA SECTION (from Design 1 - Dark Industrial)
     ────────────────────────────────────────────────────────── */
    .cta-section {
      background: var(--red-primary);
      padding: 80px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 40px;
      position: relative;
      z-index: 2;
    }

    .cta-section .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 52px;
      letter-spacing: 2px;
      line-height: 1;
      color: white;
      margin-bottom: 8px;
    }

    .cta-section p {
      color: rgba(255, 255, 255, 0.85);
      font-size: 16px;
      max-width: 500px;
      line-height: 1.6;
    }

    .btn-cta-white {
      background: white;
      color: var(--red-primary);
      border: none;
      padding: 16px 40px;
      border-radius: 3px;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      white-space: nowrap;
      flex-shrink: 0;
      transition: all 0.2s;
      text-decoration: none;
      display: inline-block;
    }

    .btn-cta-white:hover {
      background: var(--d2-black);
      color: white;
      transform: translateY(-2px);
    }

    /* ──────────────────────────────────────────────────────────
     FOOTER (from Design 1 - Dark Industrial)
     ────────────────────────────────────────────────────────── */
    footer {
      background: var(--d1-black);
      border-top: 2px solid var(--red-primary);
      padding: 80px 80px 30px;
      position: relative;
      z-index: 2;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 50px;
      margin-bottom: 50px;
    }

    .footer-brand p {
      font-size: 14px;
      color: var(--d1-white2);
      line-height: 1.7;
      margin: 18px 0 24px;
      max-width: 280px;
    }

    .footer-contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--d1-white2);
      margin-bottom: 12px;
    }

    .footer-contact-item span {
      color: var(--red-primary);
    }

    footer h4 {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 20px;
      color: var(--d1-white);
    }

    footer ul {
      list-style: none;
    }

    footer ul li {
      margin-bottom: 10px;
    }

    footer ul a {
      color: var(--d1-white2);
      text-decoration: none;
      font-size: 13px;
      transition: color 0.2s;
    }

    footer ul a:hover {
      color: var(--red-primary);
    }

    .footer-bottom {
      border-top: 1px solid var(--d1-grey);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: var(--d1-grey2);
    }

    .footer-bottom a {
      color: var(--red-primary);
      text-decoration: none;
    }

    /* FLOATING TOAST NOTIFICATION */
    .toast {
      position: fixed;
      bottom: 32px;
      right: 32px;
      background: var(--d2-black);
      color: white;
      padding: 14px 24px;
      border-left: 4px solid var(--red-primary);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.5px;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.3s, transform 0.3s;
      pointer-events: none;
      z-index: 999;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
      border-radius: 4px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .toast.show {
      opacity: 1;
      transform: translateY(0);
    }

    /* ──────────────────────────────────────────────────────────
     MOBILE DRAWER & HAMBURGER SYSTEM
     ────────────────────────────────────────────────────────── */
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 16px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1005;
    }

    .mobile-menu-toggle span {
      width: 100%;
      height: 2.5px;
      background: var(--d2-black);
      transition: all 0.3s ease;
      transform-origin: left center;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(1px, -1px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
      width: 0%;
      opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(1px, 1px);
    }

    .mobile-drawer {
      position: fixed;
      top: 0;
      left: -300px;
      right: auto;
      width: 280px;
      height: 100vh;
      background: var(--d2-white);
      box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
      z-index: 1000;
      transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      padding: 30px 24px;
      display: flex;
      flex-direction: column;
    }

    .mobile-drawer.open {
      left: 0;
      right: auto;
    }

    .drawer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
    }

    .drawer-close {
      background: transparent;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: var(--d2-black);
    }

    .drawer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .drawer-links a {
      font-family: 'Anton', sans-serif;
      font-size: 22px;
      color: var(--d2-black);
      text-decoration: none;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .drawer-links a:hover,
    .drawer-links a.active {
      color: var(--red-primary);
    }

    .drawer-footer {
      margin-top: auto;
      padding-top: 20px;
      border-top: 1px solid var(--d2-border);
    }

    .drawer-phone {
      display: block;
      font-size: 14px;
      color: var(--d2-grey2);
      text-decoration: none;
      font-weight: 600;
    }

    /* ──────────────────────────────────────────────────────────
     FLUID ELEMENTS (Responsive Width Fixes)
     ────────────────────────────────────────────────────────── */
    .hero-cam-frame {
      width: 100%;
      max-width: 400px;
      height: auto;
      aspect-ratio: 1 / 1;
    }

    .cam-placeholder {
      width: 70%;
      height: 70%;
      aspect-ratio: 1 / 1;
    }

    .cam-inner {
      width: 75%;
      height: 75%;
      aspect-ratio: 1 / 1;
    }

    .cam-lens {
      width: 50%;
      height: 50%;
      aspect-ratio: 1 / 1;
    }

    .be-prd-img svg {
      width: 100%;
      height: 100%;
      max-height: 120px;
    }

    /* ──────────────────────────────────────────────────────────
     RESPONSIVE BREAKPOINTS (Fluid Layout scaling)
     ────────────────────────────────────────────────────────── */
    @media (max-width: 1200px) {
      nav {
        padding: 0 30px;
      }

      .topbar {
        padding: 10px 30px;
      }

      .hero-left {
        padding: 60px 40px;
      }

      .light-theme-section {
        padding: 80px 40px;
      }

      .why-left,
      .why-right {
        padding: 80px 40px;
      }

      footer {
        padding: 80px 40px 30px;
      }
    }

    @media (max-width: 1024px) {
      .hero {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding-bottom: 60px;
      }

      .hero-left {
        padding: 60px 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .hero p {
        max-width: 550px;
      }

      .hero-stats {
        justify-content: center;
        width: 100%;
        gap: 30px;
      }

      .hero-right {
        padding: 20px 24px;
      }

      .mzg-stats-strip {
        grid-template-columns: repeat(2, 1fr);
      }

      .mzg-stat-box {
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        border-right: 1px solid rgba(255, 255, 255, 0.18);
      }

      .mzg-stat-box:nth-child(2),
      .mzg-stat-box:nth-child(4) {
        border-right: none;
      }

      .mzg-stat-box:nth-child(3),
      .mzg-stat-box:nth-child(4) {
        border-bottom: none;
      }

      .be-svc-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .be-prd-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .why-section {
        grid-template-columns: 1fr;
      }

      .why-left {
        border-right: none;
        border-bottom: 2px solid var(--red-primary);
        padding: 60px 24px;
      }

      .why-right {
        padding: 60px 24px;
      }

      .be-test-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .cta-section {
        padding: 60px 40px;
        flex-direction: column;
        text-align: center;
        gap: 24px;
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      .topbar {
        display: none;
      }

      nav {
        height: 60px;
        padding: 0 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      nav .logo {
        position: static;
        transform: none;
        margin: 0;
        display: flex;
        align-items: center;
      }

      .nav-links {
        display: none;
      }

      .nav-right {
        display: none !important;
        /* Hide Cart and Quote button completely from mobile header */
      }

      .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
        /* Push hamburger perfectly to the right side */
      }

      .drawer-cart-btn {
        display: flex !important;
        width: 100%;
        justify-content: center;
        align-items: center;
        height: 46px;
        font-size: 14px !important;
        border-radius: 4px;
        background: var(--d2-black);
        border: 1px solid var(--d2-border);
        color: white;
        font-weight: 600;
        cursor: pointer;
      }

      .drawer-quote-btn {
        display: block !important;
        width: 100%;
        height: 46px;
        line-height: 46px;
        font-size: 14px !important;
        border-radius: 4px;
        padding: 0 !important;
        background: var(--red-primary);
        color: white;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        text-align: center;
      }

      .hero h1 {
        font-size: 54px;
      }

      .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
      }

      .hero-stats>div {
        flex: 1 1 40%;
      }

      .mzg-stats-strip {
        grid-template-columns: 1fr;
      }

      .mzg-stat-box {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
        padding: 20px 24px;
      }

      .mzg-stat-box:last-child {
        border-bottom: none !important;
      }

      .light-theme-section {
        padding: 50px 20px;
      }

      .section-h {
        font-size: 38px;
      }

      .be-svc-header,
      .be-prd-header,
      .be-test-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 30px;
      }

      .be-svc-grid {
        grid-template-columns: 1fr;
      }

      .be-svc-card {
        padding: 30px 24px;
      }

      .be-prd-tabs {
        width: 100%;
        flex-wrap: wrap;
        gap: 6px;
        border: none;
        background: transparent;
      }

      .be-prd-tab {
        flex: 1 1 calc(50% - 6px);
        text-align: center;
        border: 1px solid var(--d2-border) !important;
        border-radius: 4px;
        padding: 8px 12px;
      }

      .be-prd-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .why-left,
      .why-right {
        padding: 50px 20px;
      }

      .why-section .section-title {
        font-size: 38px;
      }

      .big-number {
        font-size: 100px;
      }

      .be-brands-section {
        padding: 40px 20px;
      }

      .be-brands-row {
        gap: 30px;
      }

      .be-brand-item {
        font-size: 18px;
      }

      .be-test-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .cta-section {
        padding: 50px 20px;
      }

      .cta-section .section-title {
        font-size: 36px;
      }

      footer {
        padding: 50px 20px 30px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
      }
    }

    @media (max-width: 480px) {
      .hero h1 {
        font-size: 40px;
      }

      .hero-stats>div {
        flex: 1 1 100%;
      }

      .be-prd-tab {
        flex: 1 1 100%;
      }

      .cart-btn {
        padding: 8px 12px;
        font-size: 11px;
      }

      nav .logo {
        gap: 6px;
      }

      nav .logo-mark {
        width: 32px;
        height: 32px;
      }

      nav .logo-mark span {
        font-size: 14px;
      }

      nav .logo-mark::after {
        width: 10px;
        height: 10px;
        bottom: -3px;
        right: -3px;
      }

      nav .logo-wordmark {
        font-size: 16px;
        letter-spacing: 1.5px;
      }

      nav .logo-wordmark small {
        font-size: 7px;
        letter-spacing: 2px;
      }
    }