:root {
  --ink: #102d3d;
  --ink-deep: #061924;
  --blue: #06466a;
  --orange: #d95e00;
  --orange-dark: #a84500;
  --steel: #657580;
  --line: #dce3e8;
  --paper: #f6f8f9;
  --white: #ffffff;
  --field: #d7b06a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 25, 36, 0.88), rgba(6, 25, 36, 0.62) 42%, rgba(6, 25, 36, 0.22)),
    url("orlatractor-fachada.jpeg") center / cover;
  color: var(--white);
}

.hero__shade {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(0deg, rgba(6, 25, 36, 0.72), rgba(6, 25, 36, 0));
  pointer-events: none;
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(250px, 48vw);
}

.brand__logo {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.24);
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(6, 25, 36, 0.38);
  backdrop-filter: blur(14px);
}

.nav a {
  min-width: 82px;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) 0 84px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.intro h2,
.section-heading h2,
.machine-band h2,
.contact h2 {
  margin: 0;
  color: inherit;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 1160px;
  font-size: clamp(2.15rem, 3.2vw, 3rem);
}

.hero__lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.6;
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.button--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(217, 94, 0, 0.28);
}

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

.button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

.intro,
.services,
.machine-band,
.proof,
.contact {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.75fr);
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(48px, 8vw, 92px) 0;
}

.intro h2,
.section-heading h2,
.machine-band h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.intro > p,
.machine-band p,
.contact p,
.service-card p,
.proof-item span {
  color: var(--steel);
  font-size: 1rem;
  line-height: 1.7;
}

.services {
  padding: 22px 0 clamp(56px, 8vw, 92px);
}

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

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

.service-card {
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(16, 45, 61, 0.08);
}

.service-card__number {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 900;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.service-card p {
  margin: 0;
}

.machine-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink-deep);
  color: var(--white);
}

.machine-band__image {
  min-height: 480px;
}

.machine-band__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.machine-band__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 58px);
}

.machine-band p {
  color: rgba(255, 255, 255, 0.76);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--field);
  content: "";
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: clamp(56px, 8vw, 96px) 0;
}

.proof-item {
  min-height: 180px;
  padding: 28px;
  border-left: 4px solid var(--orange);
  background: var(--white);
}

.proof-item strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.35rem;
}

.proof-item span {
  display: block;
}

.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 40px;
  padding: clamp(34px, 5vw, 62px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(5, 67, 100, 0.98), rgba(9, 49, 67, 0.98)),
    var(--blue);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(16, 45, 61, 0.14);
}

.contact h2 {
  max-width: 780px;
  font-size: clamp(1.9rem, 3.6vw, 3.25rem);
  line-height: 1.05;
}

.contact .section-kicker {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.contact p {
  max-width: 100%;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.company-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 42px;
  max-width: 100%;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  line-height: 1.55;
}

.company-details__column {
  display: grid;
  gap: 6px;
}

.company-details__column--right {
  justify-self: end;
  padding-top: calc(0.95rem * 1.55 + 6px);
  text-align: left;
}

.company-details strong {
  color: var(--white);
  font-size: 0.95rem;
}

.company-details span,
.company-details__link {
  display: block;
  overflow-wrap: anywhere;
}

.company-details__link {
  width: fit-content;
  color: #25d366;
  font-weight: 400;
}

.company-details__link strong {
  font-weight: 900;
}

.company-details__link:hover,
.company-details__link:focus-visible {
  color: #5df08d;
  outline: none;
}

.contact__actions {
  align-items: center;
  justify-content: flex-end;
  margin-top: 0;
  padding-top: 4px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 900;
  white-space: nowrap;
}

.phone-link:hover,
.phone-link:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: #ffd39b;
  outline: none;
}

@media (max-width: 900px) {
  .site-header,
  .intro,
  .machine-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .machine-band__image {
    min-height: 300px;
  }

  .contact {
    align-items: start;
  }

  .company-details {
    grid-template-columns: 1fr;
  }

  .company-details__column--right {
    justify-self: start;
    padding-top: 0;
  }

  .contact__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 90svh;
  }

  .site-header,
  .hero__content,
  .intro,
  .services,
  .machine-band,
  .proof,
  .contact {
    width: min(100% - 28px, 1160px);
  }

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

  .nav a {
    min-width: 0;
    flex: 1;
    padding: 10px 8px;
    font-size: 0.82rem;
  }

  .hero__content {
    padding-top: 38px;
  }

  .button,
  .phone-link {
    width: 100%;
  }

  .service-card {
    min-height: auto;
    padding: 22px;
  }

  .service-card__number {
    margin-bottom: 24px;
  }

  .contact {
    padding: 26px 22px;
  }
}
