:root {
  --red: #d90b18;
  --red-dark: #a50712;
  --black: #070707;
  --ink: #141414;
  --muted: #686868;
  --line: #e7e7e2;
  --paper: #f6f6f2;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--red);
  color: var(--white);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(7, 7, 7, 0.96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

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

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-weight: 900;
  line-height: 1;
}

.site-logo {
  width: 152px;
  height: auto;
  display: block;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-menu a {
  position: relative;
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border: 0;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-red {
  background: var(--red);
}

.btn-red:hover,
.btn-red:focus-visible {
  background: var(--red-dark);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.lang-toggle,
.nav-toggle,
.slider-btn,
.to-top {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.lang-toggle {
  width: 46px;
  height: 42px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 42px;
  border-radius: 4px;
  gap: 4px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 840px;
  display: grid;
  align-items: center;
  padding: 110px 0 150px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 1) 0%, rgba(7, 7, 7, 0.92) 38%, rgba(7, 7, 7, 0.36) 72%, rgba(7, 7, 7, 0.72) 100%),
    linear-gradient(180deg, rgba(7, 7, 7, 0.55), rgba(7, 7, 7, 0.08) 44%, rgba(7, 7, 7, 0.92));
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: 72%;
  background: url("assets/hero-mechanic.jpg") center / cover no-repeat;
  opacity: 0.96;
}

.hero-grid {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 620px;
  padding-top: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(50px, 6.2vw, 86px);
  line-height: 0.92;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-title {
  margin: 18px 0 0;
  max-width: 540px;
  color: var(--white);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.18;
  font-weight: 500;
  text-transform: none;
}

.hero-text {
  max-width: 520px;
  margin: 18px 0 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

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

.brand-panel {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(430px, 39.25%) minmax(0, 1fr);
  width: 100%;
  max-width: none;
  min-height: 126px;
  padding: 0;
  transform: none;
  background: var(--black);
  box-shadow: 0 -16px 40px rgba(0, 0, 0, 0.2);
}

.experience-card {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 126px;
  padding: 20px 76px 20px 30px;
  background: var(--red);
}

.experience-copy {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.experience-copy b {
  display: block;
  font-size: clamp(54px, 5.2vw, 78px);
  line-height: 0.9;
  font-weight: 950;
}

.experience-copy span {
  display: block;
  max-width: 160px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}


.brand-slider {
  min-width: 0;
  height: 126px;
  display: flex;
  align-items: center;
  padding: 0 7vw 0 5vw;
  background: var(--black);
}

.slider-btn {
  display: none;
}

.brand-viewport {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: none;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.brand-viewport::-webkit-scrollbar,
.project-viewport::-webkit-scrollbar {
  display: none;
}

.brand-viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.brand-track {
  display: flex;
  align-items: center;
  gap: clamp(42px, 4.8vw, 78px);
  min-width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-item {
  flex: 0 0 96px;
  height: 126px;
  display: grid;
  place-items: center;
  color: var(--white);
  scroll-snap-align: start;
  user-select: none;
}

.brand-logo {
  width: 88px;
  height: 68px;
  object-fit: contain;
  opacity: 0.95;
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.08));
  transition: opacity 180ms ease, transform 180ms ease;
}

.brand-item:hover .brand-logo {
  opacity: 1;
  transform: translateY(-2px);
}

.section {
  position: relative;
  padding: 104px 0;
}

.section-head {
  margin-bottom: 42px;
}

.section-head.center {
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.13;
  font-weight: 950;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

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

.about {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(217, 11, 24, 0.03), rgba(255, 255, 255, 0) 30%),
    var(--white);
}

.about::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border: 18px solid rgba(0, 0, 0, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.about::after {
  top: -150px;
  right: -120px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 76px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 590px;
}

.about-visual::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 134px;
  width: 276px;
  height: 410px;
  border: 5px solid var(--red);
  border-radius: 8px;
}

.about-img {
  position: absolute;
  z-index: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-img-main {
  left: 64px;
  top: 160px;
  width: 250px;
  height: 410px;
}

.about-img-side {
  right: 20px;
  top: 42px;
  width: 286px;
  height: 340px;
}

.score-card {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 54px;
  width: 310px;
  min-height: 144px;
  display: grid;
  align-content: center;
  padding: 26px 32px;
  border: 8px solid var(--white);
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow);
}

.score-card strong {
  font-size: 48px;
  line-height: 1;
  font-weight: 950;
}

.score-card span {
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-copy > p:not(.eyebrow),
.why-copy > p,
.contact-copy > p {
  max-width: 620px;
  margin: 22px 0;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 26px 0 20px;
  background: var(--paper);
}

.tab {
  min-height: 58px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
}

.tab.is-active {
  background: var(--red);
  color: var(--white);
}

.tab-copy p {
  margin: 0 0 22px;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 4px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.services {
  overflow: hidden;
  background: var(--white);
}

.service-heading strong {
  color: var(--red);
}

.service-grid {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x pan-y;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: max(24px, calc((100vw - 1180px) / 2));
  -webkit-overflow-scrolling: touch;
  padding: 0 max(24px, calc((100vw - 1180px) / 2)) 48px;
}

.service-grid::-webkit-scrollbar {
  display: none;
}

.service-grid.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.service-grid.is-dragging * {
  pointer-events: none;
}

.service-card {
  position: relative;
  flex: 0 0 410px;
  overflow: hidden;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.09);
  user-select: none;
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  pointer-events: none;
}

@media (pointer: coarse) {
  .service-grid {
    cursor: default;
    scroll-snap-type: x proximity;
    touch-action: auto;
  }

  .service-card {
    scroll-snap-stop: normal;
  }
}

.service-body {
  position: relative;
  min-height: 218px;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  padding: 72px 34px 30px;
}

.service-label {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 78px;
  height: 86px;
  display: grid;
  place-items: start center;
  padding-top: 14px;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 50% 100%, 0 72%);
  background: var(--red);
  color: var(--white);
  font-size: 31px;
  font-weight: 950;
  line-height: 1;
  transform: none;
}

.service-icon {
  position: absolute;
  left: 50%;
  top: -38px;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 18px;
  border: 6px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  transform: translateX(-50%);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-body p {
  max-width: 300px;
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.projects {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 25%, rgba(255, 255, 255, 0) 25% 50%, rgba(255, 255, 255, 0.03) 50% 75%, rgba(255, 255, 255, 0) 75%),
    var(--black);
  color: var(--white);
}

.projects h2 {
  color: var(--white);
}

.project-slider {
  margin-top: 36px;
}

.project-viewport {
  display: flex;
  gap: clamp(14px, 1.4vw, 24px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  padding: 0 max(14px, 2vw) 8px;
  scroll-padding-inline: max(14px, 2vw);
}

.project-viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
  user-select: none;
}

.project-viewport.is-dragging * {
  pointer-events: none;
}

.project-card {
  flex: 0 0 clamp(300px, calc((100vw - 92px) / 3), 520px);
  aspect-ratio: 1 / 1;
  margin: 0;
  scroll-snap-align: center;
  overflow: hidden;
  background: #111;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 30px;
  padding: 0 14px;
}

.project-dots button {
  width: 14px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  transition: width 180ms ease, background 180ms ease;
}

.project-dots button.is-active {
  width: 48px;
  background: var(--red);
}

.why {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding-top: 120px;
  padding-bottom: 0;
}

.why-marquee {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 0;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
}

.why-marquee div {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  min-width: max-content;
  color: rgba(217, 11, 24, 0.035);
  font-size: 92px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
  animation: why-marquee 22s linear infinite;
}

.why-marquee b {
  color: rgba(217, 11, 24, 0.075);
}

@keyframes why-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-34%);
  }
}

.why-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(430px, 0.74fr) minmax(620px, 1.26fr);
  gap: 70px;
  align-items: center;
  width: min(1540px, calc(100% - 48px));
}

.why-copy {
  max-width: 560px;
  justify-self: end;
  padding-top: 26px;
}

.why-copy h2 strong {
  color: var(--red);
}

.why-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.why-points li {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding-left: 34px;
  color: var(--ink);
  font-weight: 900;
}

.why-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 13px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
}

.why-contact {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--ink);
}

.why-contact small,
.why-contact b {
  display: block;
}

.why-contact small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.why-contact b {
  margin-top: 3px;
  font-size: 17px;
}

.why-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  margin-right: calc((50vw - 50%) * -1);
  background: var(--white);
}

