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

:root {
  --primary: #0E2B6D;
  --secondary: #1FA0DC;
  --foreground: #0c1832;
  --background: #ffffff;
  --muted: #eef3f9;
  --muted-fg: #5b6b80;
  --border: #dbe4ef;
  --white: #ffffff;
  --gradient-brand: linear-gradient(to right, #0E2B6D, #1FA0DC);
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 40px rgba(0,0,0,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(14,43,109,0.3);
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(14,43,109,0.4); }

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(14,43,109,0.04); }

.btn-ghost-white {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.22); }

.btn-dark {
  background: var(--foreground);
  color: var(--white);
}
.btn-dark:hover { opacity: 0.88; }

.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ---- NAVBAR ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.07);
  transition: padding 0.25s ease, box-shadow 0.25s ease;
  padding: 0.875rem 0;
}
#navbar.scrolled {
  padding: 0.625rem 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.navbar-logo img { height: 64px; object-fit: contain; transition: transform 0.2s; }
.navbar-logo:hover img { transform: scale(1.04); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-link {
  padding: 0.5rem 0.85rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--foreground);
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}
.nav-link:hover { background: rgba(0,0,0,0.045); color: var(--primary); }

/* ---- DESKTOP MEGA MENU (Products: brand × items) ---- */
.nav-dropdown { position: relative; }
/* Invisible bridge so cursor never leaves hover area between trigger & menu */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 14px;
  pointer-events: none;
}
.nav-dropdown:hover::after,
.nav-dropdown.open::after { pointer-events: auto; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 0.3rem; cursor: pointer; }
.nav-dropdown-trigger svg { transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown.open .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown.open .nav-dropdown-trigger { color: var(--primary); }

.nav-dropdown-menu.mega-brands {
  position: absolute;
  top: 100%;
  margin-top: 8px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  display: grid;
  grid-template-columns: 240px 320px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.05);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 9999;
  min-height: 360px;
}
.nav-dropdown-menu.mega-brands::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 3px;
  background: var(--gradient-brand);
  border-radius: 0 0 4px 4px;
}
.nav-dropdown:hover .nav-dropdown-menu.mega-brands,
.nav-dropdown.open .nav-dropdown-menu.mega-brands {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.brand-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.4rem;
  border-right: 1px solid var(--border);
}
.brand-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--foreground);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s, color 0.15s;
}
.brand-item svg { opacity: 0; transition: opacity 0.15s; flex-shrink: 0; color: var(--primary); }
.brand-item:hover { background: rgba(14,43,109,0.06); color: var(--primary); }
.brand-item.active { background: var(--muted); color: var(--primary); font-weight: 600; }
.brand-item.active svg { opacity: 1; }

.brand-products { padding: 0.5rem 0.6rem; }
.brand-panel { display: none; flex-direction: column; gap: 1px; animation: brandFade 0.18s ease; }
.brand-panel.active { display: flex; }
.brand-panel a {
  padding: 0.55rem 0.85rem;
  font-size: 0.9rem;
  color: #444;
  border-radius: 6px;
  line-height: 1.4;
  transition: background 0.12s, color 0.12s, padding-left 0.15s;
}
.brand-panel a:hover {
  background: rgba(14,43,109,0.07);
  color: var(--primary);
  padding-left: 1.1rem;
}
@keyframes brandFade {
  from { opacity: 0; transform: translateX(-4px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ---- SERVICES SIMPLE DROPDOWN ---- */
.nav-dropdown-menu.services-menu {
  position: absolute;
  top: 100%;
  margin-top: 8px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  display: flex;
  flex-direction: column;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.05);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 9999;
}
.nav-dropdown-menu.services-menu::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 3px;
  background: var(--gradient-brand);
  border-radius: 0 0 4px 4px;
}
.nav-dropdown:hover .nav-dropdown-menu.services-menu,
.nav-dropdown.open .nav-dropdown-menu.services-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.services-item {
  display: block;
  padding: 0.65rem 0.95rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--foreground);
  border-radius: 8px;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.services-item:hover {
  background: rgba(14,43,109,0.07);
  color: var(--primary);
  padding-left: 1.25rem;
}

/* ---- MOBILE ACCORDION ---- */
.mobile-accordion { display: flex; flex-direction: column; }
.mobile-acc-trigger,
.mobile-brand-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.6rem 0.75rem;
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.mobile-acc-trigger svg,
.mobile-brand-trigger svg { transition: transform 0.2s; }
.mobile-accordion.open > .mobile-acc-trigger svg,
.mobile-brand.open > .mobile-brand-trigger svg { transform: rotate(180deg); }
.mobile-acc-trigger:hover,
.mobile-brand-trigger:hover { background: var(--muted); }

.mobile-acc-body {
  display: none;
  padding-left: 0.75rem;
  border-left: 2px solid var(--border);
  margin-left: 0.5rem;
  margin-top: 2px;
}
.mobile-accordion.open > .mobile-acc-body { display: flex; flex-direction: column; gap: 2px; }

.mobile-brand { display: flex; flex-direction: column; }
.mobile-brand-trigger { font-size: 0.95rem; font-weight: 600; color: var(--primary); padding: 0.5rem 0.75rem; }
.mobile-brand-items {
  display: none;
  flex-direction: column;
  padding-left: 0.75rem;
  border-left: 1px solid var(--border);
  margin-left: 0.5rem;
}
.mobile-brand.open .mobile-brand-items { display: flex; }
.mobile-brand-items a {
  padding: 0.45rem 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  border-radius: var(--radius);
}
.mobile-brand-items a:hover { background: var(--muted); color: var(--primary); }


.nav-cta-btn {
  background: var(--gradient-brand);
  color: var(--white);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-left: 0.75rem;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(14,43,109,0.28);
  white-space: nowrap;
}
.nav-cta-btn:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 18px rgba(14,43,109,0.38); }

