.wc-repair-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(44, 183, 223, 0.18), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(242, 185, 92, 0.18), transparent 26rem),
    #f5f7fb;
  color: #112433;
}

.wc-repair-page .site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.wc-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.74fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: stretch;
  padding-top: clamp(2.2rem, 5vw, 4.2rem);
}

.wc-hero .hero-copy,
.wc-hero .lead-card {
  min-width: 0;
}

.wc-hero .hero-copy {
  background: linear-gradient(135deg, #082736 0%, #0c4e65 58%, #087ea4 100%);
  color: #fff;
  border-radius: 2rem;
  padding: clamp(1.6rem, 4vw, 3rem);
  box-shadow: 0 30px 80px rgba(8, 39, 54, 0.24);
  position: relative;
  overflow: hidden;
}

.wc-hero .hero-copy::after {
  content: "";
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  right: -8rem;
  bottom: -10rem;
  background: rgba(255, 255, 255, 0.09);
}

.wc-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  margin: 0.35rem 0 1.1rem;
}

.wc-hero .hero-lead {
  max-width: 44rem;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.88);
}

.wc-hero .eyebrow,
.wc-hero .trust-line {
  color: rgba(255, 255, 255, 0.78);
}

.wc-hero .hero-points span {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.wc-hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.wc-hero .button.secondary:hover,
.wc-hero .button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
  outline: 3px solid rgba(242, 185, 92, 0.42);
  outline-offset: 3px;
}

.lead-card .consent-row {
  display: grid;
  grid-template-columns: 1.2rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  line-height: 1.45;
}

.lead-card .consent-row input[type="checkbox"] {
  width: 1.05rem;
  min-height: 1.05rem;
  height: 1.05rem;
  margin: 0.18rem 0 0;
  padding: 0;
  border-radius: 0.28rem;
  accent-color: #087ea4;
}

.lead-card {
  border: 1px solid rgba(8, 39, 54, 0.1);
  box-shadow: 0 24px 70px rgba(8, 39, 54, 0.14);
}

.problem-selector {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.problem-pill {
  min-height: 8.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  justify-content: space-between;
  padding: 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(8, 39, 54, 0.1);
  background: #fff;
  box-shadow: 0 16px 40px rgba(8, 39, 54, 0.07);
}

.problem-pill strong {
  font-size: 1rem;
}

.problem-pill span {
  color: #516579;
  line-height: 1.45;
}

.send-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.send-list article,
.scope-card,
.blocked-card {
  background: #fff;
  border: 1px solid rgba(8, 39, 54, 0.1);
  border-radius: 1.3rem;
  padding: 1.1rem;
  box-shadow: 0 16px 42px rgba(8, 39, 54, 0.07);
}

.send-list span,
.scope-card span,
.blocked-card span {
  display: block;
  color: #516579;
  margin-top: 0.45rem;
  line-height: 1.5;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.blocked-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.blocked-card {
  background: #fff8f2;
}

.trust-panel .text-photo-placeholder {
  border: 1px dashed rgba(8, 39, 54, 0.25);
  background: rgba(255, 255, 255, 0.62);
}

.wc-final {
  background: #082736;
  color: #fff;
  border-radius: 2rem;
  padding: clamp(1.4rem, 4vw, 2.5rem);
}

.wc-final p {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 980px) {
  .wc-hero,
  .problem-selector,
  .send-list,
  .scope-grid,
  .blocked-grid {
    grid-template-columns: 1fr;
  }

  .wc-hero h1 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .wc-hero {
    padding-top: 1rem;
  }

  .wc-hero .hero-copy,
  .wc-final {
    border-radius: 1.35rem;
  }

  .problem-pill {
    min-height: auto;
  }
}

.pipe-page .pipe-hero h1 {
  max-width: 13ch;
}

.pipe-page .lead-card input:disabled,
.pipe-page .lead-card select:disabled,
.pipe-page .lead-card textarea:disabled {
  background: #f7fafc;
  color: #526575;
  -webkit-text-fill-color: #526575;
}

.pipe-page .lead-card button:disabled {
  background: #91a7b5;
  color: #fff;
  box-shadow: none;
}

.pipe-page .trust-panel .blocked-grid {
  margin-top: 1rem;
}
