/* =========================================================
   McFabb IT Solutions — v2 design system
   "Bold gradient & glass" — glassmorphic cards, gradient accents, glow
   Light theme (default): blue / white / grey — site & services
   Dark theme ([data-theme="dark"] on <html>): dark blue / black / dark grey — gaming shop
   ========================================================= */
:root{
  --accent-rgb: 37,99,235;
  --accent-2-rgb: 34,211,238;
  --accent: rgb(var(--accent-rgb));
  --accent-2: rgb(var(--accent-2-rgb));
  --accent-3: #1E3A8A;
  --accent-grad: linear-gradient(135deg, var(--accent-2), var(--accent));

  --bg: #EFF5FF;
  --ink: #0B1626;
  --ink-soft: #5B6B84;
  --line: rgba(11,22,38,0.08);
  --surface: rgba(255,255,255,0.66);
  --surface-solid: #FFFFFF;
  --surface-border: rgba(255,255,255,0.85);

  --radius: 22px;
  --radius-sm: 14px;
  --shadow-glass: 0 8px 30px rgba(15,35,70,0.10);
  --shadow-lift: 0 22px 48px rgba(15,35,70,0.16);

  --display: "Space Grotesk", "Inter", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", "Courier New", monospace;

  --max: 1180px;
}

html[data-theme="dark"]{
  --accent-rgb: 46,140,255;
  --accent-2-rgb: 34,211,238;
  --accent-3: #BFE0FF;

  --bg: #04070D;
  --ink: #E8EEFC;
  --ink-soft: #8FA0BE;
  --line: rgba(232,238,252,0.10);
  --surface: rgba(18,27,45,0.55);
  --surface-solid: #0E1626;
  --surface-border: rgba(130,175,255,0.18);

  --shadow-glass: 0 10px 40px rgba(0,0,0,0.55);
  --shadow-lift: 0 26px 60px rgba(0,0,0,0.65);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  color:var(--ink);
  font-family:var(--body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  background:
    radial-gradient(1200px 600px at 6% -10%, rgba(var(--accent-2-rgb),0.16), transparent 60%),
    radial-gradient(1000px 700px at 106% 6%, rgba(var(--accent-rgb),0.14), transparent 55%),
    var(--bg);
  background-attachment:fixed;
  transition:background 0.2s ease, color 0.2s ease;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; }
h1,h2,h3,h4{
  font-family:var(--display);
  font-weight:600;
  letter-spacing:-0.01em;
  margin:0;
  color:var(--ink);
}
p{ margin:0; }
button{ font-family:var(--body); cursor:pointer; }
[id]{ scroll-margin-top:120px; }

.wrap{ max-width:var(--max); margin:0 auto; padding:0 28px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; transition-duration:0.001ms !important; }
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:3px;
  border-radius:4px;
}

/* =========================== glass helper =========================== */
.glass{
  background:var(--surface);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid var(--surface-border);
  box-shadow:var(--shadow-glass);
}

/* =========================== floating navbar =========================== */
.navbar-wrap{ position:sticky; top:calc(16px + var(--preview-banner-h, 0px)); z-index:100; display:flex; justify-content:center; padding:0 16px; }
.navbar{
  display:flex; align-items:center; gap:8px;
  width:100%; max-width:var(--max);
  background:var(--surface); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  border:1px solid var(--surface-border); border-radius:999px;
  padding:9px 10px 9px 22px; box-shadow:var(--shadow-glass);
  position:relative;
}
.brand{ display:flex; align-items:center; gap:9px; font-family:var(--display); font-weight:700; font-size:17px; text-decoration:none; color:var(--ink); white-space:nowrap; }
.brand-logo{ height:36px; width:auto; display:block; }
.logo-dark{ display:none; }
html[data-theme="dark"] .logo-light{ display:none; }
html[data-theme="dark"] .logo-dark{ display:block; }
.footer-brand .brand-logo{ height:38px; }

.nav-links{ display:flex; align-items:center; gap:6px; margin-left:auto; }
.nav-links a{
  text-decoration:none; font-size:14px; font-weight:500; color:var(--ink-soft);
  padding:9px 14px; border-radius:999px; transition:color 0.15s ease, background 0.15s ease;
}
.nav-links a:hover{ color:var(--ink); background:var(--line); }
.nav-links a.current{ color:var(--ink); background:var(--line); font-weight:600; }
.nav-cta{
  background:var(--accent-grad) !important; color:#fff !important; font-weight:600 !important;
  box-shadow:0 8px 20px rgba(var(--accent-rgb),0.35);
}
.nav-cta:hover{ color:#fff !important; filter:brightness(1.06); }

.nav-toggle{
  display:none; background:none; border:1px solid var(--surface-border); border-radius:999px;
  width:42px; height:42px; align-items:center; justify-content:center; color:var(--ink); flex-shrink:0;
}
.nav-toggle svg{ width:18px; height:18px; }

.site-search-toggle{
  background:none; border:1px solid var(--surface-border); border-radius:999px; cursor:pointer;
  width:42px; height:42px; display:flex; align-items:center; justify-content:center; color:var(--ink); flex-shrink:0;
  transition:background 0.15s ease;
}
.site-search-toggle:hover{ background:var(--line); }
.site-search-toggle svg{ width:18px; height:18px; }

/* =========================== site-wide search overlay =========================== */
.site-search-overlay{
  position:fixed; inset:0; z-index:400; background:rgba(4,6,12,0.6); backdrop-filter:blur(4px);
  display:none; align-items:flex-start; justify-content:center; padding:10vh 20px 20px;
}
.site-search-overlay.show{ display:flex; }
.site-search-panel{
  width:100%; max-width:620px; background:var(--surface-solid); border:1px solid var(--surface-border);
  border-radius:22px; box-shadow:var(--shadow-lift); overflow:hidden; max-height:76vh; display:flex; flex-direction:column;
}
.site-search-input-row{
  display:flex; align-items:center; gap:12px; padding:18px 20px; border-bottom:1px solid var(--surface-border); flex-shrink:0;
}
.site-search-input-row svg{ width:20px; height:20px; color:var(--ink-soft); flex-shrink:0; }
.site-search-input-row input{
  flex:1; border:none; background:none; outline:none; font-family:var(--body); font-size:16px; color:var(--ink);
}
.site-search-input-row input::placeholder{ color:var(--ink-soft); }
.site-search-close{
  background:none; border:none; cursor:pointer; color:var(--ink-soft); width:32px; height:32px;
  display:flex; align-items:center; justify-content:center; border-radius:999px; flex-shrink:0;
}
.site-search-close:hover{ background:var(--line); color:var(--ink); }
.site-search-close svg{ width:16px; height:16px; }
.site-search-results{ overflow-y:auto; padding:8px; }
.site-search-hint, .site-search-empty{
  padding:32px 20px; text-align:center; color:var(--ink-soft); font-size:14px;
}
.site-search-result{
  display:flex; align-items:center; gap:14px; padding:10px 12px; border-radius:14px; text-decoration:none;
  color:var(--ink); cursor:pointer; transition:background 0.12s ease;
}
.site-search-result:hover, .site-search-result.kb-active{ background:var(--line); }
.site-search-result-media{
  width:48px; height:48px; border-radius:10px; background:var(--surface); flex-shrink:0;
  display:flex; align-items:center; justify-content:center; overflow:hidden;
}
.site-search-result-media img{ width:100%; height:100%; object-fit:contain; }
.site-search-result-media svg{ width:22px; height:22px; color:var(--ink-soft); }
.site-search-result-info{ flex:1; min-width:0; }
.site-search-result-name{ font-size:14px; font-weight:600; color:var(--ink); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.site-search-result-meta{ font-size:12.5px; color:var(--ink-soft); margin-top:2px; }
.site-search-result-price{ font-size:14px; font-weight:700; color:var(--ink); flex-shrink:0; white-space:nowrap; }
.site-search-result mark{ background:rgba(var(--accent-rgb),0.25); color:inherit; border-radius:3px; padding:0 1px; }

/* brief highlight animation when arriving at a product via search */
@keyframes site-search-target-pulse{
  0%{ box-shadow:0 0 0 0 rgba(var(--accent-rgb),0.55); }
  100%{ box-shadow:0 0 0 14px rgba(var(--accent-rgb),0); }
}
.search-target-highlight{ animation:site-search-target-pulse 1.1s ease-out 2; border-radius:20px; }

@media (max-width: 640px){
  .site-search-overlay{ padding:0; }
  .site-search-panel{ max-width:none; width:100%; height:100%; max-height:none; border-radius:0; }
}

@media (max-width: 900px){
  .nav-links{
    position:absolute; top:calc(100% + 10px); left:0; right:0;
    flex-direction:column; align-items:stretch; gap:4px;
    background:var(--surface-solid); border:1px solid var(--surface-border); border-radius:22px;
    padding:12px; box-shadow:var(--shadow-lift); display:none;
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding:12px 16px; }
  .nav-cta{ text-align:center; }
  .nav-toggle{ display:flex; }
}

/* buttons */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--body); font-size:14.5px; font-weight:600;
  text-decoration:none; padding:14px 26px; border:none; border-radius:999px; cursor:pointer;
  transition:transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--accent-grad); color:#fff; box-shadow:0 12px 26px rgba(var(--accent-rgb),0.35); }
