.construction-page {
  --construction-ink: #15202e;
  --construction-slate: #253345;
  --construction-muted: #667384;
  --construction-line: #d5dbe3;
  --construction-paper: #f6f4ee;
  --construction-accent: #d97706;
  overflow: hidden;
  color: var(--construction-ink);
}

.construction-hero {
  position: relative;
  padding: 78px 0 84px;
  background-color: var(--construction-paper);
  background-image:
    linear-gradient(rgba(37, 51, 69, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 51, 69, 0.055) 1px, transparent 1px);
  background-size: 32px 32px;
}

.construction-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 9px;
  background: var(--construction-accent);
  content: "";
}

.construction-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: 80px;
  align-items: center;
  margin-bottom: 58px;
}

.construction-hero__copy {
  max-width: 760px;
}

.construction-hero__visual {
  display: grid;
  gap: 18px;
}

.construction-hero__image {
  display: block;
  width: 100%;
  height: 220px;
  border-radius: 12px;
  object-fit: cover;
  object-position: 60% center;
  box-shadow: 0 18px 38px rgba(37, 51, 69, 0.17);
}

.construction-eyebrow {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.construction-hero h1 {
  margin: 0;
  color: var(--construction-ink);
  font-size: clamp(3.25rem, 5.2vw, 4.8rem);
  font-weight: 760;
  line-height: 1.01;
  letter-spacing: -0.05em;
}

.construction-hero__lead {
  max-width: 640px;
  margin: 24px 0 30px;
  color: #536173;
  font-size: 1.05rem;
  line-height: 1.65;
}

.construction-hero .btn,
.construction-final .btn {
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 7px;
  font-size: 0.94rem;
  font-weight: 750;
}

.construction-brief {
  width: 100%;
  border: 1px solid #bcc4ce;
  border-top: 5px solid var(--construction-slate);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 12px 12px 0 rgba(37, 51, 69, 0.08);
}

.construction-brief__header {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--construction-line);
  color: var(--construction-muted);
  font-size: 0.7rem;
  font-weight: 750;
  text-transform: uppercase;
}

.construction-brief__status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #47614c;
}

.construction-brief__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4f8b5d;
}

.construction-brief h2 {
  margin: 0;
  padding: 20px 18px;
  border-bottom: 1px solid var(--construction-line);
  font-size: 1.35rem;
  font-weight: 800;
}

.construction-brief__path {
  margin: 0;
  padding: 0;
  list-style: none;
}

.construction-brief__path li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 17px 18px;
  border-bottom: 1px solid var(--construction-line);
}

.construction-brief__path li:last-child {
  border-bottom: 0;
}

.construction-brief__path > li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #d5a05c;
  color: #a45708;
  font-size: 0.72rem;
  font-weight: 800;
}

.construction-brief__path strong,
.construction-brief__path small {
  display: block;
}

.construction-brief__path strong {
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.construction-brief__path small {
  color: var(--construction-muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.construction-chart {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  border: 1px solid #bec6d0;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(28, 39, 53, 0.16);
}

.construction-chart::before {
  position: absolute;
  top: -7px;
  left: 24px;
  width: 90px;
  height: 7px;
  background: var(--construction-accent);
  content: "";
}

.construction-chart__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 20px;
  border-bottom: 1px solid #e0e4e9;
  color: #29364a;
  font-size: 0.76rem;
}

.construction-chart__bar strong {
  display: flex;
  align-items: center;
  gap: 8px;
}

.construction-chart__bar img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.construction-chart__bar span {
  color: #778296;
}

.construction-chart__frame {
  display: block;
  width: 100%;
  height: 540px;
  border: 0;
  background: #f8fafc;
}

.construction-chart__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 54px;
  padding: 12px 20px;
  border-top: 1px solid #e0e4e9;
  color: #778296;
  font-size: 0.78rem;
}

.construction-chart__footer a {
  flex: 0 0 auto;
  color: var(--color-primary);
  font-weight: 750;
  text-decoration: none;
}

.construction-chart__footer i {
  margin-left: 4px;
  font-size: 0.7rem;
}

.construction-flow {
  padding: 92px 0;
  background: #fff;
}

.construction-section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.construction-section-heading h2,
.construction-planning h2,
.construction-final h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 760;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.construction-section-heading > p:last-child {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--construction-muted);
  line-height: 1.65;
}

.construction-flow__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--construction-line);
  border-bottom: 1px solid var(--construction-line);
}

.construction-flow__steps article {
  position: relative;
  padding: 34px 32px 32px;
  border-right: 1px solid var(--construction-line);
}

.construction-flow__steps article:first-child {
  padding-left: 0;
}

.construction-flow__steps article:last-child {
  padding-right: 0;
  border-right: 0;
}