.nav-hamburger {
  display: none;
  padding: 0.5rem;
  color: var(--foreground);
}
.nav-hamburger svg { display: block; }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.5rem 1.5rem;
  max-height: 80vh;
  overflow-y: auto;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.6rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  border-radius: var(--radius);
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
}
.mobile-menu a:hover { background: var(--muted); }
.mobile-cta { margin-top: 0.75rem; }
.mobile-cta a {
  background: var(--gradient-brand);
  color: var(--white);
  text-align: center;
  border-radius: var(--radius);
  display: block;
  padding: 0.75rem;
  font-weight: 600;
  justify-content: center;
}

/* ---- FOOTER ---- */
footer {
  background: var(--foreground);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 72px; margin-bottom: 1rem; background: #ffffff; padding: 8px 14px; border-radius: 10px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 280px; }
.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* ---- PAGE HEADER (inner page banner) ---- */
.page-header {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  margin-top: 65px; /* navbar height offset */
  overflow: hidden;
  background: #0c1832;
}
/* Dark gradient overlay */
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #0a1c45 0%, #0c1832 45%, #0a1c45 100%);
  z-index: 0;
}
/* Brand glow accents */
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 15% 50%, rgba(14,43,109,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 400px 250px at 85% 60%, rgba(31,160,220,0.12) 0%, transparent 70%);
  z-index: 0;
}
/* Dot grid pattern */
.page-header-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 0;
}
/* Gradient fade on right edge */
.page-header-fade {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(to left, rgba(22,22,29,0.85), transparent);
  z-index: 0;
}
.page-header-content {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.875rem;
  font-size: 0.8125rem;
}
.breadcrumb a {
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  transition: color 0.15s;
}
.breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.breadcrumb span { color: rgba(255,255,255,0.35); }
.breadcrumb .bc-sep {
  color: rgba(255,255,255,0.3);
  display: flex; align-items: center;
}
.breadcrumb .bc-current {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.page-header h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.015em;
}
.page-header p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  line-height: 1.65;
  margin-top: 0.75rem;
  display: none;
}
.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- SECTION LABELS ---- */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-desc { font-size: 1.0625rem; color: var(--muted-fg); line-height: 1.7; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.87) 0%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,0.28) 100%);
}
.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 7rem 0 4rem;
}
.hero-inner { max-width: 780px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform: scale(1); } 50% { opacity:0.5; transform: scale(1.3); } }

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-sub1 {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 0.5rem;
  max-width: 660px;
}
.hero-sub2 {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 660px;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  background: linear-gradient(to right, var(--white), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}
.hero-stat-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}

/* ---- ABOUT PREVIEW SECTION ---- */
.about-section {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(14,43,109,0.2); }

