@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --bg: #e8f1fb;
  --surface: #ffffff;
  --ink: #0b2340;
  --muted: #3f5978;
  --accent: #1f6fd3;
  --accent-2: #58b4ff;
  --line: #d6e4f5;
  --card-shadow: 0 12px 45px rgba(11, 35, 64, 0.08);
  --radius: 18px;
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% 20%, rgba(88, 180, 255, 0.16), transparent 25%),
    radial-gradient(circle at 80% 0%, rgba(31, 111, 211, 0.12), transparent 28%),
    var(--bg);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

.container {
  width: min(1200px, 94vw);
  margin: 0 auto;
}

.section {
  padding: 40px 0;
}

.section-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.section-title::before {
  content: '';
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 10px 30px rgba(31, 111, 211, 0.24);
}

.btn.full {
  width: 100%;
  justify-content: center;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(31, 111, 211, 0.28);
}

.btn.secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.btn.secondary:hover {
  border-color: var(--accent);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(88, 180, 255, 0.16);
  color: #0b4d8c;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 247, 251, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.26);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--muted);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(14, 165, 233, 0.08);
}

.nav-links a.current {
  color: var(--ink);
  background: rgba(31, 111, 211, 0.12);
}

.masthead {
  position: relative;
  overflow: hidden;
  padding: 110px 0 80px;
  background: radial-gradient(circle at 15% 15%, rgba(88, 180, 255, 0.18), transparent 32%),
    radial-gradient(circle at 85% 25%, rgba(31, 111, 211, 0.2), transparent 34%),
    linear-gradient(135deg, #0a1f3f, #0b2f55 52%, #0b315f);
  color: #e2e8f0;
}

.masthead::after {
  content: '';
  position: absolute;
  inset: 18% 10% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 60%);
  filter: blur(12px);
  pointer-events: none;
}

.masthead-grid {
  position: relative;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.masthead h1 {
  color: #fff;
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 18px;
}

.masthead .lede {
  color: #cbd5e1;
}

.masthead-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.masthead-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.masthead .btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  border-color: rgba(255, 255, 255, 0.14);
}

.masthead .btn.secondary:hover {
  border-color: var(--accent);
  color: #fff;
}

.masthead-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  color: #cbd5e1;
}

.masthead-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.masthead-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.masthead-visual {
  position: relative;
  max-width: 520px;
  justify-self: center;
}

.masthead-frame {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.28);
}

.masthead-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.masthead-card {
  position: absolute;
  bottom: -45px;
  left: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.22);
  border: 1px solid var(--line);
  min-width: 210px;
}

.masthead-card small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hero {
  padding: 40px 0;
  margin-bottom: 10px;
  margin-top: 40px;
}

.contact-highlight {
  display: grid;
  gap: 10px;
}

.contact-chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  font-weight: 600;
}

.contact-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.contact-card {
  height: 100%;
  display: grid;
  gap: 12px;
}

.contact-card:hover {
  transform: none !important;
  box-shadow: var(--card-shadow) !important;
}

.hero-grid {
  display: grid;
  gap: 44px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero .card {
  padding: 24px;
}

.subhead {
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 16px;
}

.lede {
  font-size: 18px;
  margin-bottom: 24px;
}

.hero-bullets {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
  display: grid;
  gap: 6px;
}

.meta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.crumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.crumbs a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  border: none;
  box-shadow: none;
}

.crumbs a::before {
  content: '\2022';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  background: transparent;
}

.crumbs a:first-child::before {
  content: '\2022';
  background: transparent;
  color: var(--accent);
  font-size: 18px;
  font-weight: 900;
}

.crumbs .sep {
  position: relative;
  width: auto;
  height: auto;
  color: transparent;
  font-size: 0;
}

.crumbs .sep::before {
  content: '>';
  position: relative;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 700;
}

.crumbs .crumb-name {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 960px) {
  .crumbs .crumb-name {
    display: none;
  }
}

.detail-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.detail-meta .badge {
  background: rgba(31, 111, 211, 0.1);
  border: 1px solid rgba(31, 111, 211, 0.18);
}

.sku-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 14px;
  color: var(--ink);
}

.sku-label {
  font-weight: 600;
}

.sku-value {
  font-weight: 600;
}

.desc-block {
  margin-top: 40px;
  display: grid;
  gap: 8px;
}

.desc-block h3,
.desc-block .lede {
  font-size: 16px;
}

.reassurance-panel {
  margin-top: 0;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--card-shadow);
  display: grid;
  gap: 12px;
}

.reassurance-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 6px 0;
}

.reassurance-row + .reassurance-row {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.reassurance-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: #f8fafc;
  color: #0f365f;
  font-size: 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.reassurance-copy h4 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
}

