:root {
  --orange: #f58220;
  --orange-dark: #db6508;
  --ink: #17282f;
  --ink-2: #243941;
  --muted: #66777e;
  --paper: #f5f3ee;
  --white: #ffffff;
  --line: #dce2e3;
  --green: #277a62;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(15, 33, 40, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-140%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 82px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(23,40,47,.08);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, height .25s ease;
}

.site-header.scrolled {
  height: 72px;
  box-shadow: 0 8px 30px rgba(23,40,47,.08);
}

.header-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
  width: 172px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 13px;
  font-weight: 700;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding: 8px 0;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  inset: auto 0 3px;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  transition: background .2s ease, transform .2s ease;
}

.nav-cta:hover {
  background: var(--orange);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: .25s ease;
}

.hero {
  position: relative;
  min-height: 760px;
  padding-top: 82px;
  overflow: hidden;
  color: var(--white);
  background: #111f24;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 82px 0 0;
}

.hero-media {
  background: url("assets/hero-repara.webp") center right / cover no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8,18,22,.97) 0%, rgba(8,18,22,.89) 31%, rgba(8,18,22,.35) 61%, rgba(8,18,22,.05) 100%),
    linear-gradient(0deg, rgba(8,18,22,.52), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 560px;
  padding-block: 54px 82px;
}

.hero-copy {
  width: min(690px, 63%);
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  color: #ffc28d;
}

.eyebrow span {
  width: 32px;
  height: 2px;
  margin-right: 12px;
  background: var(--orange);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Outfit", sans-serif;
  line-height: 1.08;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(52px, 6.1vw, 86px);
  font-weight: 600;
  letter-spacing: -.045em;
}

h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
}

.hero-actions,
.form-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.button span,
.text-link span,
.footer-cta span {
  font-size: 17px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
}

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

.button-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.12);
}

.button-white {
  color: var(--ink);
  background: var(--white);
}

.button-white:hover {
  color: var(--white);
  background: var(--ink);
}

.hero-proof {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,.15);
  background: rgba(9,20,24,.86);
  backdrop-filter: blur(18px);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 104px;
  padding: 18px 28px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.proof-grid > div:first-child {
  padding-left: 0;
}

.proof-grid > div:last-child {
  border-right: 0;
}

.proof-grid strong {
  color: var(--orange);
  font-family: "Outfit", sans-serif;
  font-size: 35px;
  line-height: 1;
}

.proof-grid span {
  margin-top: 8px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
}

.trust-strip {
  padding: 38px 0 42px;
  background: var(--paper);
  border-bottom: 1px solid #e4e1db;
}

.trust-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}

.trust-inner > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.client-logos {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
}

.client-logos figure {
  min-height: 98px;
  margin: 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(8,28,34,.08);
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(8,28,34,.06);
}

.client-logos img {
  display: block;
  width: 100%;
  max-width: 180px;
  max-height: 76px;
  object-fit: contain;
}

.section {
  padding: 82px 0;
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading h2,
.operations-copy h2,
.coverage-copy h2,
.partner-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 4.3vw, 62px);
  font-weight: 600;
  letter-spacing: -.035em;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(430px, .92fr) minmax(420px, 1fr);
  align-items: end;
  gap: 30px;
}

.split-heading > p {
  width: 100%;
  max-width: 640px;
  margin: 0 0 4px;
  justify-self: start;
  color: var(--muted);
}

.intro-section .split-heading {
  display: block;
  max-width: 1120px;
}

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

.intro-section .split-heading > p {
  max-width: 100%;
  margin-top: 18px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  position: relative;
  min-height: 285px;
  padding: 28px 28px;
  overflow: hidden;
  background: #f6f7f5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s ease, box-shadow .3s ease;
}

.value-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.value-card.featured {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.card-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #b0bbbf;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
}

.featured .card-number {
  color: rgba(255,255,255,.4);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 34px;
  color: var(--orange);
  background: rgba(245,130,32,.1);
  border-radius: 16px;
}

.icon-box svg,
.service-item svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.value-card.featured p {
  color: rgba(255,255,255,.65);
}

.operations-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.operations-section::after {
  position: absolute;
  top: -180px;
  right: -140px;
  width: 480px;
  height: 480px;
  background: rgba(245,130,32,.12);
  border-radius: 50%;
  filter: blur(1px);
  content: "";
}

