:root {
  --p1-ink: #102a3c;
  --p1-ink-soft: #355166;
  --p1-blue: #0b5f8f;
  --p1-blue-deep: #083f60;
  --p1-blue-pale: #eaf5fb;
  --p1-gold: #d29b38;
  --p1-gold-pale: #fbf4e5;
  --p1-sand: #f7f4ee;
  --p1-white: #ffffff;
  --p1-line: rgba(16, 42, 60, 0.14);
  --p1-shadow: 0 24px 70px rgba(16, 42, 60, 0.10);
  --p1-radius-xl: 34px;
  --p1-radius-lg: 24px;
  --p1-radius-md: 18px;
}

.phase1-page {
  overflow: clip;
  color: var(--p1-ink);
  background: var(--p1-white);
}

.phase1-page h1,
.phase1-page h2,
.phase1-page h3,
.phase1-page p {
  margin-top: 0;
}

.phase1-page h1,
.phase1-page h2,
.phase1-page h3 {
  color: var(--p1-ink);
}

.phase1-page p {
  color: var(--p1-ink-soft);
  line-height: 1.78;
}

.phase1-breadcrumbs {
  border-bottom: 1px solid var(--p1-line);
  background: #fbfcfd;
}

.phase1-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #587083;
  font-size: 0.84rem;
}

.phase1-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.phase1-breadcrumbs a {
  color: var(--p1-blue);
  font-weight: 700;
}

.phase1-breadcrumbs svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.phase1-hero {
  position: relative;
  padding: 92px 0 82px;
  background:
    radial-gradient(circle at 12% 8%, rgba(210, 155, 56, 0.12), transparent 25%),
    radial-gradient(circle at 88% 0%, rgba(11, 95, 143, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.phase1-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 95, 143, 0.25), transparent);
}

.phase1-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.72fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.phase1-hero-copy h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.1vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.phase1-hero-lede {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 1.6vw, 1.27rem);
}

.phase1-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
  color: #476376;
  font-size: 0.88rem;
  font-weight: 700;
}

.phase1-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.phase1-trust-row svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--p1-blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.phase1-offer-card {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(11, 95, 143, 0.18);
  border-radius: var(--p1-radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--p1-shadow);
}

.phase1-offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 36px;
  width: 84px;
  height: 6px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--p1-blue), var(--p1-gold));
}

.phase1-offer-label {
  margin-bottom: 12px;
  color: var(--p1-blue) !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.phase1-price {
  display: block;
  margin-bottom: 18px;
  color: var(--p1-ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.7rem, 5vw, 4.25rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.phase1-offer-heading {
  display: block;
  margin-bottom: 18px;
  color: var(--p1-ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1.02;
}

.phase1-offer-meta {
  display: grid;
  gap: 0;
  margin: 28px 0 20px;
  border-top: 1px solid var(--p1-line);
}

.phase1-offer-meta > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--p1-line);
}

.phase1-offer-meta small {
  color: #728695;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phase1-offer-meta span {
  color: var(--p1-ink);
  font-size: 0.94rem;
  font-weight: 700;
}

.phase1-offer-link,
.phase1-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--p1-blue);
  font-weight: 800;
}

.phase1-section {
  padding: 94px 0;
}

.phase1-section-tint {
  background: linear-gradient(180deg, #f7fafc, #f1f7fa);
}

.phase1-section-blueprint {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(11, 95, 143, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 95, 143, 0.04) 1px, transparent 1px),
    #f9fcfe;
  background-size: 34px 34px;
}

.phase1-section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.phase1-section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.phase1-section-heading h2,
.phase1-column-intro h2,
.phase1-limit-heading h2,
.phase1-delivery-copy h2,
.phase1-faq-intro h2,
.phase1-article-aside h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4.2vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.phase1-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.phase1-icon-card {
  position: relative;
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--p1-line);
  border-radius: var(--p1-radius-lg);
  background: var(--p1-white);
  box-shadow: 0 16px 45px rgba(16, 42, 60, 0.06);
}

