    /* ── Hero ── */
    .pricing-hero {
      padding: 8rem 0 4rem;
      text-align: center;
    }
    .pricing-hero h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 300;
      letter-spacing: -0.03em;
      line-height: 1.08;
      margin-bottom: 1.25rem;
    }
    .pricing-hero p {
      font-size: 1.25rem;
      font-weight: 300;
      color: var(--grey);
      max-width: 38rem;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* ── Plan pillars ── */
    .plan-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      max-width: 68rem;
      margin: 0 auto;
    }
    .plan-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-card);
      padding: 2.5rem 2rem;
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .plan-card.popular {
      border-color: var(--salmon);
    }
    .plan-badge {
      position: absolute;
      top: -0.75rem;
      left: 2rem;
      background: var(--salmon);
      color: var(--dark);
      font-size: 0.6875rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.25rem 0.875rem;
      border-radius: var(--r-pill);
    }
    .plan-name {
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 0.5rem;
    }
    .plan-tagline {
      font-size: 0.9375rem;
      font-weight: 300;
      color: var(--grey);
      line-height: 1.55;
      margin-bottom: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--border);
    }
    .plan-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 2.5rem;
      flex-grow: 1;
    }
    .plan-features li {
      display: flex;
      align-items: flex-start;
      gap: 0.625rem;
      font-size: 0.9375rem;
      color: var(--grey);
      line-height: 1.45;
    }
    .plan-features li .ck {
      color: var(--green);
      flex-shrink: 0;
      margin-top: 0.125rem;
      font-size: 0.875rem;
    }
    .plan-features .inherit-label {
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--salmon);
      padding: 0.5rem 0 0.25rem;
    }
    .plan-cta {
      margin-top: auto;
    }
    .plan-cta .btn {
      width: 100%;
      justify-content: center;
    }

    /* ── Included features grid ── */
    .included-title {
      font-size: clamp(1.75rem, 3vw, 2.25rem);
      font-weight: 300;
      letter-spacing: -0.01em;
      line-height: 1.15;
      margin-bottom: 3rem;
      text-align: center;
    }
    .included-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      max-width: 56rem;
      margin: 0 auto;
    }
    .included-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      padding: 1.25rem;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-card);
    }
    .included-item .ck {
      color: var(--green);
      flex-shrink: 0;
      margin-top: 0.1875rem;
      font-size: 1rem;
    }
    .included-item span {
      font-size: 0.9375rem;
      font-weight: 500;
      color: var(--white);
      line-height: 1.45;
    }

    /* ── FAQ ── */
    .faq-title {
      font-size: clamp(1.75rem, 3vw, 2.25rem);
      font-weight: 300;
      letter-spacing: -0.01em;
      line-height: 1.15;
      margin-bottom: 3rem;
      text-align: center;
    }
    .faq-list {
      max-width: 48rem;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
    }
    .faq-item {
      border-bottom: 1px solid var(--border);
    }
    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.5rem 0;
      font-size: 1rem;
      font-weight: 500;
      color: var(--white);
      text-align: left;
      cursor: pointer;
      background: none;
      border: none;
      font-family: inherit;
    }
    .faq-q::after {
      content: '+';
      font-size: 1.25rem;
      color: var(--salmon);
      flex-shrink: 0;
      transition: transform 0.2s;
    }
    .faq-item.open .faq-q::after {
      content: '-';
    }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }
    .faq-item.open .faq-a {
      max-height: 12rem;
      padding-bottom: 1.5rem;
    }
    .faq-a p {
      font-size: 0.9375rem;
      font-weight: 300;
      color: var(--grey);
      line-height: 1.65;
    }

    /* ── Bottom CTA ── */
    .bottom-cta {
      text-align: center;
    }
    .bottom-cta h2 {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 300;
      letter-spacing: -0.015em;
      line-height: 1.1;
      margin-bottom: 1.25rem;
    }
    .bottom-cta p {
      font-size: 1.125rem;
      font-weight: 300;
      color: var(--grey);
      max-width: 28rem;
      margin: 0 auto 2rem;
      line-height: 1.6;
    }

    /* ── Responsive ── */
    @media (max-width: 767px) {
      .plan-grid { grid-template-columns: 1fr; max-width: 28rem; margin: 0 auto; }
      .included-grid { grid-template-columns: 1fr; max-width: 28rem; }
    }
    @media (min-width: 768px) and (max-width: 991px) {
      .plan-grid { grid-template-columns: 1fr; max-width: 28rem; margin: 0 auto; }
      .included-grid { grid-template-columns: repeat(2, 1fr); }
    }
