:root {
  --ink: #13201d;
  --muted: #5f6d68;
  --surface: #f6f4ee;
  --surface-strong: #ebe7dc;
  --white: #ffffff;
  --forest: #12392f;
  --forest-2: #1f5a49;
  --copper: #c8792c;
  --sky: #d9eaf2;
  --line: rgba(19, 32, 29, 0.12);
  --shadow: 0 24px 80px rgba(16, 33, 30, 0.16);
  --radius: 8px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: var(--header-height);
  padding: 12px clamp(18px, 4vw, 58px);
  color: var(--white);
  background: rgba(12, 24, 22, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(246, 244, 238, 0.94);
  box-shadow: 0 14px 45px rgba(20, 35, 32, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--forest);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 1rem;
  font-weight: 800;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  font-size: 0.72rem;
  opacity: 0.76;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--copper);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.header-cta {
  color: var(--ink);
  background: var(--white);
  white-space: nowrap;
}

.site-header.is-scrolled .header-cta,
.site-header.is-open .header-cta {
  color: var(--white);
  background: var(--forest);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  color: currentColor;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle::before {
  display: none;
  width: 20px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
  content: "";
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -2;
  background: url("assets/mktrans-setra-mountains.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 20, 17, 0.82) 0%, rgba(7, 20, 17, 0.58) 36%, rgba(7, 20, 17, 0.1) 76%),
    linear-gradient(180deg, rgba(7, 20, 17, 0.34) 0%, rgba(7, 20, 17, 0.05) 46%, rgba(7, 20, 17, 0.74) 100%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 88svh;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: calc(var(--header-height) + 48px) 0 72px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd59b;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(4rem, 9vw, 8.2rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 4.35rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

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

.hero-lead {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.06rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

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

.button-primary:hover {
  background: var(--forest-2);
  border-color: var(--forest-2);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(10px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 720px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  font-size: 0.88rem;
  font-weight: 700;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(1180px, calc(100% - 36px));
  margin: -34px auto 0;
  position: relative;
  z-index: 5;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-strip a {
  min-height: 68px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: var(--forest);
  border-right: 1px solid var(--line);
  font-weight: 800;
}

.service-strip a:last-child {
  border-right: 0;
}

.service-strip a:hover {
  background: var(--sky);
}

.section,
.split-section,
.trust-section,
.contact-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 108px 0 90px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}

.section-copy p:not(.eyebrow),
.split-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.narrow {
  max-width: 760px;
}

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

.offer-card,
.trust-item {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(24, 42, 38, 0.08);
}

.offer-card svg,
.trust-item svg,
.contact-list svg {
  width: 22px;
  height: 22px;
  color: var(--copper);
  stroke-width: 2.1;
}

.offer-card p,
.trust-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  padding: 44px 0 96px;
}

.split-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}

.steps {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.steps article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.steps span {
  color: var(--copper);
  font-weight: 800;
}

.steps h3,
.steps p {
  margin-bottom: 4px;
}

.compact-section {
  padding-top: 86px;
}

.fleet-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}

.fleet-stat {
  min-height: 150px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.fleet-stat:last-child {
  border-right: 0;
}

.fleet-stat strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1;
}

.fleet-stat span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.fleet-stat.muted {
  background: var(--copper);
}

.trust-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 12px 0 104px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  padding: 96px clamp(18px, 4vw, 52px);
  margin-bottom: 84px;
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius);
}

.contact-section .eyebrow {
  color: #ffd59b;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-list a,
.contact-list > span {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--forest-2);
  box-shadow: 0 0 0 3px rgba(31, 90, 73, 0.14);
}

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

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-weight: 700;
}

svg {
  width: 1em;
  height: 1em;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 46px;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
    position: absolute;
    top: 11px;
    right: 16px;
    z-index: 80;
    color: var(--ink);
    background: var(--white);
    border-color: rgba(255, 255, 255, 0.92);
  }

  .nav-toggle::before {
    display: block;
  }

  .nav-toggle svg {
    display: none;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav a {
    padding: 14px;
  }

  .section-intro,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .split-section {
    padding-top: 22px;
  }

  .split-media img {
    min-height: 390px;
  }

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

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-inner {
    min-height: 86svh;
    width: min(100% - 28px, 1180px);
    padding-bottom: 54px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.05rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 3rem);
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-actions,
  .hero-proof {
    gap: 10px;
  }

  .hero-proof span {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -22px;
  }

  .service-strip a {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 76px 0 62px;
  }

  .offer-grid,
  .fleet-panel,
  .trust-section,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .fleet-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .fleet-stat:last-child {
    border-bottom: 0;
  }

  .trust-section {
    padding-bottom: 72px;
  }

  .contact-section {
    width: 100%;
    margin-bottom: 54px;
    padding-block: 76px;
    border-radius: 0;
  }

  .contact-form {
    padding: 18px;
  }

  .site-footer {
    flex-direction: column;
  }
}
