/* ─────────────────────────────────────────────────────────────────────────
   Reboot Computers of Jax — Main Stylesheet
   ───────────────────────────────────────────────────────────────────────── */

/* ── VARIABLES ─────────────────────────────────────────────────────────── */
:root {
  --navy-900: #091628;
  --navy-800: #0D2040;
  --navy-700: #163354;
  --navy-600: #1D4068;
  --blue-600: #1A4FC4;
  --blue-500: #2563EB;
  --blue-400: #3B82F6;
  --blue-light: #EFF6FF;
  --green-700: #14532D;
  --green-600: #16A34A;
  --green-500: #22C55E;
  --green-light: #F0FDF4;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-500: #64748B;
  --gray-700: #334155;
  --gray-900: #0F172A;
  --text: #0F172A;
  --text-muted: #475569;
  --border: #E2E8F0;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
  --header-height: 72px;
  --transition: .22s ease;
}

/* ── RESET / BASE ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-500); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }
address { font-style: normal; }

/* ── CONTAINER ──────────────────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: 'Space Grotesk', 'Inter', sans-serif; font-weight: 700; line-height: 1.2; color: inherit; }
.section-label { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green-600); margin-bottom: 10px; }
.section-title { font-size: clamp(24px, 3.5vw, 36px); margin-bottom: 14px; }
.section-sub { font-size: 17px; color: var(--text-muted); max-width: 540px; line-height: 1.75; margin-bottom: 0; }
.section-head { margin-bottom: 50px; }
.section-head.text-center { text-align: center; }
.section-head.text-center .section-sub { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* ── SECTIONS ───────────────────────────────────────────────────────────── */
.section { padding: 80px 24px; }
.section-white { background: var(--white); }
.section-gray { background: var(--gray-50); }
.section-dark { background: var(--navy-900); color: #fff; }
.section-dark .section-label { color: var(--green-500); }
.section-dark .section-title { color: #fff; }
.section-dark .section-sub { color: rgba(255,255,255,.65); }

/* ── BUTTONS ────────────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14.5px; padding: 11px 22px; border-radius: var(--radius); border: 2px solid transparent; text-decoration: none; transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition); cursor: pointer; }
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-lg { font-size: 16px; padding: 13px 28px; }
.btn-sm { font-size: 13px; padding: 8px 16px; }
.btn-full { width: 100%; justify-content: center; }
.btn-primary { background: var(--blue-500); color: #fff; border-color: var(--blue-500); }
.btn-primary:hover { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }
.btn-green { background: var(--green-600); color: #fff; border-color: var(--green-600); }
.btn-green:hover { background: var(--green-700); border-color: var(--green-700); color: #fff; }
.btn-outline { background: transparent; color: var(--blue-500); border-color: var(--blue-500); }
.btn-outline:hover { background: var(--blue-500); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.btn-white { background: #fff; color: var(--navy-800); border-color: #fff; font-weight: 700; }
.btn-white:hover { background: var(--gray-100); color: var(--navy-800); }

/* ── FADE IN ANIMATIONS ─────────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ─────────────────────────────────────────────────────────────────────────
   ANNOUNCEMENT BAR
   ───────────────────────────────────────────────────────────────────────── */
.announcement-bar {
  background: var(--navy-900);
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ticker-wrap { overflow: hidden; }
.ticker-content {
  display: inline-block;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
  padding-left: 100%;
}
.ticker-content:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────────────────────────────────
   SITE HEADER
   ───────────────────────────────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 500;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.10); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 20px;
}

/* Logo */
.site-logo a, .site-logo { display: flex; align-items: center; text-decoration: none; }
.custom-logo { height: 60px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; text-decoration: none; }
.logo-reboot { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; color: var(--blue-500); letter-spacing: 2px; }
.logo-sub { font-size: 11px; font-weight: 600; color: var(--green-600); letter-spacing: .5px; }
.logo-img-link { display: flex; align-items: center; text-decoration: none; }
.site-logo-img { height: 52px; width: auto; display: block; }

/* Primary Nav */
.primary-nav { flex: 1; display: flex; justify-content: center; }
.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 13px;
  border-radius: 7px;
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-menu > li > a:hover, .nav-menu > li.current-menu-item > a, .nav-menu > li.current-menu-ancestor > a {
  color: var(--blue-500);
  background: var(--blue-light);
}
/* Nav CTA */
.nav-menu > li > a.nav-cta,
.nav-menu > li.nav-cta-item > a {
  background: var(--blue-500);
  color: #fff;
  font-weight: 600;
  padding: 8px 18px;
}
.nav-menu > li > a.nav-cta:hover,
.nav-menu > li.nav-cta-item > a:hover {
  background: var(--blue-600);
  color: #fff;
}

/* Dropdown Sub-menu */
.nav-menu li ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 6px 0 8px;
  padding-top: 14px; /* extends hover area flush to parent — no gap */
  list-style: none;
  z-index: 600;
}
/* invisible bridge so mouse moving from link → dropdown doesn't break hover */
.nav-menu li.menu-item-has-children > a::before {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-menu li:hover > ul.sub-menu,
.nav-menu li:focus-within > ul.sub-menu { display: block; }
.nav-menu li ul.sub-menu li a {
  display: block;
  padding: 9px 18px;
  font-size: 14px;
  color: var(--gray-700);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.nav-menu li ul.sub-menu li a:hover {
  background: var(--gray-50);
  color: var(--blue-500);
}

/* Dropdown arrow indicator */
.nav-menu li.menu-item-has-children > a::after {
  content: ' ▾';
  font-size: 11px;
  opacity: .6;
}

/* Header Right */
.header-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; position: relative; z-index: 600; }
.header-phone {
  display: flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: 15px; color: var(--navy-800);
  text-decoration: none; transition: color var(--transition);
}
.header-phone:hover { color: var(--blue-500); text-decoration: none; }

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.mobile-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  z-index: 490;
}
.mobile-nav.open { display: block; }
.mobile-nav-inner { padding: 20px 24px 32px; }
.mobile-menu { list-style: none; display: flex; flex-direction: column; gap: 2px; margin-bottom: 20px; }
.mobile-menu li a {
  display: block; padding: 12px 14px;
  font-size: 16px; font-weight: 500; color: var(--gray-700);
  border-radius: var(--radius); text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu li a:hover { background: var(--gray-50); color: var(--blue-500); }
.mobile-menu .sub-menu { list-style: none; padding-left: 16px; }
.mobile-menu .sub-menu li a { font-size: 14.5px; padding: 8px 14px; color: var(--text-muted); }
.mobile-cta { width: 100%; justify-content: center; }

/* ─────────────────────────────────────────────────────────────────────────
   HERO SLIDER
   ───────────────────────────────────────────────────────────────────────── */
.hero-slider {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: var(--navy-900);
}
.slides-wrapper { height: 100%; position: relative; }
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--navy-600) 100%);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; z-index: 1; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(9,22,40,.82) 0%, rgba(9,22,40,.4) 100%); }
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}
.slide-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.slide-subtitle {
  font-size: clamp(15px, 2.2vw, 18px);
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.slide-content .btn { margin-right: 12px; margin-bottom: 10px; }

/* Slider controls */
.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-prev:hover, .slider-next:hover { background: rgba(255,255,255,.28); }
.slider-dots {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; gap: 8px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.dot.active { background: var(--green-500); transform: scale(1.25); }

/* ─────────────────────────────────────────────────────────────────────────
   TRUST STRIP
   ───────────────────────────────────────────────────────────────────────── */
.trust-strip { background: var(--navy-800); padding: 18px 0; }
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,.8);
  white-space: nowrap;
}
.trust-item svg { color: var(--green-500); flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────────────────────
   WELCOME / ABOUT SECTION
   ───────────────────────────────────────────────────────────────────────── */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.welcome-text p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.welcome-text a { color: var(--blue-500); }
.welcome-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.team-photo-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.team-photo { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); }
.team-caption {
  background: var(--blue-500);
  color: #fff;
  padding: 14px 22px;
  display: flex; flex-direction: column; gap: 2px;
}
.team-caption strong { font-size: 17px; font-weight: 700; }
.team-caption span { font-size: 13px; opacity: .85; }

