:root {
  --text: #4f6075;
  --heading: #0d2f5f;
  --muted: #7b8ba1;
  --line: #dde7f2;
  --orange: #f26a3d;
  --orange-dark: #d95027;
  --blue: #002e7a;
  --blue-2: #0d5aa7;
  --teal: #00a7a7;
  --ink: #071c37;
  --paper: #fff;
  --soft: #f5f8fc;
  --shadow: 0 16px 40px rgba(15, 46, 86, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f5f8fc;
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.72;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(221, 231, 242, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 38px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 186px;
  flex: 0 0 auto;
  color: var(--heading);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 12px 24px rgba(0, 46, 122, 0.18);
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.brand-copy strong {
  color: var(--heading);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-copy em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2px;
}

.nav-link,
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 82px;
  padding: 0 15px;
  color: #42536a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active,
.nav-item:hover > .nav-link {
  color: var(--blue);
}

.nav-link-dropdown::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 2px;
  border-right: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
  transform: rotate(45deg) translateY(-2px);
  transition: border-color 180ms ease, transform 180ms ease;
}

.nav-link-dropdown:hover::after,
.nav-item:hover > .nav-link-dropdown::after,
.nav-link-dropdown.active::after {
  border-color: var(--orange);
}

.nav-item:hover > .nav-link-dropdown::after {
  transform: rotate(225deg) translateY(-1px);
}

.nav-cta {
  min-height: 42px;
  margin-left: 10px;
  padding: 0 16px;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  font-size: 12px;
  box-shadow: 0 12px 24px rgba(0, 46, 122, 0.18);
}

.nav-cta:hover {
  color: #fff;
  background: var(--blue-2);
  border-color: var(--blue-2);
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 20;
  display: none;
  min-width: 220px;
  padding: 10px 0;
  background: #fff;
  border-top: 3px solid var(--teal);
  box-shadow: var(--shadow);
}

.nav-item:hover .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 10px 18px;
  color: #777;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown a:hover {
  color: var(--blue);
  background: #f5f9ff;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 9px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: #777;
}

.site-main {
  overflow: hidden;
}

.page-hero {
  position: relative;
  padding: 58px 0 54px;
  background:
    radial-gradient(circle at 8% 20%, rgba(0, 167, 167, 0.13), transparent 28%),
    linear-gradient(135deg, #eef6ff 0%, #ffffff 48%, #f8fbff 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--orange));
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
  gap: 44px;
  align-items: center;
}

.page-hero-copy {
  min-width: 0;
}

.content-panel {
  min-width: 0;
  padding: 46px 0 64px;
}

.category,
.post-meta {
  margin: 0;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-align: left;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  color: var(--heading);
  line-height: 1.25;
  letter-spacing: 0;
}

h1 {
  margin: 12px 0 18px;
  max-width: 820px;
  color: var(--ink);
  font-size: 64px;
  font-weight: 900;
  line-height: 0.98;
  text-align: left;
  overflow-wrap: break-word;
}

h2 {
  margin: 0 0 14px;
  font-size: 19px;
  font-weight: 800;
}

h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.small-divider {
  width: 28px;
  height: 3px;
  margin: 18px auto;
  background: var(--line);
}

.post-meta {
  max-width: 720px;
  margin-bottom: 16px;
  color: var(--muted);
}

.feature-image {
  position: relative;
  isolation: isolate;
}

.feature-image img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border: 1px solid rgba(221, 231, 242, 0.95);
  box-shadow: 0 24px 60px rgba(13, 47, 95, 0.16);
}

.date-badge {
  position: absolute;
  left: -8px;
  top: 22px;
  z-index: 2;
  width: 46px;
  min-height: 46px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 2px solid var(--teal);
  color: var(--blue);
  text-align: center;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.date-badge strong {
  display: block;
  font-size: 16px;
}

.date-badge em {
  display: block;
  font-size: 10px;
  font-style: normal;
  text-transform: uppercase;
}

.lead {
  max-width: 690px;
  color: #52657c;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.section-title {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  text-align: left;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  margin: 28px 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.proof-strip div {
  min-width: 0;
  padding: 18px;
  background: #fff;
}

.proof-strip strong {
  display: block;
  color: var(--heading);
  font-size: 15px;
  font-weight: 900;
}

.proof-strip span {
  display: block;
  margin-top: 5px;
  color: #707884;
  font-size: 13px;
  line-height: 1.5;
}

.service-rows {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 34px;
}

.service-rows section {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 214px;
  padding: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f8fbfe 100%);
  border: 1px solid #dbe6ef;
  box-shadow: 0 14px 34px rgba(15, 46, 86, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-rows section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--orange));
}