.operations-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 58px;
}

.kicker-light {
  color: #ffb06e;
}

.operations-copy > p:not(.kicker),
.coverage-copy > p:not(.kicker),
.partner-copy > p:not(.kicker) {
  color: rgba(255,255,255,.65);
}

.check-list {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  border-bottom: 1px solid rgba(255,255,255,.11);
  color: rgba(255,255,255,.82);
  font-size: 14px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
  content: "✓";
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
}

.light-link {
  color: var(--white);
}

.command-center {
  overflow: hidden;
  color: var(--ink);
  background: #f8faf9;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,.24);
  transform: rotate(1deg);
}

.dashboard-top,
.dashboard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: var(--white);
}

.dashboard-top > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-top > span,
.dashboard-footer small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.live-dot {
  width: 9px;
  height: 9px;
  background: #2caa76;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(44,170,118,.12);
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.dashboard-metrics > div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: 18px 22px;
  background: #f1f4f3;
}

.dashboard-metrics small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 11px;
}

.dashboard-metrics strong {
  font-family: "Outfit", sans-serif;
  font-size: 31px;
}

.dashboard-metrics span {
  padding-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
}

.dashboard-metrics .up {
  color: var(--green);
}

.tickets {
  padding: 8px 22px;
  background: #f8faf9;
}

.ticket {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.ticket:last-child {
  border-bottom: 0;
}

.ticket-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  font-size: 10px;
  font-weight: 800;
}

.ticket-icon.orange {
  color: #a74d00;
  background: #ffe2ca;
}

.ticket-icon.blue {
  color: #25627b;
  background: #dceef5;
}

.ticket-icon.green {
  color: #277a62;
  background: #dceee7;
}

.ticket div {
  display: flex;
  flex-direction: column;
}

.ticket strong {
  font-size: 13px;
}

.ticket small {
  color: var(--muted);
  font-size: 10px;
}

.status {
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
}

.status.progress {
  color: #a74d00;
  background: #fff0e3;
}

.status.done {
  color: var(--green);
  background: #e0f1eb;
}

.status.review {
  color: #716018;
  background: #f3edcf;
}

.dashboard-footer {
  justify-content: flex-start;
  gap: 8px;
  border-top: 1px solid var(--line);
}

.dashboard-footer span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.dashboard-footer small {
  margin-left: auto;
}

.segments-section {
  background: var(--paper);
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.segment-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border: 1px solid #e1ded7;
  border-radius: var(--radius);
  isolation: isolate;
  transition: transform .2s ease, box-shadow .2s ease;
}

.segment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(8,28,34,.14);
}

.segment-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.segment-card:hover img {
  transform: scale(1.04);
}

.segment-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(8,18,22,.92) 0%, rgba(8,18,22,.72) 32%, rgba(8,18,22,.14) 70%, rgba(8,18,22,0) 100%);
  content: "";
}

.segment-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 22px;
}

.segment-overlay span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.segment-overlay h3 {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  letter-spacing: -.025em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-item {
  position: relative;
  min-height: 218px;
  padding: 25px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .25s ease;
}

.service-item:hover {
  background: #f7f8f6;
}

.service-item > span {
  position: absolute;
  top: 21px;
  right: 21px;
  color: #a9b2b5;
  font-size: 10px;
  font-weight: 800;
}

.service-item svg {
  width: 32px;
  margin-bottom: 34px;
  color: var(--orange);
}

.service-item h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.services-note {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.coverage-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #1e343c;
}

.coverage-backdrop {
  position: absolute;
  right: -45px;
  bottom: -80px;
  color: rgba(255,255,255,.025);
  font-family: "Outfit", sans-serif;
  font-size: 220px;
  font-weight: 700;
  letter-spacing: -.06em;
  white-space: nowrap;
}

.coverage-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 68px;
}

.coverage-stats {
  display: flex;
  gap: 36px;
  margin-top: 28px;
}

.coverage-stats div {
  display: flex;
  flex-direction: column;
}

.coverage-stats strong {
  color: var(--orange);
  font-family: "Outfit", sans-serif;
  font-size: 42px;
}

