/* ============================================
   SENAD COMPUTERS — Premium Dark Tech Theme
   Aftershock-level design system
   Fonts: Plus Jakarta Sans (headings) + Inter (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* ============================================
   1. RESET + CSS VARIABLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ── Backgrounds ── */
  --bg-primary:        #0a0a0a;
  --bg-secondary:      #0f0f0f;
  --bg-tertiary:       #111111;
  --bg-card:           #141414;
  --bg-card-hover:     #1a1a1a;
  --bg-input:          #0d0d0d;
  --bg-overlay:        rgba(10,10,10,0.92);
  --bg-glass:          rgba(10,10,10,0.85);

  /* ── Accent Red (CTAs, badges, highlights) ── */
  --red:               #e63946;
  --red-light:         #ff4d5a;
  --red-dark:          #b91c1c;
  --red-glow:          rgba(230,57,70,0.25);
  --red-glow-strong:   rgba(230,57,70,0.4);
  --grad-red:          linear-gradient(135deg, #b91c1c 0%, #e63946 60%, #ff4d5a 100%);

  /* ── Accent Blue (workstation, secondary) ── */
  --blue:              #2563EB;
  --blue-light:        #3b82f6;
  --blue-dark:         #1d4ed8;
  --blue-glow:         rgba(37,99,235,0.25);
  --blue-glow-strong:  rgba(37,99,235,0.4);
  --grad-blue:         linear-gradient(135deg, #1d4ed8 0%, #2563EB 60%, #3b82f6 100%);

  /* ── Green (home/office) ── */
  --green:             #059669;
  --green-light:       #34d399;
  --green-glow:        rgba(5,150,105,0.25);

  /* ── Text ── */
  --text-primary:      #f0f4ff;
  --text-secondary:    #8b9bb4;
  --text-muted:        #4a5568;
  --text-inverse:      #0a0a0a;

  /* ── Borders ── */
  --border:            rgba(255,255,255,0.06);
  --border-light:      rgba(255,255,255,0.10);
  --border-medium:     rgba(255,255,255,0.14);
  --border-red:        rgba(230,57,70,0.30);
  --border-blue:       rgba(37,99,235,0.30);

  /* ── Gradients ── */
  --grad-hero:         linear-gradient(135deg, #050505 0%, #0a0a0a 50%, #111111 100%);
  --grad-card:         linear-gradient(145deg, #141414 0%, #111111 100%);
  --grad-section:      linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
  --grad-dark-band:    linear-gradient(135deg, #0f0f0f 0%, #141414 50%, #111111 100%);

  /* ── Shadows ── */
  --shadow-sm:         0 2px 8px rgba(0,0,0,0.5);
  --shadow-md:         0 4px 20px rgba(0,0,0,0.6);
  --shadow-lg:         0 8px 40px rgba(0,0,0,0.7);
  --shadow-xl:         0 20px 60px rgba(0,0,0,0.8);
  --shadow-card-hover: 0 20px 40px rgba(0,0,0,0.5);
  --shadow-red:        0 4px 24px rgba(230,57,70,0.30);
  --shadow-blue:       0 4px 24px rgba(37,99,235,0.30);

  /* ── Spacing scale ── */
  --sp-1:   4px;
  --sp-2:   8px;
  --sp-3:   12px;
  --sp-4:   16px;
  --sp-5:   20px;
  --sp-6:   24px;
  --sp-8:   32px;
  --sp-12:  48px;
  --sp-16:  64px;
  --sp-20:  80px;

  /* ── Border radii ── */
  --radius-sm:   6px;
  --radius:      8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-pill: 50px;

  /* ── Transitions ── */
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --t:             0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:        0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow:        0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Layout ── */
  --max-width:     1320px;
  --header-height: 68px;
  --topbar-height: 36px;
  --nav-height:    52px;

  /* ── Typography ── */
  --font-heading:  'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================
   2. BASE + TYPOGRAPHY
   ============================================ */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* Selection */
::selection { background: var(--red); color: #fff; }

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 700; }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
h5 { font-size: 1.1rem; font-weight: 600; }
h6 { font-size: 0.95rem; font-weight: 600; }

p { margin-bottom: var(--sp-4); color: var(--text-secondary); }
p:last-child { margin-bottom: 0; }

a { color: var(--text-primary); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--red); }

img { display: block; max-width: 100%; height: auto; }

ul, ol { list-style: none; }

/* Section label */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--sp-3);
}

.section-label--blue { color: var(--blue-light); }

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  margin-bottom: var(--sp-4);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* ============================================
   3. CONTAINER
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

/* ============================================
   4. BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t-fast);
}
.btn:hover::before { background: rgba(255,255,255,0.06); }

/* Primary — red */
.btn--primary {
  background: var(--grad-red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230,57,70,0.45);
  color: #fff;
}
.btn--primary:active { transform: translateY(0); }

/* Secondary — blue */
.btn--secondary {
  background: var(--grad-blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,99,235,0.45);
  color: #fff;
}

/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}
.btn--ghost:hover {
  border-color: var(--border-red);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(230,57,70,0.20);
}

/* Ghost blue */
.btn--ghost-blue {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-blue);
}
.btn--ghost-blue:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
  color: #fff;
}