/* Fix btn-primary text always visible */
.btn-primary, .btn-primary:visited { color: #fff !important; }

/* ─────────────────────────────────────────────────────────────────────────
   SERVICES GRID
   ───────────────────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.service-card:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.2); transform: translateY(-4px); }
.service-icon {
  width: 72px; height: 72px;
  background: rgba(34,197,94,.12);
  border: 1.5px solid rgba(34,197,94,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--green-500);
}
.service-card h3 { font-size: 18px; color: #fff; margin-bottom: 10px; }
.service-divider {
  width: 40px; height: 3px;
  background: var(--green-500);
  border-radius: 2px;
  margin: 0 auto 14px;
}
.service-card p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 16px; }
.service-link { font-size: 13.5px; font-weight: 600; color: var(--green-400); text-decoration: none; transition: color var(--transition); }
.service-link:hover { color: var(--green-500); text-decoration: underline; }

/* ─────────────────────────────────────────────────────────────────────────
   REBOOT DIFFERENCE
   ───────────────────────────────────────────────────────────────────────── */
.difference-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}
.diff-item { text-align: center; }
.diff-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
}
.diff-icon.diff-blue { background: var(--blue-500); }
.diff-item h4 { font-size: 15px; color: var(--text); margin-bottom: 6px; }
.diff-divider { width: 32px; height: 3px; background: var(--blue-500); border-radius: 2px; margin: 8px auto 12px; }
.diff-item p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* ─────────────────────────────────────────────────────────────────────────
   PRODUCTS GRID
   ───────────────────────────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-card-img-wrap {
  position: relative;
  display: block;
  height: 220px;
  background: var(--gray-100);
  overflow: hidden;
}
.product-card-img-wrap .product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-img { transform: scale(1.04); }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-300);
}
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--green-600); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  padding: 4px 10px; border-radius: 999px; text-transform: uppercase;
}
.product-card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--green-600); margin-bottom: 6px; }
.product-name { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 10px; line-height: 1.35; flex: 1; }
.product-name a { color: inherit; text-decoration: none; }
.product-name a:hover { color: var(--blue-500); }
.product-price { font-size: 20px; font-weight: 700; color: var(--navy-800); margin-bottom: 16px; }
.product-price .woocommerce-Price-amount { font-size: inherit; color: inherit; }
.product-price del { font-size: 14px; color: var(--gray-500); margin-right: 6px; }
.product-price ins { text-decoration: none; color: var(--green-600); }

/* ─────────────────────────────────────────────────────────────────────────
   GALLERY CTA
   ───────────────────────────────────────────────────────────────────────── */
