:root {
  --orange: #ff4f0a;
  --orange-2: #ff6a00;
  --black: #050505;
  --panel: #0a0a0a;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.18);
  --headline: "Barlow Condensed", sans-serif;
  --body: "Barlow", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-padding-top: 92px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.site-nav {
  display: none;
}

.hero {
  min-height: 100svh;
  background:
    radial-gradient(circle at 76% 30%, rgba(255, 79, 10, 0.15), transparent 24%),
    var(--black);
  overflow: hidden;
}

.hero-desktop {
  display: block;
  width: 100vw;
  background: var(--black);
}

.desktop-frame {
  position: relative;
  width: 100vw;
  aspect-ratio: 1672 / 941;
  background: var(--black);
}

.desktop-frame > .hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desktop-nav-logo {
  position: absolute;
  left: 2.7%;
  top: 1.4%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25.5%;
  height: 10.1%;
  background: #050505;
  border-radius: 4px;
  overflow: hidden;
}

.desktop-nav-logo img {
  width: auto;
  height: 88%;
  max-width: 92%;
  object-fit: contain;
}

.hotspot {
  position: absolute;
  z-index: 3;
  display: block;
  border-radius: 10px;
}

.hotspot:focus-visible {
  outline: 3px solid var(--orange-2);
  outline-offset: 4px;
}

.hs-logo {
  left: 3.2%;
  top: 2.2%;
  width: 23.2%;
  height: 10.2%;
}

.hs-services {
  left: 44%;
  top: 4.6%;
  width: 7.1%;
  height: 5.8%;
}

.hs-about {
  left: 53.2%;
  top: 4.6%;
  width: 5.8%;
  height: 5.8%;
}

.hs-reviews {
  left: 60.6%;
  top: 4.6%;
  width: 7.5%;
  height: 5.8%;
}

.hs-faq {
  left: 69.3%;
  top: 4.6%;
  width: 4.3%;
  height: 5.8%;
}

.hs-book {
  left: 83.9%;
  top: 2.7%;
  width: 13.4%;
  height: 8%;
}

.hs-call {
  left: 4.3%;
  top: 75.7%;
  width: 19.6%;
  height: 8.1%;
}

.hs-quote {
  left: 25.3%;
  top: 75.7%;
  width: 17.4%;
  height: 8.1%;
}

.mobile-hero {
  display: none;
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 88px;
  }

  .hero {
    min-height: 100svh;
    background:
      linear-gradient(180deg, rgba(255, 79, 10, 0.08), transparent 34%),
      radial-gradient(circle at 100% 16%, rgba(255, 79, 10, 0.22), transparent 30%),
      var(--black);
  }

  .hero-desktop {
    display: none;
  }

  .mobile-hero {
    position: relative;
    display: grid;
    grid-template-rows: auto auto 1fr;
    width: 100%;
    max-width: 100vw;
    min-height: 100svh;
    overflow: hidden;
    padding-top: 84px;
    background: var(--black);
  }

  .mobile-hero::before {
    content: "";
    position: absolute;
    left: -18%;
    right: -18%;
    top: 34%;
    height: 66%;
    background:
      repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.055) 0 2px, transparent 2px 15px),
      repeating-linear-gradient(68deg, rgba(255, 255, 255, 0.04) 0 3px, transparent 3px 18px),
      radial-gradient(circle at 16% 20%, rgba(255, 79, 10, 0.16), transparent 30%);
    opacity: 0.55;
    transform: rotate(-9deg);
    pointer-events: none;
  }

  .mobile-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(5, 5, 5, 0.28) 47%, rgba(5, 5, 5, 0.82) 100%),
      radial-gradient(circle at 8% 68%, rgba(255, 79, 10, 0.14), transparent 32%);
    pointer-events: none;
  }

  .mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(5, 5, 5, 0.92);
    padding: 10px 16px;
    backdrop-filter: blur(14px);
  }

  .mobile-nav-logo {
    width: auto;
    height: 64px;
    max-width: min(206px, 60vw);
    object-fit: contain;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    padding: 11px;
  }

  .menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 999px;
    background: var(--white);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 92px;
    z-index: 30;
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 5, 5, 0.97);
    padding: 10px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.5);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

  .mobile-menu a {
    border-radius: 6px;
    padding: 13px 14px;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--headline);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .mobile-menu a:last-child {
    background: linear-gradient(180deg, var(--orange-2), var(--orange));
    color: var(--white);
    text-align: center;
  }

  .mobile-copy {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    overflow: hidden;
    padding: 28px 20px 26px;
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.92)),
      repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 15px),
      repeating-linear-gradient(68deg, rgba(255, 255, 255, 0.04) 0 3px, transparent 3px 18px);
    animation: copy-rise 760ms ease both;
  }

  .mobile-copy::before {
    content: "";
    position: absolute;
    inset: -80px -80px -50px;
    z-index: -1;
    background:
      repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 15px),
      repeating-linear-gradient(68deg, rgba(255, 255, 255, 0.038) 0 3px, transparent 3px 18px);
    opacity: 0.62;
    transform: rotate(-8deg);
  }

  .mobile-copy h1 {
    margin: 0;
    color: var(--white);
    font-family: var(--headline);
    font-size: clamp(64px, 18vw, 84px);
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 0.85;
    text-transform: uppercase;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.09);
  }

  .mobile-copy h1 span,
  .mobile-copy h1 strong {
    display: block;
  }

  .mobile-copy h1 strong {
    position: relative;
    width: fit-content;
    color: var(--orange);
    font-weight: 900;
  }

  .mobile-copy h1 strong span {
    display: block;
  }

  .mobile-copy h1 strong::after {
    content: "";
    position: absolute;
    left: 3px;
    right: 0;
    bottom: -7px;
    height: 6px;
    background: var(--orange);
    transform: skewX(-18deg);
  }

  .mobile-copy p {
    max-width: 31rem;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.46;
  }

  .mobile-actions {
    display: grid;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    margin-top: 28px;
  }

  .btn {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border-radius: 7px;
    padding: 0 18px;
    font-family: var(--headline);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    line-height: 1;
    text-align: center;
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 100%;
  }

  .btn svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .btn-orange {
    background: linear-gradient(180deg, var(--orange-2), var(--orange));
    color: var(--white);
    box-shadow: 0 22px 52px rgba(255, 79, 10, 0.25);
    animation: call-glow 2.2s ease-in-out infinite;
  }

  .btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(0, 0, 0, 0.28);
    color: var(--white);
  }

  .mobile-ticker {
    width: 100vw;
    max-width: 100vw;
    margin-top: 20px;
    margin-left: -20px;
    overflow: hidden;
    border-block: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, var(--orange-2), var(--orange));
    box-shadow: 0 22px 48px rgba(255, 79, 10, 0.18);
  }

  .mobile-ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 18s linear infinite;
  }

  .mobile-ticker span {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--white);
    font-family: var(--headline);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0 20px;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.22);
  }

  .mobile-ticker span::after {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.64);
  }

  .mobile-visual {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
    animation: image-reveal 760ms ease both;
  }

  .mobile-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.02) 48%, rgba(5, 5, 5, 0.62) 100%),
      radial-gradient(circle at 22% 72%, rgba(255, 79, 10, 0.26), transparent 26%);
    pointer-events: none;
  }

  .mobile-visual > img:first-child {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .photo-kicker {
    position: absolute;
    left: 18px;
    bottom: 14px;
    z-index: 5;
    color: var(--white);
    font-family: var(--headline);
    font-size: clamp(42px, 13vw, 58px);
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 0.86;
    text-transform: uppercase;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.75);
  }

  .photo-kicker::after {
    content: "";
    display: block;
    width: 78%;
    height: 5px;
    margin-top: 6px;
    background: var(--orange);
    transform: skewX(-18deg);
  }
}

