:root {
  --eds-green: #087642;
  --eds-green-dark: #035431;
  --eds-teal: #008a9b;
  --eds-blue: #1f70b8;
  --eds-ink: #1f2933;
  --eds-muted: #61707f;
  --eds-line: #dce5ea;
  --eds-surface: #f4f8fa;
  --eds-warm: #f2b84b;
}

* {
  letter-spacing: 0;
}

body {
  color: var(--eds-ink);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  background: #fff;
}

a {
  color: var(--eds-green);
}

.top-strip {
  background: var(--eds-green-dark);
  color: #fff;
  font-size: .875rem;
}

.navbar {
  border-bottom: 1px solid rgba(8, 118, 66, .16);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
}

.brand-logo {
  height: 52px;
  width: auto;
  max-width: 245px;
  object-fit: contain;
}

.navbar-nav .nav-link {
  color: #24313b;
  font-weight: 650;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: var(--eds-green);
}

.dropdown-menu {
  border: 1px solid var(--eds-line);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(31, 41, 51, .12);
}

.dropdown-item {
  font-weight: 550;
  color: #2d3740;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: #eaf6f2;
  color: var(--eds-green-dark);
}

.hero {
  min-height: 510px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .92) 43%, rgba(232, 247, 244, .72) 43%, rgba(230, 243, 250, .86) 100%),
    linear-gradient(180deg, #fff 0%, #f6fafb 100%);
  border-bottom: 1px solid var(--eds-line);
  overflow: hidden;
}

.hero h1,
.page-hero h1 {
  font-weight: 780;
  line-height: 1.04;
  color: #143826;
}

.hero .lead,
.page-hero .lead {
  color: #40515f;
  max-width: 680px;
}

.hero-product {
  position: relative;
  min-height: 370px;
}

.hero-product img {
  width: min(100%, 680px);
  border-radius: 8px;
  filter: drop-shadow(0 30px 35px rgba(17, 62, 91, .18));
}

.eyebrow {
  color: var(--eds-teal);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.btn-eds {
  --bs-btn-bg: var(--eds-green);
  --bs-btn-border-color: var(--eds-green);
  --bs-btn-hover-bg: var(--eds-green-dark);
  --bs-btn-hover-border-color: var(--eds-green-dark);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  border-radius: 6px;
  font-weight: 750;
}

.btn-outline-eds {
  --bs-btn-color: var(--eds-green-dark);
  --bs-btn-border-color: var(--eds-green);
  --bs-btn-hover-bg: var(--eds-green);
  --bs-btn-hover-border-color: var(--eds-green);
  --bs-btn-hover-color: #fff;
  border-radius: 6px;
  font-weight: 750;
}

.section {
  padding: 76px 0;
}

.section-tight {
  padding: 54px 0;
}

.section-surface {
  background: var(--eds-surface);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.section-heading h3 {
  font-weight: 780;
  color: #173b2d;
}

.feature-band {
  background: #123b31;
  color: #fff;
}

.feature-band .text-muted,
.feature-band p {
  color: rgba(255, 255, 255, .78) !important;
}

.product-card,
.contact-panel,
.info-card {
  border: 1px solid var(--eds-line);
  border-radius: 8px;
  background: #fff;
}

.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 138, 155, .42);
  box-shadow: 0 16px 34px rgba(31, 41, 51, .1);
}

.product-image-wrap {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(232, 247, 244, .78), rgba(238, 246, 251, .95));
  border-bottom: 1px solid var(--eds-line);
  overflow: hidden;
}

.product-image-wrap img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.product-card .card-body {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.product-card h3,
.product-card h4 {
  font-size: 1.08rem;
  line-height: 1.25;
  margin: 0;
  font-weight: 780;
}

.product-meta {
  color: var(--eds-teal);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.page-hero {
  background:
    linear-gradient(112deg, rgba(255, 255, 255, .98), rgba(239, 248, 249, .95)),
    var(--eds-surface);
  border-bottom: 1px solid var(--eds-line);
  padding: 72px 0 56px;
}

.category-list {
  columns: 2;
}

.category-list a {
  display: block;
  break-inside: avoid;
  padding: .4rem 0;
  color: #2d3740;
  text-decoration: none;
}

.category-list a:hover {
  color: var(--eds-green);
}

.detail-visual {
  border: 1px solid var(--eds-line);
  border-radius: 8px;
  background: linear-gradient(135deg, #eef8f5, #eff7fb);
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.detail-visual img {
  width: 92%;
  max-height: 520px;
  object-fit: contain;
}

.copy-stack p {
  margin-bottom: .85rem;
}

.copy-stack strong {
  color: var(--eds-ink);
}

.spec-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  border-top: 1px solid var(--eds-line);
  padding: .75rem 0;
  color: #40515f;
}

.spec-list li:first-child {
  border-top: 0;
}

.footer {
  background: #102923;
  color: rgba(255, 255, 255, .78);
}

.footer a {
  color: rgba(255, 255, 255, .86);
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer-logo {
  max-width: 255px;
  background: #fff;
  border-radius: 8px;
  padding: 10px 14px;
}

.contact-link {
  color: var(--eds-ink);
  text-decoration: none;
}

.contact-link:hover {
  color: var(--eds-green);
}

.badge-soft {
  background: #eaf6f2;
  color: var(--eds-green-dark);
  border: 1px solid rgba(8, 118, 66, .16);
  font-weight: 750;
}

@media (max-width: 991.98px) {
  .brand-logo {
    height: 44px;
    max-width: 205px;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 36px;
  }

  .hero-product {
    min-height: 280px;
  }

  .category-list {
    columns: 1;
  }

  .section {
    padding: 56px 0;
  }
}

@media (max-width: 575.98px) {
  .hero h1,
  .page-hero h1 {
    font-size: 2.1rem;
  }

  .section .row.g-5 {
    --bs-gutter-x: 1.5rem;
  }

  .detail-visual {
    min-height: 310px;
  }
}
