:root {
  --white: #ffffff;
  --off: #f7f7f5;
  --light: #efefed;
  --green: #1a7a3e;
  --green-light: #e8f5ee;
  --green-dark: #115a2c;
  --navy: #0e1c2f;
  --navy-mid: #1d3045;
  --muted: #5a6475;
  --border: #dddcd9;
  --radius: 10px;
  --trans: 200ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", system-ui, sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1.5px solid var(--border);
  padding: 0 5%;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
}

.brand-name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: 0.3px;
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.72rem;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 7px 12px;
  border-radius: var(--radius);
  transition: var(--trans);
}

.nav-links a:hover {
  color: var(--navy);
  background: var(--off);
}

.nav-cta {
  background: var(--green) !important;
  color: #fff !important;
  padding: 9px 18px !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--green-dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 5%;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
}

.mobile-nav a:hover {
  background: var(--off);
}

.mobile-nav .mobile-cta {
  color: var(--green);
  font-weight: 700;
}

.hero {
  background: var(--navy);
  color: #fff;
  padding: 0 5%;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0e1c2f 0%, #1a3a5c 100%);
  opacity: 0.98;
}

.hero-accent {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 80px solid rgba(26, 122, 62, 0.12);
  pointer-events: none;
}

.hero-accent2 {
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 60px solid rgba(26, 122, 62, 0.07);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0 72px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 122, 62, 0.2);
  border: 1px solid rgba(26, 122, 62, 0.4);
  color: #6edd97;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: #6edd97;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.hero h1 span {
  color: #6edd97;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 30px;
  max-width: 460px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-badges {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 7px 13px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(4px);
}

.hero-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(26, 122, 62, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}

.contact-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.contact-value {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Barlow", sans-serif;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Barlow", sans-serif;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.stats {
  background: var(--green);
  padding: 28px 5%;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat {
  text-align: center;
  color: #fff;
}

.stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  opacity: 0.8;
  margin-top: 4px;
  letter-spacing: 0.3px;
}

section {
  padding: 72px 5%;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.65;
}

.what {
  background: var(--off);
}

.buy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.buy-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  transition: var(--trans);
}

.buy-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 122, 62, 0.1);
}

.buy-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
}

.buy-card h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.buy-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.5;
}

.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.svc-card {
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 26px 22px;
  transition: var(--trans);
}

.svc-card:hover {
  border-color: var(--green);
  background: var(--green-light);
}

.svc-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--light);
  line-height: 1;
  margin-bottom: 12px;
  user-select: none;
}

.svc-card h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.svc-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.why {
  background: var(--navy);
  color: #fff;
  padding: 72px 5%;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 26px 22px;
}

.why-card h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin: 12px 0 8px;
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.why-check {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(26, 122, 62, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.how {
  background: var(--off);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--green);
}

.step h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.step p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.5;
  padding: 0 12px;
}

.inventory {
  background: var(--white);
}

.inv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.inv-card {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--trans);
}

.inv-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 24px rgba(26, 122, 62, 0.08);
}

.inv-thumb {
  width: 64px;
  height: 52px;
  min-width: 64px;
  border-radius: 8px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.inv-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

.inv-spec {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 3px;
}

.inv-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  padding: 3px 9px;
  border-radius: 999px;
  margin-top: 6px;
  display: inline-block;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.testimonial {
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 14px;
}

.testimonial blockquote {
  font-size: 0.93rem;
  color: var(--navy);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 14px;
}

.testimonial cite {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
}

.cta-strip {
  background: var(--green);
  padding: 56px 5%;
  text-align: center;
  color: #fff;
}

.cta-strip h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.cta-strip p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 28px;
}

.cta-strip a {
  background: #fff;
  color: var(--green);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 6px;
  transition: var(--trans);
}

.cta-strip a:hover {
  background: var(--off);
}

.cta-strip a.outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-strip a.outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact {
  background: var(--off);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items: start;
  margin-top: 40px;
}

.form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}

.form-field {
  margin-bottom: 14px;
}

.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  transition: var(--trans);
  outline: none;
}

.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26, 122, 62, 0.12);
}

.form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
  flex-wrap: wrap;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.info-card {
  background: var(--navy);
  border-radius: 14px;
  padding: 28px;
  color: #fff;
}

.info-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.info-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(26, 122, 62, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}

.info-text .lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.info-text .val {
  font-size: 0.93rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
}

.info-text a {
  color: #6edd97;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.hours-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 9px 0;
  font-size: 0.88rem;
  vertical-align: middle;
}

.hours-table td:first-child {
  color: rgba(255, 255, 255, 0.65);
  width: 120px;
  font-weight: 500;
}

.hours-table td:last-child {
  color: #fff;
  font-weight: 600;
  text-align: right;
}

.hours-open {
  color: #6edd97 !important;
}

.hours-closed {
  color: rgba(255, 255, 255, 0.35) !important;
  font-weight: 400 !important;
}

.hours-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.dot-open {
  background: #6edd97;
}

.dot-closed {
  background: rgba(255, 255, 255, 0.25);
}

footer .hours-table {
  margin-top: 0;
}

footer .hours-table td:first-child {
  color: rgba(255, 255, 255, 0.5);
}

footer .hours-table td:last-child {
  font-size: 0.82rem;
}

footer .hours-table tr {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.map-wrap {
  margin-top: 18px;
  border-radius: 10px;
  overflow: hidden;
}

footer {
  background: var(--navy-mid);
  padding: 48px 5% 28px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-brand h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.3px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-top h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--trans);
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-addr {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  gap: 7px;
  align-items: flex-start;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-card {
    display: none;
  }

  .buy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .steps::before {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .test-grid {
    grid-template-columns: 1fr;
  }

  .inv-grid {
    grid-template-columns: 1fr;
  }

  .form-2col {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .buy-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }
}