.reassurance-copy p {
  margin: 2px 0 0 0;
  color: var(--muted);
}

.stat {
  padding: 14px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
}

.card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.card h3 {
  margin-bottom: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(31, 111, 211, 0.12);
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 44px;
  align-items: stretch;
}

.split > .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 16px;
  align-items: start;
}

.timeline-marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
  box-shadow: 0 0 0 8px rgba(31, 111, 211, 0.16);
}

.filters-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 26px;
  align-items: start;
}

.filters-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.filters-desktop {
  display: block;
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.filters-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.filters-mobile {
  display: none;
  justify-content: flex-end;
}

.filters-chips {
  display: none;
  flex-direction: column;
  gap: 10px;
}


.chip-toggle-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #fff;
  font-weight: 800;
  color: #0f172a;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, background var(--transition), color var(--transition);
}

.chip-toggle.subtle {
  background: #f8fafc;
  border-style: dashed;
  font-weight: 700;
}

.chip-toggle.open {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  border-color: #1d4ed8;
  box-shadow: 0 12px 22px rgba(37, 99, 235, 0.22);
}

.chip-panel {
  display: none;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  padding: 10px;
}

.chip-panel.open {
  display: block;
}

.chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #fff;
  font-weight: 700;
  font-size: 14px;
  color: #0f172a;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
  transition: background var(--transition), color var(--transition), border var(--transition), transform 140ms ease;
}

.filter-chip.active {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  border-color: #1d4ed8;
  color: #fff;
}

.filter-chip.is-hidden {
  display: none;
}

.filter-group {
  border-top: 1px solid #e2e8f0;
  padding: 12px 0;
}

.filter-group:first-of-type {
  border-top: 0;
}

.filter-accordion {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 4px;
  background: transparent;
  border: none;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
}

.filter-options {
  margin-top: 8px;
  display: none;
  gap: 8px;
}

.filter-options.open {
  display: grid;
}

.filter-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background var(--transition);
}

.filter-option:hover {
  background: #f8fafc;
}

.filter-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #2563eb;
  cursor: pointer;
}

.filter-option span {
  font-weight: 600;
  color: #0f172a;
}

.filter-shell {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 18px 18px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
}

.filter-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.filter-heading h3 {
  margin: 4px 0 0;
  font-size: 20px;
}

.filter-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--accent-2);
  font-size: 11px;
  margin: 0;
}

.filter-hint {
  color: var(--muted);
  font-size: 13px;
}

.filter-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #0f172a;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.35);
  font-weight: 800;
}

.filter-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-reset {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.5);
  background: #0ea5e9;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: none;
  transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
}

.filter-reset:hover {
  transform: translateY(-1px);
  box-shadow: none;
  filter: saturate(1.1);
}

.filter-reset:active {
  transform: translateY(0);
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px 14px;
}

.filter-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.filter-label {
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.01em;
}

.filter-block-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.filter-sub {
  font-size: 12px;
  color: var(--muted);
}

.filter-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #fff;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  color: #0f172a;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  transition: background var(--transition), color var(--transition), border var(--transition), box-shadow var(--transition), transform 160ms ease;
}

.filter-btn.active {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  border-color: #1d4ed8;
  color: #fff;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.28);
}

.filter-btn:hover:not(.active) {
  border-color: #94a3b8;
  background: #f8fafc;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

.filter-btn.is-hidden {
  display: none;
}

.filter-option.is-hidden {
  display: none;
}

.filter-bar {
  display: flex;
  justify-content: flex-end;
  margin: 10px 0 18px;
}

.filter-launch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(59, 130, 246, 0.5);
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  font-weight: 800;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.32);
  transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
}

.filter-launch:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.4);
  filter: saturate(1.05);
}

.filter-launch:active {
  transform: translateY(0);
}

.filter-launch-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 800;
}

.filter-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

.filter-modal.open {
  display: flex;
}

.filter-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
}

.filter-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 92vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 60px rgba(15, 23, 42, 0.24);
}

@media (max-width: 960px) {
  .filters-layout {
    grid-template-columns: 1fr;
  }

  .filters-desktop {
    display: none;
  }

  .filters-chips {
    display: flex;
    margin-bottom: 8px;
  }

  .filter-modal {
    display: none !important;
  }
}

.filter-dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.filter-close {
  background: transparent;
  border: 1px solid #e2e8f0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.filter-dialog-body {
  overflow: auto;
  padding: 4px 2px;
}

.filter-dialog-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.filter-apply {
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid #1d4ed8;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.32);
}

@media (max-width: 640px) {
  .filter-dialog {
    width: 94vw;
    padding: 16px;
  }

  .filter-dialog-footer {
    flex-direction: column;
  }

  .filter-apply, .filter-reset {
    width: 100%;
    text-align: center;
  }
}