.btn-primary:hover{ filter:brightness(1.07); }
.btn-glass{ background:var(--surface); border:1px solid var(--surface-border); color:var(--ink); backdrop-filter:blur(14px); }
.btn-glass:hover{ background:var(--line); }
.btn-white{ background:#fff; color:var(--accent-3); box-shadow:0 12px 26px rgba(0,0,0,0.18); }

/* =========================== hero =========================== */
.hero{ position:relative; padding:76px 0 88px; overflow:hidden; }
.hero-orb{ position:absolute; border-radius:50%; filter:blur(80px); z-index:0; pointer-events:none; }
.hero-orb.a{ width:440px; height:440px; background:var(--accent-2); opacity:0.35; top:-160px; left:-140px; }
.hero-orb.b{ width:420px; height:420px; background:var(--accent); opacity:0.3; top:-40px; right:-160px; }
.hero .wrap{ position:relative; z-index:1; }
.hero-content{ text-align:center; max-width:840px; margin:0 auto; }
.hero-badge{
  display:inline-flex; align-items:center; gap:9px; background:var(--surface); border:1px solid var(--surface-border);
  backdrop-filter:blur(14px); padding:9px 18px; border-radius:999px; font-size:13px; font-weight:500;
  color:var(--ink-soft); margin-bottom:28px;
}
.hero-badge .dot{ width:7px; height:7px; border-radius:50%; background:var(--accent-2); box-shadow:0 0 10px var(--accent-2); }
.hero h1{ font-size:clamp(36px, 5.6vw, 62px); line-height:1.08; margin-bottom:22px; }
.hero h1 .grad{ background:var(--accent-grad); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero-sub{ font-size:17.5px; color:var(--ink-soft); max-width:58ch; margin:0 auto 34px; }
.hero-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-bottom:60px; }

/* hero glass stat panel — signature element */
.hero-panel{ max-width:960px; margin:0 auto; border-radius:28px; padding:6px; position:relative; z-index:1; }
.hero-panel-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border-radius:22px; overflow:hidden; }
.hero-stat{ background:var(--surface-solid); padding:26px 22px; text-align:left; }
.hero-stat .num{ font-family:var(--display); font-size:27px; font-weight:700; background:var(--accent-grad); -webkit-background-clip:text; background-clip:text; color:transparent; display:block; }
.hero-stat .label{ font-size:12.5px; color:var(--ink-soft); margin-top:4px; display:block; }

/* =========================== sections =========================== */
section{ padding:88px 0; position:relative; }
.section-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom:44px; flex-wrap:wrap; }
.section-head h2{ font-size:clamp(26px, 3.4vw, 38px); }
.section-head p{ max-width:44ch; color:var(--ink-soft); font-size:15px; }
.eyebrow-chip{
  display:inline-flex; align-items:center; gap:8px; font-size:12.5px; font-weight:600; letter-spacing:0.02em;
  color:var(--accent); background:rgba(var(--accent-rgb),0.10); padding:6px 14px; border-radius:999px; margin-bottom:14px;
}

/* =========================== feature / teaser cards =========================== */
.feature-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.feature-card{ border-radius:var(--radius); padding:30px 26px; transition:transform 0.25s ease, box-shadow 0.25s ease; }
.feature-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lift); }
.icon-badge{ width:52px; height:52px; border-radius:16px; background:var(--accent-grad); display:flex; align-items:center; justify-content:center; box-shadow:0 10px 24px rgba(var(--accent-rgb),0.35); margin-bottom:18px; }
.icon-badge svg{ width:25px; height:25px; color:#fff; }
.feature-card h3{ font-size:19px; margin-bottom:10px; }
.feature-card p{ font-size:14.5px; color:var(--ink-soft); margin-bottom:18px; }
.card-link{ font-size:13.5px; font-weight:600; color:var(--accent); text-decoration:none; display:inline-flex; align-items:center; gap:6px; }
@media (max-width: 900px){
  .card-link{ padding:9px 0; }
}
.card-link:hover{ gap:9px; }

/* =========================== process flow ("how it works") =========================== */
.flow{ display:flex; justify-content:space-between; gap:20px; position:relative; }
.flow::before{
  content:""; position:absolute; top:26px; left:8%; right:8%; height:2px;
  background:linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent); opacity:0.5;
}
.flow-step{ flex:1; text-align:center; position:relative; z-index:1; }
.flow-node{
  width:52px; height:52px; border-radius:50%; margin:0 auto 18px;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--display); font-weight:700; font-size:18px; color:#fff;
  background:var(--accent-grad); box-shadow:0 10px 26px rgba(var(--accent-rgb),0.4);
}
.flow-step h3{ font-size:16.5px; margin-bottom:8px; }
.flow-step p{ font-size:13.5px; color:var(--ink-soft); max-width:230px; margin:0 auto; }
@media (max-width: 860px){
  .flow{ flex-direction:column; align-items:center; gap:36px; }
  .flow::before{ display:none; }
}

