:root {
  --pink: #ec1265;
  --pink-dark: #d90b5a;
  --navy: #181d58;
  --navy-2: #0c1225;
  --text: #1d2335;
  --muted: #4b5362;
  --white: #ffffff;
  --line: #e8e9ee;
  --shadow: 0 18px 45px rgba(15, 20, 45, .14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1110px, calc(100% - 44px));
  margin: 0 auto;
}

.topbar {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  min-height: 110px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .04);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  width: 174px;
  min-width: 150px;
}

.menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 31px);
  color: #111421;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.menu a {
  color: #111421;
  white-space: nowrap;
  transition: .2s;
}

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

.menu .dropdown {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.menu .dropdown::after {
  content: "\2304";
  font-size: 16px;
  line-height: 0;
  transform: translateY(-2px);
}

.phone-btn,
.solid-btn,
.outline-btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: .2s;
  overflow: hidden;
  will-change: transform;
}

.phone-btn::before,
.solid-btn::before,
.outline-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .28) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}

.phone-btn {
  height: 47px;
  padding: 0 24px;
  color: #fff;
  background: var(--pink);
  font-size: 14px;
  letter-spacing: .01em;
  text-transform: none;
}

.phone-btn:hover,
.solid-btn:hover {
  background: var(--pink-dark);
  box-shadow: 0 12px 28px rgba(236, 18, 101, .28);
  transform: translateY(-3px) scale(1.02);
}

.phone-btn:hover::before,
.solid-btn:hover::before,
.outline-btn:hover::before {
  transform: translateX(120%);
}

.phone-btn:active,
.solid-btn:active,
.outline-btn:active {
  transform: translateY(0) scale(.98);
}

.phone-btn:focus-visible,
.solid-btn:focus-visible,
.outline-btn:focus-visible {
  outline: 3px solid rgba(236, 18, 101, .35);
  outline-offset: 4px;
}

.hamb {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: #f5f6fa;
  cursor: pointer;
}

.hamb span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #101632;
}

.hero {
  position: relative;
  min-height: clamp(520px, calc(100svh - 110px), 690px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 13, 29, .96) 0%, rgba(12, 18, 37, .82) 38%, rgba(12, 18, 37, .32) 68%, rgba(12, 18, 37, .06) 100%),
    url("assets/hero-concrete-truck.png") center right / cover no-repeat;
  background-color: #121827;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: 0;
  z-index: 1;
  width: 210px;
  height: 95px;
  background: var(--pink);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 570px;
  padding: clamp(64px, 9vh, 92px) 0 clamp(82px, 12vh, 120px);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 22px;
  color: #f7f8fb;
  font-size: clamp(40px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.18;
}

h1 .accent,
h2 .accent {
  color: var(--pink);
}

.hero p {
  max-width: 500px;
  margin-bottom: 29px;
  color: #fff;
  font-size: 16px;
  line-height: 1.56;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.solid-btn,
.outline-btn {
  min-height: 44px;
  padding: 12px 25px;
  border: 2px solid var(--pink);
  font-size: 13px;
  text-align: center;
}

.solid-btn {
  color: #fff;
  background: var(--pink);
}

.outline-btn {
  border-color: rgba(255, 255, 255, .78);
  color: #fff;
  background: rgba(3, 7, 16, .22);
}

.outline-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 12px 28px rgba(255, 255, 255, .12);
  transform: translateY(-3px) scale(1.02);
}

.hero .solid-btn {
  animation: button-pulse 2.8s ease-in-out infinite;
}

.hero .solid-btn:hover {
  animation-play-state: paused;
}

@keyframes button-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(236, 18, 101, .34);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(236, 18, 101, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .phone-btn,
  .solid-btn,
  .outline-btn,
  .phone-btn::before,
  .solid-btn::before,
  .outline-btn::before {
    transition: none;
    animation: none;
  }
}

