:root {
  --blue: #ffffff;
  --blue-dark: #f2f2f2;
  --accent-blue: #005bff;
  --navy: #ffffff;
  --text: #f4f4f5;
  --muted: #b7bbc3;
  --line: rgba(255, 255, 255, 0.1);
  --glass: #111113;
  --shadow: none;
  --soft-shadow: none;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 500;
  color: var(--text);
  background: #050505;
}

body.menu-open {
  overflow: hidden;
}

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

svg {
  display: block;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  min-height: 104px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 18px 34px;
  border: 0;
  border-radius: 32px;
  background: #111113;
  box-shadow: none;
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  line-height: 1;
}

.brand strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0.045em;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 38px;
  font-size: 15px;
  font-weight: 750;
}

.main-nav a {
  position: relative;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.82);
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav a.active {
  color: #fff;
}

.phone-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 9px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.phone-button {
  min-width: 184px;
  padding: 18px 22px;
  color: #050505;
  background: #fff;
  box-shadow: none;
}

.phone-button svg,
.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--blue);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: #050505;
}

.hero {
  position: relative;
  min-height: auto;
  overflow: visible;
  padding: 150px max(5vw, 28px) 34px;
  border-radius: 0;
  background: transparent;
}

.hero::after {
  position: absolute;
  inset: 0 0 -140px;
  z-index: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 42%, rgba(5, 5, 5, 0.72) 74%, #050505 100%);
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
}

.hero-media {
  position: relative;
  min-height: 540px;
  margin-right: 0;
  overflow: hidden;
  border-radius: 28px;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.64) 16%, rgba(5, 5, 5, 0.08) 42%, rgba(5, 5, 5, 0) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.12), rgba(5, 5, 5, 0.2));
  content: "";
  pointer-events: none;
}

.hero-image {
  display: block;
  width: 100%;
  min-height: inherit;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  box-shadow: none;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(52px, 5.3vw, 92px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
}

h1 span {
  color: inherit;
}

h1 .headline-blue {
  color: var(--accent-blue);
}

.hero-text {
  max-width: 450px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 54px;
}

.button {
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 15px;
}

.button.primary {
  color: #050505;
  background: #fff;
  box-shadow: none;
}

.button.secondary,
.button.outline {
  color: #fff;
  background: #151517;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.button.light {
  min-width: 220px;
  color: #050505;
  background: #fff;
  box-shadow: none;
}

.button.centered {
  display: flex;
  width: fit-content;
  margin: 26px auto 0;
}

.trust-tiles {
  position: absolute;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  width: min(720px, calc(100% - 56px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 18px;
  background: rgba(5, 5, 5, 0.9);
  box-shadow: none;
  backdrop-filter: none;
}

.trust-tiles article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 0;
}

.trust-tiles article + article {
  padding-left: 18px;
  box-shadow: none;
}

.tile-icon {
  color: var(--blue);
}

.tile-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-tiles h3 {
  margin-bottom: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-tiles p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.5;
}

.section {
  width: calc(100% - 96px);
  max-width: 1560px;
  margin: 0 auto;
}

.services {
  position: relative;
  z-index: 2;
  padding: 62px 0 78px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 22px;
  text-align: left;
}

.section-heading .eyebrow {
  margin-bottom: 9px;
  font-size: 12px;
}

.section h2,
.cta h2 {
  color: var(--navy);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 950;
}

.section-heading h2::after {
  display: none;
}

.section-heading > a {
  margin-bottom: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.section-heading > a span {
  margin-left: 12px;
}

.service-list {
  display: grid;
}

.service-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 86px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-row svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: invert(1);
}

.service-row h3 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 17px;
  font-weight: 850;
}

.service-row p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.service-row > span {
  color: #fff;
  font-size: 20px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  overflow: hidden;
  border-radius: 16px;
  background: #111113;
  box-shadow: none;
}

.stats-strip div {
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 28px 20px;
}

.stats-strip div + div {
  box-shadow: none;
}

.stats-strip strong {
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
  text-align: center;
}

.stats-strip span {
  color: rgba(255, 255, 255, 0.74);
}

.about {
  padding-bottom: 26px;
}

.about-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  align-items: center;
  padding: 24px 34px 28px;
  border-radius: 28px;
  background: #111113;
  box-shadow: none;
}