.phase1-icon-card > svg {
  width: 38px;
  height: 38px;
  margin: 32px 0 24px;
  fill: none;
  stroke: var(--p1-blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.phase1-card-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(16, 42, 60, 0.28);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.phase1-icon-card h3 {
  max-width: 280px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.15;
}

.phase1-two-column,
.phase1-limit-layout,
.phase1-faq-layout,
.phase1-article-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: start;
}

.phase1-column-intro,
.phase1-limit-heading,
.phase1-faq-intro,
.phase1-article-aside {
  position: sticky;
  top: 128px;
}

.phase1-check-stack {
  display: grid;
  gap: 12px;
}

.phase1-check-stack article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 24px;
  border: 1px solid var(--p1-line);
  border-radius: var(--p1-radius-md);
  background: #fff;
}

.phase1-check-stack p {
  margin: 4px 0 0;
  color: var(--p1-ink) !important;
  font-weight: 650;
}

.phase1-check {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--p1-blue-pale);
  color: var(--p1-blue);
}

.phase1-check svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.phase1-delivery-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
}

.phase1-delivery-copy {
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--p1-radius-xl);
  background: var(--p1-white);
  box-shadow: var(--p1-shadow);
}

.phase1-delivery-list {
  display: grid;
  gap: 14px;
}

.phase1-delivery-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--p1-line);
}

.phase1-delivery-list span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--p1-blue);
  color: #fff;
  font-size: 0.79rem;
  font-weight: 800;
}

.phase1-delivery-list h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
}

.phase1-limit-list {
  display: grid;
  gap: 16px;
}

.phase1-limit-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  padding: 22px 24px;
  border-left: 4px solid var(--p1-gold);
  border-radius: 0 var(--p1-radius-md) var(--p1-radius-md) 0;
  background: var(--p1-gold-pale);
}

.phase1-limit-list svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #9b6915;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.phase1-limit-list p {
  margin: 0;
  color: #59461f !important;
}

.phase1-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.phase1-process-card {
  min-height: 260px;
  padding: 30px 26px;
  border: 1px solid var(--p1-line);
  border-radius: var(--p1-radius-lg);
  background: var(--p1-white);
  box-shadow: 0 15px 40px rgba(16, 42, 60, 0.05);
}

.phase1-process-card > span {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--p1-blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.phase1-process-card h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.phase1-process-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.phase1-faq-list {
  display: grid;
  gap: 12px;
}

.phase1-faq-list details {
  border: 1px solid var(--p1-line);
  border-radius: var(--p1-radius-md);
  background: #fff;
  overflow: hidden;
}

.phase1-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 24px;
  cursor: pointer;
  color: var(--p1-ink);
  font-weight: 800;
  list-style: none;
}

.phase1-faq-list summary::-webkit-details-marker {
  display: none;
}

.phase1-faq-list summary i {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--p1-blue-pale);
}

.phase1-faq-list summary i::before,
.phase1-faq-list summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--p1-blue);
  transform: translate(-50%, -50%);
}

.phase1-faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.phase1-faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.phase1-faq-list details p {
  margin: 0;
  padding: 0 24px 24px;
}

.phase1-professional-standards {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(11, 95, 143, 0.14);
  border-radius: var(--p1-radius-xl);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--p1-shadow);
}

.phase1-professional-standards h2 {
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  line-height: 1.02;
}

.phase1-standard-grid {
  display: grid;
  gap: 16px;
}

.phase1-standard-grid article {
  padding: 20px 22px;
  border: 1px solid var(--p1-line);
  border-radius: var(--p1-radius-md);
  background: #f9fcfe;
}

.phase1-standard-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--p1-blue-deep);
  font-size: 1.06rem;
}

.phase1-standard-grid p {
  margin: 0;
}