.product-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  justify-items: center;
}

.product-card {
  overflow: hidden;
  padding: 12px 12px 16px;
  cursor: pointer;
  display: flex;
  justify-content: center;
}

.product-card.is-hidden {
  display: none;
}

.product-card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.product-thumb {
  position: relative;
  width: 260px;
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 240ms ease;
}

.product-thumb::after {
  display: none;
}

.product-card:hover .product-thumb img {
  transform: scale(1.04);
}

.product-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.product-body h3 {
  margin: 0;
  font-weight: 400;
}

.product-body .lede,
.product-body .badge,
.product-body .btn {
  display: none;
}

@media (max-width: 768px) {
  .products-page-hero {
    padding: 0;
    margin: 0;
  }

  .products-page-hero .container {
    padding: 0 12px;
  }

  .products-page-hero h1,
  .products-page-hero .lede {
    display: none;
  }

  .filters-content {
    gap: 12px;
  }

  .product-grid {
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    justify-items: stretch;
  }

  .product-card {
    padding: 10px;
  }

  .product-card a {
    align-items: flex-start;
  }

  .product-thumb {
    width: 100%;
    height: 220px;
  }

  .product-body {
    align-items: flex-start;
    text-align: left;
    gap: 6px;
  }

  .product-body h3 {
    font-size: 16px;
  }
}

/* Featured builds tiles */
.feature-tiles {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feature-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: block;
  background: #fff;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 420px;
}

.feature-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 220ms ease;
}

.feature-overlay {
  position: absolute;
  inset: 0;
  padding: 18px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(11, 35, 64, 0.1) 0%, rgba(11, 35, 64, 0.82) 100%);
  color: #fff;
  opacity: 1;
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 16px 40px rgba(11, 35, 64, 0.3);
  padding: 10px 12px 10px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  pointer-events: auto;
  text-decoration: none;
}

.pill-tag {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.pill-arrow {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 26px rgba(11, 35, 64, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.feature-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
}

.feature-tile:hover img {
  transform: scale(1.04);
}

.clients-section {
  padding: 40px 0;
}

.client-strip {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(88, 180, 255, 0.08), rgba(31, 111, 211, 0.08));
  box-shadow: var(--card-shadow);
  padding: 14px 0;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.client-track {
  display: flex;
  gap: 28px;
  align-items: center;
  animation: marquee 24s linear infinite;
  padding: 0 24px;
  width: max-content;
}

.client-logo {
  padding: 12px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.client-logo.slmg-logo {
  background: #000;
  border-color: #000;
}

.client-logo.devyani-logo {
  background: #000;
  border-color: #000;
}

.client-logo img {
  display: block;
  height: 54px;
  width: auto;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.callout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  padding: 26px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(88, 180, 255, 0.12), rgba(31, 111, 211, 0.12));
  border: 1px solid rgba(31, 111, 211, 0.22);
}

.callout h2 {
  margin-bottom: 10px;
}

.form {
  display: grid;
  gap: 14px;
}

.input-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

label {
  font-weight: 600;
  color: var(--ink);
}

input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  transition: border var(--transition), box-shadow var(--transition);
}

input:focus, textarea:focus, select:focus {
  border-color: var(--accent-2);
  outline: none;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}

footer {
  padding: 40px 0 50px;
  background: #0f172a;
  color: #e2e8f0;
  margin-top: 40px;
}

/* Product detail page */
.detail-hero {
  padding-bottom: 40px;
}

.detail-grid {
  display: grid;
  gap: 32px;
  column-gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
}

.detail-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  justify-content: space-between;
}

.cta-stack {
  margin-top: 0;
  display: grid;
  gap: 24px;
}

.detail-head {
  display: block;
}

.detail-head h1 {
  margin-bottom: 0;
}

.detail-body {
  display: grid;
  gap: 20px;
}

.accordion-card {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--card-shadow);
}

.accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  background: #f8fafc;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  color: var(--ink);
  text-align: left;
  transition: background var(--transition), color var(--transition);
}

.accordion-item.open .accordion-toggle {
  background: rgba(31, 111, 211, 0.08);
  color: var(--ink);
}

.accordion-icon {
  transition: transform var(--transition);
}

.accordion-item.open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-panel {
  display: none;
  padding: 16px 16px 16px;
  border-top: 1px solid var(--line);
}

.accordion-panel.open {
  display: block;
}

.feature-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  display: grid;
  gap: 8px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  padding: 0;
  background: #fff;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.spec-card {
  border: 0;
  padding: 18px 16px;
  background: #fff;
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: center;
  min-height: 150px;
  position: relative;
}

.spec-card:nth-child(n + 2) {
  border-left: 1px solid var(--line);
}