/* Sizes */
.btn--lg { font-size: 1rem; padding: 14px 30px; border-radius: var(--radius-md); }
.btn--sm { font-size: 0.8rem; padding: 7px 16px; }
.btn--full { width: 100%; justify-content: center; }

/* Pill button */
.btn--pill { border-radius: var(--radius-pill); }

/* Icon-only */
.btn--icon {
  padding: 10px;
  width: 40px;
  height: 40px;
  justify-content: center;
}

/* ============================================
   5. TOP BAR
   ============================================ */
.top-bar {
  height: var(--topbar-height);
  background: #050505;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 200;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.top-bar-left a,
.top-bar-right a {
  color: var(--text-muted);
  font-size: 0.78rem;
  transition: color var(--t-fast);
}
.top-bar-left a:hover,
.top-bar-right a:hover { color: var(--text-secondary); }

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(230,57,70,0.12);
  color: var(--red-light);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(230,57,70,0.20);
}

.top-bar-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-light);
  display: inline-block;
}

/* ============================================
   6. SITE HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 150;
  height: var(--header-height);
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background var(--t), border-color var(--t);
}

.site-header.scrolled {
  background: rgba(10,10,10,0.95);
  border-bottom-color: var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  height: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
}
.site-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.site-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
.site-logo-text span { color: var(--red); }

/* Header phone */
.header-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--t-fast);
}
.header-phone:hover { color: var(--text-primary); }
.header-phone svg { color: var(--red); flex-shrink: 0; }

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.header-cta {
  background: var(--grad-red);
  color: #fff;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  box-shadow: var(--shadow-red);
  transition: transform var(--t), box-shadow var(--t);
}
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230,57,70,0.45);
  color: #fff;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  transition: border-color var(--t-fast);
}
.mobile-menu-toggle:hover { border-color: var(--red); }

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t), width var(--t);
}

.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; width: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   7. PRIMARY NAV
   ============================================ */
.primary-nav {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  position: sticky;
  top: var(--header-height);
  z-index: 140;
}

.primary-nav-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.primary-nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 16px;
  height: var(--nav-height);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  transition: color var(--t-fast);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--red);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t);
}

.nav-link:hover {
  color: var(--text-primary);
}
.nav-link:hover::after { transform: scaleX(1); }

.nav-link.active {
  color: var(--text-primary);
  font-weight: 600;
}
.nav-link.active::after {
  transform: scaleX(1);
  background: var(--blue-light);
}

/* Highlight nav link */
.nav-link--highlight {
  color: var(--red-light);
  background: rgba(230,57,70,0.10);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  height: auto;
  margin: 0 4px;
  font-weight: 700;
  border: 1px solid rgba(230,57,70,0.20);
}
.nav-link--highlight::after { display: none; }
.nav-link--highlight:hover {
  background: rgba(230,57,70,0.20);
  color: #fff;
}

/* ============================================
   8. HERO CAROUSEL
   ============================================ */
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.hero-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slide-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Gradient overlay on hero image */
.hero-slide-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.2) 100%),
    linear-gradient(to top, rgba(10,10,10,0.5) 0%, transparent 60%);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: var(--sp-20) var(--sp-6) var(--sp-20) var(--sp-20);
}