.phase1-article-section {
  background: linear-gradient(180deg, #fff, #f8fbfd);
}

.phase1-article-aside {
  padding: 30px;
  border: 1px solid var(--p1-line);
  border-radius: var(--p1-radius-lg);
  background: var(--p1-sand);
}

.phase1-aside-label {
  color: var(--p1-blue) !important;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.phase1-article-aside h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.phase1-prose {
  display: grid;
  gap: 24px;
}

.phase1-prose section {
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--p1-line);
  border-radius: var(--p1-radius-lg);
  background: #fff;
  box-shadow: 0 14px 38px rgba(16, 42, 60, 0.05);
}

.phase1-prose h2 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 2.8vw, 2.4rem);
}

.phase1-prose p {
  margin-bottom: 0;
  font-size: 1.02rem;
}

.phase1-related-section {
  border-top: 1px solid var(--p1-line);
  background: #f8fafb;
}

.phase1-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.phase1-related-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--p1-line);
  border-radius: var(--p1-radius-lg);
  background: #fff;
}

.phase1-related-card small {
  margin-bottom: 32px;
  color: var(--p1-blue);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phase1-related-card h3 {
  margin-bottom: 16px;
  font-size: 1.75rem;
  line-height: 1.1;
}

.phase1-related-card a {
  display: inline-flex;
  gap: 8px;
  margin-top: auto;
  color: var(--p1-blue);
  font-weight: 800;
}

.phase1-final-cta {
  padding: 78px 0 96px;
  background: #fff;
}

.phase1-final-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid rgba(11, 95, 143, 0.18);
  border-radius: var(--p1-radius-xl);
  background:
    radial-gradient(circle at right top, rgba(210, 155, 56, 0.15), transparent 36%),
    linear-gradient(135deg, #eef8fd, #fff);
  box-shadow: var(--p1-shadow);
}

.phase1-final-cta-card h2 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  line-height: 1.02;
}

.phase1-final-cta-card p {
  max-width: 760px;
  margin-bottom: 0;
}

.phase1-final-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 245px;
}

/* Comprehensive pricing page */
.phase1-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.phase1-tier-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 170px;
  padding: 26px;
  border: 1px solid var(--p1-line);
  border-radius: var(--p1-radius-lg);
  background: #fff;
  box-shadow: 0 14px 36px rgba(16, 42, 60, 0.05);
}

.phase1-tier-card span {
  color: #617787;
  font-size: 0.9rem;
  font-weight: 750;
}

.phase1-tier-card strong {
  color: var(--p1-ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 1;
}

.phase1-pricing-notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.phase1-pricing-notes article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(210, 155, 56, 0.34);
  border-radius: var(--p1-radius-md);
  background: var(--p1-gold-pale);
}

.phase1-pricing-notes article > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  color: #9b6915;
  font-weight: 900;
}

.phase1-pricing-notes p {
  margin: 1px 0 0;
  color: #5e4b24 !important;
  font-size: 0.92rem;
}

.phase1-price-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.phase1-price-table-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--p1-line);
  border-radius: var(--p1-radius-xl);
  background: #fff;
  box-shadow: var(--p1-shadow);
}

.phase1-price-table-heading {
  padding-bottom: 22px;
  border-bottom: 2px solid var(--p1-blue);
}

.phase1-price-table-heading h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.phase1-price-list {
  display: grid;
}

.phase1-price-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 19px 0;
  border-bottom: 1px solid var(--p1-line);
}

.phase1-price-list a:last-child {
  border-bottom: 0;
}

.phase1-price-list span {
  color: var(--p1-ink);
  font-weight: 720;
}

.phase1-price-list strong {
  color: var(--p1-blue-deep);
  white-space: nowrap;
}

