:root {
  --ink: #182326;
  --muted: #5b696d;
  --paper: #f7f5ef;
  --surface: #ffffff;
  --line: #dce3df;
  --teal: #147d7e;
  --teal-dark: #0c4f52;
  --mint: #dff0ea;
  --saffron: #d99a2b;
  --graphite: #263235;
  --shadow: 0 18px 50px rgba(24, 35, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px 42px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 227, 223, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 210px;
}

.brand strong,
.site-footer strong {
  display: block;
  font-size: 17px;
}

.brand small,
.site-footer span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: white;
  background: var(--teal);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a,
.header-phone,
.text-link {
  text-decoration: none;
}

.nav-links a:hover,
.header-phone:hover,
.text-link:hover {
  color: var(--teal);
}

.header-phone {
  justify-self: end;
  color: var(--teal-dark);
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(247, 245, 239, 0.96) 0%, rgba(247, 245, 239, 0.84) 34%, rgba(247, 245, 239, 0.24) 64%, rgba(247, 245, 239, 0.08) 100%);
}

.hero-content {
  max-width: 760px;
  padding: 72px 42px 44px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: 52px;
  line-height: 1.02;
  font-weight: 800;
}

h2 {
  margin-bottom: 16px;
  font-size: 38px;
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.hero-lead {
  max-width: 560px;
  color: #304044;
  font-size: 21px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: white;
  background: var(--teal);
  box-shadow: 0 12px 26px rgba(20, 125, 126, 0.22);
}

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

.button-ghost {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-facts span {
  min-height: 44px;
  padding: 9px 13px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(220, 227, 223, 0.9);
  color: var(--muted);
  font-size: 14px;
}

.hero-facts strong {
  color: var(--ink);
  margin-right: 5px;
}

.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.intro-section,
.request-section,
.catalog-section,
.presence-section,
.process-section,
.quote-section {
  padding: 82px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.intro-grid p:last-child,
.section-heading p,
.quote-copy p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.request-section {
  background: #fbfcfb;
}

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

.request-grid article {
  min-height: 236px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 34px rgba(24, 35, 38, 0.06);
}

.request-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 22px;
  padding: 4px 10px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--mint);
  font-weight: 800;
}

.request-grid p {
  color: var(--muted);
}

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

.equipment-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 34px rgba(24, 35, 38, 0.07);
}

.equipment-card-featured {
  border-color: rgba(217, 154, 43, 0.55);
}

.equipment-media {
  aspect-ratio: 1 / 1;
  background: #eef3f0;
  border-bottom: 1px solid var(--line);
}

.equipment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.equipment-body {
  padding: 22px;
}

.equipment-topline {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.equipment-topline span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--mint);
  font-size: 13px;
  font-weight: 700;
}

.equipment-body p {
  min-height: 108px;
  color: var(--muted);
}

.spec-list {
  margin: 20px 0 18px;
  border-top: 1px solid var(--line);
}

.spec-list div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  color: var(--muted);
  font-size: 13px;
}

.spec-list dd {
  margin: 0;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--teal-dark);
  font-weight: 700;
}

.text-link::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.rent-section,
.documents-section {
  padding: 78px 0;
  background: var(--graphite);
  color: white;
}

.rent-section .eyebrow,
.documents-section .eyebrow {
  color: #a9ddd5;
}

.rent-section p,
.documents-section p {
  color: rgba(255, 255, 255, 0.74);
}

.rent-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 56px;
  align-items: start;
}

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

.service-list article {
  padding: 22px;
  min-height: 260px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.presence-section {
  background: #fbfcfb;
}

.presence-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: start;
}

.presence-layout > div:first-child p:last-child {
  color: var(--muted);
  font-size: 18px;
}

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

.presence-items article {
  min-height: 242px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.presence-items span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 22px;
  padding: 4px 10px;
  border-radius: 8px;
  color: var(--graphite);
  background: #f1d8a8;
  font-weight: 800;
}

.presence-items p {
  color: var(--muted);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: var(--graphite);
  background: var(--saffron);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.steps {
  list-style: none;
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
}

.steps li {
  min-height: 234px;
  padding: 22px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.steps span {
  display: block;
  margin-bottom: 22px;
  color: var(--saffron);
  font-size: 24px;
  font-weight: 800;
}

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

.docs-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

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

.check-list li {
  position: relative;
  min-height: 42px;
  padding: 8px 0 8px 38px;
  color: rgba(255, 255, 255, 0.82);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: var(--saffron);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 15px;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--graphite);
  border-bottom: 2px solid var(--graphite);
  transform: rotate(40deg);
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 104px;
}

.contact-panel {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-panel a,
.contact-panel span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 46px;
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: none;
}

.contact-panel svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--graphite);
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #cbd6d2;
  border-radius: 8px;
  color: var(--ink);
  background: #fbfcfb;
  font: inherit;
  font-weight: 400;
}

.quote-form textarea {
  resize: vertical;
  min-height: 128px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(20, 125, 126, 0.18);
  border-color: var(--teal);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  padding: 36px 42px;
  color: rgba(255, 255, 255, 0.78);
  background: #11191b;
}

.site-footer strong {
  color: white;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-self: start;
    flex-wrap: wrap;
    gap: 14px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

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

  .rent-layout,
  .presence-layout,
  .service-list {
    grid-template-columns: 1fr;
  }

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

  .service-list article {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    padding: 12px 20px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 15px;
  }

  .header-phone {
    font-size: 14px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 650px;
    align-items: end;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-scrim {
    background: linear-gradient(180deg, rgba(247, 245, 239, 0.28) 0%, rgba(247, 245, 239, 0.82) 42%, rgba(247, 245, 239, 0.98) 100%);
  }

  .hero-content {
    padding: 210px 20px 34px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-lead,
  .intro-grid p:last-child,
  .section-heading p,
  .quote-copy p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-facts {
    display: none;
  }

  .button {
    width: 100%;
  }

  .section-inner {
    width: min(100% - 32px, 1180px);
  }

  .intro-section,
  .request-section,
  .catalog-section,
  .presence-section,
  .process-section,
  .quote-section {
    padding: 58px 0;
  }

  .rent-section,
  .documents-section {
    padding: 58px 0;
  }

  .intro-grid,
  .request-grid,
  .equipment-grid,
  .presence-layout,
  .presence-items,
  .steps,
  .docs-layout,
  .quote-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .presence-layout,
  .docs-layout,
  .quote-layout,
  .site-footer {
    gap: 28px;
  }

  .equipment-body p {
    min-height: 0;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .quote-copy {
    position: static;
  }

  .quote-form {
    padding: 18px;
  }

  .site-footer {
    padding: 30px 20px;
  }
}

@media (max-width: 420px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .header-phone {
    justify-self: start;
  }

  h1 {
    font-size: 32px;
  }
}
