:root {
  color-scheme: light;
  --ink: #192023;
  --muted: #5d676d;
  --line: #dce3e1;
  --paper: #f6f8f5;
  --panel: #ffffff;
  --accent: #d94b32;
  --accent-dark: #9f3122;
  --hero-red: #9f121d;
  --steel: #2f5f73;
  --green: #4f7a61;
  --shadow: 0 18px 45px rgba(25, 32, 35, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Segoe UI",
    "Helvetica Neue",
    Arial,
    Helvetica,
    sans-serif;
  line-height: 1.5;
}

.top-logo-strip {
  display: flex;
  justify-content: center;
  padding: 22px clamp(18px, 4vw, 56px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.top-logo-strip img {
  display: block;
  width: min(360px, 82vw);
  height: auto;
}

.top-contact-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: #050607;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
}

.top-contact-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-align: center;
  overflow-wrap: anywhere;
}

.top-contact-strip a:hover,
.top-contact-strip a:focus-visible {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.14);
  color: #ffccd0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(220, 227, 225, 0.86);
  background: rgba(246, 248, 245, 0.93);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

nav a:hover,
nav a:focus-visible {
  color: var(--accent-dark);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  justify-content: space-between;
  min-height: calc(100vh - 72px);
  padding: clamp(42px, 7vw, 96px) clamp(18px, 4vw, 56px) 48px;
  overflow: hidden;
  background: #050607;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: min(62vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(159, 18, 29, 0.78);
  filter: blur(86px);
  opacity: 0.85;
  transform: translate(-50%, -50%);
}

.hero-copy {
  max-width: 760px;
}

.hero-check-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-check-list li {
  position: relative;
  padding-left: 48px;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  font-weight: 900;
  line-height: 1.12;
}

.hero-check-list li::before {
  content: "";
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--hero-red);
}

.hero-check-list li::after {
  content: "";
  position: absolute;
  top: calc(0.1em + 7px);
  left: 8px;
  width: 13px;
  height: 7px;
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(-45deg);
}

.hero-description {
  max-width: 650px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
}

.hero-description span {
  color: var(--hero-red);
  font-weight: 900;
}

.partner-box {
  max-width: 650px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(142, 149, 153, 0.24);
}

.partner-box img {
  display: block;
  width: min(260px, 100%);
  height: auto;
  margin-bottom: 14px;
  border-radius: 6px;
  background: #fff;
}

.partner-box p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.partner-box a {
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--hero-red);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
  overflow-wrap: anywhere;
}

.hero-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-button-row .button-primary {
  background: var(--hero-red);
  box-shadow: 0 12px 24px rgba(159, 18, 29, 0.36);
}

.hero-button-row .button-primary:hover,
.hero-button-row .button-primary:focus-visible {
  background: #7f0e17;
}

.hero-button-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-button-secondary:hover,
.hero-button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 780px;
  font-size: clamp(2.45rem, 5.6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.4vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy > p:not(.eyebrow),
.section-heading,
.split-section p,
.contact-band p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 22px rgba(217, 75, 50, 0.23);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
}

.button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.hero .hero-button-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero .hero-button-secondary:hover,
.hero .hero-button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
}

.hero-feature-box {
  width: 100%;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(142, 149, 153, 0.18);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.hero-feature-box ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-feature-box li {
  position: relative;
  min-height: 32px;
  padding-left: 42px;
  color: #fff;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 900;
  line-height: 1.25;
}

.hero-feature-box li::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--hero-red);
}

.hero-feature-box li::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 8px;
  width: 12px;
  height: 7px;
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(-45deg);
}

.about-section {
  display: flex;
  align-items: center;
  padding: clamp(48px, 7vw, 88px) clamp(18px, 4vw, 56px);
  min-height: 420px;
  background: #fff;
}

.about-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 6vw, 76px);
  width: 100%;
  min-height: 260px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  background: #050607;
}

.about-box > p:first-child {
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3.6vw, 3.4rem);
  font-weight: 900;
  line-height: 1.06;
}

.about-detail-column {
  display: grid;
  gap: 20px;
  max-width: 560px;
}

.about-detail {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.65;
}