.hero-slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: var(--sp-4);
}

.hero-slide-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
}

.hero-slide h1,
.hero-slide-title {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-5);
  color: var(--text-primary);
}

.hero-slide h1 span,
.hero-slide-title span { color: var(--red); }

.hero-slide-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: var(--sp-8);
  line-height: 1.7;
}

.hero-slide-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.hero-slide-price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-heading);
  font-weight: 800;
}
.hero-slide-price .from { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.hero-slide-price .amount { font-size: 2rem; color: var(--text-primary); }

/* Carousel arrows */
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(20,20,20,0.8);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  backdrop-filter: blur(8px);
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.hero-prev { left: var(--sp-5); }
.hero-next { right: var(--sp-5); }
.hero-prev:hover,
.hero-next:hover {
  background: var(--red);
  border-color: var(--red);
}
.hero-prev:hover { transform: translateY(-50%) translateX(-2px); }
.hero-next:hover { transform: translateY(-50%) translateX(2px); }

.hero-prev svg,
.hero-next svg { width: 20px; height: 20px; }

/* Carousel dots */
.hero-dots {
  position: absolute;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: var(--sp-2);
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background var(--t), width var(--t);
  padding: 0;
}
.hero-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--red);
}

/* ============================================
   9. CATEGORY TILES
   ============================================ */
.category-tiles-section {
  padding: var(--sp-12) 0;
  background: var(--bg-secondary);
}

.category-tiles {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-4);
}

.category-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-5) var(--sp-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t), background var(--t);
  cursor: pointer;
}

.category-tile:hover {
  transform: translateY(-6px);
  border-color: var(--border-red);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(230,57,70,0.15);
  color: var(--text-primary);
}

.category-tile-icon {
  width: 52px;
  height: 52px;
  background: rgba(230,57,70,0.10);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  transition: background var(--t), transform var(--t);
}

.category-tile:hover .category-tile-icon {
  background: rgba(230,57,70,0.18);
  transform: scale(1.08);
}

.category-tile-icon svg { width: 24px; height: 24px; }

.category-tile-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  transition: color var(--t-fast);
  font-family: var(--font-heading);
}

.category-tile:hover .category-tile-label { color: var(--text-primary); }

/* ============================================
   10. PRODUCT / SYSTEM CARDS
   ============================================ */
.systems-section {
  padding: var(--sp-16) 0;
  background: var(--bg-primary);
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.system-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
}

.system-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-light);
}

/* Card image */
.system-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: #0d0d0d;
}

.system-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.system-card:hover .system-card-image img {
  transform: scale(1.08);
}

/* Badge */
.system-card-badge {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 2;
}

.system-card-badge--gaming {
  background: rgba(230,57,70,0.90);
  color: #fff;
  border: 1px solid rgba(230,57,70,0.6);
}
.system-card-badge--workstation {
  background: rgba(37,99,235,0.90);
  color: #fff;
  border: 1px solid rgba(37,99,235,0.6);
}
.system-card-badge--home {
  background: rgba(5,150,105,0.90);
  color: #fff;
  border: 1px solid rgba(5,150,105,0.6);
}
.system-card-badge--featured {
  background: rgba(230,57,70,0.95);
  color: #fff;
  border: 1px solid rgba(230,57,70,0.7);
  transform: rotate(2deg);
  transform-origin: top right;
}

/* Sale ribbon */
.system-card-ribbon {
  position: absolute;
  top: 14px;
  left: -6px;
  background: var(--grad-red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px 4px 14px;
  z-index: 2;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}
.system-card-ribbon::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  border-width: 6px 0 0 6px;
  border-style: solid;
  border-color: var(--red-dark) transparent transparent transparent;
}

/* Card body */
.system-card-body {
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--sp-3);
}

.system-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0;
}

/* Specs pills */
.system-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
}

.spec-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.spec-pill--highlight {
  color: var(--blue-light);
  border-color: rgba(37,99,235,0.25);
  background: rgba(37,99,235,0.08);
}

/* Price */
.system-card-price {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  margin-top: auto;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red-light);
}

.price-was {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-from {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-right: -4px;
}

/* Card CTA */
.system-card-cta {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-1);
}

