/* Conversion and commercial presentation helpers */
.authority-strip {
  width: min(var(--max), calc(100% - 2.8rem));
  margin: 0 auto;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.authority-strip article,
.price-card,
.profile-card,
.scope-note {
  border: 1px solid rgba(28, 42, 51, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(253, 248, 241, 0.9);
  box-shadow: var(--shadow-sm);
}

.authority-strip article {
  padding: 1rem 1.1rem;
}

.authority-strip strong,
.authority-strip span {
  display: block;
}

.authority-strip strong {
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.authority-strip span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.9rem;
}

.price-grid {
  display: grid;
  gap: 1rem;
}

.price-card {
  position: relative;
  padding: 1.35rem 1.2rem;
}

.price-card.is-featured {
  border-color: rgba(201, 111, 45, 0.38);
  box-shadow: 0 18px 44px rgba(165, 83, 28, 0.14);
}

.price-label {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--accent-pale);
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.05;
}

.price-value {
  display: block;
  margin: 0.75rem 0;
  color: var(--accent-deep);
  font-size: 2rem;
  font-weight: 800;
}

.price-card p,
.price-card li,
.profile-card p,
.scope-note p {
  color: var(--muted);
  line-height: 1.72;
  text-align: left;
}

.price-card ul {
  padding-left: 1.1rem;
}

.profile-layout {
  display: grid;
  gap: 1rem;
}

.profile-card {
  padding: 1.5rem;
}

.profile-card h2 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0;
}

.profile-meta span {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: var(--trust-soft);
  color: var(--trust);
  font-weight: 800;
  font-size: 0.82rem;
}

.scope-note {
  padding: 1.25rem;
  border-left: 4px solid var(--trust);
}

.scope-note strong {
  display: block;
  margin-bottom: 0.5rem;
}

.coverage-list {
  display: grid;
  gap: 1rem;
}

.coverage-list article {
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(253, 248, 241, 0.84);
  border: 1px solid rgba(28, 42, 51, 0.1);
  box-shadow: var(--shadow-sm);
}

.coverage-list strong {
  display: block;
  margin-bottom: 0.4rem;
}

.coverage-list span {
  color: var(--muted);
  line-height: 1.65;
}

@media (min-width: 760px) {
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  }

  .coverage-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .price-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .authority-strip {
    width: calc(100% - 1.4rem);
    grid-template-columns: 1fr;
  }

  /* Keep the final consultation area fully contained on narrow screens. */
  .home-conversion-hero .cta-panel {
    width: calc(100% - 1.4rem);
    gap: 0.8rem;
    padding: 0.75rem;
    border-radius: 22px;
  }

  .home-conversion-hero .cta-panel > div {
    min-width: 0;
    width: 100%;
    padding: 1.2rem;
    border: 1px solid rgba(28, 42, 51, 0.1);
    border-radius: 16px;
    background: rgba(253, 248, 241, 0.94);
    box-shadow: var(--shadow-sm);
  }

  .home-conversion-hero .cta-panel .eyebrow {
    max-width: 100%;
    margin-inline: 0;
    letter-spacing: 0.12em;
    overflow-wrap: anywhere;
  }

  .home-conversion-hero .cta-panel h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 9vw, 2.55rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .home-conversion-hero .cta-panel p,
  .home-conversion-hero .contact-block {
    max-width: 100%;
    min-width: 0;
  }

  .home-conversion-hero .contact-block {
    justify-items: stretch;
  }

  .home-conversion-hero .contact-block a {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: clamp(1rem, 4.7vw, 1.2rem);
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .home-conversion-hero .contact-block p {
    margin: 0;
    line-height: 1.65;
  }
}