@keyframes call-glow {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 44px rgba(255, 79, 10, 0.24), 0 0 0 0 rgba(255, 106, 0, 0);
  }
  48% {
    transform: translateY(-1px);
    box-shadow: 0 24px 56px rgba(255, 79, 10, 0.38), 0 0 0 7px rgba(255, 106, 0, 0.12);
  }
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes image-reveal {
  from {
    opacity: 0;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes copy-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 761px) {
  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(22px, 3vw, 52px);
    min-height: 92px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(5, 5, 5, 0.94);
    padding: 10px clamp(28px, 4vw, 72px);
    backdrop-filter: blur(14px);
  }

  .site-nav-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
  }

  .site-nav-logo img {
    width: auto;
    height: 74px;
    max-width: 190px;
    object-fit: contain;
  }

  .site-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 2.8vw, 46px);
    margin-left: auto;
  }

  .site-nav-links a,
  .site-nav-cta {
    font-family: var(--headline);
    font-size: clamp(15px, 1.1vw, 19px);
    font-weight: 900;
    letter-spacing: 1.2px;
    line-height: 1;
    text-transform: uppercase;
  }

  .site-nav-links a {
    color: rgba(255, 255, 255, 0.82);
    transition: color 160ms ease;
  }

  .site-nav-links a:hover {
    color: var(--white);
  }

  .site-nav-cta {
    flex: 0 0 auto;
    border-radius: 7px;
    background: linear-gradient(180deg, var(--orange-2), var(--orange));
    color: var(--white);
    padding: 16px 20px;
  }

  .mobile-hero {
    display: none !important;
  }
}

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

/* SECTION 2 - WHAT WE FIX */
.services-section {
  position: relative;
  overflow: hidden;
  background:
    url("assets/section2-background-approved.png") center / cover no-repeat,
    #fbfaf8;
  color: #070707;
  padding: clamp(74px, 7.2vw, 118px) 0 0;
}

.services-wrap {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100vw - 72px));
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(390px, 0.78fr) minmax(820px, 1.55fr);
  gap: clamp(46px, 5vw, 86px);
  align-items: start;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: var(--orange);
  font-family: var(--headline);
  font-size: clamp(18px, 1.5vw, 25px);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-label span {
  display: inline-block;
  font-style: italic;
  letter-spacing: 1px;
}

.services-copy h2 {
  margin: 0;
  color: #050505;
  font-family: var(--headline);
  font-size: clamp(72px, 5.25vw, 116px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 0.86;
  text-transform: none;
}

.services-copy h2 > span,
.services-copy h2 > strong {
  display: block;
}

.services-copy h2 > span:nth-child(4) {
  white-space: nowrap;
}

.services-copy h2 strong {
  position: relative;
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
}

.services-copy h2 > strong::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -8px;
  bottom: -8px;
  height: 8px;
  background: var(--orange);
  transform: skewX(-18deg);
  opacity: 0.94;
}

.services-lead {
  max-width: 430px;
  margin: 42px 0 0;
  color: #171717;
  font-size: clamp(17px, 1.16vw, 21px);
  font-weight: 500;
  line-height: 1.42;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 470px;
  margin-top: 36px;
  align-items: start;
}

.proof-item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  align-content: start;
  gap: 0;
  padding: 0 18px;
  text-align: center;
}

.proof-item + .proof-item {
  border-left: 1px solid rgba(0, 0, 0, 0.22);
}

.proof-item img {
  width: 64px;
  height: 64px;
  align-self: center;
  object-fit: contain;
}

.proof-item:nth-child(2) img,
.proof-item:nth-child(3) img {
  width: 58px;
  height: 58px;
  align-self: center;
}

.proof-item strong {
  display: block;
  margin-top: 4px;
  margin-bottom: 2px;
  color: #070707;
  font-family: var(--headline);
  font-size: 18px;
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

.proof-item span {
  display: block;
  color: #242424;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 1.6vw, 30px);
  padding-top: 24px;
}

.service-card {
  position: relative;
  min-height: clamp(180px, 10.2vw, 204px);
  display: grid;
  grid-template-columns: clamp(142px, 8.4vw, 160px) 58px minmax(0, 1fr);
  align-items: center;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 249, 247, 0.96)),
    #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.11);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 79, 10, 0.36);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.15);
}

.service-icon {
  display: grid;
  place-items: center;
  min-width: 0;
  height: 100%;
  padding: 24px;
}

.service-icon img {
  width: clamp(108px, 6.8vw, 136px);
  max-width: 100%;
  max-height: clamp(94px, 6vw, 120px);
  object-fit: contain;
  opacity: 0.96;
}

.card-cut {
  position: relative;
  width: 58px;
  height: 100%;
}

.card-cut::before {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: clamp(62px, 4.2vw, 78px);
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
  transform: translateY(-50%) rotate(44deg);
  transform-origin: right center;
}

.card-cut::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: clamp(62px, 4.2vw, 78px);
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
  transform: translateY(-50%) rotate(-44deg);
  transform-origin: right center;
}

.service-content {
  min-width: 0;
  align-self: center;
  padding: 34px 28px 22px 16px;
}

.service-title-row {
  display: flex;
  align-items: flex-end;
  gap: 11px;
  margin-bottom: 10px;
}

.service-title-row span {
  display: block;
  flex: 0 0 auto;
  color: var(--orange);
  font-family: var(--headline);
  font-size: clamp(38px, 2.7vw, 50px);
  font-weight: 800;
  line-height: 0.82;
}