.system-card-cta .btn {
  flex: 1;
  justify-content: center;
  font-size: 0.82rem;
  padding: 9px 14px;
}

/* ============================================
   11. FILTER BAR
   ============================================ */
.filter-bar {
  position: sticky;
  top: calc(var(--header-height) + var(--nav-height));
  z-index: 120;
  background: rgba(14,14,14,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-3) 0;
}

.filter-bar-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-bar-inner::-webkit-scrollbar { display: none; }

.filter-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.filter-chips {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: nowrap;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border-light);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--t-fast);
}

.filter-chip:hover {
  border-color: var(--border-red);
  color: var(--text-primary);
}

.filter-chip.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.filter-chip--blue.active {
  background: var(--blue);
  border-color: var(--blue);
}

/* ============================================
   12. FEATURED SLIDER
   ============================================ */
.featured-slider-section {
  padding: var(--sp-16) 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.featured-slider {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.featured-slider::-webkit-scrollbar { display: none; }
.featured-slider.grabbing { cursor: grabbing; }

.featured-slider-track {
  display: flex;
  gap: var(--sp-5);
  padding: var(--sp-4) var(--sp-6) var(--sp-4);
  width: max-content;
}

.featured-slide {
  scroll-snap-align: start;
  width: 340px;
  flex-shrink: 0;
}

/* Slider controls */
.slider-controls {
  display: flex;
  gap: var(--sp-2);
  align-items: center;
  margin-top: var(--sp-5);
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-fast);
}
.slider-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ============================================
   13. TRUST BLOCKS
   ============================================ */
.trust-section {
  padding: var(--sp-16) 0;
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.trust-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-8) var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-3);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.trust-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-light);
}

.trust-block-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: rgba(230,57,70,0.10);
  border: 1px solid rgba(230,57,70,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: var(--sp-2);
}
.trust-block-icon svg { width: 26px; height: 26px; }

.trust-block-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.trust-block-suffix {
  color: var(--red);
}

.trust-block-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   14. SERVICE CARDS
   ============================================ */
.services-section {
  padding: var(--sp-16) 0;
  background: var(--bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-red);
  opacity: 0;
  transition: opacity var(--t);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-light);
}
.service-card:hover::before { opacity: 1; }

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: rgba(230,57,70,0.10);
  border: 1px solid rgba(230,57,70,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.service-card-icon svg { width: 26px; height: 26px; }

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  transition: gap var(--t-fast), color var(--t-fast);
}
.service-card-link:hover {
  gap: 10px;
  color: var(--red-light);
}

/* ============================================
   15. REPAIR CARDS + PROCESS STEPS
   ============================================ */
.repair-section {
  padding: var(--sp-16) 0;
  background: var(--bg-secondary);
}

.repair-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.repair-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.repair-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
}

.repair-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(37,99,235,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
}

.repair-card-title {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-primary);
}

.repair-card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.repair-card-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  margin-top: auto;
}

/* Process steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 36px;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding-bottom: var(--sp-8);
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 20px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.process-step:last-child::before { display: none; }

.process-step-num {
  position: absolute;
  left: -36px;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--bg-secondary);
  z-index: 1;
}

.process-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

.process-step-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   16. TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: var(--sp-16) 0;
  background: var(--bg-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  position: relative;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-light);
}

.testimonial-quote-icon {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  width: 32px;
  height: 32px;
  color: rgba(230,57,70,0.25);
}

/* Stars */
.testimonial-stars {
  display: flex;
  gap: 3px;
}

.star {
  width: 16px;
  height: 16px;
  color: #f59e0b;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }

.testimonial-author-info {}
.testimonial-author-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
}
.testimonial-system-purchased {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   17. CTA BAND
   ============================================ */
.cta-band {
  padding: var(--sp-20) 0;
  background: var(--grad-dark-band);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(230,57,70,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
  padding-inline: var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
}

.cta-band h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
}

.cta-band p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.cta-band-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================
   18. SPLIT SECTION
   ============================================ */
.split-section {
  padding: var(--sp-16) 0;
}

.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.split-inner.reverse .split-visual { order: -1; }

.split-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.split-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.split-feature {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}

.split-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: rgba(230,57,70,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.split-feature-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.split-feature-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ============================================
   19. BUILDER FORM
   ============================================ */
.builder-section {
  padding: var(--sp-16) 0;
  background: var(--bg-secondary);
}

.builder-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.builder-header {
  padding: var(--sp-8);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Mode toggle (pill switcher) */
.builder-mode-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 3px;
  gap: 3px;
}

.builder-mode-btn {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--t-fast);
}
.builder-mode-btn.active {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}

/* Builder body */
.builder-body {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 500px;
}

.builder-sidebar {
  background: #0f0f0f;
  border-right: 1px solid var(--border);
  padding: var(--sp-4);
}

.builder-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.builder-step-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid transparent;
}