/* ---- PRODUCT CARDS ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card { display: flex; flex-direction: column; }
.product-card-img {
  aspect-ratio: 4/3;
  background: var(--white);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-img img { max-height: 160px; object-fit: contain; }
.product-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--white);
}
.product-card-body h4 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.product-card-body p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; flex: 1; margin-bottom: 1.25rem; }
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.15s, gap 0.15s;
}
.product-link:hover { color: var(--secondary); gap: 0.5rem; }

/* ---- SERVICE CARDS ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service-card .card-body { padding: 1.5rem; }
.service-icon {
  width: 48px; height: 48px;
  background: var(--muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: all 0.2s;
}
.service-card:hover .service-icon { background: var(--gradient-brand); color: var(--white); }
.service-card h4 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.8125rem; color: var(--muted-fg); line-height: 1.6; margin-bottom: 1rem; }
.service-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.15s;
}
.service-link:hover { color: var(--secondary); }

/* ---- WHY CHOOSE US ---- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.why-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  background: var(--white);
  transition: all 0.3s;
}
.why-card:hover { border-color: rgba(14,43,109,0.3); box-shadow: 0 8px 24px rgba(14,43,109,0.08); }
.why-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-lg);
  background: rgba(14,43,109,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: all 0.3s;
}
.why-card:hover .why-icon { background: var(--gradient-brand); color: var(--white); }
.why-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.8125rem; color: var(--muted-fg); line-height: 1.65; }

/* ---- INDUSTRIES ---- */
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.industry-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
}
.industry-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.industry-card:hover img { transform: scale(1.08); }
.industry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.industry-name {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  z-index: 1;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

/* ---- EXPERTISE / SKILLS ---- */
.expertise-section { padding: 6rem 0; background: var(--white); }
.expertise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

.skill-bars { display: flex; flex-direction: column; gap: 1.25rem; }
.skill-bar-header { display: flex; justify-content: space-between; margin-bottom: 0.5rem; }
.skill-bar-label { font-size: 0.875rem; font-weight: 600; }
.skill-bar-pct { font-size: 0.875rem; font-weight: 700; color: var(--primary); }
.skill-track {
  height: 8px;
  background: var(--muted);
  border-radius: 999px;
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  background: var(--gradient-brand);
  border-radius: 999px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- TESTIMONIALS ---- */
.testimonials { display: flex; flex-direction: column; gap: 1.25rem; }
.testimonial-card {
  background: var(--muted);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}
.stars { display: flex; gap: 2px; color: var(--secondary); margin-bottom: 0.75rem; }
.testimonial-card blockquote {
  font-style: italic;
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}
.testimonial-author { font-size: 0.8125rem; font-weight: 700; color: var(--foreground); }

/* ---- FAQ ---- */
.faq-section { padding: 6rem 0; background: var(--muted); }
.faq-container { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--foreground);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
.faq-chevron { width: 20px; height: 20px; shrink: 0; flex-shrink: 0; color: var(--muted-fg); transition: transform 0.3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.75;
  padding: 0 0 0;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 1.25rem; }

/* ---- CTA BANNER ---- */
.cta-banner {
  padding: 6rem 0;
  background: var(--gradient-brand);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2.5rem;
  position: relative;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { background: rgba(255,255,255,0.92); transform: translateY(-1px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  font-weight: 600;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ---- ABOUT PAGE ---- */
.values-section { padding: 5rem 0; background: var(--foreground); color: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card {
  padding: 2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  transition: background 0.2s;
}
.value-card:hover { background: rgba(255,255,255,0.09); }
.value-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.value-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem; }
.value-card p { font-size: 0.9375rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.team-card { }
.team-img {
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
  background: var(--muted);
}
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .team-img img { transform: scale(1.06); }
.team-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.team-card p { font-size: 0.8125rem; color: var(--primary); font-weight: 500; }

/* ---- PRODUCTS PAGE ---- */
.brand-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.brand-row:first-child { padding-top: 0; }
.brand-row:last-child { border-bottom: none; }
.brand-row.reversed { direction: rtl; }
.brand-row.reversed > * { direction: ltr; }
.brand-img-block {
  background: var(--muted);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.brand-img-block img { max-height: 200px; object-fit: contain; transition: transform 0.5s; }
.brand-img-block:hover img { transform: scale(1.06); }
.brand-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: rgba(14,43,109,0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.brand-name { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.1; }
.brand-desc { font-size: 1rem; color: var(--muted-fg); line-height: 1.7; margin-bottom: 1.5rem; }
.brand-products-label { font-weight: 600; margin-bottom: 1rem; }
.brand-product-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 2rem; }
.brand-product-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--muted-fg);
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
a.brand-product-item:hover { color: var(--primary); background: rgba(0,0,0,0.04); }
a.brand-product-item:hover .brand-product-dot { background: var(--primary); }
.brand-product-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--secondary); flex-shrink: 0; }

/* ---- SERVICES PAGE ---- */
.service-category {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3rem;
  align-items: start;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.service-category:last-child { border-bottom: none; }
.service-cat-sticky { position: sticky; top: 6rem; }
.service-cat-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-2xl);
  background: rgba(14,43,109,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.service-cat-sticky h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 1rem; }
.service-cat-sticky p { font-size: 1rem; color: var(--muted-fg); line-height: 1.7; margin-bottom: 1.5rem; }
.service-cat-img { border-radius: var(--radius-xl); overflow: hidden; width: 100%; }
.service-cat-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.service-items-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.service-item-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  background: var(--white);
  transition: box-shadow 0.2s;
}
.service-item-card:hover { box-shadow: var(--shadow-md); }
.service-item-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(31,160,220,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.service-item-card h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.6rem; }
.service-item-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.65; }

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon.primary { background: rgba(14,43,109,0.08); color: var(--primary); }
.contact-icon.secondary { background: rgba(31,160,220,0.08); color: var(--secondary); }
.contact-info-item .label { font-size: 0.8125rem; font-weight: 600; margin-bottom: 0.2rem; }
.contact-info-item .value { font-size: 0.875rem; color: var(--muted-fg); }

.hours-card {
  background: #f4f8fc;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.hours-card h3 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.hours-row .day { color: var(--muted-fg); }
.hours-row .time { font-weight: 500; }
.hours-card .emergency {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--muted-fg);
  display: flex; align-items: center; gap: 0.5rem;
}
.hours-card .emergency .green-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.map-embed { border-radius: var(--radius-2xl); overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { display: block; }

/* ---- FORMS ---- */
.form-section h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.form-section .form-sub { font-size: 0.9375rem; color: var(--muted-fg); margin-bottom: 2rem; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}
.form-group label .req { color: var(--secondary); }
.form-control {
  width: 100%;
  padding: 0.7rem 0.875rem;
  font-size: 0.9375rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--foreground);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  height: 44px;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,43,109,0.12); }
textarea.form-control { height: auto; min-height: 140px; resize: none; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23717179' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.form-submit {
  width: 100%;
  background: var(--gradient-brand);
  color: var(--white);
  padding: 0.875rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(14,43,109,0.25);
}
.form-submit:hover { opacity: 0.9; transform: translateY(-1px); }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(14,43,109,0.04);
  border: 1px solid rgba(14,43,109,0.2);
  border-radius: var(--radius-2xl);
}
.form-success.show { display: flex; }
.form-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(14,43,109,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.form-success h3 { font-size: 1.375rem; font-weight: 700; margin-bottom: 0.5rem; }
.form-success p { color: var(--muted-fg); }

/* ---- QUOTE SIDEBAR ---- */
.quote-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; }
.quote-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-card {
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
}
.sidebar-card.steps { background: linear-gradient(135deg, rgba(14,43,109,0.05), rgba(31,160,220,0.05)); border: 1px solid rgba(14,43,109,0.1); }
.sidebar-card.contact { background: #f4f8fc; border: 1px solid var(--border); }
.sidebar-card h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 1.25rem; }
.step-list { display: flex; flex-direction: column; gap: 1rem; }
.step-item { display: flex; gap: 1rem; }
.step-num {
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
}
.step-item h4 { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.2rem; }
.step-item p { font-size: 0.8125rem; color: var(--muted-fg); line-height: 1.5; }
.contact-detail { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.contact-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.contact-dot.primary { background: var(--primary); }
.contact-dot.secondary { background: var(--secondary); }
.form-note { font-size: 0.75rem; color: var(--muted-fg); text-align: center; margin-top: 0.75rem; }

/* ---- ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-left { opacity: 0; transform: translateX(-24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

/* ---- UTILITY ---- */
.bg-white { background: var(--white); }
.bg-muted { background: var(--muted); }
.bg-dark { background: var(--foreground); color: var(--white); }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.text-center { text-align: center; }
.max-w-3xl { max-width: 760px; margin: 0 auto; }
.mb-16 { margin-bottom: 4rem; }
.mt-8 { margin-top: 2rem; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .expertise-grid { grid-template-columns: 1fr; gap: 3rem; }
  .brand-row { grid-template-columns: 1fr; }
  .brand-row.reversed { direction: ltr; }
  .service-category { grid-template-columns: 1fr; }
  .service-cat-sticky { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-items-grid { grid-template-columns: 1fr; }
  .brand-product-list { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .industries-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 280px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

/* ---- KEMO FILTER PAGE: helpers ---- */
.page-header-sub {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--muted-fg);
  max-width: 640px;
  line-height: 1.6;
}
.bg-light { background: #f4f8fc; }
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head .section-eyebrow { display: block; }
.section-head .section-title { font-size: 2rem; font-weight: 800; }

.prose-block {
  max-width: 880px;
  margin: 0 auto;
}
.prose-block .section-eyebrow { text-align: center; display: block; }
.prose-block .section-title { text-align: center; font-size: 1.85rem; font-weight: 800; margin-bottom: 1.75rem; }
.prose-block p {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 1.1rem;
}

/* ---- FILTER CARD GRID ---- */
.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}
.filter-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.filter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(14,43,109,0.16), 0 2px 8px rgba(0,0,0,0.06);
  border-color: rgba(14,43,109,0.3);
}
.filter-card-img {
  background: #eef3f9;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.filter-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.filter-card:hover .filter-card-img img { transform: scale(1.06); }
.filter-card-body {
  padding: 1.25rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.filter-card-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
}
.filter-card-body p {
  font-size: 0.9rem;
  color: var(--muted-fg);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.filter-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 0.5rem;
  transition: gap 0.18s;
}
.filter-card-link:hover { gap: 0.7rem; }
.filter-card-link svg { transition: transform 0.18s; }
.filter-card-link:hover svg { transform: translateX(3px); }

@media (max-width: 768px) {
  .filter-grid { gap: 1.25rem; }
  .prose-block .section-title { font-size: 1.45rem; }
  .section-head .section-title { font-size: 1.5rem; }
}

/* Charge amplifier card extras */
.spec-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.spec-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.5;
}
.spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.filter-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  margin-top: auto;
}
.filter-card-link.alt {
  color: var(--muted-fg);
}
.filter-card-link.alt:hover { color: var(--primary); }

/* ===== MS-20 Product Sections ===== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}
.feature-card {
  flex: 1 1 280px;
  max-width: 380px;
  background: #fff;
  border: 1px solid rgba(14, 43, 109, 0.08);
  border-radius: 14px;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 4px 18px rgba(14, 43, 109, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(14, 43, 109, 0.10);
  border-color: rgba(14, 43, 109, 0.18);
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0E2B6D, #3a73d4);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.feature-card h4 {
  font-size: 1.05rem;
  margin: 0 0 0.45rem;
  color: #0E2B6D;
  letter-spacing: -0.01em;
}
.feature-card p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--muted-fg, #566480);
  line-height: 1.55;
}

.app-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}
.app-card {
  flex: 1 1 280px;
  max-width: 380px;
  position: relative;
  background: #fff;
  border: 1px solid rgba(14, 43, 109, 0.08);
  border-left: 4px solid #3a73d4;
  border-radius: 12px;
  padding: 1.5rem 1.4rem 1.4rem;
  box-shadow: 0 4px 18px rgba(14, 43, 109, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.app-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(14, 43, 109, 0.10);
}
.app-num {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #3a73d4;
  background: rgba(58, 115, 212, 0.10);
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}
.app-card h4 {
  font-size: 1.02rem;
  margin: 0 0 0.4rem;
  color: #0E2B6D;
}
.app-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted-fg, #566480);
  line-height: 1.55;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}
.tech-card {
  flex: 1 1 260px;
  max-width: 360px;
  background: #fff;
  border: 1px solid rgba(14, 43, 109, 0.08);
  border-radius: 14px;
  padding: 1.5rem 1.4rem;
  text-align: left;
  box-shadow: 0 4px 18px rgba(14, 43, 109, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tech-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(14, 43, 109, 0.10);
}
.tech-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted-fg, #566480);
  margin-bottom: 0.5rem;
}
.tech-value {
  font-size: 1.45rem;
  font-weight: 700;
  background: linear-gradient(90deg, #0E2B6D, #3a73d4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.4rem;
  line-height: 1.15;
}
.tech-note {
  font-size: 0.88rem;
  color: var(--muted-fg, #566480);
}

.acc-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}
.acc-card {
  flex: 1 1 220px;
  max-width: 300px;
  background: #fff;
  border: 1px solid rgba(14, 43, 109, 0.08);
  border-radius: 14px;
  padding: 1.5rem 1.4rem;
  text-align: left;
  box-shadow: 0 4px 18px rgba(14, 43, 109, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.acc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(14, 43, 109, 0.10);
}
.acc-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(58, 115, 212, 0.10);
  color: #3a73d4;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.acc-card h4 {
  font-size: 1rem;
  margin: 0 0 0.4rem;
  color: #0E2B6D;
}
.acc-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted-fg, #566480);
  line-height: 1.55;
}

@media (max-width: 600px) {
  .feature-card, .app-card, .tech-card, .acc-card { max-width: 100%; flex-basis: 100%; }
}

/* ===== YMC MS-20 product hero ===== */
.ms20-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3.5rem;
}
.ms20-main-img {
  background: #f4f6fb;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(14,43,109,0.08);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ms20-main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ms20-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
  margin-top: 0.8rem;
}
.ms20-title {
  font-size: 1.9rem;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}