.coverage-stats span {
  color: rgba(255,255,255,.55);
  font-size: 11px;
}

.state-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  transform: rotate(-2deg);
}

.state {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 170px;
  padding: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  backdrop-filter: blur(5px);
}

.state.active {
  color: var(--ink);
  background: var(--orange);
  border-color: var(--orange);
}

.state small {
  margin-bottom: auto;
  color: rgba(255,255,255,.5);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.state.active small {
  color: rgba(23,40,47,.6);
}

.state strong {
  font-family: "Outfit", sans-serif;
  font-size: 46px;
  line-height: 1;
}

.state span {
  color: rgba(255,255,255,.55);
  font-size: 11px;
}

.state.active span {
  color: rgba(23,40,47,.65);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: steps;
}

.process-step {
  position: relative;
  padding: 28px 28px 12px 0;
  border-top: 2px solid var(--line);
}

.process-step::before {
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--white);
  border: 3px solid var(--orange);
  border-radius: 50%;
  content: "";
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: -2px;
  left: 15px;
  width: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transition: width .7s ease .25s;
}

.process-step.visible:not(:last-child)::after {
  width: calc(100% - 15px);
}

.process-step > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
}

.process-step h3 {
  max-width: 210px;
  margin: 12px 0 8px;
  font-size: 20px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.partner-section {
  position: relative;
  padding: 64px 0 0;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #f58220 0%, #ec7415 100%);
}

.partner-art {
  position: absolute;
  top: 50%;
  right: -50px;
  width: 560px;
  transform: translateY(-50%) rotate(-8deg);
  opacity: .09;
}

.partner-art img {
  width: 100%;
}

.partner-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(330px, .72fr);
  align-items: center;
  gap: 48px;
}

.partner-copy {
  max-width: 620px;
  padding-block: 12px 64px;
}

.partner-copy .kicker-light {
  color: #3d332b;
}

.partner-copy > p:not(.kicker) {
  max-width: 560px;
  color: rgba(255,255,255,.78);
}

.partner-copy .button {
  margin-top: 18px;
}

.partner-copy h2 {
  max-width: 620px;
  font-size: clamp(34px, 3.3vw, 48px);
  line-height: 1.06;
}

.partner-technician {
  position: relative;
  align-self: center;
  justify-self: center;
  width: min(450px, 100%);
  aspect-ratio: 1.13;
  overflow: hidden;
  background: rgba(255,255,255,.18);
  border-radius: 42px 42px 42px 10px;
  box-shadow: 0 28px 70px rgba(101,43,0,.18);
}

.partner-technician img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact-section {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: 58px;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy > p:not(.kicker) {
  color: var(--muted);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 28px;
}

.contact-detail span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-detail a {
  margin: 2px 0;
  font-weight: 700;
}

.lead-form {
  padding: 34px;
  background: var(--white);
  border: 1px solid #e0ddd7;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(23,40,47,.07);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lead-form label {
  display: block;
  margin-bottom: 16px;
}

.lead-form label > span {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #cfd7d9;
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: transparent;
  transition: border-color .2s ease;
}

.lead-form input,
.lead-form select {
  height: 42px;
}

.lead-form textarea {
  padding: 10px 0;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--orange);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #9aa6aa;
}

.form-footer {
  margin-top: 8px;
}

.form-footer small {
  max-width: 250px;
  color: var(--muted);
  font-size: 10px;
}

.site-footer {
  color: var(--white);
  background: #101d22;
}