.phase1-price-list a:hover span,
.phase1-price-list a:focus-visible span {
  color: var(--p1-blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.phase1-area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.phase1-area-card {
  padding: 28px;
  border: 1px solid rgba(11, 95, 143, 0.16);
  border-radius: var(--p1-radius-lg);
  background: rgba(255, 255, 255, 0.96);
}

.phase1-area-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  fill: none;
  stroke: var(--p1-blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.phase1-area-card h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.phase1-area-card p {
  margin-bottom: 16px;
}

.phase1-area-card small {
  display: block;
  padding-top: 14px;
  border-top: 1px solid var(--p1-line);
  color: #536e80;
  font-weight: 700;
  line-height: 1.55;
}

.phase1-route-list {
  border: 1px solid var(--p1-line);
  border-radius: var(--p1-radius-lg);
  background: #fff;
  overflow: hidden;
}

.phase1-route-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 21px 24px;
  border-bottom: 1px solid var(--p1-line);
}

.phase1-route-list article:last-child {
  border-bottom: 0;
}

.phase1-route-list span {
  color: var(--p1-ink);
  font-weight: 700;
}

.phase1-route-list strong {
  min-width: 76px;
  color: var(--p1-blue-deep);
  font-size: 1.15rem;
  text-align: right;
}

/* Sample report */
.phase1-report-notice {
  padding-bottom: 24px;
}

.phase1-notice-banner {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  padding: 24px 28px;
  border: 1px solid #e4c170;
  border-radius: var(--p1-radius-lg);
  background: var(--p1-gold-pale);
}

.phase1-notice-banner svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: #956512;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.phase1-notice-banner strong {
  display: block;
  margin-bottom: 5px;
  color: #6d4a0f;
  font-size: 1.1rem;
}

.phase1-notice-banner p {
  margin: 0;
  color: #6d572d !important;
}

.phase1-report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.phase1-report-actions .button {
  min-height: 48px;
}

.phase1-sample-report {
  padding-top: 28px;
  background: #f1f4f6;
}

.phase1-report-shell {
  padding: clamp(24px, 5vw, 64px);
  border: 1px solid #d9e1e6;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(16, 42, 60, 0.14);
}

.phase1-report-cover {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 34px;
  border-bottom: 3px solid var(--p1-blue);
}

.phase1-report-cover h2 {
  margin-bottom: 10px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
}

.phase1-report-mark {
  display: grid;
  place-items: center;
  flex: 0 0 112px;
  width: 112px;
  height: 112px;
  border-radius: 28px;
  background: var(--p1-blue);
}

.phase1-report-mark svg {
  width: 70px;
  height: 70px;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.phase1-report-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 28px 0 54px;
  border: 1px solid var(--p1-line);
  border-radius: 16px;
  overflow: hidden;
}

.phase1-report-meta-grid div {
  padding: 20px;
  border-right: 1px solid var(--p1-line);
}

.phase1-report-meta-grid div:last-child {
  border-right: 0;
}

.phase1-report-meta-grid small,
.phase1-report-meta-grid strong {
  display: block;
}

.phase1-report-meta-grid small {
  margin-bottom: 7px;
  color: #6d8190;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phase1-report-section-heading {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
}

.phase1-report-section-heading > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--p1-blue);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.phase1-report-section-heading small {
  display: block;
  margin-bottom: 4px;
  color: var(--p1-blue);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phase1-report-section-heading h2 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.phase1-report-counts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 62px;
}

.phase1-report-counts article {
  padding: 26px;
  border-radius: 18px;
}

.phase1-report-counts strong,
.phase1-report-counts span {
  display: block;
}

.phase1-report-counts strong {
  margin-bottom: 8px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 3.5rem;
  line-height: 1;
}

.finding-significant {
  --finding: #b54a38;
  --finding-bg: #fff0ed;
}

.finding-safety {
  --finding: #b27413;
  --finding-bg: #fff7e8;
}

.finding-maintenance {
  --finding: #24739a;
  --finding-bg: #edf7fc;
}