.ms20-spec-grid {
  display: grid;
  grid-template-columns: 140px 1fr;
  row-gap: 0.55rem;
  column-gap: 1rem;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .ms20-hero {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 2.5rem;
  }
  .ms20-main-img { aspect-ratio: 4/3; }
  .ms20-title { font-size: 1.5rem; }
  .ms20-spec-grid {
    grid-template-columns: 130px 1fr;
    column-gap: 0.75rem;
  }
}
@media (max-width: 480px) {
  .ms20-spec-grid { grid-template-columns: 110px 1fr; }
}

/* ===== Kron brand intro ===== */
.kron-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.kron-intro-img {
  background: #f4f6fb;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(14,43,109,0.08);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kron-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .kron-intro-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .kron-intro-img { aspect-ratio: 16/10; }
}

/* ===== Kron / Chronos camera cards ===== */
.kron-cam-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(14,43,109,0.08);
  box-shadow: 0 8px 30px rgba(14,43,109,0.06);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
}
.kron-cam-card--reverse { grid-template-columns: 1.2fr 1fr; }
.kron-cam-card--reverse .kron-cam-body { order: 1; }
.kron-cam-card--reverse .kron-cam-img { order: 2; }
.kron-cam-img {
  background: #f4f6fb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: 280px;
}
.kron-cam-img img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
}
.kron-cam-body { padding: 2.25rem; }
@media (max-width: 768px) {
  .kron-cam-card,
  .kron-cam-card--reverse { grid-template-columns: 1fr; }
  .kron-cam-card--reverse .kron-cam-body { order: 2; }
  .kron-cam-card--reverse .kron-cam-img { order: 1; }
  .kron-cam-img {
    padding: 2.5rem 1.25rem;
    min-height: 320px;
  }
  .kron-cam-img img {
    max-width: 100%;
    max-height: 320px;
  }
  .kron-cam-body { padding: 1.5rem 1.25rem; }
}

