:root {
  --orange: #f39200;
  --blue: #192033;
  --muted: #5f6673;
  --line: #d8dbe0;
  --soft: #f6f7f9;
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--blue);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  background: #fff;
  padding: 18px 20px 12px;
}
.logo-wrap {
  width: min(850px, 92vw);
  margin: 0 auto;
  overflow: hidden;
}
.logo-wrap img {
  width: 100%;
  height: auto;
}

.hero {
  height: clamp(300px, 34vw, 560px);
  overflow: hidden;
  background: #dfe3e7;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.intro {
  padding: clamp(50px, 6vw, 88px) 0 clamp(46px, 6vw, 78px);
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
}
h1 {
  max-width: 1050px;
  margin: 0 auto;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.18;
  text-align: center;
}
.three-points {
  max-width: 1050px;
	display: block;
  margin: 0 auto;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.18;
  text-align: center;
	font-weight: 700;
	color: #666666;
}
.rule,
.contact-rule {
  display: block;
  width: 170px;
  height: 3px;
  margin: 25px auto 24px;
  background: var(--orange);
}
.lead {
  max-width: 980px;
  margin: 0 auto clamp(44px, 6vw, 72px);
  color: #343b4a;
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  text-align: center;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}
.services {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  border-block: 1px solid var(--line);
}
.service-card {
  position: relative;
  padding: 28px 18px 25px;
  text-align: center;
}
.service-card + .service-card::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 0;
  width: 1px;
  background: var(--orange);
  opacity: .7;
}
.service-card img {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  border-radius: 50%;
  object-fit: cover;
}
.service-card h2 {
  margin: 0;
  font-size: clamp(1.0rem, 1.1vw, 1.2rem);
  line-height: 1.4;
}

.contact {
  padding: 26px 0 20px 38px;
  border-left: 1px solid #aeb3bb;
}
.contact h2 {
  margin: 0;
  font-size: 1.25rem;
  text-transform: uppercase;
}
.contact-rule {
  width: 105px;
  height: 2px;
  margin: 12px 0 20px;
}
.contact address {
  display: grid;
  gap: 16px;
  font-style: normal;
}
.contact a,
.contact p {
  display: flex;
  gap: 13px;
  align-items: center;
  margin: 0;
  text-decoration: none;
}
.contact a:hover { color: var(--orange); }
.icon {
  width: 24px;
  flex: 0 0 24px;
  font-size: 1.2rem;
  text-align: center;
}
.linkedin {
  display: inline-grid;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  place-items: center;
  border-radius: 2px;
  color: #fff;
  background: var(--blue);
  font-size: .85rem;
  font-weight: 700;
}

footer {
  padding: 22px 0;
  color: #69707c;
  background: var(--soft);
  font-size: .9rem;
  text-align: center;
}
footer p { margin: 0; }

@media (max-width: 1120px) {
  .content-grid { grid-template-columns: 1fr; }
  .contact {
    padding: 28px 0 0;
    border-top: 1px solid #aeb3bb;
    border-left: 0;
  }
  .contact address { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .service-card { border-bottom: 1px solid var(--line); }
  .service-card + .service-card::before { display: none; }
  .service-card:nth-child(odd) { border-right: 1px solid var(--orange); }
  .service-card:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }
	.small-no-show {
	display: none;
	}
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .site-header { padding: 12px 8px 8px; }
  .hero { height: 250px; }
  .services { grid-template-columns: 1fr; }
  .service-card,
  .service-card:nth-child(odd) { border-right: 0; }
  .service-card:last-child { grid-column: auto; }
  .contact address { grid-template-columns: 1fr; }
  .lead { text-align: left; }
}