.builder-step-nav:hover {
  background: var(--bg-card);
  color: var(--text-primary);
}

.builder-step-nav.active {
  background: rgba(230,57,70,0.10);
  border-color: rgba(230,57,70,0.20);
  color: var(--text-primary);
  font-weight: 600;
}

.builder-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.builder-step-nav.active .builder-step-num {
  background: var(--red);
  color: #fff;
}

/* Builder content */
.builder-content-area {
  padding: var(--sp-8);
}

.builder-step {
  display: none;
}
.builder-step.active {
  display: block;
}

.builder-step-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-5);
}

/* Option cards grid */
.option-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.option-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.option-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  box-shadow: 0 0 0 1px rgba(230,57,70,0.15);
}

.option-card.selected {
  border-color: var(--red);
  background: rgba(230,57,70,0.06);
  box-shadow: 0 0 0 1px rgba(230,57,70,0.30), var(--shadow-red);
}

.option-card-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
}

.option-card-spec {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.option-card-price {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--red);
  margin-top: auto;
}

/* Builder footer */
.builder-footer {
  padding: var(--sp-6) var(--sp-8);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  background: #0f0f0f;
}

.builder-total {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.builder-total-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.builder-total-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--red-light);
}

.builder-actions {
  display: flex;
  gap: var(--sp-3);
}

/* ============================================
   20. ABOUT
   ============================================ */
.about-section {
  padding: var(--sp-16) 0;
  background: var(--bg-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  text-align: center;
  transition: transform var(--t), border-color var(--t);
}
.stat-box:hover {
  transform: translateY(-3px);
  border-color: var(--border-light);
}

.stat-box-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: var(--sp-1);
}
.stat-box-number span { color: var(--red); }

.stat-box-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline-item {
  display: flex;
  gap: var(--sp-5);
  padding-bottom: var(--sp-8);
  position: relative;
}

.timeline-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 0 2px var(--red);
  flex-shrink: 0;
  margin-top: 4px;
}

.timeline-connector {
  flex: 1;
  width: 2px;
  background: var(--border);
  margin-top: var(--sp-2);
}
.timeline-item:last-child .timeline-connector { display: none; }

.timeline-content {}

.timeline-year {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   21. GALLERY
   ============================================ */
.gallery-section {
  padding: var(--sp-16) 0;
  background: var(--bg-secondary);
}

.gallery-tabs {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}

.gallery-tab {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--t-fast);
}
.gallery-tab:hover {
  border-color: var(--border-red);
  color: var(--text-primary);
}
.gallery-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* Gallery grid — masonry-like */
.gallery-grid {
  columns: 4;
  column-gap: var(--sp-4);
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--sp-4);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t);
  opacity: 0;
}

.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-item-overlay {
  background: rgba(10,10,10,0.65);
  opacity: 1;
}

.gallery-item-overlay-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transform: scale(0.7);
  transition: transform var(--t);
}
.gallery-item:hover .gallery-item-overlay-icon { transform: scale(1); }

/* ============================================
   22. CONTACT
   ============================================ */
.contact-section {
  padding: var(--sp-16) 0;
  background: var(--bg-primary);
}

.pathway-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-12);
}

.pathway-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-8) var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
  cursor: pointer;
  transition: all var(--t);
  text-decoration: none;
}
.pathway-card:hover {
  border-color: var(--border-red);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: var(--text-primary);
}

.pathway-card.selected {
  border-color: var(--red);
  background: rgba(230,57,70,0.06);
}

.pathway-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: rgba(230,57,70,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}
.pathway-card-icon svg { width: 28px; height: 28px; }