.service-content h3 {
  margin: 0 0 1px;
  color: #111111;
  font-family: var(--body);
  font-size: clamp(20px, 1.18vw, 25px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
  text-transform: uppercase;
}

.service-content p {
  margin: 12px 0 0;
  color: #3d3d3d;
  font-size: clamp(16px, 0.95vw, 18px);
  font-weight: 400;
  line-height: 1.34;
}

.service-strip {
  position: relative;
  z-index: 2;
  width: min(1480px, calc(100vw - 72px));
  margin: 78px auto 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, #050505, #0d0d0d),
    #050505;
  color: #fff;
  box-shadow: 0 -12px 0 #050505, 0 16px 0 #050505;
}

.service-strip::before,
.service-strip::after {
  content: "";
  position: absolute;
  left: -24px;
  right: -24px;
  height: 18px;
  background:
    repeating-linear-gradient(92deg, #050505 0 18px, transparent 18px 32px);
  pointer-events: none;
}

.service-strip::before {
  top: -9px;
}

.service-strip::after {
  bottom: -9px;
}

.strip-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.32fr 1fr 1fr 1fr;
  align-items: center;
  min-height: 88px;
}

.strip-inner span {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  font-family: var(--headline);
  font-size: clamp(20px, 1.55vw, 31px);
  font-weight: 900;
  line-height: 0.96;
  text-align: center;
  text-transform: uppercase;
}

.strip-inner span:first-child {
  border-left: 0;
}

.strip-inner span::before {
  content: "";
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  background: var(--orange);
  clip-path: polygon(35% 0, 100% 0, 65% 42%, 100% 42%, 28% 100%, 52% 53%, 0 53%);
}

.strip-inner b {
  color: var(--orange);
}

.strip-inner .mobile-repeat {
  display: none;
}

/* Desktop lock: keep Section 2 placement independent from mobile refinements. */
@media (min-width: 1221px) {
  .services-section {
    padding-top: clamp(74px, 7.2vw, 118px);
  }

  .services-wrap {
    width: calc(100vw - clamp(32px, 3vw, 58px) - 54px);
    max-width: none;
    margin-left: clamp(32px, 3vw, 58px);
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(360px, 380px) minmax(0, 1fr);
    gap: clamp(96px, 7.8vw, 150px);
    align-items: start;
  }

  .services-copy {
    justify-self: start;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-self: end;
    width: 100%;
    gap: clamp(24px, 1.65vw, 32px);
    padding-top: 18px;
  }

  .service-card {
    min-height: clamp(198px, 11vw, 228px);
    grid-template-columns: clamp(156px, 8.7vw, 184px) 64px minmax(0, 1fr);
  }

  .service-icon {
    padding: 28px 24px 28px 34px;
  }

  .service-icon img {
    width: clamp(124px, 6.9vw, 152px);
    max-height: clamp(112px, 6.2vw, 138px);
  }

  .card-cut {
    width: 64px;
  }

  .card-cut::before,
  .card-cut::after {
    right: 4px;
    width: clamp(64px, 4vw, 78px);
    height: 6px;
  }

  .service-content {
    padding: 38px 28px 26px 18px;
  }

  .service-title-row {
    gap: 14px;
    margin-bottom: 14px;
  }

  .service-title-row span {
    font-size: clamp(44px, 2.65vw, 54px);
  }

  .service-content h3 {
    font-size: clamp(23px, 1.25vw, 28px);
  }

  .service-content p {
    max-width: 27ch;
    font-size: clamp(17px, 0.94vw, 19px);
    line-height: 1.32;
  }

  .service-strip {
    width: min(1480px, calc(100vw - 72px));
  }

  .strip-inner {
    display: grid;
    grid-template-columns: 1.32fr 1fr 1fr 1fr;
    animation: none;
  }
}

@media (max-width: 1220px) {
  .services-wrap {
    width: min(1080px, calc(100vw - 44px));
    padding: 0;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .services-copy {
    max-width: 820px;
  }

  .services-copy h2 {
    font-size: clamp(70px, 9vw, 108px);
  }

  .services-lead,
  .proof-row {
    max-width: 650px;
  }

  .service-grid {
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .services-section {
    padding-top: 54px;
    background:
      url("assets/section2-background-approved.png") center top / cover no-repeat,
      #fbfaf8;
  }

  .services-wrap {
    width: min(100% - 32px, 430px);
    display: block;
  }

  .section-label {
    gap: 10px;
    margin-bottom: 14px;
    font-size: 22px;
    letter-spacing: 2px;
  }

  .services-copy h2 {
    font-size: clamp(57px, 16.3vw, 76px);
    font-weight: 700;
    letter-spacing: -0.014em;
    line-height: 0.88;
  }

  .services-copy h2 > span:nth-child(4) {
    white-space: normal;
  }

  .services-copy h2 strong::after {
    left: -8px;
    right: -6px;
    bottom: -7px;
    height: 6px;
  }

  .services-lead {
    max-width: 100%;
    margin-top: 32px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.34;
  }

  .proof-row {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    margin-top: 28px;
  }

  .proof-item {
    gap: 0;
    padding: 0 8px;
  }

  .proof-item img {
    width: 52px;
    height: 52px;
  }

  .proof-item:nth-child(2) img,
  .proof-item:nth-child(3) img {
    width: 48px;
    height: 48px;
  }

  .proof-item strong {
    margin-top: 2px;
    margin-bottom: 1px;
    font-size: 15px;
    line-height: 0.9;
  }

  .proof-item span {
    font-size: 12px;
    line-height: 1;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 34px;
    padding-top: 0;
  }

  .service-card {
    min-height: 118px;
    grid-template-columns: 64px 40px minmax(0, 1fr);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  }

  .service-icon {
    padding: 15px 5px 15px 10px;
  }

  .service-icon img {
    width: 45px;
    max-height: 48px;
  }

  .card-cut {
    width: 40px;
  }

  .card-cut::before {
    right: 1px;
    width: 50px;
    height: 4px;
    transform: translateY(-50%) rotate(47deg);
    transform-origin: right center;
  }

  .card-cut::after {
    right: 1px;
    top: 50%;
    width: 50px;
    height: 4px;
    border-radius: 999px;
    background: var(--orange);
    transform: translateY(-50%) rotate(-47deg);
    transform-origin: right center;
  }

  .service-content {
    align-self: center;
    padding: 21px 16px 14px 14px;
  }

  .service-title-row {
    align-items: flex-end;
    gap: 9px;
    margin-bottom: 7px;
  }

  .service-title-row span {
    font-size: 38px;
    line-height: 0.82;
  }

  .service-content h3 {
    margin-bottom: 1px;
    font-family: var(--body);
    font-size: clamp(18px, 5.2vw, 22px);
    font-weight: 800;
    line-height: 1.04;
  }

  .service-content p {
    margin-top: 0;
    color: #3d3d3d;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.25;
  }

  .service-strip {
    width: 100%;
    margin-top: 42px;
    box-shadow: none;
  }

  .strip-inner {
    display: flex;
    width: max-content;
    min-height: 72px;
    animation: service-strip-scroll 24s linear infinite;
  }

  .strip-inner span {
    min-width: 188px;
    padding: 0 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 24px;
    white-space: nowrap;
  }

  .strip-inner .strip-strong {
    min-width: 250px;
  }

  .strip-inner .mobile-repeat {
    display: flex;
  }

  .strip-inner span::before {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 390px) {
  .services-wrap {
    width: min(100% - 24px, 430px);
  }

  .services-copy h2 {
    font-size: clamp(48px, 15.2vw, 61px);
  }

  .service-card {
    grid-template-columns: 58px 34px minmax(0, 1fr);
  }

  .service-icon img {
    width: 40px;
    max-height: 46px;
  }

  .service-content h3 {
    font-size: 19px;
  }

  .service-content p {
    font-size: 15px;
  }
}

@keyframes service-strip-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .strip-inner {
    animation: none !important;
  }
}

/* SECTION 3 - ABOUT RP MOBILE REPAIR */
.about-section {
  display: none;
}

@media (max-width: 760px) {
  .about-section {
    position: relative;
    display: block;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(251, 250, 248, 0.96)),
      url("assets/section2-background-approved.png") center top / cover no-repeat,
      #fbfaf8;
    color: #050505;
  }

  .about-photo {
    position: relative;
    height: clamp(320px, 92vw, 430px);
    overflow: hidden;
    background: #050505;
  }

  .about-photo::before {
    content: "";
    position: absolute;
    left: -22px;
    bottom: -34px;
    z-index: 2;
    width: 90px;
    height: 150%;
    background: var(--orange);
    transform: rotate(11deg);
    box-shadow: 16px 0 0 rgba(5, 5, 5, 0.92);
    pointer-events: none;
  }

  .about-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.02) 0%, rgba(5, 5, 5, 0) 44%, rgba(5, 5, 5, 0.58) 100%),
      radial-gradient(circle at 18% 82%, rgba(255, 79, 10, 0.28), transparent 34%);
    pointer-events: none;
  }

  .about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 78% 28%;
  }

  .about-copy {
    position: relative;
    z-index: 3;
    width: min(100% - 32px, 430px);
    margin: 0 auto;
    padding: 42px 0 56px;
  }

  .about-copy .section-label {
    gap: 10px;
    margin-bottom: 16px;
    font-size: 18px;
    letter-spacing: 2px;
  }

  .about-copy h2 {
    margin: 0;
    color: #050505;
    font-family: var(--headline);
    font-size: clamp(55px, 15vw, 76px);
    font-weight: 800;
    letter-spacing: -0.012em;
    line-height: 0.87;
    text-transform: none;
  }

  .about-copy h2 span,
  .about-copy h2 strong {
    display: block;
  }

  .about-copy h2 strong {
    position: relative;
    width: fit-content;
    color: var(--orange);
    font-weight: 800;
  }

  .about-copy h2 strong::after {
    content: "";
    position: absolute;
    left: -6px;
    right: auto;
    bottom: -7px;
    width: min(calc(100% + 14px), 245px);
    height: 6px;
    background: var(--orange);
    transform: skewX(-18deg);
  }

  .about-text {
    display: grid;
    gap: 16px;
    margin-top: 34px;
  }

  .about-text p {
    margin: 0;
    color: #171717;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.36;
  }

  .about-cta {
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 28px;
    border-radius: 8px;
    background: linear-gradient(180deg, var(--orange-2), var(--orange));
    color: #fff;
    font-family: var(--headline);
    font-size: 23px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 20px 46px rgba(255, 79, 10, 0.24);
  }

  .about-cta svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .about-chips {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .about-chip {
    min-height: 68px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(5, 5, 5, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }

  .about-chip .chip-icon {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: var(--orange);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .about-chip strong {
    color: #080808;
    font-family: var(--headline);
    font-size: 24px;
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
  }
}

@media (max-width: 390px) {
  .about-copy {
    width: min(100% - 24px, 430px);
  }

  .about-copy h2 {
    font-size: clamp(48px, 14.5vw, 62px);
  }

  .about-cta {
    font-size: 20px;
  }
}

/* SECTION 6 - HOW IT WORKS */
.process-section {
  position: relative;
  overflow: hidden;
  background: url("assets/section2-background-approved.png") center / cover no-repeat #fbfaf8;
  color: #050505;
}

.process-section::before,
.process-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.process-section::before {
  display: none;
  left: -80px;
  top: 0;
  width: 330px;
  height: 560px;
  background: url("assets/section2-background-approved.png") left top / 480px auto no-repeat;
  opacity: 0.55;
  filter: grayscale(1);
}

.process-section::after {
  display: none;
  right: -120px;
  bottom: 72px;
  width: 560px;
  height: 180px;
  background: url("assets/section2-background-approved.png") right bottom / 680px auto no-repeat;
  opacity: 0.42;
  filter: grayscale(1);
}

.process-inner {
  position: relative;
  z-index: 1;
  width: min(1584px, calc(100vw - 88px));
  margin: 0 auto;
  padding: clamp(72px, 6vw, 112px) 0 42px;
}

.process-hero {
  display: grid;
  grid-template-columns: minmax(650px, 0.9fr) minmax(760px, 1.1fr);
  align-items: start;
  gap: clamp(30px, 4vw, 70px);
}

.process-label {
  color: var(--orange);
}

.process-copy h2 {
  margin: 16px 0 0;
  font-family: var(--headline);
  font-size: clamp(78px, 5.2vw, 112px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
}

.process-copy h2 span {
  display: block;
  white-space: nowrap;
}

.process-copy h2 strong {
  position: relative;
  color: var(--orange);
  font-weight: 800;
}

.process-copy h2 strong::after {
  content: "";
  position: absolute;
  left: calc(-100vw + 100%);
  right: -16px;
  bottom: -12px;
  height: 8px;
  background: var(--orange);
  transform: skewX(-18deg);
}

.process-visual {
  position: relative;
  min-height: 370px;
}

.process-visual img {
  position: absolute;
  top: -54px;
  right: -18px;
  width: min(900px, 51vw);
  max-width: none;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.16));
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
  border-radius: 8px;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.13));
}