.footer-top {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 60px;
  padding-block: 42px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-brand {
  display: block;
  width: 190px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 9px;
}

.footer-brand img {
  width: 100%;
}

.footer-top p {
  max-width: 400px;
  margin: 0;
  color: rgba(255,255,255,.55);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--orange);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 20px;
  color: rgba(255,255,255,.42);
  font-size: 10px;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.footer-bottom a:hover {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 15px;
  }

  .main-nav > a:not(.nav-cta) {
    font-size: 11px;
  }

  .operations-grid,
  .coverage-grid,
  .partner-grid,
  .contact-grid {
    gap: 38px;
  }

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

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

@media (max-width: 860px) {
  .container {
    width: min(100% - 32px, 700px);
  }

  .site-header,
  .site-header.scrolled {
    height: 72px;
  }

  .brand {
    width: 150px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 22px 24px;
    overflow-y: auto;
    background: var(--white);
    transform: translateX(100%);
    transition: transform .3s ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav > a {
    padding: 15px 4px !important;
    border-bottom: 1px solid var(--line);
    font-size: 16px !important;
  }

  .main-nav > a::after {
    display: none;
  }

  .main-nav .nav-cta {
    margin-top: 18px;
    padding: 15px 20px !important;
    text-align: center;
    border-bottom: 0;
  }

  .hero {
    min-height: 790px;
    padding-top: 72px;
  }

  .hero-media,
  .hero-overlay {
    top: 72px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(8,18,22,.96), rgba(8,18,22,.55)), linear-gradient(0deg, rgba(8,18,22,.65), transparent);
  }

  .hero-content {
    align-items: flex-start;
    min-height: 590px;
    padding-top: 72px;
  }

  .hero-copy {
    width: 90%;
  }

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

  .proof-grid > div {
    min-height: 82px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .proof-grid > div:first-child {
    padding-left: 20px;
  }

  .proof-grid > div:nth-child(2) {
    border-right: 0;
  }

  .proof-grid strong {
    font-size: 26px;
  }

  .split-heading {
    display: block;
  }

  .trust-inner > p {
    text-align: center;
  }

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

  .client-logos figure {
    min-height: 92px;
  }

  .split-heading > p {
    max-width: 560px;
    margin-top: 14px;
  }

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

  .value-card {
    min-height: auto;
  }

  .operations-grid,
  .coverage-grid,
  .partner-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .partner-copy {
    max-width: 680px;
    padding-bottom: 24px;
  }

  .partner-technician {
    width: min(420px, 100%);
    justify-self: start;
  }

  .command-center {
    transform: none;
  }

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

  .segment-card {
    min-height: 260px;
  }

  .process-line {
    grid-template-columns: 1fr 1fr;
    row-gap: 26px;
  }

  .process-step:nth-child(2)::after {
    display: none;
  }

  .contact-copy {
    position: static;
  }

  .footer-top {
    grid-template-columns: 1fr auto;
  }

  .footer-top p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 500px);
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media {
    background-position: 67% center;
  }

  .hero-content {
    min-height: 520px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero-copy {
    width: 100%;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-lead {
    margin-bottom: 22px;
    font-size: 14px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .proof-grid span {
    font-size: 9px;
  }

  .client-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .client-logos figure {
    min-height: 82px;
    padding: 12px;
    border-radius: 16px;
  }

  .client-logos img {
    max-width: 136px;
    max-height: 54px;
  }

  .section-heading h2,
  .operations-copy h2,
  .coverage-copy h2,
  .partner-copy h2,
  .contact-copy h2 {
    font-size: 33px;
  }

  .value-card {
    padding: 22px 20px;
  }

  .icon-box {
    width: 50px;
    height: 50px;
    margin-bottom: 24px;
  }

  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .ticket {
    grid-template-columns: auto 1fr;
  }

  .ticket .status {
    grid-column: 2;
    justify-self: start;
  }

  .segments-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .segment-card {
    min-height: 210px;
  }

  .segment-overlay {
    padding: 20px 18px;
  }

  .segment-overlay h3 {
    font-size: 21px;
  }

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

  .service-item {
    min-height: 170px;
    padding: 22px 20px;
  }

  .service-item svg {
    margin-bottom: 24px;
  }

  .state {
    min-height: 140px;
    padding: 16px;
  }

  .state strong {
    font-size: 36px;
  }

  .coverage-stats {
    gap: 22px;
  }

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

  .process-step:not(:last-child)::after {
    display: none;
  }

  .partner-section {
    padding: 48px 0 0;
  }

  .partner-copy {
    padding-bottom: 18px;
  }

  .partner-copy h2 {
    font-size: 31px;
  }

  .partner-technician {
    width: min(100%, 340px);
    aspect-ratio: 1.08;
    border-radius: 30px 30px 30px 8px;
  }

  .lead-form {
    padding: 22px 18px;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-footer .button {
    width: 100%;
  }

  .form-footer small {
    max-width: none;
  }

  .footer-top,
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top {
    gap: 22px;
  }
}
