:root {
  --red: #ff870f;
  --red-dark: #d96b00;
  --dark: #111318;
  --ink: #1c1f24;
  --muted: #6d7179;
  --line: #e4e6ea;
  --light: #f6f7f9;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(17, 19, 24, 0.14);
  --button-radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.topbar {
  align-items: center;
  background: var(--light);
  color: var(--muted);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 46px;
  padding: 10px clamp(16px, 4vw, 64px);
}

.topbar__item {
  align-items: center;
  display: inline-flex;
  font-size: 0.92rem;
  gap: 9px;
}

.topbar__call {
  color: var(--red);
  font-weight: 800;
}

.icon {
  color: var(--red);
  font-weight: 900;
}

.navbar {
  align-items: stretch;
  background: var(--white);
  box-shadow: 0 6px 25px rgba(17, 19, 24, 0.08);
  display: flex;
  justify-content: space-between;
  min-height: 74px;
  padding-left: clamp(16px, 4vw, 64px);
  position: sticky;
  top: 0;
  z-index: 30;
}

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

.brand__logo {
  display: block;
  height: 52px;
  object-fit: contain;
  width: 34px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--ink);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  margin-top: 3px;
  white-space: nowrap;
}

.nav-menu {
  align-items: center;
  display: flex;
}

.nav-menu a {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-weight: 800;
  height: 100%;
  padding: 0 18px;
}

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

.nav-menu__cta {
  background: var(--red);
  color: var(--white) !important;
  min-width: 150px;
  justify-content: center;
}

.nav-toggle {
  background: transparent;
  border-radius: var(--button-radius);
  border: 0;
  display: none;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  margin-right: 16px;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  width: 25px;
}

.hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(17, 19, 24, 0.92) 0%, rgba(17, 19, 24, 0.78) 42%, rgba(17, 19, 24, 0.28) 100%),
    var(--hero-image, url("https://images.unsplash.com/photo-1727893119356-1702fe921cf9?auto=format&fit=crop&w=2200&q=86")) center right/cover;
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(320px, 760px);
  justify-content: start;
  min-height: clamp(560px, calc(100vh - 120px), 760px);
  overflow: hidden;
  padding: clamp(58px, 8vw, 104px) clamp(16px, 5vw, 80px);
  position: relative;
}

.hero__content {
  grid-column: 1;
  max-width: 760px;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.section__center h2,
.contact h2 {
  letter-spacing: -0.03em;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3rem, 6.2vw, 6rem);
  line-height: 0.98;
  max-width: 760px;
  overflow-wrap: normal;
}

.hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  margin: 24px 0 0;
  max-width: 690px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__actions .btn {
  min-width: 172px;
}

.btn {
  align-items: center;
  border-radius: var(--button-radius);
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
}

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

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

.btn--light {
  background: var(--white);
  color: var(--ink);
}