.process-steps::before {
  content: "";
  position: absolute;
  left: 14%;
  right: 10%;
  top: 0;
  height: 2px;
  background: var(--orange);
  transform: translateY(-1px);
}

.process-step {
  position: relative;
  min-height: 244px;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  background: rgba(255, 255, 255, 0.9);
  padding: 42px 30px 34px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.process-step:first-child {
  border-radius: 8px 0 0 8px;
}

.process-step:last-child {
  border-radius: 0 8px 8px 0;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -43px;
  z-index: 2;
  width: 86px;
  height: 100%;
  background: linear-gradient(105deg, transparent 0 48%, rgba(5, 5, 5, 0.12) 48% 50%, rgba(255, 255, 255, 0.94) 50% 100%);
  pointer-events: none;
}

.process-step-number {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: #fff;
  color: var(--orange);
  font-family: var(--headline);
  font-size: 43px;
  font-weight: 800;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.process-step-icon {
  width: 96px;
  height: 96px;
  color: #080808;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step-icon .accent {
  stroke: var(--orange);
}

.process-step-copy h3 {
  position: relative;
  margin: 0;
  color: #090909;
  font-family: var(--headline);
  font-size: clamp(26px, 1.8vw, 34px);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
}

.process-step-copy h3::after {
  content: "";
  display: block;
  width: 78px;
  height: 4px;
  margin-top: 10px;
  background: var(--orange);
  transform: skewX(-18deg);
}

.process-step-copy p {
  margin: 14px 0 0;
  color: #171717;
  font-size: clamp(17px, 1.05vw, 20px);
  font-weight: 500;
  line-height: 1.34;
}

.process-cta {
  position: relative;
  z-index: 2;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: min(470px, 100%);
  margin: 24px auto 0;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  color: #fff;
  font-family: var(--headline);
  font-size: 34px;
  font-weight: 800;
  line-height: 0.94;
  box-shadow: 0 18px 36px rgba(255, 79, 10, 0.28);
}

.process-cta::before,
.process-cta::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(210px, 20vw, 360px);
  height: 40px;
  background:
    repeating-linear-gradient(0deg, transparent 0 7px, var(--orange) 7px 10px, transparent 10px 13px);
  opacity: 0.9;
  transform: translateY(-50%);
}

.process-cta::before {
  right: calc(100% + 36px);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
}

.process-cta::after {
  left: calc(100% + 36px);
  clip-path: polygon(0 0, 72% 0, 100% 100%, 0 100%);
}

.process-cta svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-strip {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 34px;
  background:
    linear-gradient(90deg, rgba(255, 79, 10, 0.2), transparent 16%, transparent 84%, rgba(255, 79, 10, 0.2)),
    #050505;
}

.process-strip::before,
.process-strip::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 27%;
  background: url("assets/section2-background-approved.png") left bottom / 620px auto no-repeat;
  opacity: 0.22;
  filter: invert(1) contrast(1.4);
}

