:root {
  --ink: #151c20;
  --text: #46545d;
  --muted: #73818a;
  --line: #d7e1e4;
  --soft: #f3f7f8;
  --teal: #005a78;
  --teal-dark: #003f55;
  --magenta: #a33a76;
  --max: 1120px;
  --pad: clamp(20px, 5vw, 56px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 28px;
}

.brand img {
  width: 180px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  white-space: nowrap;
}

.nav a:hover {
  color: var(--teal);
}

.nav .nav-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 3px;
  border: 1px solid var(--teal);
  background: var(--teal);
  color: #ffffff;
}

.nav .nav-contact:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.hero {
  padding: clamp(72px, 9vw, 112px) 0 clamp(70px, 8vw, 104px);
  background: var(--ink);
  color: #ffffff;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 410px);
  gap: clamp(46px, 8vw, 96px);
  align-items: center;
}

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

.hero-side {
  display: grid;
  gap: 22px;
  align-content: start;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: clamp(58px, 6vw, 80px);
  font-weight: 850;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 22px;
  color: #cdd9de;
  font-size: 1.16rem;
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 3px;
  font-weight: 850;
}

.button-primary {
  background: var(--teal);
  color: #ffffff;
}

.button-primary:hover {
  background: #007093;
}

.operations-card {
  background: #ffffff;
  color: var(--ink);
  border-top: 6px solid var(--magenta);
  padding: 24px 28px;
}

.card-label {
  margin: 0 0 6px;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.coverage-row {
  padding: 10px 0 14px;
  border-top: 1px solid var(--line);
}

.coverage-row:first-of-type {
  border-top: 0;
}

.coverage-row strong {
  display: block;
  margin-bottom: 2px;
  font-size: 1rem;
}

.coverage-row p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
}

.hero-partner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: fit-content;
  min-height: 50px;
  padding: 12px 14px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.hero-partner > span:first-child {
  color: rgba(244, 248, 250, 0.72);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-partner-logo {
  display: block;
  width: 152px;
  height: 18px;
  overflow: hidden;
}

.hero-partner-logo img {
  width: 152px;
  max-width: none;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 1;
}

.section {
  padding: 108px 0;
}

.services {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

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

.section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--text);
  font-size: 1.04rem;
}

.section-title .eyebrow {
  margin-bottom: 12px;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 124px;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  background: #ffffff;
}

.service-card h3 {
  margin-bottom: 8px;
}

.service-card p,
.service-card ul {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--text);
  font-size: 1rem;
}

.service-card ul {
  display: grid;
  gap: 6px;
  margin-top: 0;
  padding-left: 1.1rem;
}

.service-card li::marker {
  color: var(--teal);
}

.automotive {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.automotive-inner {
  padding-top: 100px;
  padding-bottom: 100px;
}

.automotive-head {
  max-width: 780px;
}

.automotive h2 {
  max-width: 760px;
}

.automotive-copy {
  max-width: 670px;
  margin: 20px 0 0;
  color: var(--text);
  font-size: 1.04rem;
}

.automotive-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.automotive-list li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 134px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  background: var(--soft);
  color: var(--ink);
}

.automotive-list h3 {
  margin: 0 0 8px;
  font-size: 1.04rem;
}

.automotive-list p {
  margin: 0;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.55;
}

.cta {
  padding: clamp(96px, 11vw, 148px) 0;
  background: var(--ink);
  color: #ffffff;
  text-align: center;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cta h2 {
  color: #ffffff;
  margin-bottom: 14px;
}

.cta p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto 30px;
  color: #cdd9de;
  font-size: 1.08rem;
}

.footer {
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  font-size: 0.95rem;
}

.footer img {
  width: 190px;
  margin-bottom: 18px;
}

.footer p {
  margin-bottom: 0;
}

.footer-brand p {
  white-space: nowrap;
}

.footer address {
  margin: 0;
  font-style: normal;
}

.footer a {
  color: inherit;
  font-weight: 400;
}

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

.footer span {
  display: block;
  margin-bottom: 8px;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

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

@media (max-width: 980px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

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

}

@media (max-width: 620px) {
  .brand img {
    width: min(100%, 238px);
  }

  .nav {
    font-size: 13px;
  }

  .hero {
    padding: 72px 0 76px;
  }

  h1 {
    font-size: 46px;
    line-height: 0.98;
  }

  h2 {
    font-size: 33px;
    line-height: 1.08;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .actions,
  .button {
    width: 100%;
  }

  .operations-card {
    padding: 24px 22px;
  }

  .hero-partner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero-partner-logo {
    width: 148px;
    height: 18px;
  }

  .hero-partner-logo img {
    width: 148px;
  }

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

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

  .section {
    padding: 88px 0;
  }

  .automotive-inner {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .automotive-list {
    grid-template-columns: 1fr;
  }

  .automotive-list li {
    min-height: 0;
  }

  .footer-brand p {
    white-space: normal;
  }

}