.about-image {
  min-height: 270px;
  display: grid;
  place-items: center start;
  overflow: hidden;
  padding-left: 46px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0)),
    url("https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?auto=format&fit=crop&w=1200&q=86") center / cover;
}

.quality-badge {
  display: grid;
  justify-items: center;
  gap: 9px;
  color: var(--blue);
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.quality-badge svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-copy {
  padding: 10px 0;
}

.about-copy h2 {
  margin-bottom: 18px;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 22px 0 24px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.82);
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #050505;
  background: #fff;
  content: "\2713";
  font-size: 12px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.cta {
  width: calc(100% - 96px);
  max-width: 1560px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  margin: 0 auto 38px;
  padding: 26px 36px;
  border-radius: 10px;
  color: #050505;
  background: #fff;
  box-shadow: none;
}

.cta h2 {
  margin-bottom: 8px;
  color: #050505;
  font-size: 20px;
}

.cta p {
  max-width: 590px;
  margin-bottom: 0;
  line-height: 1.55;
}

.cta-icon {
  width: 82px;
  height: 78px;
  display: grid;
  place-items: center;
  border-right: 0;
}

.cta-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: #050505;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer {
  width: calc(100% - 96px);
  max-width: 1560px;
  margin: 0 auto;
  padding: 22px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.35fr;
  gap: 52px;
  padding-bottom: 28px;
}

.footer-grid > div + div {
  border-left: 0;
  padding-left: 34px;
}

.footer h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.footer p,
.footer a {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.45;
}

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

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

.socials {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.socials a {
  color: #fff;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.52);
}

.footer-bottom p,
.footer-bottom a {
  display: inline;
  font-size: 13px;
}

@media (max-width: 1050px) {
  .site-header {
    width: calc(100% - 34px);
    min-height: 84px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 16px 20px;
  }

  .main-nav {
    position: fixed;
    top: 96px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 20px;
    border-radius: 22px;
    background: #111113;
    box-shadow: none;
    backdrop-filter: none;
  }

  .menu-open .main-nav {
    display: flex;
  }

  .phone-button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-top: 150px;
  }

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

  .hero-media {
    min-height: 360px;
    order: -1;
    margin-right: 0;
    border-radius: 18px;
  }

  .hero-media::before {
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.4));
  }

  .trust-tiles {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .trust-tiles article {
    padding: 16px;
  }

  .trust-tiles article + article {
    padding-left: 16px;
    box-shadow: none;
  }

  .about-card {
    grid-template-columns: 1fr;
  }

  .cta {
    grid-template-columns: auto 1fr;
  }

  .cta .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 14px;
    width: calc(100% - 24px);
    border-radius: 24px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 8px;
  }

  .hero {
    padding: 126px 18px 20px;
    border-radius: 0;
  }

  h1 {
    font-size: 48px;
  }

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

  .hero-actions,
  .button,
  .button.centered {
    width: 100%;
  }

  .hero-media {
    min-height: 280px;
    border-radius: 16px;
  }

  .trust-tiles {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 14px;
    background: #111113;
  }

  .trust-tiles article,
  .trust-tiles article + article {
    padding: 16px;
  }

  .section-heading {
    display: grid;
    gap: 12px;
  }

  .section-heading > a {
    margin-bottom: 0;
  }

  .section,
  .cta,
  .footer {
    width: calc(100% - 28px);
    max-width: none;
  }

  .service-row {
    grid-template-columns: 44px 1fr auto;
    gap: 16px;
    min-height: 82px;
  }

  .service-row svg {
    width: 32px;
    height: 32px;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .stats-strip div + div {
    box-shadow: none;
  }

  .about-card {
    padding: 16px;
    border-radius: 20px;
  }

  .about-image {
    min-height: 230px;
    padding-left: 26px;
  }

  .cta {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .cta-icon {
    width: 60px;
    height: 56px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-grid > div + div {
    border-left: 0;
    padding-left: 0;
  }

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