/* ============ ANYIT — CONVOY CORRIDOR STYLESHEET ============ */
/* LIGHT theme: highway-morning fog white, convoy-ink text, convoy-green accents */

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #F8F9F4;
  color: #24301F;
  margin: 0;
  padding: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

p, li, h1, h2, h3, h4, div, section, a, span {
  color: inherit;
}

a {
  color: #2E4258;
  text-decoration: none;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ DIESEL-CANOPY NAV ============ */
.canopy-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.canopy-nav .canopy-edge {
  height: 12px;
  background-color: #38663C;
  position: relative;
}

.canopy-nav .canopy-edge::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #E9B93B;
}

.canopy-nav .canopy-edge .nozzle {
  position: absolute;
  top: 1px;
  width: 18px;
  height: 3px;
  background-color: #38663C;
  border: 1px solid #E8ECEF;
  border-radius: 2px;
}

.canopy-nav .canopy-edge .nozzle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 5px;
  background-color: #38663C;
  border-radius: 2px 2px 0 0;
}

.canopy-nav .canopy-edge .nozzle.n1 { left: 12%; }
.canopy-nav .canopy-edge .nozzle.n2 { left: 50%; transform: translateX(-50%); }
.canopy-nav .canopy-edge .nozzle.n3 { right: 12%; }

.canopy-nav .nav-row {
  background-color: #E8ECEF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  border-bottom: 1px solid #DFE5DA;
}

.canopy-nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: 21px;
  letter-spacing: 3px;
  color: #24301F;
}

.canopy-nav .grille {
  width: 32px;
  height: 22px;
  border: 2px solid #24301F;
  border-radius: 6px;
  background-color: #38663C;
  position: relative;
}

.canopy-nav .grille::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 5px;
  height: 2px;
  background-color: #E8ECEF;
  box-shadow: 0 5px 0 #E8ECEF, 0 10px 0 #E8ECEF;
}

.canopy-nav nav.links {
  display: flex;
  align-items: center;
  gap: 0;
}

.canopy-nav nav.links a {
  font-family: "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  color: #24301F;
  padding: 6px 12px;
  position: relative;
}

.canopy-nav nav.links a:hover {
  color: #38663C;
}

.canopy-nav nav.links a:hover::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 2px;
  background-color: #38663C;
}

.canopy-nav nav.links a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #E9B93B;
  margin-right: 8px;
}

.canopy-nav .nav-toggle {
  display: none;
  background: none;
  border: 1px solid #38663C;
  color: #38663C;
  font-size: 18px;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}

/* ============ WEIGH-STATION HERO ============ */
.weigh-hero {
  background-color: #F8F9F4;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 0 70px;
}

.weigh-hero .hero-text {
  flex: 0 0 55%;
}

.weigh-hero .eyebrow {
  display: inline-block;
  background-color: #38663C;
  color: #E8ECEF;
  font-family: "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  padding: 6px 14px;
  margin-bottom: 22px;
}

.weigh-hero h1 {
  font-size: 48px;
  line-height: 1.12;
  margin: 0 0 22px;
  color: #24301F;
}

.weigh-hero h1 .green {
  color: #38663C;
}

.weigh-hero .hero-sub {
  font-size: 17px;
  color: #7C8480;
  max-width: 560px;
  margin: 0 0 30px;
}

.weigh-hero .cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.weigh-hero .btn,
.cta-band .btn {
  display: inline-block;
  padding: 14px 30px;
  font-family: "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  background-color: #38663C;
  color: #E8ECEF;
  border: 2px solid #38663C;
}

.weigh-hero .btn-outline {
  background-color: transparent;
  color: #2E4258;
  border: 2px solid #2E4258;
}

.weigh-hero .btn:hover {
  background-color: #2E4258;
  border-color: #2E4258;
  color: #E8ECEF;
}

.weigh-hero .btn-outline:hover {
  background-color: #2E4258;
  color: #E8ECEF;
}