.why-visual img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: left top;
}

.testimonials {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background: #eeeeee;
  color: var(--ink);
}

.testimonial-grid {
  position: relative;
  z-index: 1;
}

.testimonial-head {
  text-align: center;
}

.testimonial-head .eyebrow {
  justify-content: center;
}

.testimonial-head h2 {
  max-width: 690px;
  margin-inline: auto;
}

.testimonial-head h2 strong {
  color: var(--red);
}

.testimonial-viewport {
  margin-top: 42px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 4px 12px;
}

.testimonial-viewport::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  display: flex;
  gap: 28px;
}

.testimonial-card {
  position: relative;
  flex: 0 0 calc((100% - 56px) / 3);
  min-height: 210px;
  overflow: hidden;
  scroll-snap-align: center;
  padding: 34px 32px 32px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.05);
}

.testimonial-card::after {
  content: "”";
  position: absolute;
  right: 28px;
  bottom: -34px;
  color: rgba(0, 0, 0, 0.035);
  font-size: 160px;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.testimonial-card h3 {
  color: var(--ink);
  font-size: 21px;
}

.testimonial-card-head span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.testimonial-stars {
  min-width: 100px;
  color: var(--red) !important;
  font-size: 18px !important;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: right;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 700;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 42px;
}

.testimonial-controls button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 19px;
  line-height: 1;
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.testimonial-controls button:hover,
.testimonial-controls button:focus-visible {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 70px;
  align-items: start;
}

.faq-copy h2 strong {
  color: var(--red);
}

.faq-copy p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 18px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 22px 44px 22px 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 21px;
  right: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  max-width: 680px;
  margin: 0;
  padding: 0 44px 22px 0;
  font-weight: 700;
}

.contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 70px;
  align-items: start;
}

.contact-lines {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-line {
  margin: 0;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.contact-line > span:last-child {
  min-width: 0;
}

.contact-line span span,
.footer-contact .contact-line span span {
  display: block;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-line b {
  display: block;
  color: inherit;
  overflow-wrap: anywhere;
}

.contact-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
}

.contact-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: #151515;
  color: var(--white);
  padding: 14px 15px;
  outline: 0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.72) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72) 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 12px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form option {
  background: #151515;
  color: var(--white);
}

.footer {
  position: relative;
  overflow: hidden;
  background: #080808;
  color: var(--white);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.65fr 0.95fr;
  gap: 64px;
  padding: 68px 0 58px;
}

.footer-grid > div {
  min-width: 0;
}

.footer-grid > div:not(:first-child) {
  padding-left: 0;
  border-left: 0;
}

.footer-brand {
  margin-bottom: 28px;
}

.footer p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.66);
}

.footer-seo {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78) !important;
  font-weight: 700;
}

.footer h2 {
  position: relative;
  margin-bottom: 22px;
  padding-bottom: 12px;
  color: var(--white);
  font-size: 18px;
}

.footer h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 76px;
  height: 2px;
  background: var(--red);
}

.footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  transition: color 180ms ease;
}

.footer li a:hover,
.footer li a:focus-visible {
  color: var(--white);
}

.footer-contact {
  display: grid;
  gap: 14px;
  font-style: normal;
}

.footer-contact a,
.footer-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.footer-contact > p:not(.contact-line) span {
  display: block;
  margin-bottom: 2px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-contact .contact-line {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  font-size: 15px;
}

.footer-contact .contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(217, 11, 24, 0.18);
  color: var(--white);
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.to-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 20px;
}

@media (max-width: 1100px) {
  .hero h1 {
    font-size: 58px;
  }

  .hero-title {
    font-size: 29px;
  }

  .brand-panel {
    grid-template-columns: minmax(360px, 41%) minmax(0, 1fr);
  }

  .experience-card {
    padding-right: 46px;
  }

  .brand-slider {
    padding-right: 5vw;
    padding-left: 4vw;
  }

  .about-grid,
  .why-layout,
  .testimonial-grid,
  .faq-grid,
  .contact-grid {
    gap: 46px;
  }

  .service-body {
    padding: 66px 28px 28px;
  }

}