/* ===== Kron / Chronos camera specs ===== */
.cam-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin: 0.5rem 0 1rem;
}
.cam-spec {
  background: #f7f8fb;
  border: 1px solid rgba(14,43,109,0.06);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
}
.cam-spec-k {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-fg, #566480);
  margin-bottom: 0.2rem;
}
.cam-spec-v {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0E2B6D;
  line-height: 1.3;
}
.cam-bullets {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}
.cam-bullets li {
  position: relative;
  padding: 0.25rem 0 0.25rem 1.4rem;
  font-size: 0.94rem;
  color: var(--muted-fg, #566480);
  line-height: 1.55;
}
.cam-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0E2B6D, #3a73d4);
}

/* Accessory category cards */
.acc-cat-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.acc-cat {
  flex: 1 1 280px;
  max-width: 380px;
  background: #fff;
  border: 1px solid rgba(14,43,109,0.08);
  border-radius: 14px;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 4px 18px rgba(14,43,109,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.acc-cat:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(14,43,109,0.10);
}
.acc-cat-head {
  display: flex; align-items: center; gap: 0.75rem;
  padding-bottom: 0.85rem;
  border-bottom: 1.5px solid rgba(14,43,109,0.08);
  margin-bottom: 1rem;
}
.acc-cat-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0E2B6D, #3a73d4);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.acc-cat-head h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #0E2B6D;
  letter-spacing: -0.01em;
}
.acc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.acc-list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.1rem;
  font-size: 0.92rem;
  color: var(--muted-fg, #566480);
  border-bottom: 1px dashed rgba(14,43,109,0.06);
  line-height: 1.45;
}
.acc-list li:last-child { border-bottom: none; }
.acc-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.85rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #3a73d4;
}

@media (max-width: 760px) {
  .cam-spec-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .acc-cat { max-width: 100%; flex-basis: 100%; }
}