/* CSS Highway Scene */
.highway-scene {
  flex: 0 0 45%;
  position: relative;
  height: 420px;
  background-color: #F8F9F4;
}

.highway-scene .lane {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 48px;
  height: 10px;
  background-image: repeating-linear-gradient(90deg, #E9B93B 0 34px, transparent 34px 60px);
  background-color: #C8CDD2;
}

.highway-scene .semi {
  position: absolute;
  left: 8%;
  bottom: 66px;
  width: 320px;
}

.highway-scene .semi .cab {
  width: 130px;
  height: 78px;
  background-color: #38663C;
  border-radius: 14px 14px 4px 4px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.highway-scene .semi .stack {
  position: absolute;
  width: 14px;
  height: 52px;
  background-color: #2E4258;
  border: 2px solid #E8ECEF;
  border-radius: 3px;
  top: -34px;
  left: 22px;
}

.highway-scene .semi .cab .glass {
  position: absolute;
  width: 52px;
  height: 30px;
  background-color: #E8ECEF;
  border-radius: 10px 10px 2px 2px;
  top: 8px;
  left: 8px;
}

.highway-scene .semi .wheels {
  position: absolute;
  bottom: -16px;
  width: 26px;
  height: 26px;
  background-color: #24301F;
  border-radius: 50%;
  border: 3px solid #7C8480;
}

.highway-scene .semi .w1 { left: 18px; }
.highway-scene .semi .w2 { left: 74px; }

.highway-scene .semi .trailer {
  position: absolute;
  left: 128px;
  bottom: 8px;
  width: 190px;
  height: 66px;
  background-color: #2E4258;
  border-radius: 0 8px 8px 0;
}

.highway-scene .semi .trailer .marker {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, #E9B93B 0 16px, transparent 16px 22px);
}

.highway-scene .semi .trailer .decal {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 16px;
  background-color: #E8ECEF;
  border: 1px solid #24301F;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 9px;
  text-align: center;
  line-height: 15px;
  color: #24301F;
}

.highway-scene .semi .towheels {
  position: absolute;
  bottom: -14px;
  width: 24px;
  height: 24px;
  background-color: #24301F;
  border-radius: 50%;
  border: 3px solid #7C8480;
}

.highway-scene .semi .tw1 { left: 138px; }
.highway-scene .semi .tw2 { left: 194px; }
.highway-scene .semi .tw3 { left: 250px; }

/* Weigh station sign */
.weigh-sign {
  position: absolute;
  right: 6%;
  top: 40px;
  width: 96px;
}

.weigh-sign .pole {
  width: 8px;
  height: 120px;
  background-color: #7C8480;
  margin: 0 auto;
}

.weigh-sign .plate {
  background-color: #E8ECEF;
  border: 2px solid #24301F;
  padding: 8px;
  text-align: center;
  font-family: "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  color: #24301F;
  position: relative;
}

.weigh-sign .plate .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #38663C;
  margin: 4px auto 0;
}

.mile-post {
  position: absolute;
  right: 34%;
  top: 96px;
  width: 34px;
  text-align: center;
}

.mile-post .post {
  width: 12px;
  height: 70px;
  background-color: #7C8480;
  margin: 0 auto;
}

.mile-post .reflect {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background-color: #E9B93B;
  margin: 0 auto 4px;
}

/* Truck stop canopy in background */
.truck-stop {
  position: absolute;
  right: 4%;
  top: 150px;
  width: 180px;
  text-align: center;
}

.truck-stop .roof {
  height: 8px;
  background-color: #38663C;
  margin-bottom: 10px;
}

.truck-stop .posts {
  display: flex;
  justify-content: space-between;
}

.truck-stop .posts .p {
  width: 10px;
  height: 90px;
  background-color: #E8ECEF;
  border: 1px solid #DFE5DA;
}

.truck-stop .pump {
  margin: 6px 0;
  text-align: center;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 10px;
  color: #2E4258;
  letter-spacing: 1px;
}

/* Tire tread chevron strip */
.tread-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30px;
  background-color: #7C8480;
  background-image: repeating-linear-gradient(90deg, #24301F 0 30px, transparent 30px 60px);
  clip-path: polygon(0 0, 8% 100%, 16% 0, 24% 100%, 32% 0, 40% 100%, 48% 0, 56% 100%, 64% 0, 72% 100%, 80% 0, 88% 100%, 96% 0, 100% 100%);
}

/* ============ LOGBOOK ROWS ============ */
.logbook-rows {
  background-color: #F8F9F4;
  padding: 70px 0;
}

.logbook-rows .section-head h2 {
  font-size: 34px;
  color: #38663C;
  margin: 0 0 10px;
}

.logbook-rows .section-head p {
  color: #7C8480;
  max-width: 720px;
  margin: 0 0 40px;
  font-size: 17px;
}

.log-row {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: #E8ECEF;
  border: 1px solid #DFE5DA;
  padding: 26px 30px;
  margin-bottom: 12px;
}

.log-row .duty {
  flex: 0 0 130px;
}

.log-row .duty .duty-grid {
  height: 34px;
  background: repeating-linear-gradient(90deg, #1B2A1E 0 30px, #F8F9F4 30px 60px);
  border: 1px solid #24301F;
  position: relative;
}

.log-row .duty .duty-grid .fl {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 29px;
  z-index: 1;
  border-right: 1px solid #F8F9F4;
}

.log-row .duty .duty-grid .f1 { left: 0; background-color: #7C8480; }
.log-row .duty .duty-grid .f2 { left: 30px; }
.log-row .duty .duty-grid .g { left: 30px; width: 29px; background-color: #E9B93B; }
.log-row .duty .duty-grid .f3 { left: 60px; background-color: #38663C; }
.log-row .duty .duty-grid .f4 { left: 90px; background-color: #7C8480; }

.log-row .duty .duty-labels {
  display: flex;
  justify-content: space-between;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 1px;
  color: #24301F;
  margin-top: 4px;
}

.log-row .log-body {
  flex: 1;
}

.log-row .log-body h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #24301F;
}

.log-row .log-body p {
  margin: 0;
  color: #7C8480;
  font-size: 15px;
}

.log-row .rate-chip {
  flex: 0 0 150px;
  background-color: #F8F9F4;
  border: 1px solid #DFE5DA;
  border-left: 4px solid #E9B93B;
  padding: 14px 16px;
  font-family: "Arial Narrow", Arial, sans-serif;
  color: #2E4258;
}

.log-row .rate-chip .rate-line {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  border-bottom: 1px solid #DFE5DA;
  padding: 3px 0;
}

.log-row .rate-chip .rate-tag {
  margin-top: 6px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #38663C;
}

/* ============ ODOMETER METRIC BAND ============ */
.odometer-band {
  background-color: #2E4258;
  padding: 60px 0;
}

.odometer-band .odometer {
  background-color: #1B2A1E;
  border: 2px solid #E8ECEF;
  display: inline-block;
  padding: 14px 22px;
  font-family: "Courier New", monospace;
  font-size: 40px;
  letter-spacing: 8px;
  color: #E8ECEF;
  margin-bottom: 30px;
}

.odometer-band .metric-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.odometer-band .metric {
  flex: 1;
  min-width: 170px;
}

.odometer-band .metric .num {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 40px;
  color: #E9B93B;
}

.odometer-band .metric .label {
  font-family: "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #E8ECEF;
  font-size: 12px;
}

/* ============ STATEMENT BAND ============ */
.statement-band {
  background-color: #E8ECEF;
  padding: 60px 0;
}

.statement-band .statement {
  max-width: 820px;
  margin: 0 auto;
  border-left: 4px solid #38663C;
  padding-left: 26px;
  font-size: 21px;
  line-height: 1.7;
  color: #24301F;
}

.statement-band .sig {
  margin-top: 20px;
  padding-left: 26px;
  font-family: "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #38663C;
  font-size: 14px;
}

/* ============ CTA BAND ============ */
.cta-band {
  background-color: #F8F9F4;
  text-align: center;
  padding: 70px 0;
}

.cta-band h2 {
  font-size: 34px;
  color: #38663C;
  margin: 0 0 12px;
}

.cta-band p {
  color: #7C8480;
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 17px;
}

/* ============ CHEVRON FOOTER ============ */
.chevron-footer {
  background-color: #1B2A1E;
  color: #E8ECEF;
  padding-bottom: 34px;
}

.chevron-footer .tread {
  height: 14px;
  background-color: #24301F;
  background-image: repeating-linear-gradient(90deg, #E9B93B 0 26px, transparent 26px 52px);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 0 60%);
  margin-bottom: 34px;
}

.chevron-footer .footer-center {
  text-align: center;
}

.chevron-footer .footer-brand {
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 4px;
  color: #E8ECEF;
  margin-bottom: 18px;
}

.chevron-footer .footer-brand .fgrille {
  width: 34px;
  height: 24px;
  border: 2px solid #E8ECEF;
  border-radius: 6px;
  background-color: #38663C;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.chevron-footer .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 22px;
}

.chevron-footer .footer-links a {
  color: #E8ECEF;
  font-family: "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.chevron-footer .footer-links a:hover {
  color: #E9B93B;
}

.chevron-footer .coffee-dash {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 10px 0 22px;
}

.chevron-footer .mudflap {
  width: 40px;
  height: 22px;
  background-color: #24301F;
  border: 2px solid #7C8480;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.chevron-footer .coffee-cup {
  width: 34px;
  height: 28px;
  background-color: #E8ECEF;
  border-radius: 4px;
  position: relative;
}

.chevron-footer .coffee-cup::before {
  content: "";
  position: absolute;
  right: -12px;
  top: 6px;
  width: 10px;
  height: 14px;
  border: 2px solid #E8ECEF;
  border-left: none;
  border-radius: 0 6px 6px 0;
}

.chevron-footer .coffee-cup .steam {
  position: absolute;
  top: -9px;
  width: 6px;
  height: 12px;
  background-color: #E9B93B;
  border-radius: 4px;
}

.chevron-footer .coffee-cup .s1 { left: 8px; }
.chevron-footer .coffee-cup .s2 { left: 17px; top: -6px; }
.chevron-footer .coffee-cup .s3 { left: 24px; }

.chevron-footer .legal-line {
  font-size: 13px;
  color: #7C8480;
  letter-spacing: 0.5px;
}

/* ============ SERVICES PAGE ============ */
.services-hero {
  background-color: #F8F9F4;
  padding: 50px 0 30px;
}

.services-hero h1 {
  font-size: 42px;
  color: #38663C;
  margin: 0 0 16px;
}

.services-hero p {
  color: #7C8480;
  max-width: 760px;
  font-size: 17px;
}

.service-blocks {
  background-color: #F8F9F4;
  padding: 30px 0 50px;
}

.service-block {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  border-bottom: 1px solid #DFE5DA;
  padding: 28px 0;
}

.service-block .num-box {
  flex: 0 0 70px;
  height: 70px;
  background-color: #38663C;
  color: #E8ECEF;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.service-block .sb-body h3 {
  margin: 0 0 10px;
  font-size: 24px;
  color: #24301F;
}

.service-block .sb-body p {
  color: #7C8480;
  margin: 0 0 12px;
}

.service-block .sb-body .accent {
  color: #2E4258;
  font-family: "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.process-band {
  background-color: #E8ECEF;
  padding: 50px 0;
}

.process-band h2 {
  color: #38663C;
  font-size: 30px;
  margin-bottom: 26px;
}

.process-steps {
  counter-reset: step;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.process-step {
  counter-increment: step;
  flex: 1;
  min-width: 180px;
  background-color: #F8F9F4;
  border-top: 4px solid #E9B93B;
  padding: 20px;
  position: relative;
}

.process-step::before {
  content: counter(step);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 28px;
  color: #38663C;
  display: block;
  margin-bottom: 8px;
}

.process-step h4 {
  margin: 0 0 8px;
  color: #24301F;
}

.process-step p {
  color: #7C8480;
  font-size: 14px;
  margin: 0;
}

/* ============ CONTACT PAGE ============ */
.contact-intro {
  background-color: #F8F9F4;
  padding: 50px 0 20px;
}

.contact-intro h1 {
  color: #38663C;
  font-size: 40px;
  margin: 0 0 14px;
}

.contact-intro p {
  color: #7C8480;
  max-width: 720px;
}

.contact-body {
  display: flex;
  gap: 40px;
  padding: 30px 0 50px;
}

.contact-body .form-panel {
  flex: 1;
  background-color: #E8ECEF;
  border: 1px solid #DFE5DA;
  padding: 30px;
}

.contact-body .form-panel label {
  display: block;
  font-family: "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #38663C;
  font-size: 12px;
  margin: 14px 0 6px;
}

.contact-body .form-panel input,
.contact-body .form-panel textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #7C8480;
  border-radius: 4px;
  background-color: #F8F9F4;
  color: #24301F;
  box-sizing: border-box;
  font-family: Georgia, serif;
  font-size: 15px;
}

.contact-body .form-panel textarea {
  min-height: 140px;
}

.contact-body .form-panel button {
  margin-top: 18px;
  padding: 14px 34px;
  background-color: #38663C;
  color: #E8ECEF;
  border: none;
  font-family: "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  cursor: pointer;
}

.contact-body .form-msg {
  background-color: #F8F9F4;
  border: 1px solid #38663C;
  color: #38663C;
  padding: 12px;
  display: none;
  margin-top: 14px;
}

.contact-body .side-panel {
  flex: 0 0 340px;
}

.contact-body .side-panel h3 {
  color: #38663C;
  margin: 0 0 16px;
}

.contact-body .info-block {
  margin-bottom: 26px;
}

.contact-body .info-block h4 {
  font-family: "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2E4258;
  font-size: 13px;
  margin: 0 0 6px;
}

.contact-body .info-block p {
  color: #3C4836;
  margin: 0;
}

.faq-block {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #DFE5DA;
}

.faq-q {
  border-bottom: 1px solid #DFE5DA;
  margin-bottom: 8px;
}

.faq-q .faq-question {
  cursor: pointer;
  font-weight: bold;
  color: #24301F;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q .faq-question .toggle {
  color: #38663C;
  font-size: 18px;
}

.faq-q .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-q.open .faq-answer {
  max-height: 300px;
}

.faq-q .faq-answer p {
  color: #7C8480;
  margin: 0 0 12px;
}

/* ============ SCROLL REVEAL ============ */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ COUNTERS ============ */
.metric .num[data-count] {
  display: inline-block;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .weigh-hero {
    flex-direction: column;
  }
  .weigh-hero .hero-text,
  .weigh-hero .highway-scene {
    flex: 1 1 auto;
  }
  .highway-scene {
    height: 300px;
    width: 100%;
  }
  .weigh-hero h1 {
    font-size: 36px;
  }
  .log-row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .log-row .duty,
  .log-row .rate-chip {
    flex: 1 1 auto;
  }
  .contact-body {
    flex-direction: column;
  }
  .contact-body .side-panel {
    flex: 1 1 auto;
  }
  .canopy-nav .nav-toggle {
    display: block;
  }
  .canopy-nav nav.links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #E8ECEF;
    border-top: 1px solid #DFE5DA;
    padding: 10px 0;
  }
  .canopy-nav nav.links.open {
    display: flex;
  }
  .canopy-nav nav.links a {
    padding: 10px 28px;
  }
  .metric-grid,
  .process-steps {
    gap: 16px;
  }
}