.process-strip::after {
  left: auto;
  right: 0;
  background-position: right bottom;
}

.process-strip-inner {
  position: relative;
  z-index: 1;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 42px);
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}

.process-strip-inner img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.process-strip-inner img + img {
  margin-left: clamp(18px, 2vw, 34px);
}

.process-strip-inner strong {
  padding-left: clamp(24px, 3vw, 48px);
  border-left: 4px solid var(--orange);
  color: #fff;
  font-family: var(--headline);
  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.process-strip-inner strong span {
  color: var(--orange);
}

@media (max-width: 1320px) {
  .process-inner {
    width: min(1180px, calc(100vw - 64px));
  }

  .process-hero {
    grid-template-columns: minmax(480px, 0.85fr) minmax(560px, 1.15fr);
  }

  .process-copy h2 {
    font-size: clamp(68px, 5.4vw, 86px);
  }

  .process-step {
    grid-template-columns: 88px minmax(0, 1fr);
    padding-inline: 22px;
  }

  .process-step-icon {
    width: 78px;
    height: 78px;
  }
}

@media (max-width: 1020px) {
  .process-hero {
    grid-template-columns: 1fr;
  }

  .process-visual {
    min-height: 280px;
  }

  .process-visual img {
    top: -30px;
    left: 0;
    right: auto;
    width: min(100%, 820px);
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    filter: none;
  }

  .process-steps::before,
  .process-step:not(:last-child)::after {
    display: none;
  }

  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    border-radius: 8px;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.11));
  }

  .process-step-number {
    left: 24px;
    top: 24px;
    transform: none;
  }

  .process-step {
    padding-top: 76px;
  }

  .process-cta::before,
  .process-cta::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .process-section {
    background: url("assets/section2-background-mobile-custom.png") center top / cover no-repeat #fbfaf8;
  }

  .process-section::before {
    left: -130px;
    width: 260px;
    height: 420px;
    opacity: 0.45;
  }

  .process-section::after {
    right: -190px;
    bottom: 82px;
    width: 420px;
    height: 150px;
    opacity: 0.36;
  }

  .process-inner {
    width: min(100% - 28px, 430px);
    padding: 58px 0 32px;
  }

  .process-copy h2 {
    margin-top: 14px;
    font-size: clamp(58px, 16.8vw, 72px);
    line-height: 0.9;
  }

  .process-copy h2 span {
    white-space: normal;
  }

  .process-copy h2 strong::after {
    left: -170px;
    right: -10px;
    bottom: -8px;
    height: 6px;
  }

  .process-visual {
    min-height: 205px;
    margin-top: 24px;
  }

  .process-visual img {
    top: 0;
    left: -36px;
    width: calc(100% + 96px);
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }

  .process-step {
    min-height: 0;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 20px 18px;
  }

  .process-step-number {
    position: static;
    grid-column: 1;
    grid-row: 1;
    width: 58px;
    height: 58px;
    font-size: 34px;
    transform: none;
  }

  .process-step-icon {
    grid-column: 1;
    grid-row: 2;
    width: 66px;
    height: 66px;
  }

  .process-step-copy {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .process-step-copy h3 {
    font-size: clamp(25px, 7.4vw, 34px);
  }

  .process-step-copy h3::after {
    width: 58px;
    height: 4px;
    margin-top: 9px;
  }

  .process-step-copy p {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.28;
  }

  .process-cta {
    min-height: 64px;
    gap: 12px;
    margin-top: 20px;
    font-size: 25px;
  }

  .process-cta svg {
    width: 25px;
    height: 25px;
  }

  .process-strip {
    margin-top: 22px;
  }

  .process-strip-inner {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    justify-items: center;
    gap: 14px;
    width: min(100% - 28px, 430px);
    padding: 18px 0 20px;
  }

  .process-strip-inner img {
    width: 38px;
    height: 38px;
  }

  .process-strip-inner img + img {
    margin-left: 0;
  }

  .process-strip-inner strong {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: 0;
    font-size: 28px;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .process-inner {
    width: min(100% - 24px, 430px);
  }

  .process-copy h2 {
    font-size: clamp(52px, 16.2vw, 64px);
  }

  .process-step {
    grid-template-columns: 66px minmax(0, 1fr);
    padding: 16px;
  }

  .process-step-number {
    width: 52px;
    height: 52px;
    font-size: 31px;
  }

  .process-step-icon {
    width: 58px;
    height: 58px;
  }

  .process-step-copy p {
    font-size: 15px;
  }
}

@keyframes process-strip-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* SECTION 7 - CUSTOMER REVIEWS */
.reviews-section {
  position: relative;
  overflow: hidden;
  background: url("assets/section2-background-approved.png") center / cover no-repeat #fbfaf8;
  color: #050505;
}

.reviews-section::before,
.reviews-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.reviews-section::before {
  display: none;
  left: -82px;
  top: 0;
  width: 340px;
  height: 520px;
  background: url("assets/section2-background-approved.png") left top / 520px auto no-repeat;
  opacity: 0.5;
  filter: grayscale(1);
}

.reviews-section::after {
  display: none;
  right: -130px;
  top: 278px;
  width: 360px;
  height: 360px;
  background:
    radial-gradient(circle, rgba(255, 79, 10, 0.75) 0 2px, transparent 3px) 0 0 / 18px 18px,
    radial-gradient(circle, rgba(255, 79, 10, 0.42) 0 2px, transparent 3px) 7px 8px / 24px 24px;
  opacity: 0.62;
  transform: rotate(-12deg);
}

.reviews-inner {
  position: relative;
  z-index: 1;
  width: min(1572px, calc(100vw - 92px));
  margin: 0 auto;
  padding: clamp(66px, 5.6vw, 106px) 0 16px;
}

.reviews-hero {
  display: grid;
  grid-template-columns: minmax(560px, 0.82fr) minmax(640px, 1.18fr);
  align-items: start;
  gap: clamp(28px, 4vw, 72px);
}

.reviews-label {
  color: var(--orange);
}

.reviews-copy h2 {
  margin: 16px 0 0;
  font-family: var(--headline);
  font-size: clamp(70px, 5.25vw, 112px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: 0;
}

.reviews-copy h2 span,
.reviews-copy h2 strong {
  display: block;
}

.reviews-copy h2 strong {
  position: relative;
  width: fit-content;
  color: var(--orange);
  font-weight: 800;
  white-space: nowrap;
}

.reviews-copy h2 strong::after {
  content: "";
  position: absolute;
  left: -8px;
  right: 12%;
  bottom: -11px;
  height: 7px;
  background: var(--orange);
  transform: skewX(-18deg);
  box-shadow: 180px -1px 0 -3px rgba(255, 79, 10, 0.72);
}

.reviews-visual {
  position: relative;
  min-height: 350px;
  overflow: hidden;
}

.reviews-visual img {
  position: absolute;
  top: -64px;
  right: -42px;
  width: min(900px, 54vw);
  max-width: none;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.16));
}

