/* ============================================================================
   UNDER CONSTRUCTION PAGE
   Append to businessstyle.css. Uses existing tokens (--c-navy, --c-cobalt,
   --c-lime, --c-lime-deep, --c-light). If any token name differs, swap it.
   ============================================================================ */
.construction {
  padding: clamp(60px, 9vw, 110px) 0;
  background: #fff;
}
.construction-wrap {
  max-width: 720px;
  text-align: center;
  position: relative;
}

/* Hazard stripe accent at top */
.construction-stripe {
  height: 8px;
  width: 120px;
  margin: 0 auto 32px;
  background: repeating-linear-gradient(
    45deg,
    #2A3350 0 12px,
    #5EB927 12px 24px
  );
}

/* Big construction icon */
.construction-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin-bottom: 20px;
  background: #5EB927;
  color: #fff;
  border: 3px solid #2A3350;
}
.construction-icon svg {
  width: 48px;
  height: 48px;
}

.construction-wrap .eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
}
.construction-wrap h1 {
  font-size: clamp(40px, 6.5vw, 72px);
  line-height: 1;
  margin: 0 0 18px;
}
.construction-wrap .sub {
  margin: 0 auto 32px;
  max-width: 560px;
}
.construction-ctas {
  justify-content: center;
  margin-bottom: 48px;
}

/* Build progress card */
.construction-progress {
  max-width: 440px;
  margin: 0 auto 40px;
  padding: 22px 24px;
  background: #F1F1F6;
  border: 1px solid #e3e3ea;
  text-align: left;
}
.progress-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.progress-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2A3350;
  font-size: 14px;
}
.progress-pct {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  color: #5EB927;
  font-size: 18px;
}
.progress-bar {
  height: 8px;
  background: #fff;
  border: 1px solid #d8d8e0;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 75%;
  background: #5EB927;
}
.progress-foot {
  margin-top: 10px;
  font-size: 12px;
  color: #6b7080;
  font-family: 'JetBrains Mono', monospace;
}

/* While-you-wait shortcut list */
.construction-shortcuts {
  border-top: 1px solid #e3e3ea;
  padding-top: 32px;
  max-width: 480px;
  margin: 0 auto;
}
.shortcut-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7080;
  font-size: 13px;
  margin-bottom: 14px;
}
.shortcut-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.shortcut-list a {
  color: #445BC8;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s;
}
.shortcut-list a:hover { border-bottom-color: #445BC8; }

/* Mobile */
@media (max-width: 640px) {
  .shortcut-list { grid-template-columns: 1fr; }
  .construction-ctas { flex-direction: column; align-items: stretch; }
  .construction-ctas .btn-primary,
  .construction-ctas .btn-secondary { text-align: center; }
}