.about-detail span {
  color: var(--hero-red);
  font-weight: 900;
}

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

.about-value-grid div {
  min-height: 88px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(142, 149, 153, 0.24);
  color: #fff;
  font-weight: 900;
  line-height: 1.22;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(28px, 4vw, 54px) clamp(18px, 4vw, 56px);
  background: #fff;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 116px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f8f5;
}

.feature-box svg {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  stroke: var(--hero-red);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.feature-box h3 {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

@media (max-width: 900px) {
  .about-box {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .equipment-partner {
    align-items: flex-start;
    flex-direction: column;
  }
}

.hero-equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-equipment-grid div {
  position: relative;
  min-height: 112px;
  padding: 46px 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.2;
}

.hero-equipment-grid div::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--hero-red);
}

.hero-equipment-grid div::after {
  content: "";
  position: absolute;
  top: 21px;
  left: 21px;
  width: 10px;
  height: 6px;
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(-45deg);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 4vw, 56px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-strip div {
  padding: clamp(18px, 3vw, 30px);
  background: #fff;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
}

.section,
.split-section,
.contact-band {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 4vw, 56px);
}

.service-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  padding: clamp(70px, 9vw, 118px) clamp(18px, 4vw, 56px);
  background: #050607;
  color: #fff;
}

.service-copy {
  max-width: 650px;
}

.service-kicker {
  margin: 0 0 16px;
  color: var(--hero-red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-copy h2 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(2.25rem, 4.6vw, 4.8rem);
  line-height: 0.96;
}

.service-copy > p:not(.service-kicker) {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.55vw, 1.18rem);
  line-height: 1.75;
}

.service-copy > p span {
  color: var(--hero-red);
  font-weight: 900;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.service-primary {
  background: var(--hero-red);
  color: #fff;
  box-shadow: 0 12px 24px rgba(159, 18, 29, 0.34);
}

.service-primary:hover,
.service-primary:focus-visible {
  background: #7f0e17;
}

.service-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: #fff;
  color: #050607;
}

.service-secondary::after {
  content: "↗";
  margin-left: 10px;
  font-weight: 900;
}

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

.service-option {
  min-height: 112px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.service-icon {
  position: relative;
  display: block;
  width: 22px;
  height: 24px;
  margin-bottom: 18px;
  border: 2px solid var(--hero-red);
  border-radius: 4px;
}

.service-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 6px;
  border: 2px solid var(--hero-red);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  background: #111;
  transform: translateX(-50%);
}

.service-icon::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 5px;
  width: 8px;
  height: 5px;
  border-bottom: 2px solid var(--hero-red);
  border-left: 2px solid var(--hero-red);
  transform: rotate(-45deg);
}

.service-option h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  line-height: 1.34;
}

.service-overview {
  padding: clamp(34px, 6vw, 72px) clamp(18px, 4vw, 56px);
  background: #050607;
}

.service-overview img {
  display: block;
  width: min(100%, 640px);
  height: auto;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.service-card p {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 6px;
  background: rgba(47, 95, 115, 0.1);
  color: var(--steel);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  background: #e7eee9;
}

.equipment-section {
  padding: clamp(58px, 8vw, 102px) clamp(18px, 4vw, 56px);
  background: #fff;
}

.equipment-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.equipment-kicker,
.equipment-card-kicker {
  margin: 0 0 12px;
  color: var(--hero-red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.equipment-heading h2 {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(2rem, 4.3vw, 4rem);
  line-height: 0.98;
}

.equipment-heading > p {
  max-width: 690px;
  color: var(--muted);
}

.equipment-partner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 38px;
  padding: 18px 20px;
  border: 1px solid rgba(159, 18, 29, 0.18);
  border-radius: 8px;
  background: rgba(159, 18, 29, 0.06);
}

.equipment-partner p {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.equipment-partner p a {
  color: var(--hero-red);
  overflow-wrap: anywhere;
}

.equipment-partner-button {
  flex: 0 0 auto;
  min-height: 42px;
  background: var(--hero-red);
  color: #fff;
  box-shadow: 0 10px 20px rgba(159, 18, 29, 0.22);
}

.equipment-partner-button::after {
  content: "↗";
  margin-left: 8px;
}

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

.equipment-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(25, 32, 35, 0.08);
}

.equipment-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
}

.equipment-card > p:not(.equipment-card-kicker) {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

.equipment-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.equipment-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.equipment-card li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 14px;
  height: 14px;
  border: 2px solid var(--hero-red);
  border-radius: 50%;
}

.equipment-card li::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 4px;
  width: 6px;
  height: 3px;
  border-bottom: 2px solid var(--hero-red);
  border-left: 2px solid var(--hero-red);
  transform: rotate(-45deg);
}

