/* Shared styles for persona hub pages + supporting Wave A pages (pricing, how-it-works, features, trust). */

.hub-hero {
  padding: 80px 24px 56px;
  text-align: center;
  background: linear-gradient(180deg, #FAFBF6 0%, #FFFFFF 100%);
}
.hub-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  font-weight: 700;
  color: #0D1F1F;
  max-width: 840px;
  margin: 0 auto 20px;
  letter-spacing: -0.02em;
}
.hub-hero h1 em {
  font-style: normal;
  color: #007373;
}
.hub-hero .hub-sub {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.55;
  color: #4A5C5C;
  max-width: 620px;
  margin: 0 auto 32px;
}
.hub-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #007373;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.hub-cta:hover {
  background: #005757;
  transform: translateY(-1px);
  text-decoration: none;
}
.hub-hero .hub-trial {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: #6B7C7C;
}

.hub-section {
  padding: 64px 24px;
  max-width: 1040px;
  margin: 0 auto;
}
.hub-section h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.15;
  font-weight: 700;
  color: #0D1F1F;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.hub-section h2 em {
  font-style: normal;
  color: #7A3F0A;
}
.hub-section p.lede {
  font-size: 18px;
  line-height: 1.6;
  color: #3A4C4C;
  max-width: 720px;
  margin: 0 0 32px;
}

.hub-scenario {
  background: #F5F8F5;
  border-radius: 16px;
  padding: 32px;
  margin: 0 auto 40px;
  max-width: 720px;
}
.hub-scenario h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0D1F1F;
  margin: 0 0 16px;
}
.hub-scenario ul {
  margin: 0;
  padding: 0 0 0 20px;
  color: #3A4C4C;
  font-size: 16px;
  line-height: 1.6;
}
.hub-scenario li + li { margin-top: 10px; }

.hub-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hub-step {
  padding: 24px;
  border: 1px solid #E4EAE4;
  border-radius: 14px;
  background: #fff;
}
.hub-step .step-n {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #007373;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}
.hub-step h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0D1F1F;
  margin: 0 0 8px;
}
.hub-step p {
  font-size: 15px;
  line-height: 1.55;
  color: #4A5C5C;
  margin: 0;
}
@media (max-width: 720px) {
  .hub-steps { grid-template-columns: 1fr; }
}

.hub-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.hub-feature {
  padding: 24px;
  background: #fff;
  border: 1px solid #E4EAE4;
  border-radius: 14px;
}
.hub-feature h3 {
  font-size: 17px;
  font-weight: 600;
  color: #0D1F1F;
  margin: 0 0 8px;
}
.hub-feature h3 a,
.hub-step h3 a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.hub-feature h3 a:hover,
.hub-step h3 a:hover {
  border-bottom-color: #007373;
}
.hub-feature:has(h3 a) {
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, border-color 0.2s;
}
.hub-feature:has(h3 a):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-color: #007373;
}
.hub-feature p {
  font-size: 15px;
  line-height: 1.55;
  color: #4A5C5C;
  margin: 0;
}
@media (max-width: 720px) {
  .hub-features { grid-template-columns: 1fr; }
}

.hub-faq {
  max-width: 720px;
  margin: 0 auto;
}
.hub-faq details {
  border-bottom: 1px solid #E4EAE4;
  padding: 18px 0;
}
.hub-faq details[open] summary::after { transform: rotate(180deg); }
.hub-faq summary {
  list-style: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: #0D1F1F;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.hub-faq summary::-webkit-details-marker { display: none; }
.hub-faq summary::after {
  content: "▾";
  color: #6B7C7C;
  transition: transform 0.2s;
}
.hub-faq details p {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #4A5C5C;
}

.hub-cta-footer {
  background: #0D3B3B;
  color: #fff;
  padding: 64px 24px;
  text-align: center;
}
.hub-cta-footer h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.2;
  margin: 0 0 16px;
  color: #fff;
}
.hub-cta-footer p {
  color: #B8D4D4;
  font-size: 17px;
  margin: 0 0 28px;
}
.hub-cta-footer .hub-cta {
  background: #fff;
  color: #0D3B3B;
}
.hub-cta-footer .hub-cta:hover {
  background: #F0F5F5;
}

/* Homepage persona tiles (used on index.html) */
.vr-persona-tiles {
  padding: 56px 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.vr-persona-tiles h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 600;
  color: #0D1F1F;
  margin: 0 0 28px;
}
.vr-persona-tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.vr-persona-tile {
  display: block;
  padding: 24px 20px;
  background: #fff;
  border: 1px solid #E4EAE4;
  border-radius: 14px;
  text-decoration: none;
  color: #0D1F1F;
  transition: transform 0.15s, box-shadow 0.2s, border-color 0.2s;
  text-align: left;
}
.vr-persona-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-color: #007373;
}
.vr-persona-tile strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}
.vr-persona-tile span {
  font-size: 14px;
  color: #4A5C5C;
  line-height: 1.45;
}
@media (max-width: 860px) {
  .vr-persona-tiles-grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* Pricing page */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
.pricing-card {
  padding: 32px;
  border: 1px solid #E4EAE4;
  border-radius: 18px;
  background: #fff;
  text-align: center;
}
.pricing-card.featured {
  border-color: #007373;
  border-width: 2px;
  position: relative;
}
.pricing-card.featured::before {
  content: "Best value";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #007373;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 999px;
}
.pricing-card h3 { font-size: 20px; margin: 0 0 8px; color: #0D1F1F; }
.pricing-card .price { font-size: 40px; font-weight: 700; color: #0D1F1F; margin: 16px 0 8px; }
.pricing-card .price small { font-size: 15px; color: #6B7C7C; font-weight: 400; }
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}
.pricing-card li {
  padding: 8px 0;
  color: #3A4C4C;
  font-size: 15px;
  padding-left: 24px;
  position: relative;
}
.pricing-card li::before {
  content: "✓";
  color: #007373;
  font-weight: 700;
  position: absolute;
  left: 0;
}
@media (max-width: 720px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.pricing-promise {
  max-width: 720px;
  margin: 40px auto 0;
  padding: 24px;
  background: #F5F8F5;
  border-radius: 14px;
  text-align: center;
  color: #3A4C4C;
  font-size: 16px;
  line-height: 1.55;
}
.pricing-promise strong { color: #0D1F1F; }