/* =========================== segmented filter =========================== */
.segmented{ display:inline-flex; gap:4px; padding:5px; border-radius:999px; margin-bottom:40px; flex-wrap:wrap; }
.segmented button{ border:none; background:transparent; padding:9px 18px; border-radius:999px; font-size:13.5px; font-weight:500; color:var(--ink-soft); white-space:nowrap; }
.segmented button.active{ background:var(--accent-grad); color:#fff; box-shadow:0 8px 18px rgba(var(--accent-rgb),0.35); }
@media (max-width: 900px){
  .segmented button{ padding:12px 18px; }
}

/* =========================== search bar =========================== */
.search-bar{
  display:flex; align-items:center; gap:10px; padding:13px 20px; border-radius:999px; margin-bottom:22px; max-width:480px;
}
.search-bar svg{ width:17px; height:17px; color:var(--ink-soft); flex-shrink:0; }
.search-bar input{
  border:none; background:transparent; outline:none; width:100%; font-family:var(--body);
  font-size:14.5px; color:var(--ink);
}
.search-bar input::placeholder{ color:var(--ink-soft); }
.no-results{ display:none; text-align:center; padding:48px 20px; color:var(--ink-soft); font-size:14.5px; }
.load-more-wrap{ display:flex; justify-content:center; margin-top:8px; }
.load-more-btn{
  padding:13px 32px; border-radius:999px; border:1px solid var(--surface-border);
  background:var(--surface); color:var(--ink); font-family:var(--body); font-weight:600; font-size:14px;
  cursor:pointer; transition:transform 0.2s ease, border-color 0.2s ease;
}
.load-more-btn:hover{ transform:translateY(-2px); border-color:rgba(var(--accent-rgb),0.5); }
.load-more-btn.hidden{ display:none; }
@media (max-width: 900px){
  /* keep the search input at 16px on mobile so iOS Safari doesn't auto-zoom on focus */
  .search-bar input{ font-size:16px; }
}
.no-results.show{ display:block; }

/* =========================== sidebar filter layout =========================== */
.catalogue-layout{ display:grid; grid-template-columns:215px 1fr; gap:28px; align-items:start; }
.filter-sidebar{ border-radius:var(--radius); padding:22px 20px; position:sticky; top:110px; max-height:calc(100vh - 130px); overflow-y:auto; }
.filter-block{ margin-bottom:26px; }
.filter-block:last-child{ margin-bottom:0; }
.filter-block h4{
  font-family:var(--mono); font-size:11.5px; font-weight:600; text-transform:uppercase; letter-spacing:0.06em;
  color:var(--ink-soft); margin-bottom:12px;
}
.sidebar-cat-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:2px; }
.sidebar-cat-btn{
  width:100%; text-align:left; background:transparent; border:none; padding:9px 10px; border-radius:10px;
  font-size:13.5px; color:var(--ink-soft); cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:8px;
}
.sidebar-cat-btn:hover{ background:var(--line); color:var(--ink); }
.sidebar-cat-btn.active{ background:var(--accent-grad); color:#fff; font-weight:600; }
.sidebar-cat-btn .count{ font-family:var(--mono); font-size:10.5px; opacity:0.7; flex-shrink:0; }
@media (max-width: 900px){
  .sidebar-cat-btn{ padding:13px 10px; }
}

.sidebar-check-list{ display:flex; flex-direction:column; gap:9px; }
.sidebar-check-list-scroll{
  max-height:220px; overflow-y:auto; padding-right:6px;
  scrollbar-width:thin; scrollbar-color:var(--line) transparent;
}
.sidebar-check-list-scroll::-webkit-scrollbar{ width:6px; }
.sidebar-check-list-scroll::-webkit-scrollbar-thumb{ background:var(--line); border-radius:3px; }
.sidebar-check-list-scroll::-webkit-scrollbar-track{ background:transparent; }
.sidebar-check-item{ display:flex; align-items:center; gap:9px; font-size:13px; color:var(--ink-soft); cursor:pointer; }
.sidebar-check-item input{ accent-color:var(--accent); flex-shrink:0; }
@media (max-width: 900px){
  .sidebar-check-item{ padding:8px 0; }
  .sidebar-check-item input{ width:18px; height:18px; }
}
.sidebar-check-item .cname{ flex:1; }
.sidebar-check-item .count{ font-family:var(--mono); font-size:10.5px; color:var(--ink-soft); opacity:0.7; flex-shrink:0; }
.sidebar-clear-btn{
  font-size:12px; color:var(--accent); background:none; border:none; padding:0; cursor:pointer;
  text-decoration:underline; margin-top:2px;
}
.filter-block.is-empty{ display:none; }

.price-range-display{ font-size:15px; font-weight:600; color:var(--ink); margin-bottom:12px; }
.price-range-inputs{ display:flex; align-items:flex-end; gap:10px; margin-bottom:10px; }
.price-input-group{ flex:1; display:flex; flex-direction:column; gap:5px; min-width:0; }
.price-input-group label{ font-size:11px; color:var(--ink-soft); text-transform:uppercase; letter-spacing:0.03em; }
.price-input-group input{
  width:100%; border:1px solid var(--line); background:var(--surface-solid); color:var(--ink);
  font-family:var(--body); font-size:13px; padding:8px 9px; border-radius:9px;
}
.price-input-group input:focus{ outline:none; border-color:rgba(var(--accent-rgb),0.5); }
.price-input-group input::placeholder{ color:var(--ink-soft); opacity:0.7; }
@media (max-width: 900px){
  .price-input-group input{ font-size:16px; }
}

@media (max-width: 980px){
  .catalogue-layout{ grid-template-columns:1fr; }
  .filter-sidebar{ position:static; max-height:none; }
}

/* =========================== category groups =========================== */
.cat-group.is-hidden{ display:none; }
.brand-divider.is-hidden{ display:none; }
.cat-divider{
  font-family:var(--display); font-weight:600; font-size:15px; color:var(--ink);
  margin:0 0 20px; padding-top:34px;
}
.cat-group:first-of-type .cat-divider{ padding-top:0; }
.cat-group .product-grid{ margin-bottom:8px; }
.brand-divider{
  grid-column:1/-1;
  font-family:var(--mono); font-size:11.5px; font-weight:600; text-transform:uppercase; letter-spacing:0.06em;
  color:var(--accent-2); margin:4px 0 -2px; padding-top:20px; border-top:1px dashed var(--line);
}
.brand-divider:first-child{ padding-top:0; border-top:none; }

/* =========================== product / service cards =========================== */
#catalogue .wrap{ max-width:1440px; }
.product-grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(300px, 1fr)); gap:28px; }
.product-card.is-hidden{ display:none; }
.product-card{
  position:relative; border-radius:var(--radius); padding:26px; cursor:pointer;
  transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  content-visibility:auto;
  contain-intrinsic-size:auto 480px;
  isolation:isolate;
}
.product-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-lift); border-color:rgba(var(--accent-rgb),0.4); }

/* ---- fire background, a real high-quality still image from the source video ----
   a static background-image, so there's no animation, no autoplay policy to run
   into, no codec support to worry about -- just a crisp image behind each card. ---- */
.product-card::before{
  content:''; position:absolute; left:0; right:0; bottom:0; height:110px; z-index:-1;
  border-radius:0 0 inherit inherit; pointer-events:none;
  background-position:bottom center; background-size:cover; background-repeat:no-repeat;
}
.product-card.fire-tier-entry::before{ background-image:url('images/fire-entry.png'); }
.product-card.fire-tier-mid::before{ background-image:url('images/fire-mid.png'); }
.product-card.fire-tier-high::before{ background-image:url('images/fire-high.png'); }