.spec-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f8fafc;
  color: var(--ink);
  font-size: 20px;
  box-shadow: inset 0 0 0 1px var(--line);
}

.spec-label {
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-align: center;
  font-size: 16px;
}

.spec-value {
  color: var(--muted);
  font-size: 15px;
  text-align: center;
}

.spec-tile {
  text-align: center;
  padding: 10px 12px;
  display: grid;
  gap: 6px;
  align-content: start;
  position: relative;
}

.spec-tile:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: var(--line);
}

.spec-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(31, 111, 211, 0.08);
  margin: 0 auto;
  font-size: 20px;
}

.spec-title {
  font-weight: 700;
  color: var(--ink);
  font-size: 16px;
}

.spec-value {
  color: var(--muted);
  font-size: 15px;
}

.install-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.install-tile {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--card-shadow);
  display: grid;
  place-items: center;
  padding: 12px;
  width: 180px;
  height: 180px;
  margin: 0 auto;
}

.install-tile img {
  width: 100%;
  height: 156px;
  object-fit: contain;
  background: #f8fafc;
  margin: 0 auto;
}

.install-tile figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 14px;
}

.install-more {
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
  transition: border var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--card-shadow);
  width: 180px;
  height: 180px;
  margin: 0 auto;
}

.install-more:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.install-more .more-count {
  font-size: 22px;
}

.install-more .more-label {
  color: var(--muted);
  font-weight: 600;
}

.modal-open {
  overflow: hidden;
}

.install-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
}

.install-modal.open { display: flex; }

.install-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
}

.install-modal-dialog {
  position: relative;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.28);
  max-width: 1100px;
  width: min(92vw, 1100px);
  max-height: 90vh;
  display: grid;
  padding: 16px;
  gap: 12px;
}

.install-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: #f8fafc;
  border-radius: 12px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 18px;
  color: var(--ink);
  box-shadow: var(--card-shadow);
}

.install-modal-body {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 16px;
  align-items: start;
}

.install-thumb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-height: 68vh;
  overflow: auto;
  padding-right: 6px;
}

.install-thumb {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px;
  background: #fff;
  cursor: pointer;
  display: block;
  transition: border var(--transition), box-shadow var(--transition);
}

.install-thumb img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  background: #f8fafc;
  margin: 0 auto;
}

.install-thumb.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31, 111, 211, 0.14);
}

.install-preview {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  background: #fff;
  display: grid;
  place-items: center;
  min-height: 360px;
}

.install-preview img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #f8fafc;
}

.assurance-card {
  display: grid;
  gap: 12px;
}

.assurance-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.assurance-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(31, 111, 211, 0.12);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #0f365f;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
  min-height: 320px;
}

.gallery-main {
  background: #fff;
  display: grid;
  place-items: center;
  max-height: 60vh;
  min-height: 0;
}

.gallery-main img {
  max-height: 60vh;
  width: 100%;
  object-fit: contain;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.gallery-nav:hover {
  transform: translateY(-50%) scale(1.03);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
}

.gallery-nav.prev { left: 12px; }
.gallery-nav.next { right: 12px; }

.gallery-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
  transform: translateY(-50%);
}

.thumb-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}

.thumb-btn {
  padding: 6px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: border var(--transition), box-shadow var(--transition), transform var(--transition);
}

.thumb-btn img {
  width: 100%;
  display: block;
  border-radius: 8px;
  height: 86px;
  object-fit: contain;
}

.thumb-btn.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31, 111, 211, 0.18);
  transform: translateY(-1px);
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--ink);
  box-shadow: var(--card-shadow);
}

.slider-nav#slider-prev { left: 14px; }
.slider-nav#slider-next { right: 14px; }

.slider-counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
}

.spec-card ul {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

footer a {
  color: #e2e8f0;
}

footer p {
  color: #e2e8f0;
}

footer h3 {
  color: #838383;
  font-weight: 400;
  margin-bottom: 8px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

footer .brand div:first-child {
  font-weight: 800;
  letter-spacing: -0.02em;
}

footer .brand small {
  color: #cbd5e1;
  font-weight: 600;
}

.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
  min-height: 220px;
  background: url('https://api.mapbox.com/styles/v1/mapbox/light-v10/static/77.0,28.7,9/600x400?access_token=pk.eyJ1IjoiZHVtbXkiLCJhIjoiY2p0ajJmcDliMHBqdjQzbzF2bGo3azZ0YiJ9.p6XjMIoS4mQjhDuP7i7XjQ') center/cover no-repeat;
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 78px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--card-shadow);
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .burger {
    display: inline-flex;
  }

  .nav .btn.secondary {
    display: none;
  }
}

@media (min-width: 900px) {
  .hero-grid .hero-text {
    order: 2;
  }

  .hero-grid .hero-card {
    order: 1;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 24px;
  }
}