.hero .btn--light {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.hero .btn--light:hover {
  background: var(--white);
  color: var(--ink);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  background: var(--light);
  padding: clamp(24px, 4vw, 42px);
}

.feature-card--dark {
  background: var(--dark);
  color: var(--white);
}

.feature-card span {
  color: var(--red);
  font-size: 2.2rem;
  font-weight: 900;
}

.feature-card h3 {
  font-size: 1.45rem;
  margin: 12px 0 8px;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.feature-card--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(16px, 5vw, 80px);
}

.about,
.contact {
  align-items: center;
  display: grid;
  gap: clamp(32px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.about__media {
  min-height: 520px;
  position: relative;
}

.about__media img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.experience {
  background: var(--red);
  bottom: 24px;
  color: var(--white);
  left: 24px;
  padding: 22px;
  position: absolute;
  width: min(260px, calc(100% - 48px));
}

.experience strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
}

.experience span {
  display: block;
  margin-top: 8px;
}

.section__copy h2,
.section__center h2,
.contact h2 {
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.04;
}

.section__copy p:not(.eyebrow),
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 24px 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
}

.check-list span {
  color: var(--ink);
  font-weight: 800;
}

.facts {
  background:
    linear-gradient(rgba(17, 19, 24, 0.84), rgba(17, 19, 24, 0.9)),
    url("https://images.unsplash.com/photo-1487754180451-c456f719a1fc?auto=format&fit=crop&w=1900&q=82") center/cover;
  color: var(--white);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: clamp(58px, 7vw, 82px) clamp(16px, 5vw, 80px);
}

.facts div {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 clamp(18px, 3vw, 42px);
  text-align: center;
}

.facts div:last-child {
  border-right: 0;
}

.facts strong {
  color: var(--white);
  display: block;
  font-size: clamp(3.4rem, 5vw, 5.25rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.facts span {
  color: rgba(255, 255, 255, 0.68);
  display: block;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  font-weight: 800;
  margin-top: 18px;
}

.section__center {
  margin: 0 auto 36px;
  max-width: 780px;
  text-align: center;
}

.service-layout {
  align-items: start;
  display: grid;
  gap: 26px;
  grid-template-columns: 320px minmax(0, 1fr);
}

.service-tabs {
  display: grid;
  gap: 12px;
}

.service-tab {
  align-items: center;
  background: var(--light);
  border-radius: var(--button-radius);
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-weight: 900;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 22px;
  text-align: left;
}

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

.service-detail {
  background: var(--light);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  min-height: 420px;
  padding: 28px;
}

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

.service-detail img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.service-detail h3 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 0 0 16px;
}

.service-detail p {
  color: var(--muted);
  line-height: 1.72;
}

.service-detail ul {
  color: var(--ink);
  display: grid;
  font-weight: 800;
  gap: 10px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.brands {
  background: var(--dark);
  color: var(--white);
  padding: 54px clamp(16px, 5vw, 80px);
}

.brands p {
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}

.brand-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(6, minmax(128px, 1fr));
}

.brand-logo-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
  display: grid;
  gap: 14px;
  justify-items: center;
  min-height: 136px;
  padding: 22px 12px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.brand-logo-card:hover {
  background: rgba(255, 135, 15, 0.14);
  border-color: rgba(255, 135, 15, 0.72);
  transform: translateY(-2px);
}

.brand-logo-card img {
  filter: brightness(0) invert(1);
  height: 58px;
  max-width: 132px;
  object-fit: contain;
  opacity: 0.94;
  width: 112px;
}

.brand-logo-card strong {
  font-size: 0.92rem;
  font-weight: 900;
  text-align: center;
}

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

.work-card,
.team-grid article,
.testimonial-card {
  background: var(--light);
  border: 1px solid var(--line);
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comparison figure {
  margin: 0;
  position: relative;
}

.comparison img {
  aspect-ratio: 1 / 0.9;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.comparison figcaption {
  background: rgba(17, 19, 24, 0.82);
  bottom: 10px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  left: 10px;
  padding: 7px 9px;
  position: absolute;
}

.work-card__body,
.testimonial-card,
.team-grid article {
  padding: 22px;
}

.work-card h3,
.team-grid h3 {
  font-size: 1.35rem;
  margin: 8px 0 8px;
}

.work-card span {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.work-card p,
.team-grid p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.phone-big {
  color: var(--red);
  display: inline-block;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900;
  margin-top: 10px;
}

.team-grid article {
  padding: 0;
  overflow: hidden;
}

.team-grid img {
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  width: 100%;
}

.team-grid h3,
.team-grid p {
  padding-left: 22px;
  padding-right: 22px;
}

.team-grid p {
  padding-bottom: 22px;
}

.testimonials {
  background: var(--light);
  padding: clamp(64px, 9vw, 112px) clamp(16px, 5vw, 80px);
}

.testimonial-card {
  background: var(--white);
}

.testimonial-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.testimonial-card span {
  color: var(--red);
  display: block;
  font-weight: 900;
  margin-top: 16px;
}

.contact iframe {
  border: 0;
  height: 470px;
  width: 100%;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.social-row a,
.social-row span {
  background: var(--light);
  border-radius: var(--button-radius);
  color: var(--ink);
  font-weight: 900;
  padding: 12px 14px;
}

.site-footer {
  background:
    linear-gradient(rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.88)),
    url("https://images.unsplash.com/photo-1487754180451-c456f719a1fc?auto=format&fit=crop&w=1900&q=82") center/cover;
  color: var(--white);
}

.footer-info {
  display: grid;
  gap: clamp(34px, 5vw, 78px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: clamp(62px, 8vw, 92px) clamp(16px, 5vw, 80px);
}

.footer-info__column {
  display: grid;
  align-content: start;
  gap: 20px;
  min-width: 0;
}

.footer-info h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1;
  margin: 0 0 12px;
}

.footer-info a,
.footer-info p,
.hours-list,
.footer-services {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.footer-info a {
  align-items: flex-start;
  display: inline-flex;
  gap: 14px;
  max-width: 430px;
  min-width: 0;
}

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

.footer-info a > span:first-child {
  color: var(--red);
  flex: 0 0 auto;
  font-weight: 900;
  line-height: 1.5;
}

.footer-info a > span:last-child {
  color: inherit;
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: break-word;
}

.hours-list {
  display: grid;
  gap: 22px;
}

.hours-list div {
  display: grid;
  gap: 6px;
}

.hours-list dt {
  color: var(--white);
  font-weight: 900;
}

.hours-list dd {
  margin: 0;
}

.footer-services {
  display: grid;
  gap: 13px;
  list-style: none;
  padding: 0;
}

.footer-services li {
  align-items: center;
  display: flex;
  gap: 12px;
}

.footer-services li::before {
  color: var(--red);
  content: "›";
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  padding: 30px clamp(16px, 5vw, 80px);
}

.footer-bottom strong,
.footer-bottom span {
  display: block;
}

.footer__logo {
  height: auto;
  mix-blend-mode: screen;
  width: min(240px, 70vw);
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.64);
  margin-top: 5px;
}

.sticky-call {
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(255, 135, 15, 0.82);
  border-radius: var(--button-radius);
  bottom: 15px;
  box-shadow: var(--shadow);
  color: var(--white);
  display: none;
  font-weight: 900;
  justify-content: center;
  left: 15px;
  min-height: 56px;
  position: fixed;
  right: 15px;
  z-index: 40;
}

@media (max-width: 1040px) {
  .topbar {
    display: none;
  }

  .navbar {
    cursor: pointer;
    min-height: 68px;
    padding-left: 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    background: var(--white);
    box-shadow: var(--shadow);
    display: none;
    left: 0;
    position: absolute;
    right: 0;
    top: 68px;
  }

  .nav-menu.is-open {
    display: grid;
  }

  .nav-menu a {
    height: auto;
    min-height: 52px;
  }

  .hero,
  .about,
  .contact,
  .service-layout,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 680px;
  }

  .hero__content {
    grid-column: auto;
  }

  .feature-grid,
  .facts,
  .brand-list,
  .footer-info,
  .work-grid,
  .team-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .facts div:nth-child(2n) {
    border-right: 0;
  }

  .facts div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-bottom: 34px;
  }

  .facts div:nth-child(n + 3) {
    padding-top: 34px;
  }
}

@media (max-width: 680px) {
  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand span {
    min-width: 0;
  }

  .brand strong {
    font-size: clamp(1rem, 6vw, 1.28rem);
  }

  .brand small {
    display: block;
    font-size: clamp(0.62rem, 3.2vw, 0.78rem);
    line-height: 1.15;
    white-space: normal;
  }

  .brand__logo {
    height: 44px;
    width: 28px;
  }

  .hero {
    min-height: 560px;
  }

  .hero__actions,
  .comparison,
  .feature-grid,
  .facts,
  .brand-list,
  .footer-info,
  .work-grid,
  .team-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero__actions .btn {
    min-width: 0;
  }

  .facts div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 0;
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .facts div:last-child {
    border-bottom: 0;
  }

  .facts div:first-child {
    padding-top: 0;
  }

  .section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .about__media {
    min-height: 380px;
  }

  .contact {
    padding-left: 14px;
    padding-right: 14px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 88px;
  }

  .sticky-call {
    display: flex;
  }
}
