
:root {
  --navy: #1a1a2e;
  --navy-deep: #12122a;
  --teal: #00A896;
  --teal-dark: #007A6E;
  --teal-light: rgba(0,168,150,0.10);
  --gold: #eeb111;
  --gold-dark: #c89500;
  --black: #111111;
  --gray-text: #555555;
  --gray-muted: #888888;
  --border: #E0E0E0;
  --border-light: #F0F0F0;
  --bg-gray: #F5F5F5;
  --bg-dark: #0f0f0f;
}
a.product-link { color: #111111 !important; font-weight: 700; text-decoration: none; }
a.product-link:hover { text-decoration: underline; }
.reveal { opacity: 1 !important; transform: none !important; }

    
    
    
    
    
    a.product-link {
      color: #111111;
      font-weight: 700;
      text-decoration: none;
    }
    a.product-link:hover {
      text-decoration: underline;
      color: #333333;
    }

    

    .container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
    .section { padding: 100px 0; }
    .section-sm { padding: 70px 0; }
    .bg-gray { background: var(--bg-gray); }
    .bg-navy { background: var(--navy); }

    .section-label {
      display: inline-block;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 800;
      line-height: 1.15;
      color: var(--black);
      margin-bottom: 16px;
    }
    .section-subtitle {
      font-size: 17px;
      color: var(--gray-text);
      line-height: 1.7;
      max-width: 640px;
    }

    
    .plott-logo {
      font-style: italic;
      color: var(--gold);
      font-family: Georgia, 'Times New Roman', serif;
      font-weight: 700;
    }

    
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    
    .hero {
      background: var(--navy);
      color: #fff;
      padding: 90px 0 0;
      overflow: hidden;
      position: relative;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 70% 30%, rgba(238,177,17,0.09) 0%, transparent 60%),
        radial-gradient(ellipse at 15% 70%, rgba(0,168,150,0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 80%, rgba(238,177,17,0.05) 0%, transparent 45%);
      pointer-events: none;
    }
    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px 80px;
      position: relative;
      z-index: 1;
    }
    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      padding: 6px 14px;
      border: 1px solid rgba(238,177,17,0.3);
      border-radius: 100px;
      background: rgba(238,177,17,0.07);
    }
    .hero-title {
      font-size: clamp(46px, 5.5vw, 76px);
      font-weight: 900;
      line-height: 1.03;
      color: #ffffff;
      margin-bottom: 6px;
    }
    .hero-title-gold {
      color: var(--gold);
    }
    .hero-title-line2 {
      font-size: clamp(40px, 4.8vw, 68px);
      font-weight: 900;
      line-height: 1.0;
      color: #ffffff;
      margin-bottom: 24px;
    }
    .hero-tagline-sm {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      margin-bottom: 22px;
    }
    .hero-tagline-sm span { color: var(--gold); margin: 0 6px; }
    .hero-pitch {
      font-size: 17px;
      color: rgba(255,255,255,0.75);
      line-height: 1.75;
      margin-bottom: 40px;
      max-width: 490px;
    }
    .hero-cta-row {
      display: flex;
      gap: 14px;
      align-items: center;
      flex-wrap: wrap;
    }
    .btn-gold {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 15px 26px;
      background: #111111;
      color: #ffffff;
      font-size: 14px;
      font-weight: 800;
      border-radius: 3px;
      letter-spacing: 0.03em;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      border: 2px solid rgba(255,255,255,0.15);
      cursor: pointer;
      text-decoration: none;
      white-space: nowrap;
    }
    .btn-gold:hover {
      background: #222222;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(220,38,38,0.25);
      color: #ffffff;
      border-color: rgba(220,38,38,0.4);
    }
    .btn-teal {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 15px 26px;
      background: #111111;
      color: #ffffff;
      font-size: 14px;
      font-weight: 800;
      border-radius: 3px;
      letter-spacing: 0.03em;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      border: 2px solid rgba(255,255,255,0.15);
      cursor: pointer;
      text-decoration: none;
      white-space: nowrap;
    }
    .btn-teal:hover {
      background: #222222;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(57,255,20,0.2);
      color: #ffffff;
      border-color: rgba(57,255,20,0.35);
    }
    .btn-outline-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 24px;
      background: transparent;
      color: rgba(255,255,255,0.75);
      font-size: 14px;
      font-weight: 600;
      border: 2px solid rgba(255,255,255,0.2);
      border-radius: 3px;
      transition: all 0.2s;
      text-decoration: none;
      white-space: nowrap;
    }
    .btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }

    
    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 400px;
    }
    .laser-scene {
      position: relative;
      width: 360px;
      height: 380px;
    }

    
    .tripod-base {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 8px;
      background: linear-gradient(90deg, #555, #888, #555);
      border-radius: 4px;
    }
    .tripod-leg {
      position: absolute;
      bottom: 28px;
      width: 4px;
      height: 90px;
      background: linear-gradient(180deg, #999, #666);
      border-radius: 2px;
      transform-origin: top center;
    }
    .tripod-leg-l { left: 50%; margin-left: -40px; transform: rotate(-12deg); }
    .tripod-leg-m { left: 50%; margin-left: -2px; }
    .tripod-leg-r { left: 50%; margin-left: 36px; transform: rotate(12deg); }
    .tripod-pole {
      position: absolute;
      bottom: 105px;
      left: 50%;
      transform: translateX(-50%);
      width: 6px;
      height: 60px;
      background: linear-gradient(180deg, #aaa, #777);
      border-radius: 3px;
    }

    
    .laser-head {
      position: absolute;
      bottom: 158px;
      left: 50%;
      transform: translateX(-50%);
      width: 70px;
      height: 44px;
      background: linear-gradient(135deg, #2a2a3e, #1a1a2e);
      border-radius: 8px;
      border: 1px solid rgba(238,177,17,0.3);
      box-shadow:
        0 4px 20px rgba(0,0,0,0.5),
        0 0 0 1px rgba(238,177,17,0.15),
        inset 0 1px 0 rgba(255,255,255,0.08);
    }
    .laser-head::after {
      content: 'PRL900HT';
      position: absolute;
      bottom: 4px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 5px;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: rgba(238,177,17,0.6);
      white-space: nowrap;
    }
    .laser-dome {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      height: 24px;
      background: linear-gradient(180deg, #3a3a55, #1a1a2e);
      border-radius: 50% 50% 0 0;
      border: 1px solid rgba(238,177,17,0.25);
      overflow: hidden;
    }
    .laser-dome::after {
      content: '';
      position: absolute;
      top: 3px;
      left: 50%;
      transform: translateX(-50%);
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 8px 3px rgba(238,177,17,0.7), 0 0 16px 6px rgba(238,177,17,0.4);
      animation: laser-pulse 1.4s ease-in-out infinite;
    }
    @keyframes laser-pulse {
      0%,100% { box-shadow: 0 0 8px 3px rgba(238,177,17,0.7), 0 0 16px 6px rgba(238,177,17,0.4); opacity: 1; }
      50% { box-shadow: 0 0 12px 5px rgba(238,177,17,0.9), 0 0 28px 12px rgba(238,177,17,0.6); opacity: 0.85; }
    }

    
    .laser-sweep-wrap {
      position: absolute;
      bottom: 176px;
      left: 50%;
      width: 0;
      height: 0;
    }
    .laser-beam {
      position: absolute;
      width: 200px;
      height: 2px;
      background: linear-gradient(90deg, rgba(238,177,17,0.9), rgba(238,177,17,0.0));
      transform-origin: left center;
      border-radius: 2px;
    }
    .beam-1 { transform: rotate(-30deg); animation: beam-sweep 3s ease-in-out infinite; }
    .beam-2 { transform: rotate(0deg); animation: beam-sweep 3s ease-in-out infinite 0.3s; opacity: 0.7; }
    .beam-3 { transform: rotate(30deg); animation: beam-sweep 3s ease-in-out infinite 0.6s; opacity: 0.5; }
    .beam-4 { transform: rotate(-15deg); animation: beam-sweep 3s ease-in-out infinite 0.15s; opacity: 0.6; }
    .beam-5 { transform: rotate(15deg); animation: beam-sweep 3s ease-in-out infinite 0.45s; opacity: 0.6; }
    @keyframes beam-sweep {
      0%,100% { opacity: 0.9; filter: blur(0.5px); }
      50% { opacity: 0.4; filter: blur(1px); }
    }
    .beam-glow-ring {
      position: absolute;
      left: 80px;
      top: -50px;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      border: 1px solid rgba(238,177,17,0.15);
      animation: ring-expand 3s ease-in-out infinite;
    }
    .beam-glow-ring-2 {
      position: absolute;
      left: 40px;
      top: -90px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      border: 1px solid rgba(238,177,17,0.08);
      animation: ring-expand 3s ease-in-out infinite 0.5s;
    }
    @keyframes ring-expand {
      0% { transform: scale(0.8); opacity: 0.6; }
      50% { transform: scale(1.1); opacity: 0.2; }
      100% { transform: scale(0.8); opacity: 0.6; }
    }

    
    .bt-signal {
      position: absolute;
      top: 90px;
      right: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3px;
    }
    .bt-icon {
      font-size: 22px;
      color: var(--teal);
      filter: drop-shadow(0 0 6px rgba(0,168,150,0.6));
      animation: bt-pulse 2s ease-in-out infinite;
    }
    @keyframes bt-pulse { 0%,100%{ opacity:1; } 50%{ opacity:0.4; } }
    .bt-wave {
      width: 28px;
      height: 14px;
      border-top: 2px solid rgba(0,168,150,0.5);
      border-left: 2px solid rgba(0,168,150,0.5);
      border-radius: 12px 0 0 0;
      animation: bt-wave-anim 2s ease-in-out infinite;
    }
    .bt-wave-2 {
      width: 20px;
      height: 10px;
      border-top: 1px solid rgba(0,168,150,0.35);
      border-left: 1px solid rgba(0,168,150,0.35);
      border-radius: 8px 0 0 0;
      margin-left: 4px;
      animation: bt-wave-anim 2s ease-in-out infinite 0.3s;
    }
    @keyframes bt-wave-anim {
      0%,100%{ opacity: 0.8; transform: scale(1); }
      50%{ opacity: 0.3; transform: scale(1.1); }
    }

    
    .phone-mock {
      position: absolute;
      top: 40px;
      right: 20px;
      width: 90px;
      height: 160px;
      background: linear-gradient(145deg, #1e1e35, #0d0d1a);
      border-radius: 14px;
      border: 2px solid rgba(238,177,17,0.25);
      box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
      overflow: hidden;
    }
    .phone-screen {
      position: absolute;
      inset: 6px;
      background: var(--navy-deep);
      border-radius: 9px;
      padding: 8px 6px;
    }
    .phone-notch {
      width: 24px;
      height: 5px;
      background: #0a0a15;
      border-radius: 3px;
      margin: 0 auto 6px;
    }
    .phone-app-header {
      font-size: 6px;
      font-weight: 800;
      color: var(--gold);
      font-style: italic;
      font-family: Georgia, serif;
      text-align: center;
      margin-bottom: 6px;
      letter-spacing: 0.05em;
    }
    .phone-stat-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 5px;
    }
    .phone-stat {
      text-align: center;
      flex: 1;
    }
    .phone-stat-val {
      font-size: 9px;
      font-weight: 800;
      color: var(--teal);
      display: block;
    }
    .phone-stat-lbl {
      font-size: 4.5px;
      color: rgba(255,255,255,0.35);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .phone-divider {
      height: 1px;
      background: rgba(255,255,255,0.07);
      margin: 5px 0;
    }
    .phone-slope-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4px;
      margin-bottom: 5px;
    }
    .phone-slope-box {
      background: rgba(238,177,17,0.08);
      border: 1px solid rgba(238,177,17,0.2);
      border-radius: 4px;
      padding: 3px 4px;
      text-align: center;
    }
    .phone-slope-lbl {
      font-size: 4px;
      color: rgba(255,255,255,0.4);
      text-transform: uppercase;
    }
    .phone-slope-val {
      font-size: 9px;
      font-weight: 800;
      color: var(--gold);
    }
    .phone-hi-alert {
      display: flex;
      align-items: center;
      gap: 3px;
      padding: 3px 4px;
      background: rgba(0,168,150,0.1);
      border-radius: 4px;
      border: 1px solid rgba(0,168,150,0.2);
    }
    .phone-hi-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--teal);
      animation: bt-pulse 1.5s infinite;
    }
    .phone-hi-txt {
      font-size: 4.5px;
      color: var(--teal);
      font-weight: 700;
      text-transform: uppercase;
    }
    .phone-rpm-bar {
      margin-top: 5px;
    }
    .phone-rpm-lbl {
      font-size: 4.5px;
      color: rgba(255,255,255,0.35);
      text-transform: uppercase;
      margin-bottom: 2px;
    }
    .phone-rpm-track {
      height: 5px;
      background: rgba(255,255,255,0.06);
      border-radius: 3px;
      overflow: hidden;
    }
    .phone-rpm-fill {
      width: 65%;
      height: 100%;
      background: linear-gradient(90deg, var(--teal), var(--gold));
      border-radius: 3px;
      animation: rpm-fill-anim 2s ease-in-out infinite alternate;
    }
    @keyframes rpm-fill-anim { from { width: 45%; } to { width: 80%; } }

    
    .bt-line {
      position: absolute;
      top: 150px;
      right: 62px;
      width: 60px;
      height: 40px;
      border-right: 1px dashed rgba(0,168,150,0.25);
      border-bottom: 1px dashed rgba(0,168,150,0.25);
      border-radius: 0 0 8px 0;
    }

    
    .marquee-strip {
      background: var(--gold);
      padding: 13px 0;
      overflow: hidden;
      position: relative;
      z-index: 2;
    }
    .marquee-inner {
      display: flex;
      gap: 0;
      animation: marquee-scroll 28s linear infinite;
      white-space: nowrap;
    }
    .marquee-item {
      font-size: 11.5px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--navy);
      flex-shrink: 0;
      padding: 0 28px;
    }
    .marquee-dot {
      font-size: 11px;
      color: var(--navy-deep);
      opacity: 0.4;
    }
    @keyframes marquee-scroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    
    .statbar {
      background: var(--navy);
      border-top: 1px solid rgba(255,255,255,0.05);
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    .statbar-inner {
      display: flex;
      flex-direction: row;
      min-width: max-content;
      max-width: 1200px;
      margin: 0 auto;
    }
    .statbar-item {
      padding: 30px 40px;
      border-right: 1px solid rgba(255,255,255,0.06);
      text-align: center;
      flex-shrink: 0;
    }
    .statbar-item:last-child { border-right: none; }
    .statbar-val {
      font-size: 28px;
      font-weight: 900;
      color: #fff;
      line-height: 1;
    }
    .statbar-val .stat-unit {
      font-size: 14px;
      font-weight: 600;
      color: var(--gold);
    }
    .statbar-lbl {
      font-size: 11px;
      font-weight: 500;
      color: rgba(255,255,255,0.38);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-top: 6px;
    }

    
    .why-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .why-body p {
      font-size: 16px;
      color: var(--gray-text);
      line-height: 1.8;
      margin-bottom: 20px;
    }
    .why-body p:last-child { margin-bottom: 0; }
    .why-badges {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .why-badge {
      padding: 28px 24px;
      background: var(--bg-gray);
      border-radius: 6px;
      border-top: 3px solid var(--teal);
      text-align: center;
    }
    .why-badge-icon { font-size: 30px; margin-bottom: 10px; display:flex; align-items:center; justify-content:center; width:56px; height:56px; background:rgba(0,168,150,0.1); border-radius:50%; margin:0 auto 14px; }
    .why-badge-stat {
      font-size: 22px;
      font-weight: 900;
      color: var(--black);
      line-height: 1.1;
    }
    .why-badge-stat .stat-accent { color: var(--teal); }
    .why-badge-lbl {
      font-size: 12px;
      font-weight: 600;
      color: var(--gray-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-top: 4px;
    }

    
    .lineup-heading { text-align: center; margin-bottom: 56px; }
    .lineup-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-auto-rows: 1fr;
      gap: 28px;
      align-items: stretch;
    }
    .lineup-card {
      background: #fff;
      border-radius: 8px;
      border: 2px solid var(--border);
      overflow: hidden;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .lineup-card:hover {
      border-color: var(--teal);
      box-shadow: 0 16px 48px rgba(0,168,150,0.12);
      transform: translateY(-3px);
    }
    .lineup-card-header {
      padding: 32px 32px 24px;
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }
    .lineup-card-header::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .lineup-card-r .lineup-card-header::before {
      background: radial-gradient(ellipse at 80% 20%, rgba(255,65,54,0.12) 0%, transparent 60%);
    }
    .lineup-card-g .lineup-card-header::before {
      background: radial-gradient(ellipse at 80% 20%, rgba(0,208,132,0.15) 0%, transparent 60%);
    }
    .lineup-beam-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .badge-red {
      background: rgba(220,38,38,0.25);
      color: #ff4444;
      border: 2px solid rgba(220,38,38,0.7);
    }
    .badge-green {
      background: rgba(34,197,94,0.2);
      color: #22c55e;
      border: 2px solid rgba(34,197,94,0.7);
      animation: green-badge-glow 2.5s ease-in-out infinite;
    }
    @keyframes green-badge-glow {
      0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
      50% { box-shadow: 0 0 16px 4px rgba(34,197,94,0.4); }
    }
    .lineup-model {
      font-size: 32px;
      font-weight: 900;
      color: #fff;
      margin-bottom: 4px;
    }
    .lineup-sku {
      font-size: 13px;
      font-weight: 700;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.06em;
      margin-bottom: 0;
    }

    
    .card-laser-vis {
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      width: 60px;
      height: 80px;
      opacity: 0.5;
    }
    .card-laser-
    .card-laser-top {
      width: 22px;
      height: 12px;
      background: linear-gradient(180deg, #2a2a45, #1a1a2e);
      border-radius: 50% 50% 0 0;
      margin: 0 auto -1px;
      position: relative;
    }
    .card-laser-dot-r {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #ff3333;
      box-shadow: 0 0 14px 6px rgba(255,50,50,0.9), 0 0 4px 2px rgba(255,50,50,1);
      margin: 3px auto 0;
    }
    .card-laser-dot-g {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #22c55e;
      box-shadow: 0 0 14px 6px rgba(34,197,94,0.9), 0 0 4px 2px rgba(34,197,94,1);
      margin: 3px auto 0;
      animation: green-dot-pulse 1.5s ease-in-out infinite;
    }
    @keyframes green-dot-pulse {
      0%,100% { box-shadow: 0 0 14px 6px rgba(34,197,94,0.9); }
      50% { box-shadow: 0 0 22px 10px rgba(34,197,94,1); }
    }
    .card-beam-r {
      width: 50px;
      height: 2px;
      background: linear-gradient(90deg, rgba(255,65,54,0.8), transparent);
      margin: 8px 0 0 5px;
      transform: rotate(-10deg);
    }
    .card-beam-g {
      width: 50px;
      height: 2px;
      background: linear-gradient(90deg, rgba(0,208,132,0.9), transparent);
      margin: 8px 0 0 5px;
      transform: rotate(-10deg);
      animation: beam-flicker 2s ease-in-out infinite;
    }
    @keyframes beam-flicker {
      0%,100% { opacity:1; } 50% { opacity:0.6; }
    }

    .lineup-card-
    .lineup-pitch { flex: 1; }
    .lineup-card-body .lineup-quick-specs { margin-top: 20px; margin-bottom: 24px; }
    .lineup-card-body .lineup-cta { margin-top: 20px; display: flex; align-self: stretch; text-align: center; justify-content: center; }
    .lineup-pitch {
      font-size: 15px;
      color: #333333;
      line-height: 1.75;
      margin-bottom: 22px;
    }
    .lineup-quick-specs {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }
    .quick-spec-pill {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 7px 14px;
      background: var(--bg-gray);
      border: 1px solid var(--border);
      border-radius: 100px;
      font-size: 13px;
      font-weight: 700;
      color: #111111;
      white-space: nowrap;
    }
    .lineup-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 24px;
      font-size: 14px;
      font-weight: 700;
      border-radius: 3px;
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: all 0.2s;
    }
    .lineup-cta-r {
      background: var(--red);
      color: #ffffff;
      border: 2px solid var(--red);
    }
    .lineup-cta-r:hover {
      background: var(--red-dark, #b91c1c);
      color: #ffffff;
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(220,38,38,0.35);
      border-color: var(--red-dark, #b91c1c);
    }
    .lineup-cta-g {
      background: #16a34a;
      color: #ffffff;
      border: 2px solid #16a34a;
    }
    .lineup-cta-g:hover {
      background: #15803d;
      color: #ffffff;
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(34,197,94,0.35);
      border-color: #15803d;
    }

    
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border-light);
      border: 1px solid var(--border-light);
    }
    .feature-card {
      background: #fff;
      padding: 36px 32px;
    }
    .feature-icon { font-size: 0; margin-bottom: 18px; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: rgba(0,168,150,0.1); border-radius: 50%; }
    .feature-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 10px;
    }
    .feature-stat {
      font-size: 13px;
      font-weight: 800;
      color: var(--teal);
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .feature-desc {
      font-size: 14px;
      color: var(--gray-text);
      line-height: 1.7;
    }

    
    .vs-table-wrap {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    .vs-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      min-width: 520px;
    }
    .vs-table thead th {
      padding: 16px 20px;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-align: center;
    }
    .vs-table thead th:first-child {
      text-align: left;
      color: var(--gray-muted);
      background: transparent;
    }
    .vs-table thead th.col-r {
      background: rgba(255,65,54,0.07);
      color: #e03020;
    }
    .vs-table thead th.col-g {
      background: var(--teal);
      color: #fff;
    }
    .vs-table tbody td {
      padding: 13px 20px;
      border-bottom: 1px solid var(--border-light);
    }
    .vs-table tbody td:first-child {
      color: var(--black);
      font-weight: 600;
    }
    .vs-table tbody td.col-r {
      background: rgba(255,65,54,0.03);
      text-align: center;
      color: var(--gray-text);
    }
    .vs-table tbody td.col-g {
      background: rgba(0,168,150,0.05);
      text-align: center;
      font-weight: 700;
      color: var(--teal);
    }
    .vs-table tbody tr:last-child td { border-bottom: none; }
    .vs-win { color: var(--teal); font-weight: 700; }
    tbody tr:hover td { background: #1a2a2a !important; color: #ffffff !important; }
    tbody tr:hover td * { color: #ffffff !important; }
    tbody tr:hover td span { color: #ffffff !important; }
    tbody tr:hover td strong { color: #ffffff !important; }

    
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--border);
      border-radius: 6px;
      overflow: hidden;
    }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-item:last-child { border-bottom: none; }
    .faq-q {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      padding: 22px 28px;
      font-size: 15px;
      font-weight: 600;
      color: var(--black);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: inherit;
      gap: 16px;
    }
    .faq-q:hover { background: var(--teal-light); }
    .faq-chevron {
      font-size: 18px;
      color: var(--gray-muted);
      transition: transform 0.25s;
      flex-shrink: 0;
    }
    .faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--teal); }
    .faq-a {
      display: none;
      padding: 0 28px 22px;
      font-size: 14px;
      color: var(--gray-text);
      line-height: 1.8;
    }
    .faq-item.open .faq-a { display: block; }

    
    .cta-banner {
      background: var(--navy);
      color: #fff;
      padding: 90px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 30% 50%, rgba(238,177,17,0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 50%, rgba(0,168,150,0.07) 0%, transparent 55%);
      pointer-events: none;
    }
    .cta-banner-inner { position: relative; z-index: 1; }
    .cta-banner h2 {
      font-size: clamp(30px, 4vw, 48px);
      font-weight: 900;
      margin-bottom: 16px;
      color: #fff;
    }
    .cta-banner h2 em {
      font-style: normal;
      color: var(--gold);
    }
    .cta-banner p {
      font-size: 18px;
      color: rgba(255,255,255,0.6);
      margin-bottom: 40px;
    }
    .cta-btn-row {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      align-items: center;
    }
    .cta-phone {
      margin-top: 24px;
      font-size: 15px;
      color: rgba(255,255,255,0.5);
    }
    .cta-phone 
    .cta-phone 

    
    .kit-section { background: var(--bg-gray); }
    .kit-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 56px;
    }
    .kit-card {
      background: #ffffff;
      border-radius: 8px;
      border: 2px solid var(--border);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
    }
    .kit-card:hover {
      border-color: var(--gold);
      box-shadow: 0 16px 48px rgba(238,177,17,0.15);
      transform: translateY(-3px);
    }
    .kit-card-header {
      background: var(--navy);
      padding: 22px 24px 18px;
      position: relative;
    }
    .kit-badge {
      display: inline-block;
      padding: 5px 12px;
      border-radius: 100px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .kit-badge-gray {
      background: rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.7);
      border: 1px solid rgba(255,255,255,0.2);
    }
    .kit-badge-gold {
      background: var(--gold);
      color: var(--navy);
      border: 1px solid var(--gold);
    }
    .kit-badge-blue {
      background: rgba(59,130,246,0.2);
      color: #60a5fa;
      border: 1px solid rgba(59,130,246,0.4);
    }
    .kit-card-title {
      font-size: 26px;
      font-weight: 900;
      color: #ffffff;
      line-height: 1;
      margin-bottom: 4px;
    }
    .kit-card-sku {
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.05em;
    }
    .kit-card-price {
      font-size: 28px;
      font-weight: 900;
      color: var(--gold);
      margin-top: 10px;
    }
    .kit-card-
    .kit-includes-label {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gray-muted);
      margin-bottom: 8px;
    }
    .kit-includes-list {
      list-style: none;
      margin-bottom: 16px;
    }
    .kit-includes-list li {
      font-size: 13px;
      color: #111111;
      padding: 4px 0;
      display: flex;
      align-items: flex-start;
      gap: 7px;
      line-height: 1.4;
    }
    .kit-includes-list li::before {
      content: '✓';
      color: var(--teal);
      font-weight: 900;
      font-size: 12px;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .kit-row-check {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 0;
      border-top: 1px solid var(--border-light);
      font-size: 13px;
    }
    .kit-row-check-label { color: var(--gray-muted); font-weight: 600; min-width: 80px; }
    .kit-row-check-val { color: #111111; font-weight: 700; }
    .kit-row-check-val.yes { color: #16a34a; }
    .kit-row-check-val.no { color: #dc2626; }
    .kit-best-for {
      margin-top: 10px;
      padding: 10px 12px;
      background: rgba(238,177,17,0.07);
      border-left: 3px solid var(--gold);
      border-radius: 0 4px 4px 0;
      font-size: 12px;
      color: #555;
    }
    .kit-best-for strong { color: var(--navy); }
    .kit-cta-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: auto;
      padding-top: 16px;
      padding-bottom: 0;
    }
    .kit-cta-btn 
    .kit-cta-btn 
    .kit-green-note {
      text-align: center;
      font-size: 14px;
      color: var(--gray-text);
      margin-top: 0;
      margin-bottom: 48px;
      padding: 14px 20px;
      background: rgba(0,168,150,0.07);
      border-radius: 6px;
      border: 1px solid rgba(0,168,150,0.2);
    }
    .kit-green-note 
    
    .config-chart-wrap {
      background: #ffffff;
      border-radius: 8px;
      border: 1px solid var(--border);
      overflow: hidden;
    }
    .config-chart-header {
      background: var(--navy);
      padding: 28px 32px 20px;
    }
    .config-chart-header h3 {
      font-size: 22px;
      font-weight: 900;
      color: #ffffff;
      margin-bottom: 6px;
    }
    .config-chart-header p {
      font-size: 14px;
      color: rgba(255,255,255,0.55);
    }
    .filter-row {
      padding: 16px 24px;
      background: #f8f8f8;
      border-bottom: 1px solid var(--border-light);
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      align-items: center;
    }
    .filter-label {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gray-muted);
      margin-right: 4px;
    }
    .filter-btn {
      padding: 7px 14px;
      font-size: 12px;
      font-weight: 700;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.18s;
      border: 2px solid var(--border);
      background: transparent;
      color: #555;
      font-family: inherit;
      letter-spacing: 0.03em;
    }
    .filter-btn:hover { border-color: var(--gold); color: var(--navy); }
    .filter-btn.active {
      background: var(--navy);
      color: var(--gold);
      border-color: var(--navy);
    }
    .config-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .config-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      min-width: 680px;
    }
    .config-table thead th {
      padding: 14px 16px;
      background: var(--navy);
      color: var(--gold);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-align: left;
      cursor: pointer;
      user-select: none;
      white-space: nowrap;
    }
    .config-table thead th:hover { background: #252550; }
    .config-table thead th .sort-arrow { margin-left: 5px; opacity: 0.4; font-size: 10px; }
    .config-table thead th.sorted .sort-arrow { opacity: 1; color: #fff; }
    .config-table tbody td {
      padding: 13px 16px;
      border-bottom: 1px solid var(--border-light);
      color: #111111;
      vertical-align: middle;
    }
    .config-table tbody tr:last-child td { border-bottom: none; }
    .config-table tbody tr:hover td { background: #1a2a2a !important; color: #ffffff !important; }
    .config-table tbody tr:hover td * { color: #ffffff !important; }
    .config-table tbody tr.hidden { display: none; }
    .config-shop-btn {
      display: inline-block;
      padding: 6px 14px;
      background: #111111;
      color: var(--gold) !important;
      font-size: 12px;
      font-weight: 700;
      border: 1px solid rgba(238,177,17,0.5);
      border-radius: 3px;
      text-decoration: none;
      white-space: nowrap;
      transition: background 0.2s;
    }
    .config-shop-btn:hover { background: #2a2a2a; color: var(--gold) !important; }
    .beam-red { color: #DC2626; font-weight: 700; }
    .beam-green { color: #16a34a; font-weight: 700; }
    @media (max-width: 768px) {
      .kit-grid { grid-template-columns: 1fr; }
    }

    
    .footer {
      background: #fff;
      border-top: 1px solid var(--border-light);
      padding: 30px 0;
      text-align: center;
    }
    .footer-brand { font-size: 15px; color: var(--gray-text); margin-bottom: 6px; }
    .footer-brand strong { color: var(--black); }
    .footer-sub { font-size: 12px; color: var(--gray-muted); margin-top: 6px; }
    .footer-links { display: flex; gap: 24px; justify-content: center; margin-top: 14px; }
    .footer-links 
    .footer-links 

    
    @media (max-width: 768px) {
      .container { padding: 0 18px; }
      .section { padding: 64px 0; }
      .section-sm { padding: 48px 0; }

      .hero { padding: 60px 0 0; }
      .hero-inner {
        grid-template-columns: 1fr;
        padding: 0 18px 60px;
        gap: 40px;
      }
      .hero-visual { min-height: 280px; }
      .laser-scene { width: 280px; height: 300px; transform: scale(0.85); }
      .phone-mock { right: -5px; top: 20px; width: 72px; height: 128px; }

      .statbar-item { padding: 24px 28px; }

      .why-inner { grid-template-columns: 1fr; gap: 40px; }
      .why-badges { grid-template-columns: 1fr 1fr; }

      .lineup-grid { grid-template-columns: 1fr; }

      .features-grid { grid-template-columns: 1fr 1fr; }
      .feature-card:last-child:nth-child(odd) { grid-column: 1 / -1; }

      .vs-table thead th { font-size: 10px; padding: 12px 14px; }
      .vs-table tbody td { padding: 11px 14px; font-size: 13px; }

      .cta-btn-row { flex-direction: column; }
      .btn-gold, .btn-teal { width: 100%; justify-content: center; }

      .footer-links { flex-wrap: wrap; gap: 14px; }
    }

    @media (max-width: 480px) {
      .features-grid { grid-template-columns: 1fr; }
      .why-badges { grid-template-columns: 1fr; }
    }
  