.pathway-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.pathway-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Contact form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  max-width: 680px;
  margin-inline: auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 11px 14px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230,57,70,0.12);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238b9bb4' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-select option { background: #141414; }

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

/* ============================================
   23. PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  padding: var(--sp-16) 0 var(--sp-12);
  background: linear-gradient(135deg, #080808 0%, #111111 50%, #0d0d0d 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(230,57,70,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-header-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-5);
}

.breadcrumb-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t-fast);
}
.breadcrumb-link:hover { color: var(--text-secondary); }

.breadcrumb-sep {
  color: var(--text-muted);
  opacity: 0.4;
  font-size: 0.7rem;
}

.breadcrumb-current { color: var(--text-secondary); }

.page-header-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
}

.page-header-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0;
}

/* ============================================
   24. FOOTER
   ============================================ */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding-top: var(--sp-16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  padding-bottom: var(--sp-12);
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  margin-bottom: var(--sp-4);
}

.footer-logo img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
}
.footer-logo-text span { color: var(--red); }

.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

/* Social icons */
.footer-social {
  display: flex;
  gap: var(--sp-3);
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--t-fast);
}
.social-icon:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
}
.social-icon svg { width: 16px; height: 16px; }

/* Footer columns */
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--sp-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-link {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t-fast), transform var(--t-fast);
  display: inline-block;
}
.footer-link:hover {
  color: var(--text-secondary);
  transform: translateX(3px);
}

/* Newsletter */
.footer-newsletter {
  margin-top: var(--sp-4);
}

.footer-newsletter-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: var(--sp-2);
}

.newsletter-input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 10px 14px;
  outline: none;
  transition: border-color var(--t-fast);
}
.newsletter-input:focus { border-color: var(--red); }
.newsletter-input::placeholder { color: var(--text-muted); }

.newsletter-btn {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
}
.newsletter-btn:hover {
  background: var(--red-light);
  transform: translateY(-1px);
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: var(--sp-5) 0;
}

.footer-bottom-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-copyright a {
  color: var(--text-muted);
  text-decoration: none;
}
.footer-copyright a:hover { color: var(--text-secondary); }

.footer-legal-links {
  display: flex;
  gap: var(--sp-5);
}

.footer-legal-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-legal-link:hover { color: var(--text-secondary); }

.footer-badges {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
}

.footer-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

/* ============================================
   25. LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
  backdrop-filter: blur(8px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.lightbox-close {
  position: fixed;
  top: var(--sp-5);
  right: var(--sp-5);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20,20,20,0.9);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--t-fast);
  z-index: 1001;
}
.lightbox-close:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.lightbox-close svg { width: 20px; height: 20px; }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(20,20,20,0.8);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--t-fast);
  z-index: 1001;
}
.lightbox-prev { left: var(--sp-5); }
.lightbox-next { right: var(--sp-5); }
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.lightbox-prev svg,
.lightbox-next svg { width: 22px; height: 22px; }

.lightbox-caption {
  position: absolute;
  bottom: -42px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================
   26. ANIMATIONS
   ============================================ */

/* Fade up on scroll */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.animate-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.animate-in:nth-child(1) { transition-delay: 0ms; }
.animate-in:nth-child(2) { transition-delay: 80ms; }
.animate-in:nth-child(3) { transition-delay: 160ms; }
.animate-in:nth-child(4) { transition-delay: 240ms; }
.animate-in:nth-child(5) { transition-delay: 320ms; }
.animate-in:nth-child(6) { transition-delay: 400ms; }