.benefits {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  color: #fff;
  background: var(--navy);
}

.benefits-grid {
  min-height: 119px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 40px;
  padding: 18px 0;
}

.benefit {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 16px;
}

.benefit svg {
  width: 52px;
  height: 52px;
  stroke: #fff;
  stroke-width: 2.4;
  fill: none;
  opacity: .96;
}

.benefit h3 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.benefit p {
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
}

.about {
  padding: 66px 0 56px;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 520px) minmax(0, 1fr);
  align-items: center;
  gap: 54px;
}

.about-copy {
  max-width: 570px;
}

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

.about-copy p {
  color: #333b4c;
  font-size: 15px;
  line-height: 1.72;
}

.about-copy p + p {
  margin-top: 14px;
}

.about-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #101632;
}

.about-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.intro {
  padding: 50px 0 34px;
  background: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  align-items: center;
  gap: 58px;
}

.section-eyebrow {
  margin-bottom: 16px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 14px;
  color: #202538;
  font-size: clamp(28px, 3.4vw, 31px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.14;
}

.intro p {
  margin-bottom: 18px;
  color: #333b4c;
  font-size: 14px;
  line-height: 1.56;
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  color: #222938;
  font-size: 14px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--pink);
  font-size: 11px;
  font-weight: 900;
}

.intro-image {
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps {
  position: relative;
  padding: 30px 0 42px;
  overflow: hidden;
  background: #f5f6f9;
  text-align: center;
}

.steps .section-eyebrow {
  margin-bottom: 6px;
}

.steps h2 {
  max-width: 470px;
  margin: 0 auto 36px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 54px;
  text-align: center;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 12%;
  right: 12%;
  z-index: 0;
  height: 1px;
  background: #d9dce5;
}

.step {
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  border: 1px solid #e8e9ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  background: #fff;
  box-shadow: 0 2px 10px rgba(14, 22, 45, .08);
}

.step-icon svg {
  width: 34px;
  height: 34px;
  stroke: var(--pink);
  stroke-width: 2.4;
  fill: none;
}

.step:nth-child(4) .step-icon {
  border-color: var(--pink);
  color: #fff;
  background: var(--pink);
}

.step:nth-child(4) .step-icon svg {
  stroke: #fff;
}

.num {
  margin-bottom: 9px;
  color: #111827;
  font-size: 15px;
  font-weight: 900;
}

.step h3 {
  margin-bottom: 6px;
  color: #1d2335;
  font-size: 14px;
  font-weight: 900;
}

.step p {
  max-width: 190px;
  margin: 0 auto;
  color: #1d2335;
  font-size: 13px;
  line-height: 1.35;
}

.cta {
  padding: 31px 0;
  color: #fff;
  background:
    linear-gradient(rgba(24, 29, 88, .92), rgba(24, 29, 88, .92)),
    url("") center / cover no-repeat;
}

.cta-wrap {
  display: grid;
  grid-template-columns: 84px minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 26px;
}

.worker {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink);
}

.worker svg {
  width: 42px;
  height: 42px;
  fill: #fff;
}

.cta h2 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 22px;
  letter-spacing: 0;
}

.cta p {
  max-width: 470px;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}

.cta .solid-btn,
.cta .outline-btn {
  min-width: 230px;
  min-height: 50px;
}

.footer {
  padding: 36px 0 19px;
  color: #fff;
  background-color: #09101d;
  background-image: radial-gradient(circle at 30% -30%, rgba(45, 65, 120, .34), transparent 38%);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr 1.1fr;
  align-items: start;
  gap: 36px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.footer-logo {
  width: 197px;
  margin-bottom: 24px;
}

.footer-about p {
  max-width: 280px;
  color: #f5f7fb;
  font-size: 13px;
  line-height: 1.55;
}

.footer h4 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.footer-nav,
.footer-contact {
  border-left: 1px solid rgba(255, 255, 255, .18);
  padding-left: 34px;
}

.footer-nav ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 45px;
  color: #fff;
  font-size: 13px;
  list-style: none;
}