.review-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.review-card {
  position: relative;
  min-height: 376px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 74px 32px 24px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.13);
}

.review-number {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 88px;
  height: 60px;
  background: #050505;
  color: var(--orange);
  font-family: var(--headline);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}

.review-rating {
  position: absolute;
  top: 40px;
  left: 92px;
  color: var(--orange);
  font-size: 26px;
  letter-spacing: 2px;
  line-height: 1;
}

.review-quote {
  position: absolute;
  top: 16px;
  right: 28px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
}

.review-card > p {
  margin: 0;
  color: #111;
  font-size: clamp(18px, 1.22vw, 22px);
  font-weight: 500;
  line-height: 1.34;
}

.review-person {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) minmax(120px, 0.95fr);
  align-items: center;
  gap: 18px;
  margin-top: auto;
  padding-top: 22px;
}

.review-person::before {
  content: "";
  position: absolute;
  left: 32px;
  bottom: 112px;
  width: 82px;
  height: 4px;
  background: var(--orange);
  transform: skewX(-18deg);
}

.review-person img {
  width: 100%;
  height: 74px;
  object-fit: contain;
}

.review-person div {
  min-height: 72px;
  display: grid;
  align-content: center;
  border-left: 1px solid rgba(5, 5, 5, 0.3);
  padding-left: 18px;
}

.review-person strong {
  color: #080808;
  font-family: var(--headline);
  font-size: 28px;
  font-weight: 800;
  line-height: 0.95;
}

.review-person span {
  margin-top: 6px;
  color: #181818;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.28;
}

.reviews-trust {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 16px;
  background:
    linear-gradient(90deg, rgba(255, 79, 10, 0.18), transparent 20%, transparent 82%, rgba(255, 79, 10, 0.2)),
    #050505;
}

.reviews-trust::before,
.reviews-trust::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 30%;
  background: url("assets/section2-background-approved.png") left bottom / 620px auto no-repeat;
  opacity: 0.22;
  filter: invert(1) contrast(1.45);
}

.reviews-trust::after {
  left: auto;
  right: 0;
  background-position: right bottom;
}

.reviews-trust-inner {
  position: relative;
  z-index: 1;
  min-height: 134px;
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  align-items: center;
  width: min(1340px, calc(100vw - 72px));
  margin: 0 auto;
}

.review-trust-item {
  min-height: 88px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 0 clamp(18px, 2.2vw, 38px);
}

.review-trust-item + .review-trust-item {
  border-left: 1px solid rgba(255, 255, 255, 0.38);
}

.review-trust-item svg {
  width: 62px;
  height: 62px;
  color: var(--orange);
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.review-trust-item .fill-accent {
  fill: var(--orange);
  stroke: var(--orange);
}

.review-trust-item strong {
  display: block;
  color: #f5f5f5;
  font-family: var(--headline);
  font-size: clamp(25px, 1.85vw, 34px);
  font-weight: 800;
  line-height: 0.94;
  text-transform: uppercase;
}

.review-trust-item span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.2vw, 20px);
  font-weight: 500;
  line-height: 1.2;
}

.review-trust-item:first-child span {
  color: var(--orange);
  font-size: 27px;
  letter-spacing: 2px;
}

@media (max-width: 1320px) {
  .reviews-inner {
    width: min(1180px, calc(100vw - 64px));
  }

  .reviews-hero {
    grid-template-columns: minmax(420px, 0.85fr) minmax(520px, 1.15fr);
  }

  .reviews-copy h2 {
    font-size: clamp(66px, 5.6vw, 92px);
  }

  .review-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 1020px) {
  .reviews-hero {
    grid-template-columns: 1fr;
  }

  .reviews-visual {
    min-height: 300px;
  }

  .reviews-visual img {
    top: -28px;
    left: 0;
    right: auto;
    width: min(100%, 850px);
  }

  .review-cards {
    margin-top: 18px;
  }

  .reviews-trust-inner {
    grid-template-columns: 1fr;
    padding: 16px 0;
  }

  .review-trust-item {
    padding: 18px 0;
  }

  .review-trust-item + .review-trust-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.32);
  }
}

@media (max-width: 760px) {
  .reviews-section {
    background: url("assets/section2-background-mobile-custom.png") center top / cover no-repeat #fbfaf8;
  }

  .reviews-section::before {
    left: -126px;
    width: 260px;
    height: 430px;
    opacity: 0.44;
  }

  .reviews-section::after {
    right: -180px;
    top: 580px;
    width: 260px;
    height: 260px;
    opacity: 0.44;
  }

  .reviews-inner {
    width: min(100% - 28px, 430px);
    padding: 56px 0 10px;
  }

  .reviews-copy h2 {
    margin-top: 14px;
    font-size: clamp(56px, 16.2vw, 72px);
    line-height: 0.9;
  }

  .reviews-copy h2 strong::after {
    left: -5px;
    right: 18%;
    bottom: -8px;
    height: 6px;
    box-shadow: 104px -1px 0 -2px rgba(255, 79, 10, 0.72);
  }

  .reviews-copy h2 strong {
    white-space: normal;
  }

  .reviews-visual {
    min-height: 210px;
    margin-top: 26px;
  }

  .reviews-visual img {
    top: 0;
    left: -46px;
    width: calc(100% + 120px);
  }

  .review-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 22px;
  }

  .review-card {
    min-height: 0;
    padding: 70px 20px 20px;
  }

  .review-number {
    width: 78px;
    height: 54px;
    font-size: 38px;
  }

  .review-rating {
    top: 37px;
    left: 86px;
    font-size: 21px;
    letter-spacing: 1px;
  }

  .review-quote {
    top: 12px;
    right: 20px;
    font-size: 70px;
  }

  .review-card > p {
    font-size: 18px;
    line-height: 1.34;
  }

  .review-person {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 14px;
    padding-top: 28px;
  }

  .review-person::before {
    left: 20px;
    bottom: 92px;
    width: 74px;
  }

  .review-person img {
    height: 68px;
  }

  .review-person div {
    min-height: 66px;
    padding-left: 14px;
  }

  .review-person strong {
    font-size: 25px;
  }

  .review-person span {
    font-size: 14px;
  }

  .reviews-trust {
    display: none;
  }

  .reviews-trust-inner {
    width: min(100% - 28px, 430px);
  }

  .review-trust-item {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    min-height: 84px;
    padding: 14px 0;
  }

  .review-trust-item svg {
    width: 52px;
    height: 52px;
  }

  .review-trust-item strong {
    font-size: 27px;
  }

  .review-trust-item span {
    margin-top: 5px;
    font-size: 15px;
  }

  .review-trust-item:first-child span {
    font-size: 22px;
  }
}