/* Fade in only */
.fade-in {
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.fade-in.is-visible { opacity: 1; }

/* Fade up */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero always visible — force */
.hero-slide-content { opacity: 1 !important; transform: none !important; }

/* Shimmer on skeleton loaders */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton {
  background: linear-gradient(90deg, #1a1a1a 25%, #222 50%, #1a1a1a 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}

/* Pulse dot */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

/* Counter animation class (JS hooks) */
.counter-animated { transition: all 0.05s linear; }

/* Section spacings */
.section { padding: var(--sp-16) 0; }
.section--sm { padding: var(--sp-12) 0; }
.section--lg { padding: var(--sp-20) 0; }

.section--alt { background: var(--bg-secondary); }
.section--dark { background: var(--bg-tertiary); }

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}

.section-header--left {
  text-align: left;
  align-items: flex-start;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--grad-red);
  border-radius: 2px;
  margin-top: var(--sp-2);
}

/* ============================================
   27. UTILITY CLASSES
   ============================================ */

/* Text utilities */
.text-primary   { color: var(--text-primary) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-muted     { color: var(--text-muted) !important; }
.text-red       { color: var(--red) !important; }
.text-blue      { color: var(--blue-light) !important; }
.text-green     { color: var(--green-light) !important; }
.text-center    { text-align: center; }
.text-left      { text-align: left; }
.text-right     { text-align: right; }

/* Font weights */
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }

/* Display */
.d-flex    { display: flex; }
.d-grid    { display: grid; }
.d-block   { display: block; }
.d-none    { display: none !important; }

/* Flex utilities */
.align-center  { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.flex-wrap       { flex-wrap: wrap; }
.gap-2  { gap: var(--sp-2); }
.gap-4  { gap: var(--sp-4); }
.gap-6  { gap: var(--sp-6); }
.gap-8  { gap: var(--sp-8); }

/* Width */
.w-full { width: 100%; }

/* Margins */
.mt-auto { margin-top: auto; }
.mb-0    { margin-bottom: 0; }
.mb-4    { margin-bottom: var(--sp-4); }
.mb-8    { margin-bottom: var(--sp-8); }
.mb-12   { margin-bottom: var(--sp-12); }

/* Gradients text */
.grad-text {
  background: var(--grad-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grad-text--blue {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

.badge--red   { background: rgba(230,57,70,0.15); color: var(--red-light); border: 1px solid rgba(230,57,70,0.25); }
.badge--blue  { background: rgba(37,99,235,0.15); color: var(--blue-light); border: 1px solid rgba(37,99,235,0.25); }
.badge--green { background: rgba(5,150,105,0.15); color: var(--green-light); border: 1px solid rgba(5,150,105,0.25); }
.badge--gray  { background: rgba(255,255,255,0.06); color: var(--text-secondary); border: 1px solid var(--border); }

/* Card base */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
}

.card--hover {
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card--hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-light);
}

/* Overlay backdrop for modals */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

/* Alert banners */
.alert {
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius);
  border: 1px solid;
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}
.alert--success { background: rgba(5,150,105,0.10); border-color: rgba(5,150,105,0.25); color: var(--green-light); }
.alert--warning { background: rgba(245,158,11,0.10); border-color: rgba(245,158,11,0.25); color: #fbbf24; }
.alert--error   { background: rgba(230,57,70,0.10); border-color: rgba(230,57,70,0.25); color: var(--red-light); }
.alert--info    { background: rgba(37,99,235,0.10); border-color: rgba(37,99,235,0.25); color: var(--blue-light); }

/* Divider */
.divider {
  height: 1px;
  background: var(--border);
  border: none;
  margin: var(--sp-8) 0;
}

/* Visually hidden (accessibility) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   28. MOBILE NAV DRAWER
   ============================================ */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  pointer-events: none;
}

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--t);
}

.mobile-nav-panel {
  position: relative;
  width: 100%;
  max-width: 320px;
  background: #0d0d0d;
  border-right: 1px solid var(--border);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  z-index: 1;
}

.mobile-nav-drawer.open {
  pointer-events: all;
}
.mobile-nav-drawer.open .mobile-nav-overlay {
  background: rgba(0,0,0,0.75);
}
.mobile-nav-drawer.open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-header {
  padding: var(--sp-5) var(--sp-5);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all var(--t-fast);
}
.mobile-nav-close:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.mobile-nav-links {
  flex: 1;
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 12px var(--sp-4);
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast);
  border: 1px solid transparent;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(255,255,255,0.04);
  color: var(--text-primary);
  border-color: var(--border);
}
.mobile-nav-link.active { color: var(--red-light); }

