:root {
  --red: #e11d2e;
  --black: #050505;
  --ink: #141414;
  --soft: #f6f6f4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 54px);
  background: rgba(5, 5, 5, 0.72);
  color: #fff;
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #fff;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover {
  color: #fff;
}

.header-phone {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 950;
}

.hero {
  min-height: 94vh;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 48px;
  padding: 132px clamp(18px, 6vw, 72px) 72px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.78) 46%, rgba(5, 5, 5, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.16), rgba(5, 5, 5, 0.68)),
    url("assets/junk-cleanup-hero.png") center/cover;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.hero-sub {
  max-width: 650px;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 950;
  line-height: 1.04;
}

.hero-sub strong {
  display: block;
  color: var(--red);
}

.hero-actions,
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 999px;
  padding: 0 28px;
  font-weight: 950;
}

.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 18px 50px rgba(225, 29, 46, 0.3);
}

.light {
  background: #fff;
  color: #050505;
}

.big-phone {
  display: inline-block;
  margin: 24px 0 30px;
  font-size: 26px;
  font-weight: 950;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}

.badges span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.hero-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 34px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.06), rgba(5, 5, 5, 0.72)),
    url("assets/junk-cleanup-hero.png") center/cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.hero-card img {
  width: 146px;
  height: 146px;
  object-fit: contain;
  border-radius: 24px;
  background: #fff;
  margin-bottom: 18px;
}

.hero-card h2 {
  max-width: 460px;
  font-size: 38px;
  line-height: 1;
}

.section {
  padding: 94px clamp(18px, 6vw, 72px);
}

.section.dark {
  background: #050505;
  color: #fff;
}

.section h2,
.contact h2 {
  max-width: 920px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.section-lead,
.contact p {
  max-width: 760px;
  color: rgba(20, 20, 20, 0.64);
  font-size: 20px;
  line-height: 1.65;
}

.dark .section-lead,
.dark p {
  color: rgba(255, 255, 255, 0.66);
}

.service-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.service-grid article,
.why-grid div,
.process-grid div,
.faq details {
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 26px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(5, 5, 5, 0.06);
}

.service-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(5, 5, 5, 0.13);
}

.service-grid h3,
.why-grid h3 {
  font-size: 25px;
  line-height: 1.05;
}

.service-grid p,
.why-grid p,
.faq p {
  color: rgba(20, 20, 20, 0.62);
  line-height: 1.65;
}

.why-grid div {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.why-grid p {
  color: rgba(255, 255, 255, 0.64);
}

.slider {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 34px;
  background: #050505;
  box-shadow: 0 24px 70px rgba(5, 5, 5, 0.13);
}

.before,
.after {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.before {
  background-image: linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.42)), url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1400&q=80");
}

.after {
  width: 52%;
  background-image: linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.24)), url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1400&q=80");
}

.before span,
.after span {
  position: absolute;
  top: 24px;
  border-radius: 999px;
  padding: 9px 15px;
  color: #fff;
  font-weight: 950;
}

.before span {
  left: 24px;
  background: rgba(0, 0, 0, 0.68);
}

.after span {
  right: 24px;
  background: var(--red);
}

.slider input {
  position: absolute;
  z-index: 3;
  left: 32px;
  right: 32px;
  bottom: 28px;
  width: calc(100% - 64px);
  accent-color: var(--red);
}

.process-grid,
.areas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.process-grid b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  border-radius: 999px;
  background: #050505;
  color: #fff;
}

.reviews {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.reviews button {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #050505;
  font-size: 34px;
  cursor: pointer;
}

blockquote {
  margin: 0;
  border-radius: 30px;
  padding: 34px;
  background: #fff;
  color: #050505;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 950;
  line-height: 1.08;
}

cite {
  display: block;
  margin-top: 24px;
  color: rgba(5, 5, 5, 0.58);
  font-size: 16px;
  font-style: normal;
}

.areas {
  grid-template-columns: repeat(3, 1fr);
}

.areas a {
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 22px;
  padding: 20px;
  font-weight: 950;
  box-shadow: 0 12px 34px rgba(5, 5, 5, 0.05);
}

.faq {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 950;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 36px;
  align-items: center;
  margin: 0 clamp(18px, 6vw, 72px) 92px;
  border-radius: 34px;
  padding: 46px;
  background: #050505;
  color: #fff;
  box-shadow: 0 24px 70px rgba(5, 5, 5, 0.13);
}

.contact p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-card {
  display: grid;
  gap: 14px;
  border-radius: 26px;
  padding: 26px;
  background: #fff;
  color: #050505;
  font-size: 20px;
  font-weight: 950;
}

footer {
  padding: 48px clamp(18px, 6vw, 72px) 96px;
  background: #050505;
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
}

footer img {
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
  border-radius: 22px;
  background: #fff;
  object-fit: contain;
}

.float-call,
.float-estimate {
  position: fixed;
  z-index: 60;
  bottom: 18px;
  border-radius: 999px;
  padding: 15px 20px;
  color: #fff;
  font-weight: 950;
  box-shadow: 0 18px 44px rgba(5, 5, 5, 0.2);
}

.float-call {
  left: 18px;
  background: #050505;
}

.float-estimate {
  right: 18px;
  background: var(--red);
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

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

  .hero-card {
    min-height: 420px;
  }

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

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 70px;
  }

  .brand span,
  .header-phone {
    display: none;
  }

  .hero {
    padding-top: 104px;
  }

  .service-grid,
  .why-grid,
  .process-grid,
  .areas,
  .reviews {
    grid-template-columns: 1fr;
  }

  .section,
  .contact {
    padding: 68px 18px;
  }

  .contact {
    margin-inline: 18px;
  }

  .slider {
    height: 360px;
  }
}