.phase1-report-counts article {
  border: 1px solid color-mix(in srgb, var(--finding) 30%, transparent);
  background: var(--finding-bg);
  color: var(--finding);
}

.phase1-finding-card {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
  gap: 0;
  margin-bottom: 24px;
  border: 1px solid var(--p1-line);
  border-left: 6px solid var(--finding);
  border-radius: 18px;
  overflow: hidden;
}

.phase1-finding-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 310px;
  background-color: #dbe4e9;
  overflow: hidden;
}

.phase1-finding-visual::before,
.phase1-finding-visual::after {
  content: "";
  position: absolute;
}

.roof-visual {
  background: linear-gradient(160deg, #c7d9e3 0 46%, #e8ddd0 46% 100%);
}

.roof-visual::before {
  left: 12%;
  right: 12%;
  bottom: 17%;
  height: 42%;
  background: repeating-linear-gradient(0deg, #5b6d76 0 6px, #465861 6px 12px);
  clip-path: polygon(50% 0, 100% 55%, 91% 61%, 50% 18%, 9% 61%, 0 55%);
}

.panel-visual {
  background: linear-gradient(145deg, #dfe7eb, #b9c7cf);
}

.panel-visual::before {
  width: 44%;
  height: 72%;
  border: 9px solid #5b6870;
  border-radius: 8px;
  background: repeating-linear-gradient(0deg, #2f3940 0 12px, #bfc8cd 12px 18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.drainage-visual {
  background: linear-gradient(#cce4ee 0 46%, #b9a37a 46% 100%);
}

.drainage-visual::before {
  left: 34%;
  top: 16%;
  width: 22px;
  height: 62%;
  border-radius: 6px;
  background: #677982;
  box-shadow: 45px 105px 0 -5px #677982;
}

.drainage-visual::after {
  left: 34%;
  top: 70%;
  width: 70px;
  height: 22px;
  border-radius: 0 12px 12px 0;
  background: #677982;
}

.phase1-finding-visual > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #314957;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.phase1-finding-copy {
  padding: clamp(26px, 4vw, 42px);
}

.phase1-finding-category {
  color: var(--finding) !important;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phase1-finding-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  line-height: 1.08;
}

.phase1-recommendation {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--finding-bg);
}

.phase1-recommendation strong,
.phase1-recommendation span {
  display: block;
}

.phase1-recommendation strong {
  margin-bottom: 5px;
  color: var(--finding);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phase1-report-systems {
  margin-top: 64px;
}

.phase1-report-system-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.phase1-report-system-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--p1-line);
  border-radius: 15px;
  background: #f9fbfc;
}

.phase1-report-system-grid article > span {
  display: block;
  margin-bottom: 34px;
  color: var(--p1-blue);
  font-size: 0.75rem;
  font-weight: 900;
}

.phase1-report-system-grid h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.phase1-report-system-grid p {
  margin: 0;
  font-size: 0.84rem;
}

.phase1-report-footer {
  margin-top: 52px;
  padding: 24px;
  border-top: 3px solid var(--p1-blue);
  background: #f3f8fb;
}

.phase1-report-footer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--p1-blue-deep);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.phase1-report-footer p {
  margin: 0;
}

/* Full site directory appended to footer */
.phase1-site-directory {
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #f2f7fa;
}

.phase1-directory-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.phase1-directory-heading h2 {
  max-width: 680px;
  font-size: clamp(2.15rem, 4vw, 3.8rem);
}

.phase1-directory-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.phase1-directory-column h3 {
  margin-bottom: 16px;
  color: var(--p1-blue-deep);
  font-size: 1.12rem;
}

.phase1-directory-column nav {
  display: grid;
  gap: 10px;
}

.phase1-directory-column a {
  color: #526b7d;
  font-size: 0.88rem;
  line-height: 1.4;
}

.phase1-directory-column a:hover,
.phase1-directory-column a:focus-visible {
  color: var(--p1-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Service-card link enhancements added by phase1.js */
.phase1-js-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--p1-blue);
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .phase1-process-grid,
  .phase1-report-system-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .phase1-tier-grid,
  .phase1-pricing-notes,
  .phase1-area-grid {
    grid-template-columns: 1fr;
  }

  .phase1-hero-grid,
  .phase1-two-column,
  .phase1-limit-layout,
  .phase1-faq-layout,
  .phase1-delivery-grid,
  .phase1-professional-standards,
  .phase1-article-layout,
  .phase1-price-columns,
  .phase1-final-cta-card,
  .phase1-finding-card {
    grid-template-columns: 1fr;
  }

  .phase1-column-intro,
  .phase1-limit-heading,
  .phase1-faq-intro,
  .phase1-article-aside {
    position: static;
  }

  .phase1-icon-grid,
  .phase1-related-grid {
    grid-template-columns: 1fr;
  }

  .phase1-icon-card,
  .phase1-related-card {
    min-height: auto;
  }

  .phase1-final-actions {
    min-width: 0;
  }

  .phase1-report-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .phase1-report-meta-grid div:nth-child(2) {
    border-right: 0;
  }

  .phase1-report-meta-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--p1-line);
  }
}

