/* Pricing page: extends landing.css (header, buttons, FAQ, footer). No inline styles: the CSP only allows this file. */
.pricing-hero {
  background: linear-gradient(180deg, #f7faf7 0%, #f7faf7 78%, #e8eee9 100%);
  padding: 70px 0 56px;
  text-align: center;
}
.pricing-hero h1 {
  font-size: clamp(40px, 5.2vw, 72px);
  letter-spacing: -0.055em;
  max-width: 980px;
  margin: 0 auto;
}
.pricing-hero h1 em {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.06em;
}
.pricing-hero .hero-description {
  max-width: 760px;
}
.plans {
  padding-top: 40px;
  padding-bottom: 30px;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.plan {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px 28px 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--paper);
}
.plan.is-featured {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.plan.is-featured p,
.plan.is-featured li,
.plan.is-featured .plan-unit,
.plan.is-featured .plan-includes {
  color: #d8e4de;
}
.plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.plan-name {
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.plan-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 100px;
  background: var(--lime);
  color: var(--ink);
}
.plan-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}
.plan-price strong {
  font-size: clamp(38px, 3.6vw, 50px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 700;
}
.plan-unit {
  font-size: 14px;
}
.plan-tagline {
  font-size: 17px;
  line-height: 1.5;
  min-height: 3em;
}
.plan-includes {
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5c6f62;
}
.plan ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
  flex: 1;
}
.plan li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--body);
}
.plan li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23153e35' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 8.5l2.6 2.5L12 5.5'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.plan.is-featured li:before {
  background-color: #2b5a4d;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23e1f58a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 8.5l2.6 2.5L12 5.5'/%3E%3C/svg%3E");
}
.plan li.is-upcoming {
  color: #6d7f76;
}
.plan li.is-upcoming small {
  font-size: 12px;
  font-weight: 650;
  margin-left: 6px;
}
.plan .button {
  width: 100%;
  gap: 18px;
}
.plan.is-featured .button {
  background: var(--lime);
  color: var(--ink);
}
.plan.is-featured .button:hover {
  background: #eaffa3;
}
.plan .button.outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.plan .button.outline:hover {
  background: var(--soft);
}
.reassurance {
  text-align: center;
  font-size: 15px;
  margin-top: 30px;
}
.no-fees {
  padding-top: 60px;
  padding-bottom: 60px;
}
.no-fees h2 {
  font-size: clamp(34px, 4vw, 54px);
  margin-bottom: 36px;
  max-width: 760px;
}
.no-fees-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.no-fees article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.no-fees h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.no-fees p {
  font-size: 15px;
  line-height: 1.7;
}
.pricing-faq {
  padding-top: 40px;
}
.pricing-faq h2 {
  font-size: clamp(34px, 4vw, 48px);
}
.pricing-faq .questions p a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.pricing-note {
  font-size: 13px;
  margin-top: 26px;
}
.closing.pricing-closing h2 {
  font-size: clamp(40px, 5vw, 66px);
}
.footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 1050px) {
  .plan-grid {
    gap: 16px;
  }
  .plan {
    padding: 26px 22px 22px;
  }
  .no-fees-grid {
    gap: 22px;
  }
}
@media (max-width: 860px) {
  .plan-grid,
  .no-fees-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .plan.is-featured {
    order: -1;
  }
  .plan-tagline {
    min-height: 0;
  }
}
@media (max-width: 780px) {
  .pricing-hero {
    padding: 44px 0 36px;
  }
  .pricing-hero h1 {
    font-size: clamp(34px, 9.5vw, 44px);
  }
  .pricing-hero .hero-description {
    font-size: 17px;
  }
  .plans {
    padding-top: 26px;
  }
  .no-fees,
  .pricing-faq {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .footer nav {
    justify-content: flex-start;
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