@media (max-width: 920px) {
  .nav {
    min-height: 72px;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .nav-cta {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 82px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0b0b0b;
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
  }

  body.nav-open .nav-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 15px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-menu a:last-child {
    border-bottom: 0;
  }

  .nav-menu a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 0;
  }

  .hero-photo {
    width: 100%;
    opacity: 0.46;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(7, 7, 7, 0.96), rgba(7, 7, 7, 0.74), rgba(7, 7, 7, 1));
  }

  .hero-content {
    padding: 38px 0 100px;
  }

  .brand-panel {
    position: relative;
    left: auto;
    width: 100%;
    transform: none;
    grid-template-columns: 1fr;
  }

  .experience-card {
    justify-content: center;
    padding: 24px 20px;
  }

  .brand-slider {
    height: 118px;
    padding: 0 20px;
  }

  .about-grid,
  .why-layout,
  .testimonial-grid,
  .faq-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:not(:first-child) {
    padding-left: 0;
    border-left: 0;
  }

  .about-visual {
    max-width: 570px;
    margin-inline: auto;
  }

  .service-grid {
    max-width: none;
  }

  .why {
    padding-top: 96px;
    padding-bottom: 0;
  }

  .why-layout {
    width: min(1180px, calc(100% - 40px));
  }

  .why-copy {
    max-width: none;
    justify-self: start;
    padding-top: 0;
  }

  .why-visual {
    min-height: 430px;
    margin-right: 0;
  }

  .why-visual img {
    min-height: 430px;
  }

  .testimonial-card {
    flex: 0 0 330px;
  }

  .project-card {
    flex-basis: clamp(280px, 44vw, 420px);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1180px, calc(100% - 28px));
  }

  .site-logo {
    width: 124px;
  }

  .lang-toggle {
    width: 42px;
    height: 38px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .brand-slider {
    height: 104px;
    padding: 0 18px;
  }

  .brand-track {
    gap: 34px;
  }

  .brand-item {
    flex-basis: 74px;
    height: 104px;
  }

  .brand-logo {
    width: 70px;
    height: 58px;
  }

  .experience-card {
    justify-content: center;
    padding: 20px 18px;
  }

  .experience-copy b {
    font-size: 46px;
  }

  .experience-copy span {
    max-width: 128px;
    font-size: 17px;
  }

  .section {
    padding: 72px 0;
  }

  h2 {
    font-size: 32px;
  }

  .eyebrow {
    font-size: 12px;
  }

  .eyebrow::before,
  .eyebrow::after {
    width: 22px;
  }

  .about-visual {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: 12px;
    min-height: 0;
    max-width: none;
    margin-inline: 0;
  }

  .about-visual::before {
    display: none;
  }

  .about-img {
    position: static;
    width: 100%;
    object-fit: cover;
  }

  .about-img-main {
    height: 270px;
  }

  .about-img-side {
    height: 270px;
  }

  .score-card {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    min-height: 120px;
    padding: 22px 24px;
    border: 0;
  }

  .score-card strong {
    font-size: 38px;
  }

  .tabs,
  .check-list {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 210px;
  }

  .service-body {
    min-height: 210px;
    padding: 64px 22px 28px;
  }

  .service-label {
    left: 0;
    width: 64px;
    height: 72px;
    padding-top: 12px;
    font-size: 25px;
  }

  .service-icon {
    width: 68px;
    height: 68px;
    top: -34px;
    padding: 16px;
  }

  .service-card {
    flex-basis: 82vw;
  }

  .why-points {
    grid-template-columns: 1fr;
  }

  .why-visual {
    min-height: 360px;
  }

  .why-visual img {
    min-height: 360px;
  }

  .project-viewport {
    gap: 14px;
    padding-inline: 14px;
  }

  .project-card {
    flex-basis: min(86vw, 390px);
  }

  .testimonials {
    padding: 74px 0 78px;
  }

  .faq-item summary {
    font-size: 16px;
  }

  .faq-item p {
    padding-right: 0;
  }

  .testimonial-card {
    flex-basis: min(330px, calc(100vw - 48px));
    min-height: 230px;
    padding: 28px 24px 30px;
  }

  .testimonial-card-head {
    display: grid;
    gap: 12px;
  }

  .testimonial-stars {
    text-align: left;
  }

  .testimonial-controls {
    margin-top: 30px;
  }

  .contact-form {
    padding: 22px;
  }

  .footer-grid {
    gap: 38px;
  }

  .footer-grid > div:not(:first-child) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