@media (max-width: 680px) {
  .phase1-hero,
  .phase1-section {
    padding: 68px 0;
  }

  .phase1-hero-copy h1 {
    font-size: clamp(2.65rem, 13vw, 4.15rem);
  }

  .phase1-trust-row {
    display: grid;
  }

  .phase1-offer-meta > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .phase1-process-grid,
  .phase1-report-counts,
  .phase1-report-system-grid,
  .phase1-directory-grid {
    grid-template-columns: 1fr;
  }

  .phase1-process-card {
    min-height: auto;
  }

  .phase1-report-cover {
    align-items: flex-start;
  }

  .phase1-report-mark {
    flex-basis: 70px;
    width: 70px;
    height: 70px;
    border-radius: 18px;
  }

  .phase1-report-mark svg {
    width: 44px;
    height: 44px;
  }

  .phase1-report-meta-grid {
    grid-template-columns: 1fr;
  }

  .phase1-report-meta-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--p1-line);
  }

  .phase1-report-meta-grid div:last-child {
    border-bottom: 0;
  }

  .phase1-finding-visual {
    min-height: 245px;
  }

  .phase1-directory-heading {
    display: block;
  }
}

.phase1-print-button {
  margin-top: 16px;
}

@media print {
  body.sshi-phase1-sample-report .site-header,
  body.sshi-phase1-sample-report .phase1-breadcrumbs,
  body.sshi-phase1-sample-report .phase1-hero,
  body.sshi-phase1-sample-report .phase1-report-notice,
  body.sshi-phase1-sample-report .phase1-related-section,
  body.sshi-phase1-sample-report .phase1-final-cta,
  body.sshi-phase1-sample-report .site-footer,
  body.sshi-phase1-sample-report #wpadminbar,
  body.sshi-phase1-sample-report .wpvibe-preview-banner {
    display: none !important;
  }

  body.sshi-phase1-sample-report,
  body.sshi-phase1-sample-report .phase1-sample-report {
    background: #fff !important;
  }

  body.sshi-phase1-sample-report .phase1-sample-report {
    padding: 0 !important;
  }

  body.sshi-phase1-sample-report .phase1-report-shell {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  body.sshi-phase1-sample-report .phase1-finding-card,
  body.sshi-phase1-sample-report .phase1-report-summary,
  body.sshi-phase1-sample-report .phase1-report-systems,
  body.sshi-phase1-sample-report .phase1-report-footer {
    break-inside: avoid;
  }

  body.sshi-phase1-sample-report a {
    color: inherit !important;
    text-decoration: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .phase1-page *,
  .phase1-page *::before,
  .phase1-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
