.briefing-sites-page {
  overflow: hidden;
  background: #f7fcff;
}

.site-hero {
  min-height: 86vh;
  background: linear-gradient(135deg, #ffffff 0%, #f5fcff 62%, #e9f9ff 100%);
}

.site-hero .hero-copy {
  padding-top: 18px;
}

.site-hero h1 {
  max-width: 720px;
}

.site-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0;
}

.section-heading {
  max-width: 650px;
}

.section-heading h2,
.attention-section h2,
.final-cta h2 {
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
}

.section-heading p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.prep-grid,
.step-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.prep-card,
.step-card {
  position: relative;
  min-height: 178px;
  padding: 21px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border: 1px solid rgba(37, 185, 242, 0.24);
  border-radius: 14px;
  background: linear-gradient(145deg, #e5f8ff 0%, #ffffff 100%);
  color: var(--blue-dark);
  box-shadow: 0 8px 16px rgba(37, 185, 242, 0.12);
}

.card-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.step-card .card-icon {
  border-color: rgba(8, 127, 186, 0.2);
  background: linear-gradient(145deg, #dff4ff 0%, #f9fdff 100%);
}

.prep-card > span:not(.card-icon),
.step-card > span:not(.card-icon) {
  position: absolute;
  top: 21px;
  right: 18px;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--blue-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.prep-card h3,
.step-card h3 {
  margin-top: 18px;
  font-size: 1.08rem;
}

.prep-card p,
.step-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.attention-section {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.attention-mark {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffc83d;
  color: #25364a;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(255, 200, 61, 0.25);
}

.attention-section p {
  max-width: 780px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.attention-section small {
  display: block;
  max-width: 780px;
  margin-top: 14px;
  color: var(--blue-dark);
  font-size: 0.94rem;
  line-height: 1.5;
}

.process-section {
  padding-bottom: 58px;
}

.form-section {
  padding-top: 24px;
}

.form-section .form-card {
  padding: 18px;
}

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

.step-card {
  min-height: 195px;
}

.final-cta {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto 52px;
  padding: 60px 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #087fba 0%, #25b9f2 100%);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 20px 44px rgba(6, 68, 105, 0.18);
}

.final-cta .eyebrow,
.final-cta h2,
.final-cta p {
  color: #ffffff;
}

.final-cta h2 {
  margin-top: 10px;
}

.final-cta p {
  max-width: 620px;
  margin: 14px auto 24px;
  line-height: 1.55;
}

.final-cta .primary-button {
  background: #ffffff;
  color: var(--blue-dark);
  box-shadow: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 30px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.site-footer img {
  display: block;
  width: 125px;
  height: auto;
}

@media (max-width: 980px) {
  .prep-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .site-section {
    padding: 56px 0;
  }

  .prep-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .prep-card,
  .step-card {
    min-height: auto;
  }

  .attention-section {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .final-cta {
    padding: 46px 22px;
  }

  .site-footer {
    align-items: center;
    flex-direction: column;
  }
}
