:root {
  --bg: #f6f3ee;
  --panel: #ffffff;
  --text: #171717;
  --muted: #606060;
  --line: #e7ddd0;
  --brand: #1f3b5b;
  --brand-2: #c58f45;
  --shadow: 0 12px 30px rgba(19, 24, 31, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}
.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 30;
  background: rgba(246,243,238,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(231,221,208,0.7);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; gap: 20px; }
.brand { display: block; font-weight: 800; font-size: 1.3rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: var(--brand-2); margin-bottom: 8px; font-weight: 700; }
nav { display: flex; gap: 18px; flex-wrap: wrap; }
nav a { color: var(--muted); font-weight: 600; }
.nav-phone {
  color: var(--brand);
  font-weight: 800;
}
.hero-grid, .about-grid, .contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: start; }
.hero-grid-single { grid-template-columns: 1fr; }
.pill {
  display: inline-flex; padding: 10px 14px; border-radius: 999px; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow); font-size: .9rem; margin-bottom: 20px;
}
h1 { font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1.08; margin: 0 0 18px; max-width: 16ch; }
.hero-copy { max-width: 860px; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.1; margin: 0 0 14px; }
.lead, .about p, .contact p { font-size: 1.04rem; color: var(--muted); line-height: 1.65; max-width: 65ch; }
.hero-contact-inline {
  margin: 6px 0 0;
  color: var(--text);
  font-weight: 600;
  line-height: 1.6;
}
.hero-contact-inline a {
  color: var(--brand);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 20px 0 8px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; padding: 14px 18px; border-radius: 12px;
  font-weight: 700; border: 1px solid var(--line);
}
.btn-dark { background: var(--brand); color: white; border-color: var(--brand); }
.btn-light { background: white; }
.full { width: 100%; }
.stats {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; max-width: 620px;
}
.stats div, .hero-card, .contact-card, .point {
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow);
}
.stats div { padding: 18px; }
.stats strong { display: block; font-size: 1.4rem; margin-bottom: 6px; }
.stats span { color: var(--muted); font-size: .92rem; }
.hero-card { padding: 24px; }
.hero-card h3 { margin-top: 0; }
.hero-card ul { padding-left: 20px; color: var(--muted); line-height: 1.8; }
.hero-mini-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 18px;
}
.hero-mini-grid div, .industry-card {
  background: #fbfaf7; border: 1px solid var(--line); border-radius: 14px; padding: 14px;
}
.hero-mini-grid strong, .industry-card strong { display: block; margin-bottom: 6px; }
.hero-mini-grid span, .industry-card span { color: var(--muted); font-size: .92rem; line-height: 1.55; }
.trust-strip { padding: 0 0 8px; }
.trust-strip-inner {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px;
}
.trust-strip-inner span {
  background: white; border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; box-shadow: var(--shadow); color: var(--muted); font-weight: 600;
}
.industries { padding: 8px 0 20px; }
.industry-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.compact { margin-bottom: 16px; }
.filters-section { padding: 38px 0 72px; }
.section-head { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 18px; }
.search-wrap { min-width: min(100%, 420px); }
#searchInput {
  width: 100%; padding: 14px 16px; border-radius: 14px; border: 1px solid var(--line); font: inherit;
  background: white;
}
.filter-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.filter-chip {
  border: 1px solid var(--line); background: white; border-radius: 999px; padding: 10px 14px; cursor: pointer; font: inherit;
}
.filter-chip.active { background: var(--brand); color: white; border-color: var(--brand); }
.results-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-bottom: 18px; color: var(--muted); }
.text-btn { background: transparent; border: none; color: var(--brand); font: inherit; font-weight: 700; cursor: pointer; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.product-card { background: white; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.img-wrap {
  aspect-ratio: 1 / 1;
  background: #fbfaf7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  overflow: hidden;
}
.product-body { padding: 16px; }
.meta-row, .price-row { display: flex; justify-content: space-between; gap: 8px; align-items: center; }
.badge {
  display: inline-flex; padding: 6px 10px; background: #f3efe7; border-radius: 999px; color: var(--brand); font-size: .78rem; font-weight: 700;
}
.sku { font-size: .76rem; color: var(--muted); }
.photo-flag {
  display: inline-flex; margin-top: 10px; padding: 6px 10px; border-radius: 999px;
  background: #e8f5ea; color: #256c35; font-size: .76rem; font-weight: 700;
}
.title { font-size: 1.02rem; line-height: 1.35; margin: 12px 0 8px; min-height: 2.7em; }
.summary { color: var(--muted); font-size: .93rem; margin: 0 0 10px; }
.specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.specs span { background: #faf7f2; border: 1px solid var(--line); border-radius: 999px; padding: 6px 10px; font-size: .78rem; color: #494949; }
.price { font-size: 1.18rem; font-weight: 800; }
.quote-link { color: var(--brand); font-weight: 700; font-size: .92rem; }
.about, .contact { padding: 10px 0 72px; }
.about-points { display: grid; gap: 16px; }
.point { padding: 18px; }
.point strong { display: block; margin-bottom: 8px; }
.point span { color: var(--muted); line-height: 1.6; }
.quote-banner { padding: 0 0 72px; }
.quote-banner-inner {
  display: grid; grid-template-columns: 1.4fr .8fr; gap: 24px; align-items: center;
  background: linear-gradient(135deg, #1f3b5b, #294d74); color: white; border-radius: 24px; padding: 30px;
  box-shadow: var(--shadow);
}
.quote-banner-inner .eyebrow { color: #f0c98f; }
.quote-banner-inner p { color: rgba(255,255,255,.8); }
.quote-actions { display: grid; gap: 12px; }
.quote-actions .btn-light { background: rgba(255,255,255,.12); color: white; border-color: rgba(255,255,255,.25); }
.contact-card { padding: 24px; }
.footer { border-top: 1px solid var(--line); padding: 24px 0 40px; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .industry-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 820px) {
  .hero-grid, .about-grid, .contact-grid, .section-head, .quote-banner-inner { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .topbar-inner { flex-direction: column; align-items: start; }
  .trust-strip-inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .product-grid, .stats, .hero-mini-grid, .industry-grid { grid-template-columns: 1fr; }
  .container { width: min(100% - 20px, 1200px); }
  h1 { max-width: none; }
}