.construction-flow__steps article > span {
  position: absolute;
  top: -12px;
  left: 0;
  padding: 2px 8px;
  background: #fff;
  color: var(--construction-accent);
  font-size: 0.7rem;
  font-weight: 800;
}

.construction-flow__steps i {
  margin-bottom: 18px;
  color: var(--color-primary);
  font-size: 1.4rem;
}

.construction-flow__steps h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
}

.construction-flow__steps p {
  margin: 9px 0 0;
  color: var(--construction-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.construction-planning {
  padding: 94px 0;
  background: var(--construction-slate);
  color: #fff;
}

.construction-planning__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 90px;
  align-items: center;
}

.construction-planning .construction-eyebrow {
  color: #f0b56d;
}

.construction-planning__copy > p:last-child {
  max-width: 560px;
  margin: 20px 0 0;
  color: #c7d0da;
  line-height: 1.65;
}

.construction-planning__views {
  display: grid;
  grid-template-columns: 1fr 42px 1fr;
  align-items: stretch;
}

.construction-planning__views article {
  padding: 24px;
  border: 1px solid #657284;
  background: #2d3c50;
}

.construction-planning__views article > span {
  display: block;
  margin-bottom: 26px;
  color: #aeb9c7;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.construction-planning__views strong {
  display: block;
  font-size: 1rem;
}

.construction-planning__views p {
  margin: 9px 0 0;
  color: #c7d0da;
  font-size: 0.84rem;
  line-height: 1.55;
}

.construction-planning__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f0b56d;
}

.construction-final {
  padding: 96px 0;
  background: #fff;
}

.construction-final__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 90px;
  align-items: start;
}

.construction-final__cta > p:not(.construction-eyebrow) {
  max-width: 500px;
  margin: 18px 0 27px;
  color: var(--construction-muted);
  line-height: 1.65;
}

.construction-faq {
  border-top: 1px solid #cfd5de;
}

.construction-faq details {
  border-bottom: 1px solid #cfd5de;
}

.construction-faq summary {
  padding: 22px 0;
  color: var(--construction-ink);
  font-size: 1rem;
  font-weight: 760;
  cursor: pointer;
}

.construction-faq details p {
  margin: -3px 0 22px;
  color: var(--construction-muted);
  line-height: 1.65;
}

@media (max-width: 991.98px) {
  .construction-hero__layout,
  .construction-planning__layout,
  .construction-final__layout {
    gap: 54px;
  }

  .construction-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  }

  .construction-hero__image {
    object-position: 64% center;
  }
}

@media (max-width: 767.98px) {
  .construction-hero {
    padding: 42px 0 58px;
    background-size: 24px 24px;
  }

  .construction-hero::before {
    width: 42%;
    height: 6px;
  }

  .construction-hero__layout,
  .construction-planning__layout,
  .construction-final__layout {
    grid-template-columns: 1fr;
  }

  .construction-hero__layout {
    gap: 38px;
    margin-bottom: 42px;
  }

  .construction-hero__visual {
    gap: 16px;
  }

  .construction-hero__image {
    width: 100%;
    height: 200px;
    border-radius: 11px;
    object-position: 65% 45%;
  }

  .construction-hero h1 {
    font-size: 2.65rem;
  }

  .construction-hero__lead {
    margin: 18px 0 24px;
    font-size: 0.94rem;
  }

  .construction-hero .btn,
  .construction-final .btn {
    width: 100%;
  }

  .construction-brief {
    width: 100%;
    margin: 0;
    box-shadow: 7px 7px 0 rgba(37, 51, 69, 0.08);
  }

  .construction-chart__bar {
    min-height: 46px;
    padding: 0 13px;
    font-size: 0.68rem;
  }

  .construction-chart__frame {
    height: 500px;
  }

  .construction-chart__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 12px 13px;
  }

  .construction-flow,
  .construction-planning,
  .construction-final {
    padding: 68px 0;
  }

  .construction-section-heading {
    margin-bottom: 34px;
  }

  .construction-section-heading h2,
  .construction-planning h2,
  .construction-final h2 {
    font-size: 2.35rem;
  }

  .construction-flow__steps {
    grid-template-columns: 1fr;
  }

  .construction-flow__steps article,
  .construction-flow__steps article:first-child,
  .construction-flow__steps article:last-child {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--construction-line);
  }

  .construction-flow__steps article:last-child {
    border-bottom: 0;
  }

  .construction-flow__steps article > span {
    top: 24px;
    right: 0;
    left: auto;
  }

  .construction-planning__views {
    grid-template-columns: 1fr;
  }

  .construction-planning__connector {
    height: 44px;
    transform: rotate(90deg);
  }

  .construction-final__layout {
    gap: 50px;
  }
}
