:root{
      --blue:#0d74e7;
      --blue-dark:#082c68;
      --blue-soft:#edf6ff;
      --ink:#102851;
      --muted:#5d6f89;
      --line:#dce8f5;
      --white:#ffffff;
      --red:#ff2323;
      --shadow:0 18px 55px rgba(35,89,145,.16);
      --radius:22px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:Inter,system-ui,sans-serif;
      color:var(--ink);
      background:#fff;
    }
    a{text-decoration:none;color:inherit}
    img{display:block;max-width:100%}

    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      height:78px;
      display:flex;
      align-items:center;
      padding:0 clamp(22px,5vw,78px);
      gap:32px;
      background:rgba(255,255,255,.92);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(20,90,160,.08);
    }
    .logo-link{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
    }
    .logo-link img{
      width:62px;
      height:62px;
      object-fit:contain;
      border-radius:50%;
      box-shadow:0 6px 18px rgba(0,70,150,.12);
    }
    nav{
      display:flex;
      gap:34px;
      margin-left:auto;
      align-items:center;
    }
    nav a{
      font-size:14px;
      font-weight:700;
      color:#234876;
      padding:29px 0 24px;
      border-bottom:3px solid transparent;
    }
    nav a:hover,
    nav a.active{
      color:var(--blue);
      border-color:var(--blue);
    }
    .socials{
      display:flex;
      gap:10px;
      margin-left:10px;
    }
    .socials a{
      width:36px;
      height:36px;
      display:grid;
      place-items:center;
      border-radius:50%;
      background:#eef5fd;
      color:var(--blue);
      font-weight:800;
      border:1px solid #e1ecf8;
    }
    .menu-btn{
      display:none;
      margin-left:auto;
      border:0;
      background:#eef5fd;
      color:var(--ink);
      width:42px;
      height:42px;
      border-radius:10px;
      font-size:22px;
    }

    .hero{
      position:relative;
      min-height:650px;
      overflow:hidden;
      background:
        radial-gradient(circle at 18% 30%, rgba(13,116,231,.13), transparent 26rem),
        linear-gradient(110deg,#fff 0%,#f7fbff 50%,#eaf5ff 100%);
      border-bottom:1px solid #e8f0f8;
    }
    .hero-art{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:contain;
      object-position:center center;
    }
    .hero-overlay{
      position:absolute;
      inset:0;
      pointer-events:none;
      background:linear-gradient(90deg,rgba(255,255,255,.04),rgba(255,255,255,0));
    }

    .below-hero{
      position:relative;
      z-index:3;
      margin-top:-1px;
      background:#fff;
    }

    .feature-bar{
      width:min(1450px,calc(100% - 44px));
      margin:-50px auto 0;
      position:relative;
      z-index:5;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      padding:20px 26px;
      border-radius:24px;
      background:#fff;
      box-shadow:var(--shadow);
      border:1px solid #edf3fa;
    }
    .feature{
      display:flex;
      align-items:center;
      gap:18px;
      padding:6px 24px;
      border-right:1px solid var(--line);
    }
    .feature:last-child{border-right:0}
    .feature-icon{
      width:64px;
      height:64px;
      flex:0 0 64px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#fff;
      font-size:28px;
      background:linear-gradient(145deg,#1589ff,#0866d4);
    }
    .feature strong{
      display:block;
      font-size:17px;
      margin-bottom:5px;
    }
    .feature span{
      color:var(--muted);
      font-size:14px;
    }

    section{
      padding:76px clamp(24px,5vw,76px);
    }
    .section-wrap{
      width:min(1400px,100%);
      margin:auto;
    }
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:20px;
      margin-bottom:28px;
    }
    .section-head h2{
      margin:0 0 6px;
      font-size:38px;
      letter-spacing:-1px;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
    }
    .outline-btn,
    .blue-btn,
    .red-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      height:52px;
      padding:0 24px;
      border-radius:14px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.2px;
      font-size:13px;
    }
    .outline-btn{
      border:2px solid var(--blue);
      color:var(--blue);
      background:#fff;
    }
    .blue-btn{
      background:var(--blue);
      color:#fff;
      box-shadow:0 10px 24px rgba(13,116,231,.22);
    }
    .red-btn{
      background:var(--red);
      color:#fff;
      box-shadow:0 10px 24px rgba(255,35,35,.20);
    }

    .video-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:22px;
    }
    .video-card{
      overflow:hidden;
      border-radius:18px;
      border:1px solid #e6eef7;
      background:#fff;
      box-shadow:0 10px 30px rgba(39,87,134,.09);
      transition:.2s ease;
    }
    .video-card:hover{
      transform:translateY(-4px);
      box-shadow:0 16px 36px rgba(39,87,134,.14);
    }
    .video-thumb{
      position:relative;
      aspect-ratio:16/9;
      overflow:hidden;
      background:#e8f1f9;
    }
    .video-thumb img{
      width:100%;
      height:100%;
      object-fit:cover;
    }
    .play{
      position:absolute;
      left:50%;
      top:50%;
      transform:translate(-50%,-50%);
      width:64px;
      height:64px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:rgba(255,255,255,.92);
      color:var(--red);
      font-size:26px;
      box-shadow:0 8px 26px rgba(0,0,0,.18);
    }
    .video-copy{padding:20px}
    .video-copy h3{
      margin:0 0 10px;
      font-size:19px;
      line-height:1.35;
    }
    .video-copy p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }

    .about{
      background:#f6faff;
    }
    .about-grid{
      display:grid;
      grid-template-columns:.85fr 1.15fr;
      gap:58px;
      align-items:center;
    }
    .about-logo{
      max-width:360px;
      margin:auto;
    }
    .about-copy h2{
      margin:0 0 20px;
      font-size:42px;
      letter-spacing:-1px;
    }
    .about-copy p{
      color:var(--muted);
      line-height:1.75;
      font-size:18px;
    }

    .contact-card{
      width:min(1200px,100%);
      margin:auto;
      padding:42px;
      border-radius:24px;
      background:linear-gradient(135deg,#0c6fde,#0b4ca4);
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:30px;
      box-shadow:0 18px 50px rgba(13,116,231,.24);
    }
    .contact-card h2{
      margin:0 0 10px;
      font-size:34px;
    }
    .contact-card p{
      margin:0;
      opacity:.88;
    }
    .contact-card .outline-btn{
      border-color:#fff;
      color:#fff;
      background:transparent;
    }

    footer{
      padding:34px clamp(24px,5vw,76px);
      border-top:1px solid #e5edf6;
      color:#58708f;
      font-size:14px;
    }
    .footer-wrap{
      width:min(1400px,100%);
      margin:auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .footer-wrap img{
      width:84px;
      height:84px;
      object-fit:contain;
    }

    @media(max-width:1050px){
      nav,.socials{display:none}
      .menu-btn{display:block}
      .feature-bar{grid-template-columns:1fr 1fr}
      .feature:nth-child(2){border-right:0}
      .feature{border-bottom:1px solid var(--line)}
      .feature:nth-child(3),.feature:nth-child(4){border-bottom:0}
      .video-grid{grid-template-columns:1fr 1fr}
      .about-grid{grid-template-columns:1fr}
      .hero{min-height:560px}
    }

    @media(max-width:700px){
      .topbar{height:70px;padding:0 16px}
      .logo-link img{width:54px;height:54px}
      .hero{min-height:440px}
      .hero-art{object-position:center top}
      .feature-bar{
        width:calc(100% - 28px);
        grid-template-columns:1fr;
        margin-top:-22px;
        padding:10px;
      }
      .feature{
        border-right:0;
        border-bottom:1px solid var(--line)!important;
      }
      .feature:last-child{border-bottom:0!important}
      .video-grid{grid-template-columns:1fr}
      .section-head{
        align-items:flex-start;
        flex-direction:column;
      }
      .section-head h2{font-size:31px}
      .about-copy h2{font-size:34px}
      .contact-card{
        padding:30px 24px;
        align-items:flex-start;
        flex-direction:column;
      }
      .footer-wrap{
        align-items:flex-start;
        flex-direction:column;
      }
    }

/* Mobile menu state */
@media(max-width:1050px){
  nav.open{
    display:flex;
    position:absolute;
    top:78px;
    left:0;
    right:0;
    padding:18px 24px 24px;
    background:#fff;
    border-bottom:1px solid #e5edf6;
    box-shadow:0 14px 30px rgba(35,89,145,.12);
    flex-direction:column;
    align-items:flex-start;
    gap:4px;
  }

  nav.open a{
    width:100%;
    padding:12px 0;
    border-bottom:0;
  }
}


/* Contact form */
.contact-section{background:#f7fbff;border-top:1px solid #e6eef7}
.contact-layout{display:grid;grid-template-columns:.8fr 1.2fr;gap:54px;align-items:start}
.contact-intro h2{margin:8px 0 16px;font-size:42px;letter-spacing:-1px}
.contact-intro>p{color:var(--muted);line-height:1.75;font-size:17px}
.contact-kicker{margin:0!important;color:var(--blue)!important;font-weight:800;font-size:12px!important;letter-spacing:1.8px}
.contact-email a{color:var(--blue);font-weight:800}
.contact-form{padding:30px;border:1px solid #e1ebf5;border-radius:22px;background:#fff;box-shadow:0 16px 45px rgba(35,89,145,.10)}
.contact-form label{display:block;margin-bottom:18px}
.contact-form label>span{display:block;margin-bottom:8px;color:var(--ink);font-size:14px;font-weight:800}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.contact-form input,.contact-form textarea{width:100%;padding:14px 15px;border:1px solid #cad9e8;border-radius:12px;background:#fbfdff;color:var(--ink);font:inherit;outline:none}
.contact-form textarea{resize:vertical;min-height:160px}
.contact-form input:focus,.contact-form textarea:focus{border-color:var(--blue);box-shadow:0 0 0 4px rgba(13,116,231,.10)}
.form-actions{display:flex;align-items:center;gap:18px;flex-wrap:wrap}.form-actions button{border:0;cursor:pointer}.form-status{color:var(--muted);font-size:14px}.hp-field{position:absolute!important;left:-9999px!important;opacity:0!important}
@media(max-width:900px){.contact-layout{grid-template-columns:1fr;gap:28px}}
@media(max-width:650px){.form-row{grid-template-columns:1fr;gap:0}.contact-form{padding:22px}.contact-intro h2{font-size:34px}}


/* Reliable mobile menu */
.mobile-menu{display:none;margin-left:auto;position:relative}
.mobile-menu summary{list-style:none;width:44px;height:44px;display:grid;place-items:center;border-radius:11px;border:1px solid #dce8f5;background:#eef5fd;color:var(--ink);font-size:24px;cursor:pointer;user-select:none}
.mobile-menu summary::-webkit-details-marker{display:none}.mobile-menu[open] summary{background:#e1efff;color:var(--blue)}
.mobile-menu-panel{position:absolute;top:54px;right:0;width:min(280px,calc(100vw - 28px));padding:12px;border:1px solid #dce8f5;border-radius:16px;background:#fff;box-shadow:0 18px 45px rgba(35,89,145,.18)}
.mobile-menu-panel a{display:block;padding:13px 14px;border-radius:10px;color:#234876;font-weight:700}
.mobile-menu-panel a:hover,.mobile-menu-panel a:focus{background:#eef6ff;color:var(--blue)}
@media(max-width:1050px){.mobile-menu{display:block}}
@media(min-width:1051px){.mobile-menu{display:none!important}}


.video-loading,
.video-feed-error{
  grid-column:1/-1;
  padding:28px;
  border:1px solid #e6eef7;
  border-radius:18px;
  background:#f8fbff;
  color:var(--muted);
}
.video-feed-error{
  display:flex;
  gap:12px;
  flex-direction:column;
}
.video-feed-error a{
  color:var(--blue);
  font-weight:800;
}


/* Services page */
.services-page{
  background:#fff;
}

.services-hero{
  width:min(1450px,calc(100% - 44px));
  margin:24px auto 0;
  min-height:355px;
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  overflow:hidden;
  border:1px solid #dce9f7;
  border-radius:24px;
  background:
    radial-gradient(circle at 25% 50%,rgba(13,116,231,.10),transparent 25rem),
    linear-gradient(110deg,#f8fcff,#eef7ff);
  box-shadow:0 16px 48px rgba(35,89,145,.10);
}

.services-hero-copy{
  padding:48px 38px 42px 56px;
  align-self:center;
}

.services-kicker{
  margin:0 0 10px;
  color:var(--blue);
  font-size:12px;
  font-weight:800;
  letter-spacing:1.8px;
}

.services-hero h1{
  margin:0 0 20px;
  color:var(--blue-dark);
  font-size:clamp(54px,6vw,82px);
  letter-spacing:-3px;
  line-height:1;
}

.services-hero-copy > p:not(.services-kicker){
  max-width:560px;
  margin:0;
  color:#23426a;
  font-size:20px;
  line-height:1.55;
}

.services-trust{
  display:flex;
  flex-wrap:wrap;
  gap:22px;
  margin-top:26px;
  color:#19375e;
  font-size:14px;
  font-weight:700;
}

.services-trust span::first-letter{
  color:var(--blue);
}

.services-hero-image{
  min-height:355px;
  overflow:hidden;
  background:#ddecfb;
}

.services-hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:72% center;
}

.services-section{
  padding:18px clamp(22px,3vw,48px) 28px;
}

.services-grid{
  width:min(1450px,100%);
  margin:auto;
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:14px;
}

.service-card{
  padding:28px 18px 22px;
  text-align:center;
  border:1px solid #e2ebf5;
  border-radius:20px;
  background:#fff;
  box-shadow:0 10px 30px rgba(35,89,145,.08);
}

.service-icon{
  width:68px;
  height:68px;
  margin:0 auto 18px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:linear-gradient(145deg,#168cff,#0865d5);
  color:#fff;
  font-size:30px;
  box-shadow:0 10px 24px rgba(13,116,231,.20);
}

.service-card h2{
  min-height:52px;
  margin:0 0 12px;
  color:var(--blue-dark);
  font-size:18px;
  line-height:1.25;
}

.service-card p{
  min-height:96px;
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}

.service-link{
  display:inline-block;
  margin-top:16px;
  padding:9px 15px;
  border:1.5px solid var(--blue);
  border-radius:999px;
  color:var(--blue);
  font-size:12px;
  font-weight:800;
}

.service-link:hover{
  background:var(--blue);
  color:#fff;
}

.process-systems{
  width:min(1450px,calc(100% - 44px));
  margin:0 auto 28px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.process-panel,
.systems-panel{
  padding:30px;
  border:1px solid #e2ebf5;
  border-radius:22px;
  background:#fff;
  box-shadow:0 10px 30px rgba(35,89,145,.07);
}

.process-panel h2,
.systems-panel h2{
  margin:0 0 24px;
  color:var(--blue-dark);
  font-size:28px;
}

.process-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.process-step{
  position:relative;
  padding-top:6px;
}

.step-number{
  width:42px;
  height:42px;
  margin-bottom:13px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--blue);
  color:#fff;
  font-weight:800;
}

.process-step h3{
  margin:0 0 8px;
  color:#173961;
  font-size:16px;
}

.process-step p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
}

.system-chips{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}

.system-chips span{
  min-height:52px;
  display:grid;
  place-items:center;
  padding:9px;
  border:1px solid #d8e6f5;
  border-radius:14px;
  background:#fbfdff;
  color:#173961;
  text-align:center;
  font-weight:800;
  font-size:14px;
}

.systems-note{
  margin:18px 0 0;
  color:var(--blue);
  font-weight:800;
  font-size:14px;
}

.service-cta{
  width:min(1450px,calc(100% - 44px));
  margin:0 auto 20px;
  display:grid;
  grid-template-columns:120px 1fr auto;
  gap:28px;
  align-items:center;
  padding:22px 30px;
  border-radius:22px;
  background:linear-gradient(110deg,#edf7ff,#dfefff);
  border:1px solid #d5e8fb;
}

.service-cta-logo img{
  width:100px;
  height:100px;
  object-fit:contain;
  border-radius:50%;
}

.service-cta-copy h2{
  margin:0 0 8px;
  color:var(--blue-dark);
  font-size:25px;
}

.service-cta-copy p{
  margin:0;
  color:#4e6788;
  line-height:1.55;
}

.service-cta-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.service-values{
  width:min(1450px,calc(100% - 44px));
  margin:0 auto 44px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid #e2ebf5;
  border-radius:20px;
  background:#fff;
  box-shadow:0 10px 28px rgba(35,89,145,.06);
}

.service-values > div{
  padding:20px 24px;
  border-right:1px solid #e2ebf5;
}

.service-values > div:last-child{
  border-right:0;
}

.service-values strong{
  display:block;
  margin-bottom:6px;
  color:#173961;
}

.service-values span{
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}

@media(max-width:1200px){
  .services-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .process-list{
    grid-template-columns:1fr;
  }

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

@media(max-width:900px){
  .services-hero{
    grid-template-columns:1fr;
  }

  .services-hero-image{
    min-height:300px;
  }

  .process-systems{
    grid-template-columns:1fr;
  }

  .service-cta{
    grid-template-columns:90px 1fr;
  }

  .service-cta-actions{
    grid-column:1/-1;
  }

  .service-values{
    grid-template-columns:1fr 1fr;
  }

  .service-values > div:nth-child(2){
    border-right:0;
  }

  .service-values > div{
    border-bottom:1px solid #e2ebf5;
  }

  .service-values > div:nth-child(3),
  .service-values > div:nth-child(4){
    border-bottom:0;
  }
}

@media(max-width:650px){
  .services-hero{
    width:calc(100% - 24px);
    margin-top:12px;
  }

  .services-hero-copy{
    padding:34px 24px;
  }

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

  .services-hero-copy > p:not(.services-kicker){
    font-size:17px;
  }

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

  .service-card p{
    min-height:auto;
  }

  .process-systems,
  .service-cta,
  .service-values{
    width:calc(100% - 24px);
  }

  .service-cta{
    grid-template-columns:1fr;
    text-align:center;
  }

  .service-cta-logo{
    display:flex;
    justify-content:center;
  }

  .service-cta-actions{
    justify-content:center;
  }

  .service-values{
    grid-template-columns:1fr;
  }

  .service-values > div{
    border-right:0 !important;
    border-bottom:1px solid #e2ebf5 !important;
  }

  .service-values > div:last-child{
    border-bottom:0 !important;
  }
}


/* Repair Log */
.repair-log-page{
  background:#fff;
}

.repair-log-hero{
  width:min(1450px,calc(100% - 44px));
  margin:24px auto 0;
  min-height:260px;
  padding:44px 52px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
  border:1px solid #dce9f7;
  border-radius:24px;
  background:
    radial-gradient(circle at 22% 50%,rgba(13,116,231,.10),transparent 25rem),
    linear-gradient(110deg,#f8fcff,#eef7ff);
  box-shadow:0 16px 48px rgba(35,89,145,.10);
}

.repair-log-hero h1{
  margin:0 0 18px;
  color:var(--blue-dark);
  font-size:clamp(48px,6vw,78px);
  letter-spacing:-3px;
  line-height:1;
}

.repair-log-hero p:not(.services-kicker){
  max-width:720px;
  margin:0;
  color:#415d80;
  font-size:18px;
  line-height:1.6;
}

.repair-log-hero img{
  width:170px;
  height:170px;
  object-fit:contain;
  border-radius:50%;
}

.repair-tools-wrap{
  width:min(1450px,calc(100% - 44px));
  margin:22px auto 0;
}

.repair-tools{
  display:grid;
  grid-template-columns:minmax(240px,2fr) minmax(180px,.8fr) minmax(180px,.8fr);
  gap:14px;
  padding:18px;
  border:1px solid #e2ebf5;
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 28px rgba(35,89,145,.06);
}

.repair-tools label{
  display:block;
}

.repair-tools label > span{
  display:block;
  margin-bottom:7px;
  color:#173961;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.6px;
}

.repair-tools input,
.repair-tools select{
  width:100%;
  height:46px;
  padding:0 13px;
  border:1px solid #cad9e8;
  border-radius:11px;
  background:#fbfdff;
  color:var(--ink);
  font:inherit;
}

.repair-count{
  margin:12px 4px 0;
  color:var(--muted);
  font-size:13px;
}

.repair-log-section{
  padding:24px clamp(22px,3vw,48px) 44px;
}

.repair-grid{
  width:min(1450px,100%);
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.repair-card{
  overflow:hidden;
  border:1px solid #e2ebf5;
  border-radius:20px;
  background:#fff;
  box-shadow:0 12px 32px rgba(35,89,145,.08);
}

.repair-card-image{
  position:relative;
  aspect-ratio:16/9;
  background:#eef5fb;
  overflow:hidden;
}

.repair-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.repair-status{
  position:absolute;
  top:14px;
  right:14px;
  padding:7px 11px;
  border-radius:999px;
  background:rgba(255,255,255,.94);
  color:#168f78;
  font-size:12px;
  font-weight:800;
  box-shadow:0 5px 18px rgba(0,0,0,.10);
}

.repair-card-body{
  padding:22px;
}

.repair-card-meta{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
  color:var(--blue);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.repair-card h2{
  margin:0 0 8px;
  color:var(--blue-dark);
  font-size:22px;
  line-height:1.3;
}

.repair-machine{
  margin-top:0 !important;
  color:#405c7d !important;
  font-weight:700;
}

.repair-card p{
  color:var(--muted);
  line-height:1.6;
}

.repair-card strong{
  color:#173961;
}

.repair-loading,
.repair-empty{
  grid-column:1/-1;
  padding:34px;
  text-align:center;
  border:1px dashed #cbdbea;
  border-radius:18px;
  color:var(--muted);
  background:#fbfdff;
}

.repair-log-help{
  width:min(1450px,calc(100% - 44px));
  margin:0 auto 44px;
  padding:28px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
  border:1px solid #d5e8fb;
  border-radius:22px;
  background:linear-gradient(110deg,#edf7ff,#dfefff);
}

.repair-log-help h2{
  margin:0 0 8px;
  color:var(--blue-dark);
  font-size:28px;
}

.repair-log-help p:not(.services-kicker){
  margin:0;
  color:#4e6788;
  line-height:1.6;
}

.repair-log-help code{
  padding:2px 6px;
  border-radius:6px;
  background:rgba(255,255,255,.75);
  color:#154d91;
}

@media(max-width:1000px){
  .repair-grid{grid-template-columns:1fr 1fr}
}

@media(max-width:760px){
  .repair-log-hero{
    width:calc(100% - 24px);
    padding:32px 24px;
  }

  .repair-log-hero img{
    display:none;
  }

  .repair-tools-wrap,
  .repair-log-help{
    width:calc(100% - 24px);
  }

  .repair-tools{
    grid-template-columns:1fr;
  }

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

  .repair-log-help{
    align-items:flex-start;
    flex-direction:column;
  }
}


/* For Sale */
.shop-page,.reviews-page{background:#fff}.shop-hero,.reviews-hero{width:min(1450px,calc(100% - 44px));margin:24px auto 0;min-height:250px;padding:42px 52px;display:flex;align-items:center;justify-content:space-between;gap:32px;border:1px solid #dce9f7;border-radius:24px;background:radial-gradient(circle at 22% 50%,rgba(13,116,231,.10),transparent 25rem),linear-gradient(110deg,#f8fcff,#eef7ff);box-shadow:0 16px 48px rgba(35,89,145,.10)}
.shop-hero h1,.reviews-hero h1{margin:0 0 15px;color:var(--blue-dark);font-size:clamp(48px,6vw,78px);letter-spacing:-3px;line-height:1}.shop-hero p:not(.services-kicker),.reviews-hero p:not(.services-kicker){max-width:720px;margin:0;color:#415d80;font-size:18px;line-height:1.6}.shop-hero img,.reviews-hero img{width:160px;height:160px;object-fit:contain;border-radius:50%}
.shop-tools-wrap{width:min(1450px,calc(100% - 44px));margin:22px auto 0}.shop-tools{display:grid;grid-template-columns:1.6fr repeat(3,1fr);gap:12px;padding:18px;border:1px solid #e2ebf5;border-radius:18px;background:#fff;box-shadow:0 10px 28px rgba(35,89,145,.06)}.shop-tools label>span{display:block;margin-bottom:7px;color:#173961;font-size:12px;font-weight:800;text-transform:uppercase}.shop-tools input,.shop-tools select{width:100%;height:46px;padding:0 13px;border:1px solid #cad9e8;border-radius:11px;background:#fbfdff;color:var(--ink);font:inherit}.shop-section{padding:24px clamp(22px,3vw,48px) 44px}.sale-grid{width:min(1450px,100%);margin:auto;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.sale-card{overflow:hidden;border:1px solid #e2ebf5;border-radius:20px;background:#fff;box-shadow:0 12px 32px rgba(35,89,145,.08)}.sale-card.is-sold{opacity:.72}.sale-image{position:relative;aspect-ratio:3/2;background:#eef5fb;overflow:hidden}.sale-image img{width:100%;height:100%;object-fit:cover}.sale-badge{position:absolute;top:14px;right:14px;padding:7px 11px;border-radius:999px;background:#eaf8f3;color:#168f78;font-size:12px;font-weight:800}.sale-badge.sold{background:#eef0f3;color:#677487}.sale-body{padding:22px}.sale-meta{display:flex;justify-content:space-between;gap:12px;color:var(--blue);font-size:12px;font-weight:800;text-transform:uppercase}.sale-body h2{margin:10px 0;color:var(--blue-dark);font-size:22px}.sale-body p{min-height:72px;color:var(--muted);line-height:1.6}.sale-footer{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-top:20px}.sale-footer>strong{font-size:25px;color:#173961}.sale-buy{min-height:44px;height:auto;padding:10px 16px;text-align:center}.sold-button{padding:11px 18px;border-radius:12px;background:#eef0f3;color:#758194;font-weight:800}.shop-note,.reviews-note{width:min(1450px,calc(100% - 44px));margin:0 auto 44px;padding:28px 32px;display:flex;align-items:center;justify-content:space-between;gap:26px;border:1px solid #d5e8fb;border-radius:22px;background:linear-gradient(110deg,#edf7ff,#dfefff)}.shop-note h2,.reviews-note h2{margin:0 0 8px;color:var(--blue-dark);font-size:28px}.shop-note p,.reviews-note p{margin:0;color:#4e6788;line-height:1.6}.shop-note code{padding:2px 6px;border-radius:6px;background:#fff;color:#154d91}
/* Reviews */
.reviews-section{padding:28px clamp(22px,3vw,48px) 44px}.reviews-grid{width:min(1200px,100%);margin:auto;display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.review-card{padding:28px;border:1px solid #e2ebf5;border-radius:20px;background:#fff;box-shadow:0 12px 32px rgba(35,89,145,.08)}.review-stars{color:#f2b93b;font-size:22px;letter-spacing:2px}.review-text{min-height:120px;color:#38516f;font-size:17px;line-height:1.7}.review-person{display:flex;flex-direction:column;gap:5px;padding-top:16px;border-top:1px solid #e8eef5}.review-person strong{color:#173961}.review-person span{color:var(--muted);font-size:13px}
@media(max-width:1000px){.sale-grid,.reviews-grid{grid-template-columns:1fr 1fr}.shop-tools{grid-template-columns:1fr 1fr}}
@media(max-width:700px){.shop-hero,.reviews-hero,.shop-tools-wrap,.shop-note,.reviews-note{width:calc(100% - 24px)}.shop-hero,.reviews-hero{padding:32px 24px}.shop-hero img,.reviews-hero img{display:none}.shop-tools,.sale-grid,.reviews-grid{grid-template-columns:1fr}.sale-footer,.shop-note,.reviews-note{align-items:flex-start;flex-direction:column}.sale-body p,.review-text{min-height:auto}}


/* Master shop category UI */
.shop-trust{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-top:20px;
  color:#315679;
  font-size:13px;
  font-weight:800;
}

.sale-category-chips{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding:4px 2px 14px;
  scrollbar-width:thin;
}

.category-chip{
  flex:0 0 auto;
  min-height:42px;
  padding:0 16px;
  border:1px solid #cddded;
  border-radius:999px;
  background:#fff;
  color:#244a73;
  font:700 13px/1 Inter,system-ui,sans-serif;
  cursor:pointer;
  transition:.18s ease;
}

.category-chip:hover{
  border-color:var(--blue);
  color:var(--blue);
}

.category-chip.active{
  border-color:var(--blue);
  background:var(--blue);
  color:#fff;
  box-shadow:0 8px 20px rgba(13,116,231,.18);
}

.shop-tools{
  grid-template-columns:1.6fr .8fr .8fr;
}

.shop-values{
  width:min(1450px,calc(100% - 44px));
  margin:0 auto 44px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid #e2ebf5;
  border-radius:20px;
  background:#fff;
  box-shadow:0 10px 28px rgba(35,89,145,.06);
}

.shop-values > div{
  padding:20px 24px;
  border-right:1px solid #e2ebf5;
}

.shop-values > div:last-child{
  border-right:0;
}

.shop-values strong{
  display:block;
  margin-bottom:6px;
  color:#173961;
}

.shop-values span{
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}

/* Moderated review form */
.review-form-section{
  width:min(1200px,calc(100% - 44px));
  margin:0 auto 44px;
  display:grid;
  grid-template-columns:.72fr 1.28fr;
  gap:36px;
  align-items:start;
}

.review-form-intro{
  padding:18px 8px 0;
}

.review-form-intro h2{
  margin:8px 0 14px;
  color:var(--blue-dark);
  font-size:36px;
}

.review-form-intro > p:not(.services-kicker){
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
}

.review-form{
  padding:30px;
  border:1px solid #e1ebf5;
  border-radius:22px;
  background:#fff;
  box-shadow:0 16px 45px rgba(35,89,145,.10);
}

.review-form label{
  display:block;
  margin-bottom:18px;
}

.review-form label > span{
  display:block;
  margin-bottom:8px;
  color:var(--ink);
  font-size:14px;
  font-weight:800;
}

.review-form input,
.review-form select,
.review-form textarea{
  width:100%;
  padding:14px 15px;
  border:1px solid #cad9e8;
  border-radius:12px;
  background:#fbfdff;
  color:var(--ink);
  font:inherit;
  outline:none;
}

.review-form select{
  min-height:48px;
}

.review-form textarea{
  resize:vertical;
  min-height:160px;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 4px rgba(13,116,231,.10);
}

.review-consent{
  display:flex !important;
  align-items:flex-start;
  gap:11px;
}

.review-consent input{
  width:18px !important;
  height:18px;
  margin-top:3px;
  flex:0 0 auto;
}

.review-consent span{
  margin:0 !important;
  color:#516882 !important;
  font-weight:600 !important;
  line-height:1.5;
}

.form-honeypot{
  position:absolute !important;
  left:-9999px !important;
  opacity:0 !important;
}

@media(max-width:1000px){
  .shop-values{
    grid-template-columns:1fr 1fr;
  }

  .shop-values > div:nth-child(2){
    border-right:0;
  }

  .shop-values > div{
    border-bottom:1px solid #e2ebf5;
  }

  .shop-values > div:nth-child(3),
  .shop-values > div:nth-child(4){
    border-bottom:0;
  }

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

@media(max-width:700px){
  .shop-tools{
    grid-template-columns:1fr;
  }

  .shop-values{
    width:calc(100% - 24px);
    grid-template-columns:1fr;
  }

  .shop-values > div{
    border-right:0 !important;
    border-bottom:1px solid #e2ebf5 !important;
  }

  .shop-values > div:last-child{
    border-bottom:0 !important;
  }

  .review-form-section{
    width:calc(100% - 24px);
  }

  .review-form{
    padding:22px;
  }
}


/* SEO repair detail links */
.repair-card-actions{display:flex;gap:12px;align-items:center;flex-wrap:wrap;margin-top:18px}
.repair-card-actions .blue-btn,.repair-card-actions .service-link{margin-top:0}


/* Video feed status */
.video-feed-note{
  margin:16px 0 0;
  color:var(--muted);
  font-size:13px;
  text-align:center;
}

/* Services: classic hardware logo tiles */
.system-logo-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}
.system-logo{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:6px;
  border:1px solid #d8e6f5;
  border-radius:14px;
  background:#fbfdff;
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}
.system-logo:hover{
  transform:translateY(-2px);
  border-color:#b9d7f4;
  box-shadow:0 8px 20px rgba(35,89,145,.08);
}
.system-logo img{
  width:100%;
  height:auto;
  max-height:68px;
  object-fit:contain;
}
@media(max-width:900px){
  .system-logo-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}


/* Real brand marks in Services > What I work on */
.system-logo{
  min-height:92px;
  padding:14px 18px;
  background:#fff;
}

.system-logo img{
  display:block;
  width:100%;
  height:60px;
  max-width:180px;
  object-fit:contain;
  object-position:center;
}

.system-logo img.playstation-logo{
  height:68px;
  max-width:95px;
}

.peripheral-tile{
  gap:10px;
  flex-direction:column;
  color:#178f7a;
}

.peripheral-icon{
  font-size:32px;
  line-height:1;
}

.peripheral-tile strong{
  color:#173961;
  font-size:14px;
}

@media(max-width:650px){
  .system-logo{
    min-height:82px;
    padding:12px;
  }

  .system-logo img{
    height:52px;
  }
}


/* Homepage rotating hero images */
.hero-slider{
  position:relative;
}

.hero-slides,
.hero-slide{
  position:absolute;
  inset:0;
  margin:0;
}

.hero-slide{
  opacity:0;
  transition:opacity .7s ease;
  pointer-events:none;
}

.hero-slide.active{
  opacity:1;
}

.hero-slide .hero-art{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
}

.hero-arrow{
  position:absolute;
  z-index:4;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.72);
  border-radius:50%;
  background:rgba(255,255,255,.78);
  color:#173961;
  font-size:32px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 8px 25px rgba(35,89,145,.16);
}

.hero-prev{left:22px}
.hero-next{right:22px}

.hero-dots{
  position:absolute;
  z-index:5;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
}

.hero-dots button{
  width:10px;
  height:10px;
  padding:0;
  border:0;
  border-radius:50%;
  background:rgba(13,116,231,.30);
  cursor:pointer;
}

.hero-dots button.active{
  background:var(--blue);
}

/* Dedicated Videos page */
.videos-page{
  background:#fff;
}

.videos-page-hero{
  width:min(1450px,calc(100% - 44px));
  margin:24px auto 0;
  padding:44px 52px;
  min-height:275px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
  border:1px solid #dce9f7;
  border-radius:24px;
  background:
    radial-gradient(circle at 22% 50%,rgba(13,116,231,.10),transparent 25rem),
    linear-gradient(110deg,#f8fcff,#eef7ff);
  box-shadow:0 16px 48px rgba(35,89,145,.10);
}

.videos-page-hero h1{
  margin:0 0 18px;
  color:var(--blue-dark);
  font-size:clamp(50px,6vw,78px);
  line-height:1;
  letter-spacing:-3px;
}

.videos-page-hero p:not(.services-kicker){
  max-width:720px;
  margin:0;
  color:#415d80;
  font-size:18px;
  line-height:1.6;
}

.videos-page-hero img{
  width:175px;
  height:175px;
  object-fit:contain;
  border-radius:50%;
}

.video-page-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.videos-browser{
  width:min(1450px,calc(100% - 44px));
  margin:0 auto;
  padding:60px 0 30px;
}

.videos-page-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.video-page-cta{
  width:min(1450px,calc(100% - 44px));
  margin:20px auto 44px;
  padding:28px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
  border:1px solid #d5e8fb;
  border-radius:22px;
  background:linear-gradient(110deg,#edf7ff,#dfefff);
}

.video-page-cta h2{
  margin:0 0 8px;
  color:var(--blue-dark);
  font-size:28px;
}

.video-page-cta p:not(.services-kicker){
  margin:0;
  color:#4e6788;
}

@media(max-width:900px){
  .videos-page-grid{grid-template-columns:1fr 1fr}
}

@media(max-width:700px){
  .hero-arrow{
    width:38px;
    height:38px;
    font-size:26px;
  }
  .hero-prev{left:10px}
  .hero-next{right:10px}

  .videos-page-hero{
    width:calc(100% - 24px);
    padding:32px 24px;
  }

  .videos-page-hero img{
    display:none;
  }

  .videos-browser,
  .video-page-cta{
    width:calc(100% - 24px);
  }

  .videos-page-grid{
    grid-template-columns:1fr;
  }

  .video-page-cta{
    align-items:flex-start;
    flex-direction:column;
  }
}


/* Homepage workshop gallery below Latest Videos */
.workshop-gallery-section{
  padding:72px clamp(24px,5vw,76px);
  background:#f7fbff;
  border-top:1px solid #e7f0f8;
  border-bottom:1px solid #e7f0f8;
}

.workshop-gallery{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  grid-auto-rows:220px;
  gap:16px;
}

.gallery-card{
  margin:0;
  overflow:hidden;
  border-radius:18px;
  background:#eaf3fb;
  border:1px solid #dce8f5;
  box-shadow:0 10px 28px rgba(35,89,145,.08);
}

.gallery-card.gallery-large{
  grid-column:span 2;
  grid-row:span 2;
}

.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .28s ease;
}

.gallery-card:hover img{
  transform:scale(1.035);
}

/* Dedicated video page can show a fuller 12-video grid */
.videos-page-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

@media(max-width:1000px){
  .workshop-gallery{
    grid-template-columns:repeat(2,minmax(0,1fr));
    grid-auto-rows:210px;
  }
  .videos-page-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}

@media(max-width:650px){
  .workshop-gallery{
    grid-template-columns:1fr;
    grid-auto-rows:230px;
  }
  .gallery-card.gallery-large{
    grid-column:span 1;
    grid-row:span 1;
  }
  .videos-page-grid{grid-template-columns:1fr;}
}


/* Moving workshop gallery */
.workshop-gallery-section{padding:72px clamp(24px,5vw,76px);background:#f7fbff;border-top:1px solid #e7f0f8;border-bottom:1px solid #e7f0f8}
.workshop-gallery-heading{margin-bottom:24px}
.gallery-controls{display:flex;gap:10px}
.gallery-controls button{width:44px;height:44px;display:grid;place-items:center;border:1px solid #ccddec;border-radius:50%;background:#fff;color:var(--blue-dark);font-size:28px;cursor:pointer;box-shadow:0 7px 18px rgba(35,89,145,.08)}
.gallery-controls button:hover{border-color:var(--blue);color:var(--blue)}
.workshop-carousel{width:100%;overflow-x:auto;overflow-y:hidden;scroll-snap-type:x mandatory;scrollbar-width:none;overscroll-behavior-x:contain;border-radius:22px;outline:none}
.workshop-carousel::-webkit-scrollbar{display:none}
.workshop-carousel-track{display:flex;align-items:center;gap:20px;padding:18px max(10px,calc((100% - 520px)/2))}
.workshop-slide{position:relative;flex:0 0 clamp(280px,42vw,520px);aspect-ratio:16/10;margin:0;overflow:hidden;scroll-snap-align:center;border-radius:22px;border:1px solid #dbe8f4;background:#eaf3fb;box-shadow:0 12px 32px rgba(35,89,145,.10);opacity:.72;transform:scale(.92);transition:transform .45s cubic-bezier(.2,.75,.25,1),opacity .45s ease,box-shadow .45s ease}
.workshop-slide.is-current{opacity:1;transform:scale(1);box-shadow:0 18px 44px rgba(35,89,145,.18)}
.workshop-slide img{width:100%;height:100%;object-fit:cover}
.workshop-slide figcaption{position:absolute;left:14px;bottom:14px;padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.90);color:var(--blue-dark);font-size:13px;font-weight:800;backdrop-filter:blur(8px)}
.gallery-dots{display:flex;justify-content:center;gap:8px;margin-top:16px}
.gallery-dots button{width:10px;height:10px;padding:0;border:0;border-radius:50%;background:#bed1e5;cursor:pointer}
.gallery-dots button.active{background:var(--blue);transform:scale(1.2)}
.videos-page-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
@media(max-width:1000px){.videos-page-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:650px){.workshop-gallery-section{padding-left:12px;padding-right:12px}.workshop-gallery-heading{padding:0 12px}.workshop-carousel-track{gap:14px;padding:14px 24px}.workshop-slide{flex-basis:82vw}.videos-page-grid{grid-template-columns:1fr}}


/* v11: appearance switch */
html{color-scheme:light}html[data-theme="dark"]{color-scheme:dark;--white:#101b2b;--ink:#ecf5ff;--muted:#aabbd0;--line:#29405d;--blue-soft:#13263d;--shadow:0 18px 55px rgba(0,0,0,.32)}
.theme-toggle{min-width:82px;height:40px;margin-left:4px;padding:0 12px;display:inline-flex;align-items:center;justify-content:center;gap:7px;border:1px solid #dce8f5;border-radius:999px;background:#f4f9ff;color:#173961;font:700 12px/1 Inter,system-ui,sans-serif;cursor:pointer}.theme-toggle>span:first-child{font-size:17px}
html[data-theme="dark"] body{background:#0b1422;color:#ecf5ff}html[data-theme="dark"] .topbar{background:rgba(11,20,34,.94);border-bottom-color:#243952}html[data-theme="dark"] nav a{color:#c6d7ea}html[data-theme="dark"] nav a:hover,html[data-theme="dark"] nav a.active{color:#74b8ff;border-color:#4097f5}html[data-theme="dark"] .socials a,html[data-theme="dark"] .theme-toggle,html[data-theme="dark"] .mobile-menu summary{background:#14253a;color:#eaf5ff;border-color:#2b4563}html[data-theme="dark"] .mobile-menu-panel{background:#101c2d;border-color:#2a405d}html[data-theme="dark"] .mobile-menu-panel a{color:#d4e5f6}html[data-theme="dark"] .mobile-menu-panel a:hover{background:#172a42;color:#72b9ff}
html[data-theme="dark"] .below-hero,html[data-theme="dark"] .services-page,html[data-theme="dark"] .repair-log-page,html[data-theme="dark"] .videos-page{background:#0b1422}html[data-theme="dark"] .feature-bar,html[data-theme="dark"] .video-card,html[data-theme="dark"] .service-card,html[data-theme="dark"] .process-panel,html[data-theme="dark"] .systems-panel,html[data-theme="dark"] .service-values,html[data-theme="dark"] .shop-values,html[data-theme="dark"] .repair-card,html[data-theme="dark"] .review-card,html[data-theme="dark"] .contact-form,html[data-theme="dark"] .review-form,html[data-theme="dark"] .shop-tools,html[data-theme="dark"] .workshop-slide{background:#101d2f;border-color:#263d59;color:#edf6ff}html[data-theme="dark"] .about,html[data-theme="dark"] .contact-section,html[data-theme="dark"] .workshop-gallery-section{background:#0d1828;border-color:#223950}
html[data-theme="dark"] .services-hero,html[data-theme="dark"] .repair-log-hero,html[data-theme="dark"] .videos-page-hero,html[data-theme="dark"] .shop-hero{background:radial-gradient(circle at 22% 50%,rgba(50,143,244,.13),transparent 25rem),linear-gradient(110deg,#101e31,#12263d);border-color:#2a4563}html[data-theme="dark"] .service-cta,html[data-theme="dark"] .repair-log-help,html[data-theme="dark"] .shop-note,html[data-theme="dark"] .reviews-note,html[data-theme="dark"] .video-page-cta{background:linear-gradient(110deg,#13263d,#142c48);border-color:#2b4b6d}html[data-theme="dark"] h1,html[data-theme="dark"] h2,html[data-theme="dark"] h3{color:#eef7ff}html[data-theme="dark"] p,html[data-theme="dark"] .feature span,html[data-theme="dark"] .video-copy p,html[data-theme="dark"] .service-card p,html[data-theme="dark"] .repair-card p{color:#aebfd2}html[data-theme="dark"] input,html[data-theme="dark"] textarea,html[data-theme="dark"] select{background:#0c1828!important;border-color:#2d4867!important;color:#eef7ff!important}html[data-theme="dark"] input::placeholder,html[data-theme="dark"] textarea::placeholder{color:#7f94aa}html[data-theme="dark"] .outline-btn,html[data-theme="dark"] .service-link,html[data-theme="dark"] .category-chip{background:#101d2f;color:#70b7ff;border-color:#397bb9}html[data-theme="dark"] .category-chip.active{background:#1673d8;color:#fff}html[data-theme="dark"] footer{background:#08111d;border-top-color:#24384f;color:#9eafc2}html[data-theme="dark"] .system-logo{background:#f8fbff}html[data-theme="dark"] .workshop-slide figcaption{background:rgba(12,24,40,.9);color:#eaf5ff}
@media(max-width:1050px){.theme-toggle{margin-left:auto}}@media(max-width:700px){.theme-toggle{min-width:44px;width:44px;padding:0}.theme-toggle .theme-label{display:none}}

/* v11: submission confirmation */
body.modal-open{overflow:hidden}.confirmation-modal[hidden]{display:none}.confirmation-modal{position:fixed;inset:0;z-index:9999;display:grid;place-items:center;padding:20px;opacity:0;transition:opacity .18s ease}.confirmation-modal.is-visible{opacity:1}.confirmation-backdrop{position:absolute;inset:0;background:rgba(4,12,22,.66);backdrop-filter:blur(5px)}.confirmation-dialog{position:relative;z-index:1;width:min(620px,100%);max-height:min(82vh,760px);overflow:auto;padding:34px;border:1px solid #d8e7f5;border-radius:24px;background:#fff;color:#173961;box-shadow:0 28px 90px rgba(0,25,60,.30)}.confirmation-close{position:absolute;top:16px;right:16px;width:38px;height:38px;display:grid;place-items:center;border:1px solid #d9e6f2;border-radius:50%;background:#f6faff;color:#385777;font-size:25px;cursor:pointer}.confirmation-tick{width:60px;height:60px;margin-bottom:18px;display:grid;place-items:center;border-radius:50%;background:#e9f8f1;color:#118657;font-size:30px;font-weight:800}.confirmation-kicker{margin:0 0 6px;color:var(--blue);font-size:11px;font-weight:800;letter-spacing:1.8px}.confirmation-dialog h2{margin:0 0 10px;color:#102851;font-size:32px}.confirmation-intro{margin:0 0 22px;color:#5d6f89;line-height:1.6}.confirmation-details{overflow:hidden;border:1px solid #dfebf6;border-radius:16px;background:#f9fcff}.confirmation-row{display:grid;grid-template-columns:135px minmax(0,1fr);gap:16px;padding:14px 16px;border-bottom:1px solid #e2edf7}.confirmation-row:last-child{border-bottom:0}.confirmation-row strong{color:#315375;font-size:13px}.confirmation-row span{min-width:0;color:#132f53;overflow-wrap:anywhere}.confirmation-message{white-space:pre-wrap;line-height:1.6}.confirmation-done{margin-top:22px;border:0;cursor:pointer}html[data-theme="dark"] .confirmation-dialog{background:#101d2f;border-color:#2b4563;color:#eef7ff}html[data-theme="dark"] .confirmation-close{background:#15273d;border-color:#2e4865;color:#dceafa}html[data-theme="dark"] .confirmation-dialog h2{color:#eef7ff}html[data-theme="dark"] .confirmation-intro{color:#aebfd2}html[data-theme="dark"] .confirmation-details{background:#0c1828;border-color:#2a425e}html[data-theme="dark"] .confirmation-row{border-bottom-color:#263e59}html[data-theme="dark"] .confirmation-row strong{color:#8fc4f8}html[data-theme="dark"] .confirmation-row span{color:#e6f1fc}@media(max-width:600px){.confirmation-dialog{padding:28px 20px 22px}.confirmation-dialog h2{font-size:27px}.confirmation-row{grid-template-columns:1fr;gap:5px}}


/* ==============================================================
   v12 - Theme-aware homepage hero + dark mode readability pass
   ============================================================== */
.hero-art-light{opacity:1;visibility:visible;transition:opacity .28s ease}
.hero-art-dark{opacity:0;visibility:hidden;transition:opacity .28s ease}
html[data-theme="dark"] .hero-art-light{opacity:0;visibility:hidden}
html[data-theme="dark"] .hero-art-dark{opacity:1;visibility:visible}
html[data-theme="dark"] .hero{
  background:#050c18;
  border-bottom-color:#1d3450;
}
html[data-theme="dark"] .hero-overlay{
  background:linear-gradient(90deg,rgba(0,0,0,.03),rgba(0,0,0,0));
}

/* Keep body copy and UI controls high-contrast in dark mode. */
html[data-theme="dark"] body,
html[data-theme="dark"] main,
html[data-theme="dark"] section,
html[data-theme="dark"] article{color:#e9f3ff}

html[data-theme="dark"] .section-head h2,
html[data-theme="dark"] .feature strong,
html[data-theme="dark"] .video-copy h3,
html[data-theme="dark"] .about-copy h2,
html[data-theme="dark"] .contact-intro h2,
html[data-theme="dark"] .service-card h2,
html[data-theme="dark"] .process-panel h2,
html[data-theme="dark"] .systems-panel h2,
html[data-theme="dark"] .process-step h3,
html[data-theme="dark"] .service-values strong,
html[data-theme="dark"] .shop-values strong,
html[data-theme="dark"] .repair-card h2,
html[data-theme="dark"] .repair-card h3,
html[data-theme="dark"] .review-card h2,
html[data-theme="dark"] .review-card h3,
html[data-theme="dark"] .videos-page-hero h1,
html[data-theme="dark"] .service-cta h2,
html[data-theme="dark"] .video-page-cta h2{color:#f3f8ff!important}

html[data-theme="dark"] .section-head p,
html[data-theme="dark"] .about-copy p,
html[data-theme="dark"] .contact-intro p,
html[data-theme="dark"] .service-card p,
html[data-theme="dark"] .process-step p,
html[data-theme="dark"] .systems-note,
html[data-theme="dark"] .service-values span,
html[data-theme="dark"] .shop-values span,
html[data-theme="dark"] .repair-card p,
html[data-theme="dark"] .review-card p,
html[data-theme="dark"] .videos-page-hero p,
html[data-theme="dark"] .video-page-cta p,
html[data-theme="dark"] .video-feed-note,
html[data-theme="dark"] .form-status{color:#b7c9dc!important}

html[data-theme="dark"] .feature-icon,
html[data-theme="dark"] .service-icon{background:#162d49;color:#76baff;border-color:#294966}
html[data-theme="dark"] .feature{border-color:#263d59}
html[data-theme="dark"] .feature strong{display:block}
html[data-theme="dark"] a:not(.blue-btn):not(.outline-btn):not(.category-chip):not(.service-link){color:#8fc7ff}
html[data-theme="dark"] nav a{color:#c9daec!important}
html[data-theme="dark"] nav a:hover,
html[data-theme="dark"] nav a.active{color:#75bdff!important}
html[data-theme="dark"] .blue-btn{color:#fff!important;background:#1677df;border-color:#1677df}
html[data-theme="dark"] .blue-btn:hover{background:#2a8df2}
html[data-theme="dark"] .outline-btn{color:#8fc7ff!important;background:#101d2f!important;border-color:#3b658b!important}
html[data-theme="dark"] .outline-btn:hover{background:#152a43!important;border-color:#65aef0!important}
html[data-theme="dark"] .service-link{color:#83c0ff!important}
html[data-theme="dark"] .contact-email a{color:#8fc7ff!important}
html[data-theme="dark"] label,
html[data-theme="dark"] .contact-form label span,
html[data-theme="dark"] .review-form label span{color:#dceafb!important}
html[data-theme="dark"] .contact-form,
html[data-theme="dark"] .review-form{box-shadow:0 18px 45px rgba(0,0,0,.24)}
html[data-theme="dark"] input:focus,
html[data-theme="dark"] textarea:focus,
html[data-theme="dark"] select:focus{outline:2px solid #4aa4ff;outline-offset:1px}
html[data-theme="dark"] .gallery-controls button,
html[data-theme="dark"] .hero-arrow{background:#14253a;color:#eaf5ff;border-color:#315070}
html[data-theme="dark"] .gallery-dots button{background:#49637e}
html[data-theme="dark"] .gallery-dots button.active{background:#4ca4ff}
html[data-theme="dark"] .video-thumb{background:#08111d}
html[data-theme="dark"] .play{background:rgba(7,18,31,.88);color:#fff}
html[data-theme="dark"] .shop-price,
html[data-theme="dark"] .repair-date,
html[data-theme="dark"] .review-stars{color:#7fc0ff!important}

/* Genuine brand logos need a pale tile to remain recognisable in both modes. */
html[data-theme="dark"] .system-logo{
  background:#f7fbff!important;
  border-color:#54708d!important;
}
html[data-theme="dark"] .peripheral-tile strong{color:#173961!important}

/* Light/dark control itself always stays legible. */
html[data-theme="dark"] .theme-toggle{
  background:#152941!important;
  color:#f4f8ff!important;
  border-color:#355776!important;
}
html[data-theme="light"] .theme-toggle{
  background:#f4f9ff;
  color:#173961;
}

@media (prefers-reduced-motion: reduce){
  .hero-art-light,.hero-art-dark{transition:none}
}
