:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #eef4ff;
  --text: #101828;
  --muted: #475467;
  --border: rgba(15, 23, 42, 0.08);
  --dark: #0f172a;
  --primary: #f97316;
  --primary-dark: #ea580c;
  --secondary: #111827;
  --success: #16a34a;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

button, a {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.contact-bar {
  background: var(--dark);
  color: #dfe8f5;
  font-size: 0.8rem;
}

.contact-bar-inner {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 0.8rem 0;
}

.contact-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.brand small {
  display: block;
  color: var(--muted);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: white;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #344054;
  font-weight: 600;
}

.nav-links a {
  color: inherit;
  text-decoration: none;
}

.nav-actions,
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 12px 25px rgba(249, 115, 22, 0.28);
}

.btn-secondary {
  background: white;
  border-color: rgba(15, 23, 42, 0.12);
  color: var(--secondary);
}

.btn-small {
  min-height: 2.5rem;
  padding: 0.65rem 1rem;
}

.hero {
  background: linear-gradient(135deg, #edf6ff 0%, #fff7ed 100%);
  padding: 4.5rem 0 3.5rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.hero-copy p {
  margin-top: 1rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 42rem;
}

.mini-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  margin: 2rem 0 0;
}

.mini-stats li {
  min-width: 120px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mini-stats strong {
  font-size: 1.1rem;
}

.mini-stats span {
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-card {
  background: white;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.5rem;
}

.card-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-card h3 {
  margin: 1rem 0 1rem;
  font-size: 2rem;
}

.feature-list {
  display: grid;
  gap: 0.75rem;
  color: #344054;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.contact-box {
  display: grid;
  gap: 0.25rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
  color: var(--muted);
}

.contact-box strong {
  color: var(--text);
  font-size: 1.05rem;
}

.catalog-section,
.coverage,
.cta-section {
  padding: 4rem 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-head h2,
.coverage h2,
.cta-box h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.chip {
  background: white;
  color: #344054;
  border: 1px solid #d0d5dd;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 700;
  cursor: pointer;
}

.chip.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.product-card {
  background: white;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04);
}

.product-media {
  min-height: 185px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0.9rem;
  background-color: #dfe7f7;
}

.category-tag {
  display: inline-block;
  background: rgba(15, 23, 42, 0.76);
  color: white;
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  font-size: 0.69rem;
  font-weight: 700;
}

.product-body {
  padding: 1rem;
}

.product-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.state-box {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.1rem;
  text-align: center;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  color: var(--muted);
  font-weight: 600;
}

.coverage {
  background: var(--dark);
  color: white;
}

.coverage-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.coverage p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 38rem;
}

.coverage-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.coverage-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(148,163,184,0.2);
  border-radius: 1.2rem;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 8rem;
}

.coverage-card i {
  font-size: 1.5rem;
}

.coverage-card strong {
  font-size: 1.1rem;
}

.coverage-card span {
  color: #cbd5e1;
}

.cta-box {
  background: linear-gradient(135deg, #fff7ed, #f5f7fb);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer {
  background: #0b1120;
  color: #dbe5f1;
  padding: 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.footer h4 {
  margin: 0 0 0.75rem;
  color: white;
}

.footer p {
  margin: 0.35rem 0;
  color: #cbd5e1;
}

.hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .hero-layout,
  .coverage-layout,
  .footer-grid,
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero-layout,
  .coverage-layout,
  .footer-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap,
  .section-head,
  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions,
  .cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-actions a,
  .cta-actions a {
    width: 100%;
  }
}