.contact-list {
  display: grid;
  gap: 15px;
  color: #fff;
  font-size: 14px;
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  transition: .2s;
}

.social-links a:hover {
  border-color: var(--pink);
  background: var(--pink);
  transform: translateY(-2px);
}

.social-links svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 17px;
  color: #fff;
  font-size: 12px;
}

.copyright span {
  color: var(--pink);
  font-size: 16px;
  vertical-align: -1px;
}

@media (max-width: 1100px) {
  .nav-wrap {
    gap: 18px;
  }

  .phone-btn {
    padding: 0 18px;
  }

  .cta-wrap {
    grid-template-columns: 84px minmax(0, 1fr) 230px;
  }

  .cta .outline-btn {
    grid-column: 3;
  }
}

@media (max-width: 980px) {
  .topbar {
    min-height: 86px;
  }

  .menu,
  .phone-btn {
    display: none;
  }

  .hamb {
    display: flex;
  }

  .logo {
    width: 150px;
  }

  .menu.open {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    display: flex;
    width: 100%;
    padding: 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .12);
  }

  .hero {
    min-height: clamp(500px, calc(100svh - 86px), 640px);
    background-position: 58% center;
  }

  .hero-content {
    max-width: 500px;
    padding: 62px 0 74px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    padding: 28px 0;
  }

  .about {
    padding: 52px 0 44px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-copy {
    max-width: none;
  }

  .about-video {
    width: 100%;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .intro-image {
    height: clamp(260px, 45vw, 360px);
  }

  .timeline {
    gap: 25px;
  }

  .cta-wrap {
    grid-template-columns: 72px 1fr;
    gap: 20px;
  }

  .cta .solid-btn,
  .cta .outline-btn {
    grid-column: auto;
    width: 100%;
    min-width: 0;
  }

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

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-nav {
    border-left: 0;
    padding-left: 0;
  }

  .footer-contact {
    padding-left: 28px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 30px, 1110px);
  }

  .topbar {
    min-height: 78px;
  }

  .menu.open {
    top: 78px;
  }

  .logo {
    width: 135px;
    min-width: 135px;
  }

  .hero {
    min-height: calc(100svh - 78px);
    background:
      linear-gradient(90deg, rgba(7, 13, 29, .97), rgba(7, 13, 29, .78)),
      url("assets/hero-concrete-truck.png") 62% center / cover no-repeat;
  }

  .hero::after {
    width: 130px;
    height: 60px;
  }

  .hero-content {
    padding: 48px 0 70px;
  }

  .eyebrow {
    font-size: 12px;
  }

  h1 {
    font-size: clamp(32px, 10vw, 38px);
    line-height: 1.14;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .solid-btn,
  .outline-btn {
    width: 100%;
    white-space: normal;
  }

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

  .benefit {
    grid-template-columns: 48px 1fr;
  }

  .benefit svg {
    width: 44px;
    height: 44px;
  }

  .intro {
    padding: 38px 0 30px;
  }

  .about {
    padding: 42px 0 34px;
  }

  .about-copy p {
    font-size: 14px;
    line-height: 1.66;
  }

  .about-video {
    aspect-ratio: 16 / 10;
  }

  .check-list li {
    align-items: flex-start;
  }

  .intro-image {
    height: 230px;
  }

  .steps {
    padding: 30px 0;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .timeline::before {
    display: none;
  }

  .step p {
    max-width: 260px;
  }

  .cta-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .worker {
    margin: 0 auto;
  }

  .cta h2 {
    font-size: 21px;
  }

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

  .footer-nav,
  .footer-contact {
    border-left: 0;
    padding-left: 0;
  }

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

  .copyright {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 1110px);
  }

  .hero {
    background-position: 67% center;
  }

  .benefit p br {
    display: none;
  }

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