.equipment-card > a {
  margin-top: auto;
  color: var(--hero-red);
  font-weight: 900;
}

.equipment-card > a::after {
  content: " →";
}

.mot-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  padding: clamp(58px, 8vw, 102px) clamp(18px, 4vw, 56px);
  background: #fff;
}

.mot-copy {
  max-width: 620px;
}

.mot-kicker {
  margin: 0 0 12px;
  color: var(--hero-red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mot-copy h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2.1rem, 4.1vw, 4rem);
  line-height: 0.98;
}

.mot-copy > p:not(.mot-kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.mot-panel {
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(25, 32, 35, 0.05);
  border-radius: 8px;
  background: #f7f8f7;
  box-shadow: 0 14px 34px rgba(25, 32, 35, 0.06);
}

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

.mot-grid div {
  position: relative;
  min-height: 76px;
  padding: 38px 14px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 900;
  line-height: 1.25;
  box-shadow: 0 8px 18px rgba(25, 32, 35, 0.06);
}

.mot-grid div::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 14px;
  width: 17px;
  height: 17px;
  border: 2px solid var(--hero-red);
  border-radius: 50%;
}

.mot-grid div::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 19px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid var(--hero-red);
  border-left: 2px solid var(--hero-red);
  transform: rotate(-45deg);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 16px 18px;
  border-left: 5px solid var(--green);
  border-radius: 0 6px 6px 0;
  background: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 82px);
  align-items: center;
  background: #fff;
  color: var(--ink);
}

.contact-copy {
  max-width: 560px;
}

.contact-kicker {
  margin: 0 0 14px;
  color: var(--hero-red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-copy h2 {
  max-width: 560px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.05rem, 4vw, 4rem);
  line-height: 0.98;
}

.contact-copy > p:not(.contact-kicker) {
  margin-bottom: 30px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.contact-links svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  stroke: var(--hero-red);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.contact-links span {
  color: var(--hero-red);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(25, 32, 35, 0.08);
}

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

label {
  display: grid;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

select {
  border-color: var(--hero-red);
  cursor: pointer;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #7e8a91;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--hero-red);
  outline: 3px solid rgba(159, 18, 29, 0.16);
}

.contact-submit {
  width: 100%;
  min-height: 50px;
  background: #ec0612;
  color: #fff;
  box-shadow: none;
}

.contact-submit::after {
  content: "→";
  margin-left: 10px;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: var(--hero-red);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.form-note span {
  color: var(--hero-red);
}

.site-footer {
  padding: 20px clamp(18px, 4vw, 56px);
  background: #050607;
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(180px, 320px) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 36px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(159, 18, 29, 0.42);
  border-radius: 8px;
  background: #0b0c0d;
}

.site-footer img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px 20px 0;
}

.footer-content h2 {
  margin: 0 0 5px;
  color: #fff;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.footer-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-content a {
  flex: 0 0 auto;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--hero-red);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

@media (max-width: 1000px) {
  .hero,
  .service-section,
  .mot-section,
  .split-section,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 700px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .top-contact-strip {
    align-items: center;
    flex-direction: column;
  }

  .top-contact-strip a {
    width: 100%;
  }

  .brand span:last-child {
    overflow-wrap: anywhere;
  }

  .hero {
    padding-top: 36px;
  }

  .hero::before {
    width: 520px;
    filter: blur(74px);
  }

  .trust-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-band {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .service-card {
    min-height: 0;
  }

  .button {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-content a {
    flex: 0 1 auto;
  }

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

  .site-footer img {
    height: 150px;
  }

  .footer-content {
    padding: 0 18px 20px;
  }
}