@media (max-width: 390px) {
  .reviews-inner,
  .reviews-trust-inner {
    width: min(100% - 24px, 430px);
  }

  .reviews-copy h2 {
    font-size: clamp(50px, 15.8vw, 64px);
  }

  .review-card {
    padding-inline: 16px;
  }

  .review-person {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .review-person img {
    height: 62px;
  }
}

/* SECTION 8 - FAQ */
.faq-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 96% 54%, rgba(255, 79, 10, 0.18), transparent 24%),
    linear-gradient(180deg, #050505 0%, #020202 100%);
  color: #fff;
}

.faq-section::before,
.faq-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.faq-section::before {
  inset: 0;
  background:
    url("assets/section2-background-approved.png") left top / 700px auto no-repeat,
    url("assets/section2-background-approved.png") right center / 780px auto no-repeat;
  opacity: 0.18;
  filter: invert(1) contrast(1.45);
}

.faq-section::after {
  right: -135px;
  bottom: -120px;
  width: 410px;
  height: 620px;
  background:
    radial-gradient(circle, rgba(255, 79, 10, 0.9) 0 2px, transparent 3px) 0 0 / 18px 18px,
    radial-gradient(circle, rgba(255, 79, 10, 0.5) 0 2px, transparent 3px) 7px 8px / 24px 24px;
  opacity: 0.42;
  transform: rotate(-10deg);
}

.faq-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(430px, 0.78fr) minmax(720px, 1.22fr);
  align-items: start;
  gap: clamp(42px, 5vw, 82px);
  width: min(1380px, calc(100vw - 88px));
  margin: 0 auto;
  padding: clamp(72px, 6vw, 108px) 0 clamp(34px, 4vw, 60px);
}

.faq-label {
  color: var(--orange);
}

.faq-copy h2 {
  margin: 14px 0 0;
  font-family: var(--headline);
  font-size: clamp(86px, 7vw, 144px);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: 0;
}

.faq-copy h2 span,
.faq-copy h2 strong {
  display: block;
}

.faq-copy h2 span {
  color: #f3f3f3;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.18), 0 18px 42px rgba(255, 255, 255, 0.08);
}

.faq-copy h2 strong {
  position: relative;
  width: fit-content;
  color: var(--orange);
  font-weight: 800;
}

.faq-copy h2 strong::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -16px;
  bottom: -10px;
  height: 8px;
  background: var(--orange);
  transform: skewX(-18deg);
}

.faq-brand-art {
  width: min(520px, 100%);
  margin-top: 38px;
}

.faq-brand-art img {
  width: 100%;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.45));
}

.faq-panel {
  display: grid;
  gap: 22px;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, #f7f7f7, #e8e8e8);
  color: #070707;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.faq-item[open] {
  border-left: 5px solid var(--orange);
}

.faq-item summary {
  min-height: 88px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 24px;
  padding: 0 34px;
  cursor: pointer;
  list-style: none;
}

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

.faq-number {
  color: var(--orange);
  font-family: var(--headline);
  font-size: 42px;
  font-weight: 800;
  line-height: 0.9;
}

.faq-question {
  color: #070707;
  font-family: var(--headline);
  font-size: clamp(28px, 2.1vw, 40px);
  font-weight: 800;
  line-height: 0.95;
}

.faq-toggle {
  display: grid;
  place-items: center;
  color: var(--orange);
  font-family: var(--body);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.faq-toggle .minus {
  display: none;
}

.faq-item[open] .faq-toggle .plus {
  display: none;
}

.faq-item[open] .faq-toggle .minus {
  display: block;
}

.faq-answer {
  padding: 0 42px 30px 118px;
}

.faq-answer p {
  max-width: 840px;
  margin: 0;
  color: #171717;
  font-size: clamp(18px, 1.3vw, 22px);
  font-weight: 500;
  line-height: 1.38;
}

.faq-cta {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(340px, 1fr);
  align-items: center;
  gap: 34px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.72);
  padding: 22px 28px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
}

.faq-stuck,
.faq-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.faq-stuck {
  min-height: 66px;
  border-right: 1px solid rgba(255, 255, 255, 0.45);
  padding-right: 30px;
}

.faq-stuck svg {
  width: 54px;
  height: 54px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  padding: 12px;
  color: var(--orange);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-stuck strong {
  font-family: var(--headline);
  font-size: clamp(34px, 2.6vw, 48px);
  font-weight: 800;
  line-height: 0.92;
}

.faq-cta a {
  min-height: 70px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  color: #fff;
  font-family: var(--headline);
  font-size: clamp(30px, 2.3vw, 42px);
  font-weight: 800;
  line-height: 0.95;
  box-shadow: 0 18px 36px rgba(255, 79, 10, 0.26);
}

.faq-cta a svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1180px) {
  .faq-inner {
    grid-template-columns: 1fr;
  }

  .faq-brand-art {
    width: min(520px, 100%);
  }
}