.mobile-nav-footer {
  padding: var(--sp-5);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

/* ============================================
   29. SECTION BACKGROUNDS (alternating)
   ============================================ */
.bg-primary   { background: var(--bg-primary); }
.bg-secondary { background: var(--bg-secondary); }
.bg-tertiary  { background: var(--bg-tertiary); }
.bg-card      { background: var(--bg-card); }

/* ============================================
   30. RESPONSIVE — 1200px
   ============================================ */
@media (max-width: 1200px) {
  .systems-grid { grid-template-columns: repeat(3, 1fr); }
  .category-tiles { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: var(--sp-8); }
  .trust-blocks { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 3; }
  .option-cards { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-slide-content { padding-left: var(--sp-12); }
}

/* ============================================
   31. RESPONSIVE — 768px (tablet + mobile)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 60px;
    --topbar-height: 32px;
    --nav-height:    0px;
  }

  /* Hide desktop nav */
  .primary-nav { display: none; }

  /* Show mobile toggle */
  .mobile-menu-toggle { display: flex; }

  /* Header */
  .header-phone { display: none; }
  .header-cta { display: none; }
  .header-right { gap: var(--sp-2); }

  /* Top bar */
  .top-bar-left { display: none; }

  /* Hero */
  .hero-slide { min-height: 480px; }
  .hero-slide-content {
    padding: var(--sp-12) var(--sp-5);
    max-width: 100%;
  }
  .hero-slide-image::after {
    background: linear-gradient(to top, rgba(10,10,10,0.90) 0%, rgba(10,10,10,0.55) 60%, rgba(10,10,10,0.25) 100%);
  }
  .hero-slide-actions { flex-direction: column; align-items: flex-start; }
  .hero-prev, .hero-next { width: 38px; height: 38px; }

  /* Grids to 1-col */
  .systems-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
  .category-tiles { grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
  .trust-blocks { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
  .services-grid { grid-template-columns: 1fr; }
  .repair-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pathway-cards { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .split-inner { grid-template-columns: 1fr; gap: var(--sp-8); }
  .split-inner.reverse .split-visual { order: 0; }
  .about-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .about-stats { grid-template-columns: repeat(2, 1fr); }

  /* Builder */
  .builder-body { grid-template-columns: 1fr; }
  .builder-sidebar { display: none; }
  .option-cards { grid-template-columns: repeat(2, 1fr); }
  .builder-footer { flex-direction: column; align-items: flex-start; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .footer-legal-links { flex-wrap: wrap; gap: var(--sp-3); }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* CTA band */
  .cta-band-actions { flex-direction: column; width: 100%; }
  .cta-band-actions .btn { width: 100%; }

  /* Featured slider padding */
  .featured-slider-track { padding-inline: var(--sp-5); }
  .featured-slide { width: 280px; }

  .container { padding-inline: var(--sp-5); }
}

/* ============================================
   32. RESPONSIVE — 480px (compact mobile)
   ============================================ */
@media (max-width: 480px) {
  :root {
    --header-height: 56px;
  }

  /* Typography compact */
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }

  .systems-grid { grid-template-columns: 1fr; }
  .category-tiles { grid-template-columns: repeat(3, 1fr); gap: var(--sp-2); }
  .category-tile { padding: var(--sp-4) var(--sp-2); }
  .category-tile-label { font-size: 0.7rem; }

  .trust-blocks { grid-template-columns: 1fr 1fr; }
  .trust-block { padding: var(--sp-5) var(--sp-4); }

  .about-stats { grid-template-columns: 1fr 1fr; }

  .gallery-grid { columns: 2; }

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

  .hero-slide { min-height: 400px; }

  .container { padding-inline: var(--sp-4); }

  .btn--lg { font-size: 0.9rem; padding: 12px 20px; }

  .option-cards { grid-template-columns: 1fr; }

  .featured-slide { width: 260px; }

  .section { padding: var(--sp-12) 0; }
  .section--lg { padding: var(--sp-16) 0; }

  .pathway-cards { grid-template-columns: 1fr; }

  /* Lightbox compact */
  .lightbox-prev { left: var(--sp-3); }
  .lightbox-next { right: var(--sp-3); }
}

/* ============================================
   33. PRINT STYLES
   ============================================ */
@media print {
  .site-header,
  .primary-nav,
  .top-bar,
  .mobile-menu-toggle,
  .hero-prev,
  .hero-next,
  .hero-dots,
  .site-footer { display: none !important; }

  body {
    background: #fff;
    color: #000;
  }

  a { color: #000; }
}