.service-rows section:hover {
  border-color: #c8d7e6;
  box-shadow: 0 18px 40px rgba(15, 46, 86, 0.11);
  transform: translateY(-3px);
}

.service-rows section > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(0, 46, 122, 0.18);
}

.service-rows h2 {
  margin-bottom: 7px;
  font-size: 22px;
}

.service-rows p {
  margin: 0 0 8px;
}

.service-rows em {
  color: var(--blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.tile {
  padding: 22px;
  background: #fbfbfb;
  border: 1px solid #ededed;
  border-left: 4px solid var(--orange);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tile:hover {
  border-color: #d7d7d7;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.tile h2 {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.tile p {
  margin-bottom: 0;
}

.part-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.part-list a {
  display: grid;
  grid-template-columns: minmax(160px, 0.38fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.part-list a:hover,
.part-list a:focus-visible {
  border-color: #d6dce2;
  transform: translateX(4px);
  box-shadow: 0 12px 26px rgba(30, 38, 47, 0.07);
}

.part-list strong {
  color: var(--heading);
  font-size: 17px;
  font-weight: 900;
}

.part-list span {
  color: #707884;
}

.part-list a::after {
  content: "Request";
  justify-self: end;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.callout {
  margin: 30px 0 0;
  padding: 24px;
  background: var(--soft);
  border-left: 4px solid var(--orange);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 8px 8px 0 0;
  padding: 10px 18px;
  border: 1px solid var(--line);
  color: #666;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button-orange {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.button-orange:hover {
  background: var(--orange-dark);
}

.button-light:hover {
  color: var(--orange);
}

.sidebar {
  min-width: 0;
}

.widget {
  margin-bottom: 30px;
}

.widget h2 {
  margin-bottom: 14px;
  padding-bottom: 14px;
  color: #777;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.widget h2::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 14px;
  background: var(--line);
}

.widget p {
  margin: 0 0 10px;
}

.widget a {
  color: #646d7a;
  text-decoration: none;
}

.widget a:hover {
  color: var(--orange);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-links a {
  display: inline-grid;
  grid-template-columns: 30px auto;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 4px 13px 4px 5px;
  border: 1px solid var(--line);
  color: #646d7a;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(30, 38, 47, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(216, 91, 61, 0.18);
}

.social-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.social-facebook .social-mark {
  background: #1877f2;
}

.social-linkedin .social-mark {
  background: #0a66c2;
}

.social-whatsapp .social-mark {
  background: #25d366;
}

.social-links-large {
  gap: 10px;
}

.social-links-large a {
  min-height: 48px;
  grid-template-columns: 36px auto;
  padding: 5px 16px 5px 6px;
  background: rgba(255, 255, 255, 0.92);
}

.social-links-large .social-mark {
  width: 36px;
  height: 36px;
}

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

.widget li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.search-widget form {
  display: grid;
  grid-template-columns: 1fr 40px;
}

.search-widget input {
  min-width: 0;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  color: #777;
  font: inherit;
}

.search-widget button {
  width: 40px;
  border: 0;
  color: transparent;
  background: var(--orange);
  position: relative;
  cursor: pointer;
}

.search-widget button::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 8px;
}

.search-widget button::after {
  content: "";
  width: 9px;
  height: 3px;
  background: #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 8px;
  bottom: 10px;
}

.filter-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 18px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: #666;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  color: #666;
  background: #fff;
  font: inherit;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(216, 91, 61, 0.22);
  border-color: var(--orange);
}

.results-line {
  margin: 0 0 18px;
  color: #999;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.equipment-card {
  padding: 20px;
  border: 1px solid var(--line);
  background: #fff;
}

.equipment-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.equipment-brand {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.equipment-type,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.spec-list {
  display: grid;
  gap: 5px;
  margin: 15px 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
}

.empty-state {
  padding: 30px;
  background: var(--soft);
  border: 1px solid var(--line);
  text-align: center;
}

.stats-row,
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0;
}

.stats-row div,
.contact-cards a,
.contact-cards div {
  padding: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  text-decoration: none;
}

.stats-row strong,
.contact-cards strong {
  display: block;
  color: var(--heading);
  font-size: 24px;
  line-height: 1.15;
}

.stats-row span,
.contact-cards span {
  color: #999;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-cards a {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-cards a:hover,
.contact-cards a:focus-visible {
  border-color: #ecd4cc;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(30, 38, 47, 0.08);
}

.social-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  align-items: center;
  gap: 20px;
  margin: 28px 0 24px;
  padding: 24px;
  color: #fff;
  background: linear-gradient(135deg, #454c52 0%, #2f383f 58%, #d85b3d 100%);
  border: 1px solid #3e474f;
}

.social-card > div:first-child > span {
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.social-card h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 22px;
}

.social-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.process-flow {
  margin: 38px 0 34px;
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 167, 167, 0.32), transparent 30%),
    linear-gradient(135deg, var(--blue) 0%, #061f45 100%);
  box-shadow: var(--shadow);
}

.section-kicker {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-flow h2 {
  margin: 6px 0 22px;
  color: #fff;
  font-size: 30px;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.86fr) minmax(0, 1.14fr);
  gap: 18px;
}

.process-steps {
  display: grid;
  gap: 10px;
}

.process-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.process-step:hover,
.process-step:focus-visible,
.process-step.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateX(4px);
}

.process-step span,
.process-detail span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.process-step strong {
  font-size: 15px;
  font-weight: 900;
}

.process-detail {
  min-height: 292px;
  padding: 28px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.process-detail h3 {
  margin-top: 20px;
  color: #fff;
  font-size: 30px;
}

.process-detail p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.faq-block {
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.faq-block h2 {
  margin: 24px 0 14px;
}

.faq-block details {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.faq-block summary {
  cursor: pointer;
  padding: 16px 0;
  color: var(--heading);
  font-weight: 900;
  list-style: none;
}

.faq-block summary::-webkit-details-marker {
  display: none;
}

.faq-block summary::after {
  content: "+";
  float: right;
  color: var(--orange);
  font-size: 20px;
  line-height: 1;
}

.faq-block details[open] summary::after {
  content: "-";
}

.faq-block p {
  margin: 0;
  padding: 0 0 16px;
}

.contact-form {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-form > .field {
  margin-bottom: 16px;
}

.form-status:not(:empty) {
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid #ecd4cc;
  background: #fff7f4;
  color: var(--orange-dark);
  font-weight: 800;
}

.site-footer {
  background: #071c37;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr 1fr;
  gap: 42px;
  padding: 42px 0 34px;
}

.site-footer h2 {
  color: #fff;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer ul {
  columns: 2;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.site-footer a:hover {
  color: var(--orange);
}

.site-footer .social-links a:hover,
.site-footer .social-links a:focus-visible {
  color: #fff;
}

.footer-bottom {
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.72);
  background: #031227;
  text-align: center;
  font-size: 13px;
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #fff;
  background: #25d366;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1060px) {
  .header-inner {
    gap: 18px;
  }

  .nav-link {
    padding: 0 9px;
    font-size: 12px;
  }

  .filter-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 52px;
  }

  .feature-image img {
    aspect-ratio: 2.1 / 1;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 860px) {
  .header-inner {
    min-height: 78px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .brand-copy em {
    font-size: 10px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    z-index: 50;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-link,
  .nav-cta {
    min-height: 42px;
    justify-content: flex-start;
    padding: 0 18px;
  }

  .nav-cta {
    margin: 8px 18px;
    justify-content: center;
  }

  .dropdown {
    position: static;
    display: block;
    box-shadow: none;
    border-top: 0;
    padding: 0 0 8px 14px;
  }

  .social-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .page-shell {
    width: min(100% - 28px, 1080px);
  }

  h1 {
    font-size: 30px;
    line-height: 1.08;
  }

  .post-meta {
    font-size: 11px;
    line-height: 1.7;
  }

  .lead {
    font-size: 17px;
  }

  .page-hero {
    padding: 40px 0 38px;
  }

  .content-panel {
    padding: 34px 0 46px;
  }

  .feature-image img {
    aspect-ratio: 1.55 / 1;
  }

  .tile-grid,
  .inventory-grid,
  .service-rows,
  .stats-row,
  .contact-cards,
  .form-grid,
  .footer-grid,
  .proof-strip,
  .filter-panel {
    grid-template-columns: 1fr;
  }

  .service-rows section {
    min-height: 0;
    padding: 22px;
  }

  .process-flow {
    padding: 20px;
  }

  .process-flow h2,
  .process-detail h3 {
    font-size: 24px;
  }

  .site-footer ul {
    columns: 1;
  }

  .part-list a {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .part-list a::after {
    justify-self: start;
  }

  .date-badge {
    left: 8px;
  }

  .wa-float {
    display: none;
  }
}