.gallery-cta-section { padding: 80px 24px; }
.gallery-cta-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.gallery-cta-text p { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 28px; }
.gallery-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gp-cell {
  border-radius: var(--radius);
  height: 140px;
  overflow: hidden;
  position: relative;
}
.gp-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gp-cell:hover img { transform: scale(1.05); }

/* ─────────────────────────────────────────────────────────────────────────
   BLOG CARDS
   ───────────────────────────────────────────────────────────────────────── */
.blog-grid, .archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-img-wrap { display: block; height: 200px; overflow: hidden; background: var(--gray-100); }
.blog-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-img { transform: scale(1.04); }
.blog-img-placeholder { display: flex; align-items: center; justify-content: center; color: var(--gray-300); }
.blog-card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--text-muted); margin-bottom: 10px; }
.blog-cat { background: var(--blue-light); color: var(--blue-500); font-weight: 600; padding: 2px 10px; border-radius: 999px; font-size: 11.5px; }
.blog-title { font-size: 17px; margin-bottom: 10px; line-height: 1.35; flex: 1; }
.blog-title a { color: var(--text); text-decoration: none; }
.blog-title a:hover { color: var(--blue-500); }
.blog-title h2 { font-size: inherit; }
.blog-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.blog-read-more { font-size: 13.5px; font-weight: 600; color: var(--blue-500); text-decoration: none; margin-top: auto; }
.blog-read-more:hover { text-decoration: underline; }

/* ─────────────────────────────────────────────────────────────────────────
   CTA BAND
   ───────────────────────────────────────────────────────────────────────── */
.cta-band { background: var(--navy-800); padding: 72px 24px; }
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(22px, 3.5vw, 32px); color: #fff; margin-bottom: 8px; }
.cta-band p { font-size: 16px; color: rgba(255,255,255,.65); }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────────────────────
   PAGE HERO (inner pages)
   ───────────────────────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  padding: 56px 24px 48px;
  color: #fff;
}
.page-hero-small { padding: 48px 24px 40px; }
.page-hero-gallery { padding: 64px 24px 56px; text-align: center; }
.page-hero-title { font-size: clamp(26px, 4vw, 40px); color: #fff; margin-bottom: 10px; }
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,.7); max-width: 560px; line-height: 1.7; margin-bottom: 14px; }
.page-hero-gallery .page-hero-sub { margin-left: auto; margin-right: auto; }
.breadcrumbs { font-size: 13px; color: rgba(255,255,255,.5); }
.breadcrumbs a { color: rgba(255,255,255,.6); text-decoration: none; }
.breadcrumbs a:hover { color: #fff; }

/* ─────────────────────────────────────────────────────────────────────────
   GALLERY PAGE
   ───────────────────────────────────────────────────────────────────────── */
.gallery-filters-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 0; position: sticky; top: var(--header-height); z-index: 100; }
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.gf-btn {
  background: var(--gray-100); border: 1.5px solid var(--gray-200);
  color: var(--gray-700); font-size: 13.5px; font-weight: 500;
  padding: 7px 18px; border-radius: 999px; cursor: pointer;
  transition: all var(--transition); font-family: inherit;
}
.gf-btn:hover, .gf-btn.active { background: var(--blue-500); border-color: var(--blue-500); color: #fff; font-weight: 600; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.gallery-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow var(--transition), transform var(--transition); }
.gallery-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.gallery-img-wrap { height: 220px; overflow: hidden; background: var(--gray-100); }
.gallery-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover .gallery-img-wrap img { transform: scale(1.05); }
.gallery-placeholder { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--gray-400); gap: 8px; font-size: 13px; }
.gallery-item-info { padding: 14px 16px; }
.gallery-item-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--blue-500); display: block; margin-bottom: 4px; }
.gallery-item-name { font-size: 14px; font-weight: 600; color: var(--text); margin: 0; }
.gallery-add-note { grid-column: 1 / -1; background: var(--blue-light); border: 1px solid rgba(37,99,235,.2); border-radius: var(--radius); padding: 16px 20px; font-size: 14px; color: var(--gray-700); }

/* ─────────────────────────────────────────────────────────────────────────
   CONTACT PAGE
   ───────────────────────────────────────────────────────────────────────── */
.contact-page-grid { display: grid; grid-template-columns: 1fr 480px; gap: 60px; align-items: start; }
.contact-info-col h2 { font-size: 28px; margin-bottom: 14px; }
.contact-intro { font-size: 16px; color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 22px; margin-bottom: 32px; }
.contact-details li { display: flex; gap: 16px; align-items: flex-start; }
.cd-icon { width: 44px; height: 44px; background: var(--blue-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--blue-500); }
.contact-details strong { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); display: block; margin-bottom: 4px; }
.contact-details p, .contact-details a { font-size: 15px; color: var(--text); font-weight: 500; }
.contact-details a { color: var(--blue-500); text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }

/* Contact Form Card */
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow); }
.contact-form-card h2 { font-size: 24px; margin-bottom: 8px; }
.contact-form-card > p { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-group { margin-bottom: 18px; }
.cf-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 7px; }
.cf-group .req { color: #EF4444; }
.cf-group input, .cf-group textarea, .cf-group select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 14.5px; color: var(--text);
  background: var(--white); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.cf-group input:focus, .cf-group textarea:focus, .cf-group select:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.cf-group textarea { min-height: 130px; resize: vertical; }
.cf-note { font-size: 12.5px; color: var(--text-muted); text-align: center; margin-top: 10px; line-height: 1.6; }
.cf-response { margin-top: 14px; padding: 12px 16px; border-radius: var(--radius); font-size: 14px; font-weight: 500; display: none; }
.cf-response.success { background: var(--green-light); color: var(--green-700); border: 1px solid rgba(22,163,74,.2); display: block; }
.cf-response.error { background: #FFF5F5; color: #C53030; border: 1px solid rgba(197,48,48,.2); display: block; }

/* ─────────────────────────────────────────────────────────────────────────
   SINGLE POST
   ───────────────────────────────────────────────────────────────────────── */
.single-post-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.single-post { max-width: 760px; }
.single-post-thumb { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 28px; }
.single-thumb-img { width: 100%; max-height: 440px; object-fit: cover; }
.single-post-meta { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--text-muted); margin-bottom: 20px; flex-wrap: wrap; }
.post-cat { background: var(--blue-light); color: var(--blue-500); padding: 3px 12px; border-radius: 999px; font-weight: 600; font-size: 12px; }
.single-post-content { font-size: 16.5px; line-height: 1.85; color: var(--text); }
.single-post-content h2, .single-post-content h3 { margin: 32px 0 14px; }
.single-post-content p { margin-bottom: 18px; }
.single-post-content ul, .single-post-content ol { margin: 0 0 18px 24px; }
.single-post-content img { border-radius: var(--radius); margin: 24px 0; }
.single-post-tags { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 13.5px; color: var(--text-muted); }
.post-navigation { display: flex; justify-content: space-between; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 14px; font-weight: 600; }
.post-navigation a { color: var(--blue-500); text-decoration: none; }
.post-navigation a:hover { text-decoration: underline; }

/* Blog Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; }
.widget { background: var(--gray-50); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 20px; }
.widget-title { font-size: 15px; margin-bottom: 14px; }
.recent-posts-list { display: flex; flex-direction: column; gap: 10px; }
.recent-posts-list li a { font-size: 14px; color: var(--text); display: block; margin-bottom: 3px; text-decoration: none; }
.recent-posts-list li a:hover { color: var(--blue-500); }
.recent-posts-list li span { font-size: 12px; color: var(--text-muted); }
.sidebar-cta { background: var(--navy-900); color: #fff; }
.sidebar-cta .widget-title { color: #fff; }
.sidebar-cta p { font-size: 14px; color: rgba(255,255,255,.65); margin-bottom: 16px; }
.sidebar-phone { display: block; text-align: center; margin-top: 10px; font-size: 16px; font-weight: 700; color: var(--green-400); text-decoration: none; }

/* ─────────────────────────────────────────────────────────────────────────
   PAGINATION
   ───────────────────────────────────────────────────────────────────────── */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--gray-100); border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 14px; font-weight: 500;
  color: var(--gray-700); text-decoration: none;
  transition: all var(--transition);
}
.pagination .page-numbers:hover, .pagination .page-numbers.current { background: var(--blue-500); border-color: var(--blue-500); color: #fff; }
.pagination .prev, .pagination .next { width: auto; padding: 0 16px; font-size: 13.5px; }
.no-posts { font-size: 16px; color: var(--text-muted); padding: 40px 0; }

/* ─────────────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.65); }
.footer-top { padding: 60px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; }
.footer-heading { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: rgba(255,255,255,.85); margin-bottom: 14px; }
.footer-about p { font-size: 13px; line-height: 1.75; margin-bottom: 10px; }
.footer-logo, .footer-logo-text { margin-top: 20px; }
.footer-logo-text .logo-reboot { font-size: 18px; color: var(--blue-400); }
.footer-logo-text .logo-sub { color: var(--green-400); }
.footer-logo .custom-logo { height: 48px; width: auto; filter: brightness(0) invert(1); opacity: .8; }
.footer-address p { font-size: 13.5px; line-height: 1.8; }
.footer-hours { display: flex; flex-direction: column; gap: 5px; }
.footer-hours li { font-size: 13px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.footer-contact-list svg { flex-shrink: 0; color: var(--green-400); }
.footer-contact-list a { color: rgba(255,255,255,.75); text-decoration: none; }
.footer-contact-list a:hover { color: #fff; }

/* Footer Email Us form */
.footer-email-us { margin-top: 0; }
.footer-form { display: flex; flex-direction: column; gap: 10px; }
.ff-group input, .ff-group textarea {
  width: 100%;
  padding: 10px 13px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  font-size: 13.5px;
  color: #fff;
  font-family: inherit;
  transition: border-color var(--transition);
}
.ff-group input::placeholder, .ff-group textarea::placeholder { color: rgba(255,255,255,.35); }
.ff-group input:focus, .ff-group textarea:focus { outline: none; border-color: var(--green-500); }
.ff-group textarea { resize: vertical; min-height: 80px; }
.ff-msg { font-size: 13px; line-height: 1.5; margin-top: 4px; }
.ff-msg.success { color: var(--green-400); }
.ff-msg.error { color: #F87171; }

/* Footer Bottom */
.footer-bottom { padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.footer-nav-links { display: flex; gap: 20px; list-style: none; }
.footer-nav-links a { color: rgba(255,255,255,.45); text-decoration: none; font-size: 13px; transition: color var(--transition); }
.footer-nav-links a:hover { color: #fff; }

/* ─────────────────────────────────────────────────────────────────────────
   WOOCOMMERCE
   ───────────────────────────────────────────────────────────────────────── */
.woocommerce-page .page-hero { padding: 48px 24px 40px; }
.woocommerce .products, .woocommerce-page .products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  list-style: none !important;
  margin: 0 !important;
  float: none !important;
}
.woocommerce li.product, .woocommerce-page li.product {
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  transition: box-shadow var(--transition), transform var(--transition) !important;
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}
.woocommerce li.product:hover, .woocommerce-page li.product:hover { box-shadow: var(--shadow-lg) !important; transform: translateY(-4px) !important; }
.woocommerce li.product .woocommerce-loop-product__title { font-size: 16px !important; font-weight: 600 !important; padding: 0 0 8px !important; color: var(--text) !important; }
.woocommerce li.product .price { font-size: 18px !important; font-weight: 700 !important; color: var(--navy-800) !important; }
.woocommerce li.product img { height: 220px !important; object-fit: cover !important; width: 100% !important; }
.woocommerce li.product .button {
  background: var(--blue-500) !important;
  color: #fff !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  padding: 9px 18px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  transition: background var(--transition) !important;
  margin: 0 16px 16px !important;
  display: block !important;
  text-align: center !important;
}
.woocommerce li.product .button:hover { background: var(--blue-600) !important; color: #fff !important; }
.woocommerce-message, .woocommerce-info { background: var(--blue-light) !important; border-top: 3px solid var(--blue-500) !important; color: var(--text) !important; }
.woocommerce-error { background: #FFF5F5 !important; border-top: 3px solid #EF4444 !important; }
.woocommerce .woocommerce-ordering, .woocommerce .woocommerce-result-count { font-size: 14px; color: var(--text-muted); }
.woocommerce nav.woocommerce-pagination { text-align: center; margin-top: 40px; }
.woocommerce nav.woocommerce-pagination ul { display: inline-flex; gap: 8px; border: none; }
.woocommerce nav.woocommerce-pagination ul li { border: none; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius);
  background: var(--gray-100); border: 1px solid var(--border);
  font-size: 14px; color: var(--gray-700); padding: 0;
  transition: all var(--transition);
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--blue-500); border-color: var(--blue-500); color: #fff;
}

/* ─────────────────────────────────────────────────────────────────────────
   PAGE CONTENT (generic page.php)
   ───────────────────────────────────────────────────────────────────────── */
.page-content-wrap { max-width: 860px; }
.page-content { font-size: 16.5px; line-height: 1.85; }
.page-content h2, .page-content h3 { margin: 32px 0 14px; color: var(--navy-800); }
.page-content p { margin-bottom: 18px; }
.page-content ul, .page-content ol { margin: 0 0 18px 24px; }
.page-content img { border-radius: var(--radius); margin: 24px 0; }
.page-content table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.page-content th, .page-content td { padding: 12px 16px; border: 1px solid var(--border); font-size: 14.5px; }
.page-content th { background: var(--gray-50); font-weight: 600; }

/* ─────────────────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .difference-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-cta-inner { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .primary-nav { display: none; }
  .mobile-toggle { display: flex; }
  .header-phone { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid, .archive-grid { grid-template-columns: 1fr 1fr; }
  .welcome-grid { grid-template-columns: 1fr; }
  .welcome-image { display: none; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .single-post-wrap { grid-template-columns: 1fr; }
  .blog-sidebar { display: none; }
  .difference-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }
  .hero-slider { height: 420px; }
}

@media (max-width: 640px) {
  :root { --header-height: 64px; }
  .section { padding: 56px 20px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .service-card { padding: 22px 16px; }
  .products-grid { grid-template-columns: 1fr; }
  .blog-grid, .archive-grid { grid-template-columns: 1fr; }
  .difference-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-email-us { margin-top: 8px; }
  .trust-inner { gap: 20px; }
  .trust-item { font-size: 12.5px; }
  .slide-title { font-size: 26px; }
  .slide-content .btn { font-size: 14px; padding: 10px 18px; }
  .cf-row { grid-template-columns: 1fr; }
}

@media (max-width: 440px) {
  .container { padding: 0 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .difference-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────────────────────
   AVAILABLE STOCK / PRODUCT CATALOG PAGE
   ───────────────────────────────────────────────────────────────────────── */

/* Stock banner strip */
.stock-banner {
  background: var(--navy-800);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.stock-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.stock-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.stock-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  white-space: nowrap;
}
.stock-badge svg { color: var(--green-500); flex-shrink: 0; }
.stock-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-600);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition);
  flex-shrink: 0;
}
.stock-call-btn:hover { background: var(--green-700); color: #fff; text-decoration: none; }

/* Catalog section */
.catalog-section { padding-top: 48px; padding-bottom: 64px; }

/* Filter tabs */
.cat-filter {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.cat-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition);
}
.cat-btn:hover { border-color: var(--blue-400); color: var(--blue-500); }
.cat-btn.active { background: var(--blue-500); border-color: var(--blue-500); color: #fff; }

/* Catalog grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Product card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* Card image */
.pc-img-wrap {
  position: relative;
  background: var(--gray-50);
  height: 230px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform .4s ease;
}
.product-card:hover .pc-img-wrap img { transform: scale(1.04); }

/* Badges on image */
.pc-stock-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: .3px;
}
.badge-green { background: var(--green-600); color: #fff; }
.badge-blue  { background: var(--blue-500);  color: #fff; }
.badge-orange{ background: #EA580C; color: #fff; }

.pc-type-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--navy-800);
  color: rgba(255,255,255,.85);
  letter-spacing: .3px;
}
.pc-type-desktop { background: var(--navy-700); }

/* Card info section */
.pc-info {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pc-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 4px;
}
.pc-model {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
  line-height: 1.25;
}
.pc-extras {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.pc-extra-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 50px;
  background: var(--green-light);
  color: var(--green-700);
  border: 1px solid var(--green-500);
}

/* Spec table */
.pc-specs {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  flex: 1;
}
.pc-specs tr { border-bottom: 1px solid var(--gray-100); }
.pc-specs tr:last-child { border-bottom: none; }
.pc-specs th, .pc-specs td {
  padding: 6px 0;
  font-size: 13px;
  text-align: left;
  vertical-align: middle;
}
.pc-specs th {
  color: var(--text-muted);
  font-weight: 600;
  width: 46%;
  padding-right: 8px;
}
.pc-specs td {
  color: var(--text);
  font-weight: 500;
}

/* Price + CTA row */
.pc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.pc-price { display: flex; flex-direction: column; }
.pc-price-label { font-size: 11px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.pc-price-val { font-size: 26px; font-weight: 800; color: var(--navy-900); line-height: 1.1; }
.pc-cta { white-space: nowrap; flex-shrink: 0; }

/* Info strip below catalog */
.catalog-info-strip {
  background: var(--blue-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}
.catalog-info-strip .container {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.catalog-info-strip svg { color: var(--blue-500); flex-shrink: 0; margin-top: 2px; }
.catalog-info-strip p { font-size: 14.5px; color: var(--gray-700); line-height: 1.7; }
.catalog-info-strip a { color: var(--blue-500); font-weight: 600; }

/* CTA band tweaks (reuse .cta-band) */
.cta-band-title { font-size: clamp(20px, 3vw, 28px); color: #fff; margin-bottom: 6px; }
.cta-band-sub { font-size: 16px; color: rgba(255,255,255,.65); }
.cta-band-btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── Catalog responsive ── */
@media (max-width: 1100px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .catalog-grid { grid-template-columns: 1fr; }
  .stock-banner-inner { flex-direction: column; align-items: flex-start; }
  .stock-badges { gap: 10px; }
  .stock-call-btn { width: 100%; justify-content: center; }
  .pc-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
  .pc-cta { width: 100%; justify-content: center; }
}

/* ─────────────────────────────────────────────────────────────────────────
   REPAIRS & UPGRADES PAGE
   ───────────────────────────────────────────────────────────────────────── */
.repairs-hero { background: linear-gradient(135deg, #0a1a0a 0%, #0d2b1a 50%, #091628 100%); }
.expertise-grid { display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: start; }
.expertise-text p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.expertise-badges { display: flex; flex-direction: column; gap: 16px; }
.expertise-badge { display: flex; align-items: center; gap: 16px; background: var(--gray-50); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; }
.eb-icon { width: 52px; height: 52px; background: var(--navy-900); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--green-500); flex-shrink: 0; }
.expertise-badge div { display: flex; flex-direction: column; }
.expertise-badge strong { font-size: 15px; font-weight: 700; color: var(--navy-900); }
.expertise-badge span { font-size: 12.5px; color: var(--text-muted); }

.repair-types-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.repair-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 32px 26px; }
.repair-card-icon { width: 64px; height: 64px; background: rgba(34,197,94,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--green-500); margin-bottom: 18px; }
.repair-card h3 { font-size: 18px; color: #fff; margin-bottom: 16px; }
.repair-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.repair-list li { font-size: 14px; color: rgba(255,255,255,.75); padding-left: 18px; position: relative; }
.repair-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green-500); font-weight: 700; font-size: 12px; }

.ssd-grid { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: center; }
.ssd-subtitle { font-size: 20px; color: var(--text-muted); font-weight: 600; margin-bottom: 16px; margin-top: 4px; }
.ssd-text p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.ssd-pricing { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.ssd-price-item { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; background: var(--gray-50); border: 1px solid var(--border); border-radius: var(--radius); }
.ssd-size { font-size: 15px; font-weight: 600; color: var(--navy-900); }
.ssd-amt { font-size: 22px; font-weight: 800; color: var(--blue-500); }
.ssd-free-note { display: flex; align-items: center; gap: 10px; background: var(--green-light); border: 1px solid var(--green-500); border-radius: var(--radius); padding: 14px 18px; color: var(--green-700); }
.ssd-free-note svg { flex-shrink: 0; color: var(--green-600); }
.ssd-card { background: var(--navy-900); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; color: #fff; }
.ssd-icon-svg { margin: 0 auto 16px; color: var(--blue-400); }
.ssd-card-label { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.ssd-card-sub { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.ssd-speed-bar { height: 8px; background: rgba(255,255,255,.1); border-radius: 4px; overflow: hidden; margin-bottom: 10px; }
.ssd-speed-fill { height: 100%; width: 93%; background: linear-gradient(to right, var(--blue-500), var(--green-500)); border-radius: 4px; }
.ssd-speed-text { font-size: 12px; color: var(--green-500); font-weight: 600; }

/* ─────────────────────────────────────────────────────────────────────────
   ABOUT PAGE
   ───────────────────────────────────────────────────────────────────────── */
.about-timeline { display: flex; align-items: center; justify-content: center; gap: 0; padding: 24px 0 8px; }
.timeline-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.timeline-year { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 800; color: var(--navy-900); }
.timeline-dot { width: 18px; height: 18px; border-radius: 50%; background: var(--gray-300); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--gray-300); }
.timeline-dot-active { background: var(--blue-500); box-shadow: 0 0 0 2px var(--blue-500); }
.timeline-label { font-size: 13px; font-weight: 600; color: var(--text-muted); text-align: center; max-width: 120px; }
.timeline-line { flex: 1; height: 3px; background: linear-gradient(to right, var(--gray-300), var(--blue-400)); max-width: 160px; margin-top: -28px; }

.about-story-grid { display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: start; }
.about-story-text p { font-size: 16px; color: var(--text-muted); line-height: 1.85; margin-bottom: 18px; }

.about-stats-strip { background: var(--navy-900); padding: 40px 24px; }
.about-stats-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.about-stat { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0 48px; }
.stat-number { font-family: 'Space Grotesk',sans-serif; font-size: 36px; font-weight: 800; color: var(--green-500); }
.stat-label { font-size: 13px; color: rgba(255,255,255,.65); font-weight: 500; text-align: center; max-width: 120px; }
.about-stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,.15); }

.about-award { display: flex; align-items: center; gap: 28px; background: var(--gray-50); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 32px; margin-bottom: 48px; }
.award-badge-img { width: 100px; height: 100px; object-fit: contain; flex-shrink: 0; border-radius: var(--radius); }
.about-award h3 { font-size: 18px; margin-bottom: 8px; color: var(--navy-900); }
.about-award p { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; }
.about-values-grid { margin-bottom: 0; }
.about-values { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.about-value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 22px; text-align: center; }
.av-icon { width: 56px; height: 56px; background: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blue-500); margin: 0 auto 16px; }
.about-value-card h4 { font-size: 15px; margin-bottom: 8px; color: var(--navy-900); }
.about-value-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }

/* ─────────────────────────────────────────────────────────────────────────
   E-RECYCLING PAGE
   ───────────────────────────────────────────────────────────────────────── */
.erecycle-hero { background: linear-gradient(135deg, #0a2010 0%, #0d3a1a 50%, #091628 100%); }
.ewaste-grid { display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: start; }
.ewaste-text p { font-size: 16px; color: var(--text-muted); line-height: 1.85; margin-bottom: 18px; }
.ewaste-sub { font-size: 18px; color: var(--text-muted); font-weight: 600; margin-bottom: 18px; margin-top: 4px; }
.ewaste-stats { display: flex; flex-direction: column; gap: 16px; }
.ewaste-stat-card { background: var(--gray-50); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 22px; text-align: center; }
.ewaste-stat-card.ewaste-stat-green { background: var(--green-light); border-color: var(--green-500); }
.ewaste-number { display: block; font-family: 'Space Grotesk',sans-serif; font-size: 40px; font-weight: 800; color: var(--navy-900); margin-bottom: 8px; }
.ewaste-stat-green .ewaste-number { color: var(--green-700); }
.ewaste-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.recycle-steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; flex-wrap: wrap; }
.recycle-step { flex: 1; min-width: 180px; max-width: 220px; text-align: center; padding: 0 12px; }
.rs-number { width: 52px; height: 52px; border-radius: 50%; background: var(--green-600); color: #fff; font-size: 22px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.recycle-step h4 { font-size: 15px; color: #fff; margin-bottom: 10px; }
.recycle-step p { font-size: 13.5px; color: rgba(255,255,255,.65); line-height: 1.7; }
.rs-arrow { color: rgba(255,255,255,.3); margin-top: 14px; flex-shrink: 0; }

.accepts-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; margin-top: 40px; }
.accept-item { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; }
.accept-item svg { color: var(--green-600); flex-shrink: 0; }
.accept-item span { font-size: 13.5px; font-weight: 500; color: var(--text); }

/* ─────────────────────────────────────────────────────────────────────────
   REAL GALLERY GRID
   ───────────────────────────────────────────────────────────────────────── */
.gallery-section { padding-top: 48px; }
.real-gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.build-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: box-shadow var(--transition), transform var(--transition); }
.build-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.build-img-wrap { position: relative; height: 240px; overflow: hidden; background: #000; }
.build-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.build-card:hover .build-img-wrap img { transform: scale(1.07); }
.build-overlay { position: absolute; top: 12px; left: 12px; }
.build-cat-tag { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 50px; }
.tag-green { background: var(--green-600); color: #fff; }
.tag-blue  { background: var(--blue-500);  color: #fff; }
.build-info { padding: 16px 18px; }
.build-info h3 { font-size: 15px; font-weight: 700; color: var(--navy-900); margin-bottom: 5px; }
.build-info p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─────────────────────────────────────────────────────────────────────────
   RESPONSIVE — NEW PAGES
   ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .real-gallery-grid { grid-template-columns: repeat(2,1fr); }
  .about-values { grid-template-columns: repeat(2,1fr); }
  .accepts-grid { grid-template-columns: repeat(3,1fr); }
  .expertise-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .ewaste-grid { grid-template-columns: 1fr; }
  .ssd-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .repair-types-grid { grid-template-columns: 1fr 1fr; }
  .recycle-steps { gap: 0; }
  .rs-arrow { display: none; }
  .about-stats-inner { gap: 24px; }
  .about-stat { padding: 0 24px; }
  .about-stat-divider { display: none; }
}
@media (max-width: 640px) {
  .real-gallery-grid { grid-template-columns: 1fr; }
  .repair-types-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .accepts-grid { grid-template-columns: repeat(2,1fr); }
  .about-award { flex-direction: column; text-align: center; }
  .recycle-steps { flex-direction: column; align-items: center; }
}

/* ─────────────────────────────────────────────────────────────────────────
   BRAND EVOLUTION TIMELINE (About Page)
   ───────────────────────────────────────────────────────────────────────── */
.brand-evo-section { padding-bottom: 48px; }
.brand-evolution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.brand-era {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.brand-logo-card {
  width: 200px;
  height: 140px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.brand-card-2014 { background: linear-gradient(135deg, #14532d 0%, #16a34a 100%); color: #fff; }
.brand-card-2020 { background: var(--white); border: 2px solid var(--border); }
.brand-card-2024 { background: var(--white); border: 2px solid var(--border); }
.brand-card-name { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.3; text-align: center; }
.brand-era-year {
  font-size: 22px; font-weight: 800;
  color: var(--navy-800);
  font-family: 'Space Grotesk', sans-serif;
}
.brand-era-year-current { color: var(--blue-500); }
.brand-era-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.brand-arrow { color: var(--gray-300); flex-shrink: 0; }
@media (max-width: 768px) {
  .brand-evolution { flex-direction: column; }
  .brand-arrow { transform: rotate(90deg); }
  .brand-logo-card { width: 180px; height: 120px; }
}

/* ─────────────────────────────────────────────────────────────────────────
   BLOG STATIC THUMBNAIL (hardcoded fallback posts)
   ───────────────────────────────────────────────────────────────────────── */
.blog-static-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius) var(--radius) 0 0;
}
.blog-card-img-wrap.blog-static-thumb { border-radius: var(--radius) var(--radius) 0 0; }

/* ─────────────────────────────────────────────────────────────────────────
   COMPREHENSIVE MOBILE IMPROVEMENTS
   ───────────────────────────────────────────────────────────────────────── */

/* Mobile: hero slider */
@media (max-width: 640px) {
  .hero-slider { height: 520px; }
  .slide-content { padding: 0 4px; }
  .slide-title { font-size: 28px; line-height: 1.2; }
  .slide-subtitle { font-size: 15px; }
  .slide-content .btn { font-size: 13px; padding: 10px 16px; margin-right: 8px; }
}
@media (max-width: 440px) {
  .hero-slider { height: 460px; }
  .slider-prev, .slider-next { width: 36px; height: 36px; }
}

/* Mobile: trust strip wraps */
@media (max-width: 640px) {
  .trust-inner { flex-wrap: wrap; justify-content: center; gap: 14px 24px; }
  .trust-item { font-size: 12px; }
}

/* Mobile: gallery CTA with preview */
@media (max-width: 640px) {
  .gallery-cta-inner { gap: 32px; }
  .gallery-preview-grid { gap: 8px; }
  .gp-cell { height: 110px; }
}

/* Mobile: shop catalog */
@media (max-width: 900px) {
  .catalog-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stock-banner-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .catalog-grid { grid-template-columns: 1fr; }
  .cat-filter { flex-wrap: wrap; gap: 8px; }
  .cat-btn { flex: 1; min-width: 100px; text-align: center; }
  .pc-img-wrap { height: 220px; }
  .pc-specs th, .pc-specs td { font-size: 13px; padding: 7px 10px; }
  .pc-cta-group { flex-direction: row; flex-wrap: wrap; }
  .pc-cta-group .btn { flex: 1; min-width: 120px; font-size: 13px; }
  /* Quote panel: full width on small screens */
  .quote-panel { width: 100%; border-radius: 16px 16px 0 0; }
  .quote-fab { bottom: 16px; right: 12px; padding: 12px 16px; font-size: 13px; }
}

/* Mobile: repairs page */
@media (max-width: 640px) {
  .ssd-pricing { flex-direction: column; align-items: center; }
  .ssd-card { width: 100%; max-width: 300px; }
  .repair-list { columns: 1; }
}

/* Mobile: contact page */
@media (max-width: 640px) {
  .contact-page-grid { gap: 32px; }
  .contact-map iframe { height: 220px; }
}

/* Mobile: about page */
@media (max-width: 640px) {
  .about-stats-inner { flex-direction: column; gap: 20px; text-align: center; }
  .about-values { grid-template-columns: 1fr 1fr; gap: 16px; }
  .about-value-card { padding: 20px 16px; }
}
@media (max-width: 440px) {
  .about-values { grid-template-columns: 1fr; }
}

/* Mobile: gallery page */
@media (max-width: 640px) {
  .real-gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gf-btn { font-size: 13px; padding: 8px 14px; }
}
@media (max-width: 440px) {
  .real-gallery-grid { grid-template-columns: 1fr; }
}

/* Mobile: footer */
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { padding: 40px 0; }
}

/* Mobile: footer logo */
.footer-logo img { max-width: 160px; height: auto; }
@media (max-width: 640px) {
  .footer-logo img { max-width: 130px; }
}

/* Mobile: CTA band */
@media (max-width: 640px) {
  .cta-band { padding: 40px 20px; }
  .cta-band-inner { gap: 20px; }
  .cta-band-actions { flex-direction: column; align-items: stretch; }
  .cta-band-actions .btn { text-align: center; justify-content: center; }
}

/* Mobile: page hero */
@media (max-width: 640px) {
  .page-hero { padding: 40px 20px; }
  .page-hero-title { font-size: 28px; }
}

/* Touch-friendly tap targets */
@media (hover: none) {
  .btn, .nav-cta, .service-link, .blog-read-more, .mobile-menu li a { min-height: 44px; display: inline-flex; align-items: center; }
  .mobile-menu li a { display: flex; }
}

/* ── Service Price Hints ── */
.service-price-hint {
  display: inline-block;
  background: rgba(37,99,235,.1);
  color: #2563eb;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