@media (max-width: 760px) {
  .faq-section::before {
    background:
      url("assets/section2-background-approved.png") left top / 440px auto no-repeat,
      url("assets/section2-background-approved.png") right bottom / 520px auto no-repeat;
    opacity: 0.14;
  }

  .faq-section::after {
    right: -200px;
    bottom: -80px;
    width: 300px;
    height: 420px;
    opacity: 0.34;
  }

  .faq-inner {
    width: min(100% - 28px, 430px);
    gap: 30px;
    padding: 58px 0 44px;
  }

  .faq-copy h2 {
    font-size: clamp(58px, 17vw, 74px);
    line-height: 0.88;
  }

  .faq-copy h2 strong::after {
    left: -5px;
    right: -10px;
    bottom: -7px;
    height: 6px;
  }

  .faq-brand-art {
    width: 100%;
    margin-top: 26px;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-item summary {
    min-height: 74px;
    grid-template-columns: 48px minmax(0, 1fr) 30px;
    gap: 12px;
    padding: 0 16px;
  }

  .faq-number {
    font-size: 34px;
  }

  .faq-question {
    font-size: clamp(23px, 7.2vw, 30px);
  }

  .faq-toggle {
    font-size: 36px;
  }

  .faq-answer {
    padding: 0 18px 22px 76px;
  }

  .faq-answer p {
    font-size: 16px;
    line-height: 1.34;
  }

  .faq-cta {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .faq-stuck {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
    padding: 0 0 16px;
  }

  .faq-stuck svg {
    width: 46px;
    height: 46px;
    padding: 10px;
  }

  .faq-stuck strong {
    font-size: 34px;
  }

  .faq-cta a {
    min-height: 62px;
    gap: 12px;
    font-size: 26px;
  }

  .faq-cta a svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 390px) {
  .faq-inner {
    width: min(100% - 24px, 430px);
  }

  .faq-copy h2 {
    font-size: clamp(52px, 16.5vw, 66px);
  }

  .faq-question {
    font-size: 22px;
  }
}

/* FOOTER */
.site-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 2;
  background:
    radial-gradient(circle at 92% 60%, rgba(255, 79, 10, 0.14), transparent 28%),
    linear-gradient(180deg, #050505 0%, #020202 100%);
  color: #fff;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.site-footer::before {
  inset: 0;
  background:
    url("assets/section2-background-approved.png") left top / 620px auto no-repeat,
    url("assets/section2-background-approved.png") right bottom / 720px auto no-repeat;
  opacity: 0.18;
  filter: invert(1) contrast(1.55);
}

.site-footer::after {
  right: -120px;
  top: 130px;
  width: 390px;
  height: 520px;
  background:
    radial-gradient(circle, rgba(255, 79, 10, 0.8) 0 2px, transparent 3px) 0 0 / 18px 18px,
    radial-gradient(circle, rgba(255, 79, 10, 0.42) 0 2px, transparent 3px) 8px 8px / 24px 24px;
  opacity: 0.42;
  transform: rotate(-12deg);
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 1.35fr) minmax(210px, 0.72fr) minmax(210px, 0.72fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 5vw, 72px);
  width: min(1450px, calc(100vw - 96px));
  margin: 0 auto;
  padding: clamp(76px, 6vw, 120px) 0 64px;
}

.footer-brand {
  max-width: 470px;
}

.footer-logo {
  width: min(390px, 100%);
  margin: -28px 0 20px -10px;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.48));
}

.footer-brand h2 {
  margin: 0;
  font-family: var(--headline);
  font-size: 40px;
  font-weight: 800;
  line-height: 0.95;
}

.footer-brand p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.24;
}

.footer-cta {
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  color: #fff;
  font-family: var(--headline);
  font-size: 30px;
  font-weight: 800;
  line-height: 0.95;
  padding: 0 32px;
  box-shadow: 0 18px 36px rgba(255, 79, 10, 0.27);
}

.footer-cta svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-links,
.footer-contact {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  padding-left: clamp(28px, 3vw, 52px);
}

.footer-links h3,
.footer-contact h3 {
  position: relative;
  width: fit-content;
  margin: 0 0 26px;
  color: #f3f3f3;
  font-family: var(--headline);
  font-size: 44px;
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

.footer-links h3::after,
.footer-contact h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: -8px;
  bottom: -14px;
  height: 5px;
  background: var(--orange);
  transform: skewX(-18deg);
}

.footer-links a {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.86);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  padding: 18px 0 18px 28px;
}

.footer-links a::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 50%;
  color: var(--orange);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-54%);
}

.footer-contact {
  display: grid;
  align-content: start;
}

.footer-contact a,
.footer-contact > div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.88);
  font-size: 24px;
  font-weight: 400;
}

.footer-contact svg {
  width: 42px;
  height: 42px;
  color: var(--orange);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact b {
  display: inline-block;
  margin-right: 7px;
  color: var(--orange);
  font-family: var(--headline);
  font-size: 27px;
  font-weight: 800;
}

.footer-benefits {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(220px, 0.72fr) 1fr;
  align-items: center;
  width: 100%;
  border-top: 2px solid var(--orange);
  border-bottom: 1px solid rgba(255, 79, 10, 0.55);
}

.footer-benefits::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 28px;
  height: 28px;
  border: 6px solid var(--orange);
  background: #050505;
  transform: translate(-50%, -50%) rotate(45deg);
}

.footer-benefits > div {
  min-height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 24px clamp(28px, 5vw, 80px);
}

.footer-benefits > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.footer-benefits svg {
  width: 70px;
  height: 70px;
  color: var(--orange);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-van-mark svg {
  width: 190px;
  color: #fff;
}

.footer-van-mark .accent {
  stroke: var(--orange);
}

.footer-benefits p {
  margin: 0;
  font-family: var(--headline);
  font-size: 30px;
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

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

.footer-benefits p span {
  color: var(--orange);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1520px, calc(100vw - 88px));
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  padding: 30px 0 34px;
}

.footer-bottom b {
  color: var(--orange);
}

@media (max-width: 1180px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .site-footer::before {
    background:
      url("assets/section2-background-approved.png") left top / 440px auto no-repeat,
      url("assets/section2-background-approved.png") right bottom / 520px auto no-repeat;
    opacity: 0.15;
  }

  .site-footer::after {
    right: -210px;
    top: auto;
    bottom: 120px;
    width: 300px;
    height: 420px;
    opacity: 0.36;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(100% - 28px, 430px);
    padding: 70px 0 36px;
  }

  .footer-logo {
    width: min(280px, 88%);
    margin: 0 auto 20px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand h2 {
    font-size: 36px;
  }

  .footer-brand p {
    font-size: 18px;
  }

  .footer-cta {
    width: 100%;
    min-height: 62px;
    font-size: 25px;
    padding: 0 18px;
  }

  .footer-cta svg {
    width: 28px;
    height: 28px;
  }

  .footer-links,
  .footer-contact {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding: 28px 0 0;
  }

  .footer-links h3,
  .footer-contact h3 {
    font-size: 36px;
  }

  .footer-links a {
    font-size: 21px;
    padding: 15px 0 15px 26px;
  }

  .footer-contact a,
  .footer-contact > div {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    min-height: 64px;
    font-size: 19px;
  }

  .footer-contact svg {
    width: 36px;
    height: 36px;
  }

  .footer-contact b {
    font-size: 23px;
  }

  .footer-benefits {
    grid-template-columns: 1fr;
  }

  .footer-benefits::before {
    width: 22px;
    height: 22px;
    border-width: 5px;
  }

  .footer-benefits > div {
    min-height: 104px;
    justify-content: flex-start;
    width: min(100% - 28px, 430px);
    margin: 0 auto;
    padding: 20px 0;
  }

  .footer-benefits > div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .footer-benefits svg {
    width: 54px;
    height: 54px;
  }

  .footer-van-mark {
    justify-content: center !important;
  }

  .footer-van-mark svg {
    width: 170px;
  }

  .footer-benefits p {
    font-size: 25px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    width: min(100% - 28px, 430px);
    font-size: 15px;
    padding: 24px 0 30px;
  }
}

@media (max-width: 390px) {
  .footer-main,
  .footer-benefits > div,
  .footer-bottom {
    width: min(100% - 24px, 430px);
  }

  .footer-contact a,
  .footer-contact > div {
    font-size: 18px;
  }
}
