:root {
      --accent: #066BD2;
      --text: #1a1a1a;
      --text-muted: #6b7280;
      --border: #e5e7eb;
      --bg: #ffffff;
      --radius: 12px;
    }
.plans-page {
      max-width: 1140px;
      margin: 0 auto;
      padding: 48px 0px 80px;
    }

    .plan-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 72px;
    }

    @media (max-width: 640px) {
      .plan-grid { grid-template-columns: 1fr; }
    }

    .plan-card {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      background: #fff;
    }

    .plan-card--featured {
      border-color: var(--accent);
      border-width: 2px;
    }

    .plans-page__title {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 24px;
    }

    .plan-card__label {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .plan-card__price {
      font-size: 32px;
      font-weight: 700;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .plan-card__price--sm {
      font-size: 18px;
    }

    .plan-card__badge {
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      background: #e5e7eb;
      padding: 2px 7px;
      border-radius: 6px;
    }

    .plan-card__price-note {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: -6px;
    }

    .plan-card__cta {
      display: inline-block;
      width: fit-content;
      text-decoration: none;
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      background: var(--accent);
      border-radius: 6px;
      padding: 9px 20px;
      transition: background 0.2s;
    }

    .plan-card__cta:hover {
      background: #0558b0;
    }

    .plan-card__highlight {
      font-size: 15px;
      color: var(--text);
      margin-bottom: 0;
    }

    .plan-card__highlight strong {
      font-weight: 700;
    }

    .plan-card__features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .plan-card__feature {
      font-size: 15px;
      color: var(--text);
      padding-left: 14px;
      position: relative;
    }

    .plan-card__feature::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--text-muted);
    }

    .plan-card__feature-count {
      font-weight: 700;
    }

    .plans-page__tagline {
      text-align: center;
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 48px;
    }

    .included {
      border-top: 1px solid var(--border);
      padding-top: 32px;
      margin-bottom: 40px;
    }

    .included__title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .included__list {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 8px 28px;
    }

    .included__item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 16px;
    }

    .included__item-check {
      color: var(--accent);
      font-size: 16px;
      font-weight: 700;
    }

    .payment {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 24px 0;
      margin-bottom: 72px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px 28px;
    }

    .payment__icon {
      height: 26px;
      width: auto;
      object-fit: contain;
    }

    .faq {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0 60px;
      align-items: start;
    }

    @media (max-width: 560px) {
      .faq { grid-template-columns: 1fr; gap: 20px 0; }
    }

    .faq__heading {
      font-size: 44px;
      font-weight: 800;
      line-height: 1;
      padding-top: 6px;
    }

    .faq__list {
      display: flex;
      flex-direction: column;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
    }

    .faq-item:first-child {
      border-top: 1px solid var(--border);
    }

    .faq-item__question {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      color: var(--text);
      font-size: 20px;
      font-weight: 400;
      padding: 18px 0;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .faq-item__question:hover { color: var(--accent); }

    .faq-item__chevron {
      flex-shrink: 0;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }

    .faq-item__chevron svg {
      display: block;
    }

    .faq-item__answer {
      max-height: 0;
      overflow: hidden;
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.7;
      transition: max-height 0.35s ease, padding 0.35s;
    }

    .faq-item--open .faq-item__answer {
      max-height: 300px;
      padding-bottom: 18px;
    }

    .faq-item--open .faq-item__chevron {
      transform: rotate(180deg);
    }