:root{
    --bg:#08090b;
    --bg-soft:#0f1114;
    --card:#141619;
    --card-border:#232629;
    --amber:#f5a623;
    --amber-light:#ffc25c;
    --amber-dark:#c9820f;
    --white:#f5f6f7;
    --muted:#9aa0a8;
    --green:#25D366;
    --radius:14px;
    --maxw:1180px;
  }
  *{box-sizing:border-box;margin:0;padding:0;}
  html{scroll-behavior:smooth;overflow-x:hidden;}
  body{
    background:var(--bg);
    color:var(--white);
    font-family:'Manrope',system-ui,-apple-system,sans-serif;
    line-height:1.55;
    overflow-x:hidden;
  }
  h1,h2,h3,h4{font-family:'Sora',system-ui,sans-serif;line-height:1.2;letter-spacing:-0.01em;}
  a{color:inherit;text-decoration:none;}
  img{max-width:100%;display:block;}
  .wrap{max-width:var(--maxw);margin:0 auto;padding:0 20px;}
  ul{list-style:none;}

  /* Background texture */
  .grid-glow{
    position:fixed;inset:0;z-index:-2;
    background:
      radial-gradient(ellipse 900px 500px at 15% -5%, rgba(245,166,35,0.14), transparent 60%),
      radial-gradient(ellipse 700px 500px at 100% 10%, rgba(245,166,35,0.08), transparent 60%),
      linear-gradient(180deg, #08090b 0%, #0a0b0d 100%);
  }
  .noise-lines{
    position:fixed;inset:0;z-index:-1;opacity:0.35;
    background-image:linear-gradient(rgba(245,166,35,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(245,166,35,0.05) 1px, transparent 1px);
    background-size:48px 48px;
    mask-image:radial-gradient(ellipse 60% 40% at 50% 0%, black, transparent 70%);
  }

  /* Reveal animation */
  .reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease, transform .7s ease;}
  .reveal.in{opacity:1;transform:translateY(0);}
  .stagger .reveal:nth-child(1){transition-delay:.05s;}
  .stagger .reveal:nth-child(2){transition-delay:.12s;}
  .stagger .reveal:nth-child(3){transition-delay:.19s;}
  .stagger .reveal:nth-child(4){transition-delay:.26s;}
  .stagger .reveal:nth-child(5){transition-delay:.33s;}

  /* ===== Header — frozen at the top of the viewport at all times ===== */
  header{position:sticky;top:0;z-index:50;}
  .topbar{
    background:rgba(8,9,11,0.86);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--card-border);
  }
  .topbar-inner{display:flex;align-items:center;justify-content:space-between;padding:10px 20px;max-width:var(--maxw);margin:0 auto;gap:18px;flex-wrap:wrap;row-gap:8px;}
  .brand{display:flex;align-items:center;gap:10px;flex-shrink:0;}
  .logo-mark{
    height:46px;flex-shrink:0;background:var(--white);border-radius:9px;
    padding:5px 10px;display:flex;align-items:center;justify-content:center;
    box-shadow:0 6px 16px -8px rgba(0,0,0,.6);
  }
  .logo-mark img{height:100%;width:auto;display:block;}
  .nav-links{display:none;align-items:center;gap:26px;margin:0 auto;}
  .nav-links a{font-size:14px;font-weight:600;color:var(--muted);transition:color .2s ease;}
  .nav-links a:hover{color:var(--amber);}
  @media(min-width:900px){ .nav-links{display:flex;} }
  .topbar-cta{display:flex;gap:10px;align-items:center;flex-shrink:0;}
  .btn{
    display:inline-flex;align-items:center;justify-content:center;gap:8px;
    font-weight:700;font-size:14.5px;
    padding:12px 20px;border-radius:999px;
    border:1px solid transparent;
    cursor:pointer;white-space:nowrap;
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
  }
  .btn:active{transform:scale(.97);}
  .btn-primary{
    background:linear-gradient(135deg, var(--amber-light), var(--amber) 55%, var(--amber-dark));
    color:#1a1200;
    box-shadow:0 8px 24px -6px rgba(245,166,35,0.55);
  }
  .btn-primary:hover{box-shadow:0 10px 30px -4px rgba(245,166,35,0.75);transform:translateY(-2px);}
  .btn-whatsapp{
    background:var(--green);color:#04220f;
    box-shadow:0 8px 24px -8px rgba(37,211,102,0.55);
  }
  .btn-whatsapp:hover{transform:translateY(-2px);box-shadow:0 10px 30px -6px rgba(37,211,102,0.75);}
  .btn-ghost{background:transparent;border:1px solid var(--card-border);color:var(--white);}
  .btn-ghost:hover{border-color:var(--amber);color:var(--amber);}
  .btn-icon{width:42px;height:42px;padding:0;border-radius:50%;flex-shrink:0;}
  .btn-icon .icon{width:19px;height:19px;}
  .btn-sm{padding:9px 16px;font-size:13.5px;}
  .icon{width:18px;height:18px;flex-shrink:0;}

  /* B2B strict ribbon */
  .b2b-ribbon{background:linear-gradient(90deg, var(--amber-dark), var(--amber) 50%, var(--amber-dark));overflow:hidden;white-space:nowrap;position:relative;}
  .b2b-ribbon .marquee-track{display:flex;width:max-content;animation:marquee 26s linear infinite;}
  .b2b-ribbon .marquee{display:inline-flex;gap:36px;padding:9px 18px;font-weight:800;font-size:12.5px;letter-spacing:.05em;text-transform:uppercase;color:#1a1200;}
  .b2b-ribbon .marquee span{display:inline-flex;align-items:center;gap:8px;white-space:nowrap;}
  @keyframes marquee{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}

  /* ===== Hero ===== */
  .hero{padding:56px 0 60px;position:relative;}
  .hero-grid{display:grid;grid-template-columns:1fr;gap:36px;align-items:start;}
  @media(min-width:960px){ .hero-grid{grid-template-columns:1.3fr 1fr;} }
  .hero-grid>*{min-width:0;}
  .hero-main{display:flex;flex-direction:column;min-width:0;}
  .hero-image{
    position:relative;margin-top:32px;border-radius:20px;overflow:hidden;
    border:1px solid var(--card-border);min-height:220px;
    box-shadow:0 26px 60px -24px rgba(0,0,0,0.75);
  }
  @media(min-width:960px){ .hero-image{flex:1;} }
  .hero-image::after{
    content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
    background:linear-gradient(180deg, transparent 40%, rgba(8,9,11,0.75) 100%),
      linear-gradient(90deg, rgba(8,9,11,0.35), transparent 35%);
  }

  /* Hero carousel — cross-fades through product photos on an endless loop */
  .hero-carousel{position:relative;width:100%;height:100%;min-height:220px;}
  .carousel-slide{
    position:absolute;inset:0;width:100%;height:100%;
    object-fit:cover;opacity:0;transition:opacity 1.4s ease;
  }
  .carousel-slide.is-active{opacity:1;}
  .carousel-dots{
    position:absolute;left:0;right:0;bottom:16px;z-index:2;
    display:flex;justify-content:center;gap:8px;
  }
  .carousel-dot{
    width:8px;height:8px;border-radius:50%;padding:0;border:none;
    background:rgba(255,255,255,0.45);cursor:pointer;
    transition:background .25s ease, width .25s ease;
  }
  .carousel-dot:hover{background:rgba(255,255,255,0.7);}
  .carousel-dot.is-active{width:22px;border-radius:4px;background:var(--amber);}

  .eyebrow{
    display:inline-flex;align-items:center;gap:8px;
    background:rgba(245,166,35,0.1);border:1px solid rgba(245,166,35,0.3);
    color:var(--amber-light);font-size:13px;font-weight:700;
    padding:7px 14px;border-radius:999px;margin-bottom:22px;letter-spacing:.02em;
  }
  .eyebrow .dot{width:7px;height:7px;border-radius:50%;background:var(--green);animation:pulse-dot 2s infinite;}
  @keyframes pulse-dot{0%{box-shadow:0 0 0 0 rgba(37,211,102,.55);}70%{box-shadow:0 0 0 8px rgba(37,211,102,0);}100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}}

  .hero h1{
    font-size:clamp(28px,4.4vw,50px);font-weight:800;
    background:linear-gradient(180deg,#fff, #d9dbe0 70%);
    -webkit-background-clip:text;background-clip:text;color:transparent;
  }
  .hero h1 .accent{background:linear-gradient(135deg,var(--amber-light),var(--amber));-webkit-background-clip:text;background-clip:text;color:transparent;}
  .hero-sub{margin-top:18px;font-size:clamp(15.5px,1.8vw,18px);color:var(--muted);max-width:600px;}

  .offer-banner{margin-top:32px;display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:12px;}
  .offer-banner li{
    background:linear-gradient(135deg, var(--amber-light), var(--amber) 60%, var(--amber-dark));
    color:#1a1200;padding:15px 16px;border-radius:12px;
    display:flex;align-items:center;gap:10px;
    font-size:13.5px;font-weight:800;text-transform:uppercase;letter-spacing:.01em;
    box-shadow:0 10px 26px -12px rgba(245,166,35,0.65);
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .offer-banner li:hover{transform:translateY(-3px);box-shadow:0 14px 30px -10px rgba(245,166,35,0.8);}
  .offer-banner li svg{color:#1a1200;flex-shrink:0;}

  /* Bold urgency badge (used once, on the form card) */
  .hot-badge{
    display:inline-flex;align-items:center;gap:6px;
    background:#ff4d4d;color:#fff;font-weight:800;font-size:12px;
    padding:6px 14px;border-radius:999px;margin-bottom:14px;
    text-transform:uppercase;letter-spacing:.05em;
    animation:hot-pulse 1.6s infinite;
  }
  @keyframes hot-pulse{0%,100%{transform:scale(1);}50%{transform:scale(1.06);}}

  /* ===== Dealer form — sits below the USP list, sticky in the right column ===== */
  .hero-form-col{width:100%;}
  @media(min-width:960px){ .hero-form-col{position:sticky;top:96px;} }
  .dealer-form-card{
    background:linear-gradient(160deg,var(--card),#0b0c0e);
    border:1px solid rgba(245,166,35,0.35);border-radius:20px;
    padding:28px 26px 26px;
    box-shadow:0 26px 60px -24px rgba(0,0,0,0.75);
  }
  .form-card-head{display:flex;align-items:flex-start;gap:14px;margin-bottom:18px;}
  .form-card-head .icon-badge{
    width:42px;height:42px;border-radius:12px;background:rgba(245,166,35,0.12);
    display:flex;align-items:center;justify-content:center;color:var(--amber);flex-shrink:0;
  }
  .form-card-head .icon-badge svg{width:21px;height:21px;}
  .form-card-head h3{font-size:19px;font-weight:800;margin-bottom:4px;}
  .form-card-head p{font-size:13.5px;color:var(--muted);}

  .form-b2b-note{
    display:flex;align-items:flex-start;gap:9px;
    background:rgba(255,77,77,0.1);border:1px solid rgba(255,77,77,0.3);
    color:#ff9d9d;font-weight:700;font-size:12.5px;border-radius:10px;padding:10px 14px;margin-bottom:20px;
  }
  .form-b2b-note span{min-width:0;}
  .form-b2b-note svg{flex-shrink:0;margin-top:1px;width:15px;height:15px;}
  .form-status{
    display:flex;align-items:flex-start;gap:9px;
    font-weight:700;font-size:12.5px;border-radius:10px;padding:10px 14px;margin-bottom:20px;
  }
  .form-status.is-success{background:rgba(46,204,113,0.1);border:1px solid rgba(46,204,113,0.35);color:#8fe8b4;}
  .form-status.is-error{background:rgba(255,77,77,0.1);border:1px solid rgba(255,77,77,0.3);color:#ff9d9d;}
  .form-section-label{
    font-size:11.5px;font-weight:700;text-transform:uppercase;letter-spacing:.07em;
    color:var(--amber-light);margin:20px 0 12px;
  }
  .form-section-label:first-of-type{margin-top:0;}
  .form-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:14px 12px;margin-bottom:6px;}
  .form-grid>.field{min-width:0;}
  .field{display:flex;flex-direction:column;gap:6px;min-width:0;}
  .field-full{margin-top:14px;}
  .field label{font-size:12.5px;font-weight:700;color:var(--muted);}
  .input-wrap{position:relative;}
  .input-wrap svg{
    position:absolute;left:13px;top:50%;transform:translateY(-50%);
    width:16px;height:16px;color:var(--muted);pointer-events:none;transition:color .2s ease;
  }
  .input-wrap.icon-top svg{top:15px;transform:none;}
  .field input, .field select, .field textarea{
    background:var(--bg-soft);border:1px solid var(--card-border);border-radius:10px;
    padding:11px 13px 11px 38px;color:var(--white);font-family:inherit;font-size:14px;
    outline:none;transition:border-color .2s ease;width:100%;
  }
  .field select{padding-right:32px;appearance:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239aa0a8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat:no-repeat;background-position:right 12px center;background-size:15px;
  }
  .field input:focus, .field select:focus, .field textarea:focus{border-color:var(--amber);}
  .input-wrap:focus-within svg{color:var(--amber);}
  .field textarea{resize:vertical;}
  .confirm-check{display:flex;align-items:flex-start;gap:10px;font-size:12.5px;color:var(--muted);margin:18px 0 16px;cursor:pointer;line-height:1.5;}
  .confirm-check input{margin-top:3px;accent-color:var(--amber);width:16px;height:16px;flex-shrink:0;}
  .btn-submit{width:100%;padding:15px;font-size:15.5px;}
  .form-note{display:flex;align-items:center;justify-content:center;gap:6px;text-align:center;font-size:11.5px;color:var(--muted);margin-top:14px;}
  .form-note svg{width:13px;height:13px;flex-shrink:0;color:var(--amber);}

  /* ===== Section shell ===== */
  section{padding:70px 0;position:relative;}
  .section-head{max-width:680px;margin:0 auto 40px;text-align:center;}
  .kicker{color:var(--amber);font-weight:700;font-size:13px;letter-spacing:.08em;text-transform:uppercase;margin-bottom:10px;}
  .section-head h2{font-size:clamp(24px,3.4vw,36px);font-weight:800;}
  .section-head p{margin-top:14px;color:var(--muted);font-size:16px;}

  /* Social proof */
  .proof{border-top:1px solid var(--card-border);border-bottom:1px solid var(--card-border);background:var(--bg-soft);}
  .proof-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px;}
  .proof-item{
    background:var(--card);border:1px solid var(--card-border);border-radius:var(--radius);
    padding:22px;display:flex;gap:14px;align-items:flex-start;
    transition:transform .25s ease, border-color .25s ease;
  }
  .proof-item:hover{transform:translateY(-4px);border-color:rgba(245,166,35,0.4);}
  .proof-item svg{color:var(--amber);flex-shrink:0;margin-top:2px;}
  .proof-item p{font-size:14.5px;color:var(--white);font-weight:600;}

  /* CCTV camera illustration gallery — studio-spotlight treatment for clarity */
  .cam-gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:22px;}
  .cam-card-dup{display:none;}
  .cam-card{
    background:linear-gradient(160deg,var(--card),#0b0c0e);
    border:1px solid var(--card-border);border-radius:18px;
    padding:26px 20px 24px;text-align:center;
    transition:transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  }
  .cam-card:hover{transform:translateY(-8px);border-color:rgba(245,166,35,0.5);box-shadow:0 20px 44px -18px rgba(245,166,35,0.4);}
  .cam-art{height:130px;display:flex;align-items:center;justify-content:center;margin-bottom:16px;position:relative;}
  .cam-art::before{
    content:"";position:absolute;left:50%;top:50%;width:150px;height:150px;
    transform:translate(-50%,-50%);
    background:radial-gradient(circle, rgba(245,166,35,0.20), transparent 68%);
    z-index:0;
  }
  .cam-art svg{position:relative;z-index:1;filter:drop-shadow(0 12px 18px rgba(0,0,0,0.55));}
  .cam-card h3{font-size:16px;font-weight:700;margin-bottom:6px;}
  .cam-card p{font-size:13px;color:var(--muted);}

  /* Brand / product repeat section */
  .logo-marquee{
    overflow:hidden;margin-top:8px;
    -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
    mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
  }
  .logo-track{
    display:flex;align-items:center;gap:32px;width:max-content;
    animation:logo-scroll 28s linear infinite;
  }
  .logo-marquee:hover .logo-track{animation-play-state:paused;}
  .logo-item{
    flex:0 0 auto;background:var(--white);border:1px solid var(--card-border);border-radius:12px;
    padding:12px 22px;display:flex;align-items:center;justify-content:center;height:56px;
  }
  .logo-item img{height:100%;width:auto;max-width:130px;object-fit:contain;}
  @keyframes logo-scroll{
    from{transform:translateX(0);}
    to{transform:translateX(-50%);}
  }
  @media (max-width:640px){
    .logo-track{gap:20px;}
    .logo-item{height:44px;padding:10px 16px;}
    .logo-item img{max-width:100px;}
  }
  @media (prefers-reduced-motion: reduce){
    .logo-track{animation:none;}
    .cam-gallery{animation:none !important;}
  }

  /* CCTV category cards — continuous "runner" loop, mobile only */
  @keyframes cam-scroll{
    from{transform:translateX(0);}
    to{transform:translateX(-50%);}
  }
  @media(max-width:640px){
    .cam-gallery-wrap{
      overflow:hidden;margin:0 -16px;padding:0 16px;
      -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
      mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
    }
    .cam-gallery{
      display:flex;grid-template-columns:none;width:max-content;gap:16px;
      animation:cam-scroll 16s linear infinite;
    }
    .cam-gallery-wrap:hover .cam-gallery{animation-play-state:paused;}
    .cam-card{flex:0 0 190px;padding:20px 14px 18px;}
    .cam-card-dup{display:block;}
  }

  .product-cols{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:22px;margin-top:36px;}
  .product-col{
    background:var(--card);border:1px solid var(--card-border);border-radius:var(--radius);
    padding:28px 26px;display:flex;flex-direction:column;
  }
  .product-col-head{display:flex;align-items:center;gap:12px;margin-bottom:20px;}
  .product-col-head .icon-badge{
    width:36px;height:36px;border-radius:10px;background:rgba(245,166,35,0.12);
    display:flex;align-items:center;justify-content:center;color:var(--amber);flex-shrink:0;
  }
  .product-col-head .icon-badge svg{width:18px;height:18px;}
  .product-col h4{font-size:14px;text-transform:uppercase;letter-spacing:.06em;color:var(--white);}
  .product-col ul{flex:1;}
  .product-col ul li{
    padding:11px 0;border-bottom:1px solid var(--card-border);font-size:15px;color:var(--white);
    display:flex;align-items:center;gap:12px;
  }
  .product-col ul li:last-child{border-bottom:none;padding-bottom:0;}
  .product-col ul li .icon-badge{
    width:28px;height:28px;border-radius:8px;background:rgba(245,166,35,0.08);
    display:flex;align-items:center;justify-content:center;color:var(--amber);flex-shrink:0;
  }
  .product-col ul li .icon-badge svg{width:15px;height:15px;}

  /* CTA band — reinforces, but only ever links back to the one form */
  .cta-band{
    position:relative;overflow:hidden;
    background:linear-gradient(135deg,#151005,#0c0d0f);
    border:1px solid rgba(245,166,35,0.3);border-radius:24px;
    display:grid;grid-template-columns:1fr;align-items:center;
  }
  @media(min-width:760px){ .cta-band{grid-template-columns:1.1fr 1fr;} }
  .cta-band-copy{padding:52px 36px;text-align:center;}
  @media(min-width:760px){ .cta-band-copy{text-align:left;} }
  .cta-band h2{font-size:clamp(22px,3.2vw,32px);font-weight:800;margin-bottom:14px;}
  .cta-band p{color:var(--muted);margin-bottom:28px;font-size:15.5px;}
  .cta-band .btn{padding:16px 34px;font-size:16px;}
  .cta-band-image{position:relative;min-height:220px;align-self:stretch;order:-1;}
  .cta-band-image img{width:100%;height:100%;object-fit:cover;display:block;}
  .cta-band-image::after{
    content:"";position:absolute;inset:0;
    background:linear-gradient(180deg, transparent 45%, rgba(12,13,15,0.95) 100%);
  }
  @media(min-width:760px){
    .cta-band-image{order:1;}
    .cta-band-image::after{background:linear-gradient(90deg, rgba(12,13,15,0.95), transparent 42%);}
  }

  /* Footer */
  footer{border-top:1px solid var(--card-border);background:var(--bg-soft);}
  .footer-top{
    display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:32px;
    padding:56px 0 40px;
  }
  @media(max-width:860px){ .footer-top{grid-template-columns:1fr 1fr;row-gap:36px;} }
  @media(max-width:560px){
    .footer-top{grid-template-columns:1fr;text-align:center;}
    .footer-col{display:flex;flex-direction:column;align-items:center;}
    .footer-brand{justify-content:center;}
    .footer-blurb{margin:0 auto;}
    .footer-col ul{align-items:center;}
    .footer-col ul li{justify-content:center;}
    .badge-row{justify-content:center;}
    .footer-links-list li svg, .footer-brands-list li svg{display:none;}
  }
  .footer-brand{display:flex;align-items:center;gap:12px;margin-bottom:14px;}
  .footer-blurb{color:var(--muted);font-size:13.5px;max-width:280px;}
  .footer-col h5{font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--white);margin-bottom:16px;}
  .footer-col ul{display:flex;flex-direction:column;gap:12px;}
  .footer-col ul li{display:flex;align-items:center;gap:9px;font-size:14px;color:var(--muted);}
  .footer-col ul li svg{color:var(--amber);flex-shrink:0;width:15px;height:15px;}
  .footer-col ul li a{color:var(--muted);transition:color .2s ease;}
  .footer-col ul li a:hover{color:var(--amber);}
  .badge-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:16px;}
  .badge{font-size:12px;font-weight:700;background:rgba(245,166,35,0.1);color:var(--amber-light);border:1px solid rgba(245,166,35,0.25);padding:6px 12px;border-radius:999px;}
  .footer-bottom{
    border-top:1px solid var(--card-border);padding:20px 0;
    display:flex;flex-wrap:wrap;gap:10px;align-items:center;justify-content:space-between;
  }
  .footer-note{font-size:12.5px;color:#5c6169;}
  .footer-bottom-links{display:flex;gap:18px;flex-wrap:wrap;}
  .footer-bottom-links a{font-size:12.5px;color:#5c6169;transition:color .2s ease;}
  .footer-bottom-links a:hover{color:var(--amber);}
  @media(max-width:560px){
    .footer-bottom{justify-content:center;text-align:center;}
  }

  @media(max-width:640px){
    .wrap{padding:0 16px;}
    .hero{padding:32px 0 36px;}
    .hero-grid{gap:28px;}
    section{padding:48px 0;}
    .section-head{margin-bottom:28px;}
    .section-head p{font-size:14.5px;}

    .eyebrow{font-size:12px;padding:6px 12px;margin-bottom:16px;}
    .hero-sub{margin-top:14px;}
    .offer-banner{margin-top:24px;gap:10px;}
    .offer-banner li{padding:13px 14px;font-size:12.5px;}
    .hero-image{margin-top:24px;min-height:180px;border-radius:16px;}
    .hero-carousel{min-height:180px;}

    .dealer-form-card{padding:22px 18px 20px;border-radius:16px;}
    .form-card-head{gap:12px;margin-bottom:16px;}
    .form-card-head h3{font-size:17px;}
    .form-section-label{margin:16px 0 10px;}
    .form-grid{gap:12px 10px;}

    .proof-grid{gap:14px;}
    .proof-item{padding:18px;}

    .cam-gallery{gap:16px;}
    .cam-card{padding:22px 16px 20px;}

    .product-cols{gap:16px;margin-top:28px;}
    .product-col{padding:22px 20px;}

    .cta-band{padding:0;border-radius:18px;}
    .cta-band-copy{padding:32px 22px;}
    .cta-band-image{min-height:170px;}

    .footer-top{padding:44px 0 32px;gap:28px;}
  }

  @media(max-width:420px){
    .wrap{padding:0 14px;}
    .topbar-inner{padding:9px 14px;gap:10px;}
    .logo-mark{height:38px;padding:4px 8px;}
    .btn-icon{width:38px;height:38px;}
    .btn-icon .icon{width:17px;height:17px;}

    .b2b-ribbon .marquee{font-size:11px;gap:26px;padding:8px 14px;}

    .offer-banner{grid-template-columns:1fr;}
    .offer-banner li{padding:12px 13px;font-size:12px;}

    .hot-badge{font-size:10.5px;padding:5px 12px;}
    .dealer-form-card{padding:18px 14px 16px;}
    .form-b2b-note{font-size:11.5px;padding:9px 12px;}
    .btn-submit{padding:14px;font-size:14.5px;}
  }

  /* ===== Thank you overlay ===== */
  body.overlay-open{overflow:hidden;}
  .thankyou-overlay{
    position:fixed;inset:0;z-index:999;
    background:rgba(4,5,6,0.72);backdrop-filter:blur(3px);
    display:flex;align-items:center;justify-content:center;padding:20px;
  }
  .thankyou-overlay[hidden]{display:none;}
  .thankyou-card{
    position:relative;width:100%;max-width:380px;text-align:center;
    background:var(--card);border:1px solid rgba(245,166,35,0.35);border-radius:20px;
    padding:36px 28px 30px;box-shadow:0 26px 60px -24px rgba(0,0,0,0.75);
    animation:thankyouPop .25s ease;
  }
  @keyframes thankyouPop{from{opacity:0;transform:scale(.94);}to{opacity:1;transform:scale(1);}}
  .thankyou-icon{
    display:inline-flex;align-items:center;justify-content:center;
    width:56px;height:56px;border-radius:50%;
    background:rgba(46,204,113,0.12);color:#2ecc71;margin-bottom:18px;
  }
  .thankyou-icon svg{width:28px;height:28px;}
  .thankyou-card h3{font-size:22px;font-weight:800;margin-bottom:10px;}
  .thankyou-card p{font-size:14px;color:var(--muted);margin-bottom:24px;}
  .thankyou-ok{width:100%;padding:13px;}
  .thankyou-close{
    position:absolute;top:14px;right:14px;
    width:30px;height:30px;border-radius:8px;border:none;background:transparent;color:var(--muted);
    display:flex;align-items:center;justify-content:center;cursor:pointer;transition:color .2s ease,background .2s ease;
  }
  .thankyou-close svg{width:17px;height:17px;}
  .thankyou-close:hover{color:var(--white);background:rgba(255,255,255,0.06);}