.product-media{
  height:168px; border-radius:16px; margin-bottom:18px; position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  background:radial-gradient(circle at 28% 22%, rgba(255,255,255,0.5), transparent 60%), var(--accent-grad);
}
html[data-theme="dark"] .product-media{
  background:radial-gradient(circle at 28% 22%, rgba(255,255,255,0.10), transparent 60%), linear-gradient(135deg, #0E1A33, #060A14);
  border:1px solid var(--surface-border);
}
.product-media svg{ width:50px; height:50px; color:#fff; filter:drop-shadow(0 6px 14px rgba(0,0,0,0.25)); }
html[data-theme="dark"] .product-media svg{ color:var(--accent-2); filter:drop-shadow(0 0 16px rgba(34,211,238,0.55)); }
.stock-chip{
  position:absolute; top:10px; right:10px; background:rgba(0,0,0,0.4); backdrop-filter:blur(6px);
  color:#fff; font-size:10.5px; font-weight:600; padding:5px 11px; border-radius:999px;
}
.stock-chip-low{ background:rgba(217,119,6,0.85); }
.stock-chip-out{ background:rgba(220,38,38,0.85); }
.tier-badge{
  position:absolute; top:10px; left:10px; width:26px; height:26px; border-radius:999px;
  background:rgba(0,0,0,0.4); backdrop-filter:blur(6px); display:flex; align-items:center; justify-content:center;
}
.tier-badge svg{ width:15px; height:15px; }
.tier-badge.is-animating svg{ animation:tier-flicker 2.2s ease-in-out infinite; }
.tier-badge[data-tier="entry"] svg, html[data-theme="dark"] .tier-badge[data-tier="entry"] svg{ color:#f5f7fa; filter:drop-shadow(0 0 5px rgba(245,247,250,0.65)); }
.tier-badge[data-tier="mid"] svg, html[data-theme="dark"] .tier-badge[data-tier="mid"] svg{ color:#5fd4ff; filter:drop-shadow(0 0 6px rgba(95,212,255,0.75)); }
.tier-badge[data-tier="high"] svg, html[data-theme="dark"] .tier-badge[data-tier="high"] svg{ color:#2f6fed; filter:drop-shadow(0 0 7px rgba(47,111,237,0.85)); }
@keyframes tier-flicker{
  0%, 100%{ transform:scale(1) rotate(-1deg); opacity:0.92; }
  25%{ transform:scale(1.05) rotate(1deg); opacity:1; }
  50%{ transform:scale(0.97) rotate(-1.5deg); opacity:0.88; }
  75%{ transform:scale(1.04) rotate(0.5deg); opacity:1; }
}
.tier-legend{
  display:flex; flex-wrap:wrap; align-items:center; gap:16px 22px;
  padding:12px 18px; border-radius:12px; margin:14px 0 18px;
  font-size:13px; color:var(--ink-soft);
}
.tier-legend-label{ font-weight:600; color:var(--ink); }
.tier-legend-item{ display:inline-flex; align-items:center; gap:8px; white-space:nowrap; }
.tier-legend-badge{
  position:static; width:20px; height:20px; flex-shrink:0;
  background:rgba(0,0,0,0.35);
}
.tier-legend-badge svg{ width:11px; height:11px; }
.btn-add:disabled{ opacity:0.55; cursor:not-allowed; }
.btn-add:disabled:hover{ transform:none; }

.product-card h3{ font-size:18px; margin-bottom:4px; padding-right:4px; }
.product-sku{ font-family:var(--mono); font-size:10.5px; color:var(--ink-soft); letter-spacing:0.03em; display:block; margin-bottom:12px; }
.product-desc{ font-size:13.5px; color:var(--ink-soft); margin-bottom:16px; line-height:1.55; min-height:40px; }

.spec-chips{ display:flex; flex-wrap:wrap; gap:6px; margin-bottom:18px; }
.spec-chips span{ font-size:11px; background:var(--line); color:var(--ink-soft); padding:5px 10px; border-radius:999px; }

.pill-toggle{ display:flex; background:var(--line); border-radius:999px; padding:3px; margin-bottom:14px; }
.pill-toggle button{ flex:1; border:none; background:transparent; padding:7px 4px; border-radius:999px; font-size:11.5px; font-weight:600; color:var(--ink-soft); }
.pill-toggle button.active{ background:var(--surface-solid); color:var(--ink); box-shadow:0 2px 8px rgba(0,0,0,0.10); }

.price-display{ display:flex; align-items:baseline; gap:6px; flex-wrap:wrap; padding:12px 0 4px; border-top:1px dashed var(--line); margin-bottom:12px; }
.price-display::after{ content:"Includes 15% VAT"; flex-basis:100%; font-size:10.5px; color:var(--ink-soft); margin-top:4px; }
.price-amount{ font-family:var(--display); font-size:24px; font-weight:700; color:var(--ink); }
.price-period{ font-family:var(--mono); font-size:11.5px; color:var(--ink-soft); text-transform:uppercase; letter-spacing:0.03em; }

.btn-add{
  width:100%; padding:13px; border-radius:14px; border:none; background:var(--accent-grad); color:#fff;
  font-weight:600; font-size:14px; box-shadow:0 10px 24px rgba(var(--accent-rgb),0.3);
  transition:transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn-add:hover{ transform:translateY(-2px); filter:brightness(1.06); }

/* =========================== floating cart chip =========================== */
.cart-chip{
  position:fixed; right:22px; bottom:22px; z-index:90;
  display:flex; align-items:center; gap:13px;
  background:var(--surface-solid); border:1px solid var(--surface-border); backdrop-filter:blur(20px);
  padding:13px 20px 13px 13px; border-radius:999px; box-shadow:var(--shadow-lift);
  text-decoration:none; color:var(--ink);
  transform:translateY(160%); opacity:0; transition:transform 0.3s ease, opacity 0.3s ease;
}
.cart-chip.show{ transform:translateY(0); opacity:1; }
.cart-chip .chip-count{
  width:28px; height:28px; border-radius:50%; background:var(--accent-grad); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700; flex-shrink:0;
}
.cart-chip .chip-text{ display:flex; flex-direction:column; line-height:1.3; }
.cart-chip .chip-total{ font-family:var(--display); font-weight:700; font-size:14.5px; }
.cart-chip .chip-cta{ font-size:11.5px; color:var(--ink-soft); }

/* =========================== PC builder =========================== */
.builder-layout{ display:grid; grid-template-columns:0.95fr 1.05fr; gap:44px; align-items:start; }
.builder-diagram{ position:sticky; top:110px; padding:12px 0; }
.builder-diagram svg{ width:100%; height:auto; display:block; max-width:440px; margin:0 auto; }
.builder-diagram .builder-diagram-caption{ text-align:center; font-family:var(--mono); font-size:12px; color:var(--ink-soft); margin-top:6px; }

.pc-diagram .case-shell{ fill:rgba(255,255,255,0.03); stroke:rgba(255,255,255,0.4); stroke-width:2.5; }
.pc-diagram .case-inner-line{ fill:none; stroke:rgba(255,255,255,0.10); stroke-width:1; }
.pc-diagram .glass-panel{ fill:rgba(34,211,238,0.05); stroke:rgba(34,211,238,0.4); stroke-width:1; stroke-dasharray:2 4; }
.pc-diagram .tray-tint{ fill:rgba(255,255,255,0.03); }
.pc-diagram .mobo-fill{ fill:rgba(20,60,52,0.55); }
.pc-diagram .mobo-line{ fill:none; stroke:rgba(255,255,255,0.4); stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.pc-diagram .mobo-detail{ fill:rgba(255,255,255,0.22); }
.pc-diagram .mobo-detail-line{ fill:none; stroke:rgba(255,255,255,0.28); stroke-width:1.2; stroke-linecap:round; }
.pc-diagram .pc-zone.is-filled .mobo-fill{ fill:rgba(34,211,238,0.14); }
.pc-diagram .pc-zone.is-filled .mobo-line{ stroke:var(--accent-2); }
.pc-diagram .pc-zone.is-filled .mobo-detail{ fill:var(--accent-2); opacity:0.7; }
.pc-diagram .pc-zone.is-filled .mobo-detail-line{ stroke:var(--accent-2); opacity:0.6; }
.pc-diagram .case-deco{ fill:none; stroke:rgba(255,255,255,0.3); stroke-width:1.4; stroke-linecap:round; }
.pc-diagram .case-deco-fill{ fill:rgba(255,255,255,0.3); }
.pc-diagram .mesh-dot{ fill:rgba(255,255,255,0.3); }
.pc-diagram .mesh-frame{ fill:none; stroke:rgba(255,255,255,0.2); stroke-width:1; }

.pc-diagram .zone-fill{ fill:rgba(255,255,255,0.045); }
.pc-diagram .zone-line{ fill:none; stroke:rgba(255,255,255,0.55); stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; transition:stroke 0.2s ease, opacity 0.2s ease; }
.pc-diagram .zone-dot{ fill:rgba(255,255,255,0.55); transition:fill 0.2s ease, opacity 0.2s ease; }
.pc-diagram .zone-fan-ring{ fill:none; stroke:rgba(255,255,255,0.55); stroke-width:1.6; transition:stroke 0.2s ease; }
.pc-diagram .zone-fan-blade path{ fill:rgba(255,255,255,0.32); stroke:none; transition:fill 0.2s ease; }
.pc-diagram .zone-fan-hub{ fill:rgba(255,255,255,0.55); transition:fill 0.2s ease; }

.pc-diagram .pc-zone{ transition:filter 0.25s ease; }
.pc-diagram .pc-zone.is-filled .zone-line{ stroke:var(--accent-2); }
.pc-diagram .pc-zone.is-filled .zone-fill{ fill:rgba(var(--accent-2-rgb),0.20); }
.pc-diagram .pc-zone.is-filled .zone-dot{ fill:var(--accent-2); }
.pc-diagram .pc-zone.is-filled .zone-fan-ring{ stroke:var(--accent-2); }
.pc-diagram .pc-zone.is-filled .zone-fan-blade path{ fill:rgba(var(--accent-2-rgb),0.55); }
.pc-diagram .pc-zone.is-filled .zone-fan-hub{ fill:var(--accent-2); }
.pc-diagram .pc-zone.is-filled .case-shell{ stroke:var(--accent-2); }
.pc-diagram .pc-zone.is-focused{ filter:drop-shadow(0 0 7px rgba(var(--accent-2-rgb),0.8)); }

.pc-diagram .diagram-pin{ fill:url(#pcPinGrad); }
.pc-diagram .diagram-pin-num{ fill:#fff; font-family:var(--display); font-weight:700; font-size:10px; text-anchor:middle; }
.pc-diagram .diagram-label{ font-family:var(--mono); font-size:8.5px; letter-spacing:0.03em; text-transform:uppercase; fill:rgba(255,255,255,0.55); text-anchor:start; transition:fill 0.2s ease; }
.pc-diagram .pc-zone.is-filled .diagram-label{ fill:var(--accent-2); }
.pc-diagram .feet-gold{ fill:#C9A24B; }
.pc-diagram .grommet{ fill:rgba(255,255,255,0.06); stroke:rgba(255,255,255,0.25); stroke-width:1; }
.pc-diagram .bracket-slot{ fill:rgba(255,255,255,0.05); stroke:rgba(255,255,255,0.28); stroke-width:1; }
.pc-diagram .pc-zone.is-filled .bracket-slot{ stroke:var(--accent-2); }
.pc-diagram .top-face{ fill:rgba(255,255,255,0.07); stroke:rgba(255,255,255,0.35); stroke-width:1.6; stroke-linejoin:round; transition:stroke 0.2s ease, fill 0.2s ease; }
.pc-diagram .side-face{ fill:rgba(0,0,0,0.38); stroke:rgba(255,255,255,0.25); stroke-width:1.4; stroke-linejoin:round; transition:stroke 0.2s ease; }
.pc-diagram .pc-zone.is-filled .top-face{ stroke:var(--accent-2); fill:rgba(var(--accent-2-rgb),0.12); }
.pc-diagram .pc-zone.is-filled .side-face{ stroke:var(--accent-2); }

.builder-panel{ border-radius:var(--radius); padding:26px; }
.builder-row{ display:flex; align-items:center; gap:14px; margin-bottom:16px; }
.builder-pin{
  width:28px; height:28px; border-radius:50%; background:var(--accent-grad); color:#fff;
  font-family:var(--display); font-weight:700; font-size:13px; display:flex; align-items:center;
  justify-content:center; flex-shrink:0; box-shadow:0 6px 16px rgba(var(--accent-rgb),0.35);
}
.builder-field{ flex:1; display:flex; flex-direction:column; gap:5px; min-width:0; }
.builder-field label{ font-size:12px; font-weight:600; color:var(--ink-soft); }
.builder-field select{
  border:1px solid var(--line); background:var(--surface-solid); padding:10px 12px; font-family:var(--body);
  font-size:13.5px; color:var(--ink); border-radius:10px; width:100%;
}
.builder-field-qty{ flex:0 0 84px; display:flex; flex-direction:column; gap:5px; min-width:0; }
.builder-field-qty label{ font-size:12px; font-weight:600; color:var(--ink-soft); }
.builder-field-qty select{
  border:1px solid var(--line); background:var(--surface-solid); padding:10px 8px; font-family:var(--body);
  font-size:13.5px; color:var(--ink); border-radius:10px; width:100%; text-align:center;
}
.builder-total-row{
  display:flex; justify-content:space-between; align-items:center; border-top:1px dashed var(--line);
  margin-top:6px; padding-top:16px; margin-bottom:16px; font-size:12.5px; text-transform:uppercase;
  letter-spacing:0.03em; color:var(--ink-soft);
}
.builder-total{ font-family:var(--display); font-weight:700; font-size:20px; color:var(--ink); }
.builder-hint{ font-size:12px; color:var(--ink-soft); margin-top:12px; line-height:1.5; }

/* =========================== persona cards ("who we help") =========================== */
.persona-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.persona-card{ border-radius:var(--radius); padding:28px 24px; }
.persona-tag{
  display:inline-block; font-size:11.5px; font-weight:600; color:var(--accent);
  background:rgba(var(--accent-rgb),0.10); padding:5px 12px; border-radius:999px; margin-bottom:14px;
}
.persona-card h3{ font-size:18px; margin-bottom:10px; }
.persona-card p{ font-size:13.5px; color:var(--ink-soft); margin-bottom:16px; }
.persona-card ul{ list-style:none; padding:0; margin:0 0 18px; font-size:13px; color:var(--ink-soft); }
.persona-card ul li{ padding-left:18px; position:relative; margin-bottom:8px; }
.persona-card ul li::before{ content:"→"; position:absolute; left:0; color:var(--accent); }

/* =========================== FAQ accordion =========================== */
.accordion-item{ border-radius:18px; padding:4px 22px; margin-bottom:12px; }
.accordion-item summary{
  padding:17px 0; font-family:var(--display); font-weight:600; font-size:15.5px;
  display:flex; justify-content:space-between; align-items:center; gap:16px; cursor:pointer; list-style:none;
}
.accordion-item summary::-webkit-details-marker{ display:none; }
.accordion-item summary .plus{
  width:28px; height:28px; border-radius:50%; background:var(--line); color:var(--accent);
  display:flex; align-items:center; justify-content:center; font-size:15px; flex-shrink:0;
  transition:transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.accordion-item[open] summary .plus{ transform:rotate(45deg); background:var(--accent-grad); color:#fff; }
.accordion-item p{ padding:0 0 20px; color:var(--ink-soft); font-size:14px; max-width:70ch; }

/* =========================== CTA island =========================== */
.cta-panel{
  background:var(--accent-grad); border-radius:32px; padding:56px 48px;
  display:flex; justify-content:space-between; align-items:center; gap:24px; flex-wrap:wrap;
  box-shadow:var(--shadow-lift); position:relative; overflow:hidden;
}
.cta-panel h2{ color:#fff; font-size:clamp(24px,3.2vw,34px); max-width:20ch; }

/* =========================== gaming teaser band ============ */
.gaming-band{
  border-radius:32px; padding:52px 48px; position:relative; overflow:hidden;
  background:linear-gradient(120deg, #04070D, #0E1C33);
  border:1px solid rgba(130,175,255,0.18);
}
.gaming-band .wrap-inner{ display:flex; justify-content:space-between; align-items:center; gap:28px; flex-wrap:wrap; position:relative; z-index:1; }
.gaming-band h2{ color:#fff; font-size:clamp(24px,3.2vw,32px); max-width:20ch; }
.gaming-band p{ color:#9FB0C9; max-width:44ch; margin-top:10px; font-size:14.5px; }
.gaming-band .btn-primary{ background:linear-gradient(135deg,#22D3EE,#2E8CFF); }

/* =========================== about / feature row =========================== */
.about-row{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:52px; align-items:center; }
.about-visual{
  border-radius:26px; min-height:280px; display:flex; align-items:center; justify-content:center;
  background:radial-gradient(circle at 30% 20%, rgba(255,255,255,0.5), transparent 60%), var(--accent-grad);
  box-shadow:var(--shadow-glass);
}
html[data-theme="dark"] .about-visual{ background:radial-gradient(circle at 30% 20%, rgba(255,255,255,0.10), transparent 60%), linear-gradient(135deg, #0E1A33, #060A14); border:1px solid var(--surface-border); }
.about-visual svg{ width:92px; height:92px; color:#fff; }
html[data-theme="dark"] .about-visual svg{ color:var(--accent-2); }
.about-copy h3{ font-size:26px; margin-bottom:14px; }
.about-copy p{ color:var(--ink-soft); font-size:15px; margin-bottom:16px; }
.about-copy ul{ list-style:none; padding:0; margin:0; display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.about-copy ul li{
  padding:12px 14px; border-radius:14px; font-size:13.5px; color:var(--ink-soft);
  display:flex; align-items:center; gap:9px;
}
.about-copy ul li svg{ width:16px; height:16px; color:var(--accent); flex-shrink:0; }

/* =========================== footer ============ */
.site-footer{
  background:linear-gradient(180deg, #0B1220, #05070D); color:#AEBBCF;
  padding:64px 0 28px; margin-top:40px; border-radius:36px 36px 0 0; position:relative; overflow:hidden;
}
.site-footer::before{ content:""; position:absolute; top:0; left:8%; right:8%; height:1px; background:var(--accent-grad); opacity:0.7; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:36px; padding-bottom:36px; }
.footer-grid h4{ color:#fff; font-size:13px; font-weight:600; letter-spacing:0.03em; margin-bottom:16px; }
.footer-grid ul{ list-style:none; padding:0; margin:0; }
.footer-grid li{ margin-bottom:2px; font-size:13.5px; }
.footer-grid a{ text-decoration:none; color:#AEBBCF; display:inline-block; padding:6px 0; }
@media (max-width: 900px){
  .footer-grid a{ padding:9px 0; }
}
.footer-grid a:hover{ color:var(--accent-2); }
.footer-brand p{ font-size:13.5px; max-width:34ch; margin-top:14px; line-height:1.6; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08); padding-top:22px; display:flex; justify-content:space-between;
  font-size:12px; color:#8091AC; flex-wrap:wrap; gap:10px;
}
.footer-brand .brand{ color:#fff; }

/* =========================== enquiry / contact ============ */
.enquiry-layout{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:28px; align-items:start; }
.enquiry-panel{ border-radius:var(--radius); padding:26px; position:sticky; top:110px; }
.enquiry-panel h4{ font-family:var(--display); font-size:14px; font-weight:600; margin-bottom:16px; color:var(--ink); }
.enquiry-items{ list-style:none; margin:0 0 18px; padding:0; display:flex; flex-direction:column; gap:10px; }
.enquiry-items li{ display:flex; justify-content:space-between; align-items:center; gap:10px; background:var(--surface-solid); border:1px solid var(--line); padding:12px 14px; border-radius:14px; }
.enquiry-items li.enquiry-empty{ background:transparent; border:1px dashed var(--line); color:var(--ink-soft); font-size:13.5px; line-height:1.6; }
.enquiry-item-info strong{ display:block; font-size:14px; margin-bottom:2px; }
.enquiry-item-info span{ font-family:var(--mono); font-size:11px; color:var(--ink-soft); text-transform:uppercase; letter-spacing:0.03em; }
.enquiry-item-right{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.enquiry-item-right .item-price{ font-family:var(--display); font-weight:700; font-size:14px; color:var(--ink); }
.remove-item{ background:var(--line); border:none; width:24px; height:24px; line-height:1; font-size:14px; color:var(--ink-soft); flex-shrink:0; border-radius:50%; }
.remove-item:hover{ background:var(--accent); color:#fff; }
.enquiry-total-row{ display:flex; justify-content:space-between; align-items:center; border-top:1px dashed var(--line); padding-top:16px; font-size:12.5px; text-transform:uppercase; letter-spacing:0.03em; color:var(--ink-soft); }
.enquiry-total{ font-size:22px; color:var(--ink); font-weight:700; font-family:var(--display); }
.vat-breakdown{ margin-top:2px; }
.vat-row{ display:flex; justify-content:space-between; align-items:center; font-size:12.5px; color:var(--ink-soft); padding:5px 0; }
.vat-row span:last-child{ font-family:var(--mono); color:var(--ink); }

form.contact-form{ border-radius:var(--radius); padding:32px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.field{ display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.field label{ font-size:12.5px; font-weight:600; color:var(--ink-soft); }
.field input, .field select, .field textarea{
  border:1px solid var(--line); background:var(--surface-solid); padding:12px 14px; font-family:var(--body);
  font-size:14.5px; color:var(--ink); border-radius:12px;
}
.field textarea{ resize:vertical; min-height:110px; }
@media (max-width: 900px){
  /* iOS Safari auto-zooms on focus if an input's font-size is under 16px — keep it at 16px on mobile */
  .field input, .field select, .field textarea{ font-size:16px; }
}

.checkbox-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-bottom:22px; }
.checkbox-item{ display:flex; align-items:center; gap:8px; border:1px solid var(--line); padding:10px 12px; font-size:13.5px; border-radius:12px; background:var(--surface-solid); }
.checkbox-item input{ accent-color:var(--accent); }

.submit-row{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; }
.form-note{ font-size:12.5px; color:var(--ink-soft); max-width:40ch; line-height:1.5; }

.form-success{ display:none; border-radius:var(--radius); padding:30px; background:var(--accent-grad); color:#fff; }
.email-fallback-row{ margin-top:16px; }
.email-fallback-label{ display:block; font-size:12.5px; color:rgba(255,255,255,0.85); margin-bottom:9px; }
.email-fallback-links{ display:flex; flex-wrap:wrap; gap:8px; }
.email-fallback-link{
  display:inline-flex; align-items:center; padding:8px 14px; border-radius:999px;
  background:rgba(255,255,255,0.18); color:#fff; font-size:12.5px; font-weight:600;
  text-decoration:none; border:none; cursor:pointer; font-family:inherit; transition:background 0.15s ease;
}
.email-fallback-link:hover{ background:rgba(255,255,255,0.3); }
.form-success.show{ display:block; }
.contact-form.is-hidden{ display:none; }

.form-error{ display:none; border-radius:var(--radius); padding:30px; background:rgba(220,38,38,0.12); border:1px solid rgba(220,38,38,0.35); color:var(--ink); }
.form-error.show{ display:block; }
.form-error p b{ color:#dc2626; }

/* honeypot -- present in the DOM for bots, invisible and unreachable for real visitors */
.hp-field{
  position:absolute !important; left:-9999px !important; top:-9999px !important;
  width:1px !important; height:1px !important; opacity:0 !important; pointer-events:none;
}

.contact-hero{ padding:64px 0 40px; text-align:center; }
.contact-hero .hero-badge{ margin-left:auto; margin-right:auto; }
.contact-hero h1{ font-size:clamp(32px,4.6vw,50px); max-width:20ch; margin:0 auto 16px; }
.contact-hero p{ max-width:58ch; color:var(--ink-soft); font-size:16px; margin:0 auto; }

.contact-layout{ display:grid; grid-template-columns:1fr 1.3fr; gap:48px; align-items:start; }

.audience-list{ display:flex; flex-direction:column; gap:12px; margin-bottom:28px; }
.audience-pill{ display:flex; align-items:center; gap:14px; border-radius:16px; padding:15px 18px; }
.audience-pill .pill-num{ font-family:var(--display); color:var(--accent); font-size:13px; font-weight:700; }
.audience-pill strong{ display:block; font-size:14.5px; }
.audience-pill span{ font-size:13px; color:var(--ink-soft); }

.info-block{ border-radius:16px; padding:20px 22px; margin-bottom:16px; }
.info-block h4{ font-size:12px; font-weight:600; letter-spacing:0.04em; margin-bottom:10px; color:var(--accent); }
.info-block p, .info-block a{ font-size:14px; color:var(--ink-soft); text-decoration:none; line-height:1.7; }
.info-block a:hover{ color:var(--accent); }

/* =========================== checkout: quote vs pay ============ */
.hidden{ display:none !important; }
.checkout-tabs{ margin-bottom:20px; }
.checkout-tabs.segmented button{ flex:1; text-align:center; }
.pay-summary{ background:var(--line); border-radius:14px; margin-bottom:20px; overflow:hidden; }
.pay-summary-row{ display:flex; justify-content:space-between; align-items:center; padding:13px 18px; font-size:13.5px; color:var(--ink-soft); }
.pay-summary-row + .pay-summary-row{ border-top:1px solid var(--surface-border); }
.pay-summary-row .pay-subtotal, .pay-summary-row .pay-vat{ font-family:var(--mono); font-size:13px; color:var(--ink); }
.pay-summary-row.pay-summary-total{ background:rgba(var(--accent-rgb),0.10); }
.pay-summary-row.pay-summary-total span:first-child{ color:var(--ink); font-weight:600; }
.pay-summary-row.pay-summary-total .pay-total{ font-family:var(--display); font-weight:700; font-size:18px; color:var(--ink); }
.payment-methods{ display:flex; flex-wrap:wrap; gap:8px; margin:2px 0 22px; }
.payment-methods span{ font-size:11.5px; background:var(--line); color:var(--ink-soft); padding:6px 12px; border-radius:999px; }
.secure-note{ display:flex; align-items:center; gap:8px; font-size:12px; color:var(--ink-soft); margin-top:16px; }
.secure-note svg{ width:14px; height:14px; color:var(--accent); flex-shrink:0; }
.sandbox-note{
  font-size:11.5px; line-height:1.6; color:var(--ink-soft); background:rgba(var(--accent-rgb),0.08);
  border:1px dashed rgba(var(--accent-rgb),0.3); padding:10px 14px; border-radius:12px; margin-top:14px;
}
.form-banner-neutral{ background:var(--surface-solid); border:1px solid var(--line); color:var(--ink); }
.form-banner-neutral b{ color:var(--ink); }
.form-success p b{ color:#fff; }

/* =========================== responsive =========================== */
@media (max-width: 980px){
  .hero-panel-grid{ grid-template-columns:1fr 1fr; }
  .feature-grid{ grid-template-columns:1fr 1fr; }
  .product-grid{ grid-template-columns:repeat(2,1fr); }
  .persona-grid{ grid-template-columns:1fr 1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .enquiry-layout{ grid-template-columns:1fr; }
  .enquiry-panel{ position:static; }
  .builder-layout{ grid-template-columns:1fr; }
  .builder-diagram{ position:static; max-width:360px; margin:0 auto; padding:0; }
  .form-row{ grid-template-columns:1fr; }
  .checkbox-grid{ grid-template-columns:1fr 1fr; }
  .about-row{ grid-template-columns:1fr; }
  .about-copy ul{ grid-template-columns:1fr 1fr; }
  .contact-layout{ grid-template-columns:1fr; }
  .gaming-band .wrap-inner{ text-align:left; }
  .cta-panel{ padding:44px 32px; }
}
@media (max-width: 620px){
  .hero-panel-grid{ grid-template-columns:1fr; }
  .feature-grid{ grid-template-columns:1fr; }
  .product-grid{ grid-template-columns:1fr; }
  .persona-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .checkbox-grid{ grid-template-columns:1fr; }
  .about-copy ul{ grid-template-columns:1fr; }
  .cart-chip{ left:16px; right:16px; bottom:16px; justify-content:center; }
}

/* =========================== product detail modal =========================== */
.product-modal-overlay{
  position:fixed; inset:0; background:rgba(4,7,13,0.72); backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center; padding:24px; z-index:200;
  opacity:0; pointer-events:none; transition:opacity 0.22s ease;
}
.product-modal-overlay.show{ opacity:1; pointer-events:auto; }
.product-modal{
  background:var(--surface-solid); border:1px solid var(--surface-border); border-radius:28px;
  max-width:780px; width:100%; max-height:88vh; overflow-y:auto; position:relative;
  box-shadow:0 40px 90px rgba(0,0,0,0.45); transform:scale(0.94) translateY(10px); transition:transform 0.25s ease;
}
.product-modal-overlay.show .product-modal{ transform:scale(1) translateY(0); }
.product-modal-close{
  position:absolute; top:18px; right:18px; width:42px; height:42px; border-radius:50%;
  background:var(--line); border:none; display:flex; align-items:center; justify-content:center;
  cursor:pointer; color:var(--ink); z-index:2; transition:background 0.15s ease;
}
.product-modal-close:hover{ background:rgba(var(--accent-rgb),0.25); }
.product-modal-close svg{ width:16px; height:16px; }
.product-modal-media{
  height:220px; border-radius:28px 28px 0 0; position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  background:radial-gradient(circle at 28% 22%, rgba(255,255,255,0.5), transparent 60%), var(--accent-grad);
}
html[data-theme="dark"] .product-modal-media{
  background:radial-gradient(circle at 28% 22%, rgba(255,255,255,0.10), transparent 60%), linear-gradient(135deg, #0E1A33, #060A14);
  border-bottom:1px solid var(--surface-border);
}
.product-modal-media svg{ width:84px; height:84px; color:#fff; filter:drop-shadow(0 6px 14px rgba(0,0,0,0.25)); }

/* =========================== product photo gallery =========================== */
.product-modal-media.has-photos{ background:#fff; cursor:zoom-in; }
html[data-theme="dark"] .product-modal-media.has-photos{ background:#fff; }
.pm-gallery-main{ width:100%; height:100%; object-fit:contain; padding:10px; display:block; }
.pm-gallery-nav{
  position:absolute; top:50%; transform:translateY(-50%); width:36px; height:36px; border-radius:50%;
  background:rgba(255,255,255,0.9); border:none; display:flex; align-items:center; justify-content:center;
  cursor:pointer; color:var(--ink); box-shadow:0 4px 12px rgba(0,0,0,0.15); z-index:2; transition:background 0.15s ease;
}
.pm-gallery-nav:hover{ background:#fff; }
.pm-gallery-nav.prev{ left:14px; }
.pm-gallery-nav.next{ right:14px; }
.pm-gallery-nav svg{ width:18px; height:18px; }
.pm-gallery-dots{
  position:absolute; bottom:12px; left:50%; transform:translateX(-50%); display:flex; gap:6px; z-index:2;
}
.pm-gallery-dot{
  width:7px; height:7px; border-radius:50%; background:rgba(0,0,0,0.25); border:none; cursor:pointer; padding:0;
  transition:background 0.15s ease, transform 0.15s ease;
}
.pm-gallery-dot.active{ background:var(--accent); transform:scale(1.3); }
.pm-gallery-zoom-hint{
  position:absolute; top:14px; right:14px; background:rgba(0,0,0,0.55); color:#fff; font-size:11px; font-weight:600;
  padding:6px 10px; border-radius:999px; display:flex; align-items:center; gap:5px; z-index:2; pointer-events:none;
}
.pm-gallery-zoom-hint svg{ width:12px; height:12px; }
.pm-gallery-thumbs{
  display:flex; gap:8px; padding:12px 24px 0; overflow-x:auto; scrollbar-width:none;
}
.pm-gallery-thumbs::-webkit-scrollbar{ display:none; }
.pm-gallery-thumb{
  flex-shrink:0; width:52px; height:52px; border-radius:10px; overflow:hidden; border:2px solid transparent;
  background:#fff; cursor:pointer; padding:0; display:flex; align-items:center; justify-content:center;
}
.pm-gallery-thumb img{ width:100%; height:100%; object-fit:contain; padding:4px; }
.pm-gallery-thumb.active{ border-color:var(--accent); }

/* card-level photo thumbnail (replaces the icon on products with real photos) */
.product-media.has-photo{ background:#fff; }
.product-media.has-photo img{ width:100%; height:100%; object-fit:contain; padding:14px; }

/* full-screen zoom lightbox */
.pm-lightbox{
  position:fixed; inset:0; z-index:300; background:rgba(4,6,12,0.92); display:none;
  align-items:center; justify-content:center; overscroll-behavior:contain;
}
.pm-lightbox.show{ display:flex; }
.pm-lightbox-img-wrap{
  width:90vw; height:85vh; overflow:auto; display:flex; align-items:center; justify-content:center;
  cursor:zoom-out; scrollbar-width:thin;
}
.pm-lightbox-img-wrap.zoomed{ align-items:flex-start; justify-content:flex-start; cursor:zoom-out; }
.pm-lightbox-img{ max-width:90vw; max-height:85vh; object-fit:contain; transition:max-width 0.15s ease, max-height 0.15s ease; cursor:zoom-in; }
.pm-lightbox-img-wrap.zoomed .pm-lightbox-img{ max-width:none; max-height:none; width:180%; cursor:zoom-out; }
.pm-lightbox-close{
  position:absolute; top:20px; right:20px; width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,0.12); border:none; display:flex; align-items:center; justify-content:center;
  cursor:pointer; color:#fff; z-index:2;
}
.pm-lightbox-close:hover{ background:rgba(255,255,255,0.22); }
.pm-lightbox-close svg{ width:18px; height:18px; }
.pm-lightbox-nav{
  position:absolute; top:50%; transform:translateY(-50%); width:48px; height:48px; border-radius:50%;
  background:rgba(255,255,255,0.12); border:none; display:flex; align-items:center; justify-content:center;
  cursor:pointer; color:#fff; z-index:2; transition:background 0.15s ease;
}
.pm-lightbox-nav:hover{ background:rgba(255,255,255,0.22); }
.pm-lightbox-nav.prev{ left:20px; }
.pm-lightbox-nav.next{ right:20px; }
.pm-lightbox-nav svg{ width:22px; height:22px; }
.pm-lightbox-counter{
  position:absolute; bottom:20px; left:50%; transform:translateX(-50%); color:#fff; font-size:13px;
  background:rgba(255,255,255,0.12); padding:6px 14px; border-radius:999px;
}
@media (max-width:640px){
  .pm-lightbox-nav{ width:40px; height:40px; }
  .pm-lightbox-img-wrap{ width:96vw; height:80vh; }
}

html[data-theme="dark"] .product-modal-media svg{ color:var(--accent-2); filter:drop-shadow(0 0 20px rgba(34,211,238,0.55)); }
.product-modal-stock{
  position:absolute; top:16px; left:16px; background:rgba(0,0,0,0.4); backdrop-filter:blur(6px);
  color:#fff; font-size:11.5px; font-weight:600; padding:6px 13px; border-radius:999px;
}
.product-modal-body{ padding:30px 34px 34px; }
.product-modal-badges{ display:flex; gap:8px; margin-bottom:12px; flex-wrap:wrap; }
.product-modal-badge{
  font-family:var(--mono); font-size:10.5px; text-transform:uppercase; letter-spacing:0.05em;
  color:var(--accent-2); background:rgba(var(--accent-2-rgb),0.12); padding:4px 10px; border-radius:999px;
}
.product-modal-body h2{ font-size:26px; margin-bottom:6px; }
.product-modal-sku{ font-family:var(--mono); font-size:11.5px; color:var(--ink-soft); letter-spacing:0.03em; display:block; margin-bottom:16px; }
.product-modal-desc{ font-size:14.5px; color:var(--ink-soft); line-height:1.65; margin-bottom:26px; }
.product-modal-spec-heading{
  font-family:var(--mono); font-size:11.5px; font-weight:600; text-transform:uppercase; letter-spacing:0.06em;
  color:var(--ink-soft); margin-bottom:12px;
}
.product-modal-specs{
  display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line); border-radius:14px;
  overflow:hidden; margin-bottom:28px; border:1px solid var(--line);
}
.product-modal-spec-row{ background:var(--surface-solid); padding:12px 16px; }
.product-modal-spec-row dt{ font-size:11px; color:var(--ink-soft); text-transform:uppercase; letter-spacing:0.03em; margin-bottom:3px; }
.product-modal-spec-row dd{ font-size:14px; color:var(--ink); font-weight:600; }
.product-modal-footer{
  display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
  padding-top:22px; border-top:1px dashed var(--line);
}
.product-modal-price .amount{ font-family:var(--display); font-weight:700; font-size:28px; color:var(--ink); }
.product-modal-price .period{ font-family:var(--mono); font-size:11.5px; color:var(--ink-soft); text-transform:uppercase; margin-left:6px; }
.product-modal-price .vat-note{ display:block; font-size:12px; color:var(--ink-soft); margin-top:2px; }
.product-modal-footer .btn{ flex-shrink:0; }

@media (max-width: 680px){
  .product-modal{ max-height:92vh; border-radius:20px; }
  .product-modal-media{ height:160px; border-radius:20px 20px 0 0; }
  .product-modal-body{ padding:24px 20px 26px; }
  .product-modal-specs{ grid-template-columns:1fr; }
  .product-modal-footer{ flex-direction:column; align-items:stretch; }
  .product-modal-footer .btn{ width:100%; justify-content:center; }
}

/* =========================== preview / coming-soon mode =========================== */
.preview-veil{
  position:fixed; inset:0; z-index:150; pointer-events:none;
  background:linear-gradient(180deg, rgba(4,7,13,0.05) 0%, rgba(4,7,13,0.16) 100%);
}
html:not([data-theme="dark"]) .preview-veil{
  background:linear-gradient(180deg, rgba(30,41,59,0.04) 0%, rgba(30,41,59,0.10) 100%);
}
.preview-banner{
  position:sticky; top:0; z-index:160; display:flex; align-items:center; justify-content:center;
  gap:10px; padding:11px 20px; text-align:center;
  background:linear-gradient(90deg, rgba(var(--accent-rgb),0.92), rgba(var(--accent-2-rgb),0.92));
  color:#fff; font-size:13.5px; font-weight:600; flex-wrap:wrap;
}
.preview-banner svg{ width:16px; height:16px; flex-shrink:0; }
.preview-banner .sep{ opacity:0.6; font-weight:400; }
.preview-toast{
  position:fixed; left:50%; bottom:28px; transform:translateX(-50%) translateY(20px);
  background:var(--surface-solid); border:1px solid var(--surface-border); color:var(--ink);
  padding:14px 22px; border-radius:14px; box-shadow:0 20px 45px rgba(0,0,0,0.35);
  font-size:13.5px; font-weight:600; z-index:210; max-width:90vw; text-align:center;
  opacity:0; pointer-events:none; transition:opacity 0.2s ease, transform 0.2s ease;
}
.preview-toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }
@media (max-width: 640px){
  .preview-banner{ font-size:12.5px; padding:10px 14px; }
}

/* =========================== enquiry add confirmation =========================== */
.enquiry-panel-pulse{
  animation: enquiryPulse 1.5s ease;
}
@keyframes enquiryPulse{
  0%{ box-shadow:0 0 0 0 rgba(var(--accent-rgb),0.5); }
  30%{ box-shadow:0 0 0 8px rgba(var(--accent-rgb),0.12); }
  100%{ box-shadow:0 0 0 0 rgba(var(--accent-rgb),0); }
}
.added-toast{
  position:fixed; left:50%; bottom:28px; transform:translateX(-50%) translateY(20px);
  background:var(--surface-solid); border:1px solid var(--surface-border); color:var(--ink);
  padding:13px 22px; border-radius:14px; box-shadow:0 20px 45px rgba(0,0,0,0.3);
  font-size:13.5px; font-weight:600; z-index:120; max-width:90vw; text-align:center;
  opacity:0; pointer-events:none; transition:opacity 0.2s ease, transform 0.2s ease;
}
.added-toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }

/* =========================== product variant picker =========================== */
.variant-picker{ display:flex; gap:8px; flex-wrap:wrap; margin:12px 0; }
.variant-btn{
  padding:7px 14px; border-radius:999px; border:1px solid var(--line); background:var(--surface-solid);
  color:var(--ink-soft); font-size:12.5px; font-weight:600; cursor:pointer; font-family:inherit;
  transition:all 0.15s ease;
}
.variant-btn:hover{ border-color:rgba(var(--accent-rgb),0.5); color:var(--ink); }
.variant-btn.active{
  background:var(--accent-grad); border-color:transparent; color:#fff;
}
@media (max-width: 900px){
  .variant-btn{ padding:12px 16px; font-size:13px; }
}
