/* ============================================
     * PRICING PAGE SPECIFIC STYLES
     * ============================================ */

    /* Page Header */
    .page-header {
      padding: 140px 40px 60px;
      text-align: center;
      background: var(--color-bg-warm);
      border-bottom: 1px solid var(--color-border);
    }

    .page-header h1 {
      font-size: 2.5rem;
      color: var(--color-text);
      margin-bottom: 12px;
      font-weight: 700;
    }

    .page-header p {
      font-size: 1.1rem;
      color: var(--color-text-muted);
      max-width: 600px;
      margin: 0 auto;
    }

    /* Container */
    .container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 60px 40px;
    }

    /* What's Included */
    .included-banner {
      background: var(--color-bg-warm);
      border-left: 3px solid var(--color-gold);
      padding: 24px 30px;
      margin-bottom: 50px;
    }

    .included-banner h3 {
      font-size: 0.9rem;
      color: var(--color-text);
      margin-bottom: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .included-items {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
    }

    .included-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--color-text-muted);
      font-size: 0.9rem;
    }

    .included-item span {
      color: var(--color-gold);
    }

    /* Section Styles */
    .section-header {
      margin-bottom: 30px;
    }

    .section-header h2 {
      font-size: 1.5rem;
      color: var(--color-text);
      margin-bottom: 8px;
      font-weight: 600;
    }

    .section-header p {
      color: var(--color-text-muted);
      font-size: 0.95rem;
    }

    /* Roles Grid */
    .roles-section {
      margin-bottom: 60px;
    }

    .roles-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .role-card {
      background: var(--color-bg);
      border: 1px solid var(--color-border);
      border-radius: 6px;
      padding: 28px;
      transition: all 0.3s ease;
    }

    .role-card:hover {
      border-color: var(--color-gold);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    }

    .role-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 12px;
    }

    .role-name {
      font-size: 1.1rem;
      color: var(--color-text);
      font-weight: 600;
    }

    .role-rate {
      text-align: right;
    }

    .role-rate .from {
      font-size: 0.75rem;
      color: var(--color-text-muted);
      display: block;
    }

    .role-rate .price {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--color-text);
    }

    .role-rate .unit {
      font-size: 0.85rem;
      color: var(--color-text-muted);
    }

    .role-description {
      color: var(--color-text-muted);
      font-size: 0.9rem;
      line-height: 1.5;
    }

    /* How It Works */
    .how-section {
      background: var(--color-bg-warm);
      padding: 50px;
      border-radius: 6px;
      margin-bottom: 60px;
    }

    .how-section h2 {
      font-size: 1.3rem;
      color: var(--color-text);
      margin-bottom: 30px;
      font-weight: 600;
      text-align: center;
    }

    .how-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .how-step {
      text-align: center;
    }

    .how-step-number {
      width: 40px;
      height: 40px;
      background: var(--color-bg);
      border: 2px solid var(--color-gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      font-weight: 700;
      color: var(--color-gold);
      margin: 0 auto 16px;
    }

    .how-step h3 {
      font-size: 1rem;
      color: var(--color-text);
      margin-bottom: 8px;
      font-weight: 600;
    }

    .how-step p {
      color: var(--color-text-muted);
      font-size: 0.9rem;
    }

    /* FAQ Section */
    .faq-section {
      margin-bottom: 60px;
    }

    .faq-grid {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .faq-item {
      background: var(--color-bg);
      border: 1px solid var(--color-border);
      border-radius: 6px;
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      padding: 20px 24px;
      background: none;
      border: none;
      color: var(--color-text);
      font-size: 1rem;
      font-weight: 600;
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s ease;
      font-family: var(--font-primary);
    }

    .faq-question:hover {
      background: var(--color-bg-warm);
    }

    .faq-question::after {
      content: '+';
      font-size: 1.3rem;
      color: var(--color-gold);
      transition: transform 0.3s ease;
    }

    .faq-item.active .faq-question::after {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-item.active .faq-answer {
      max-height: 200px;
    }

    .faq-answer-content {
      padding: 0 24px 20px;
      color: var(--color-text-muted);
      line-height: 1.7;
      font-size: 0.95rem;
    }

    /* CTA Section */
    .cta-section {
      text-align: center;
      padding: 50px;
      background: var(--color-bg-warm);
      border-radius: 6px;
    }

    .cta-section h2 {
      font-size: 1.5rem;
      color: var(--color-text);
      margin-bottom: 12px;
      font-weight: 600;
    }

    .cta-section p {
      color: var(--color-text-muted);
      margin-bottom: 24px;
      font-size: 0.95rem;
    }

    .cta-button {
      display: inline-block;
      padding: 14px 32px;
      background: var(--color-gold);
      color: var(--color-text);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      border-radius: 4px;
      transition: all 0.3s ease;
    }

    .cta-button:hover {
      background: var(--color-text);
      color: var(--color-bg-white);
      transform: translateY(-2px);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .page-header {
        padding: 120px 20px 40px;
      }

      .page-header h1 {
        font-size: 2rem;
      }

      .container {
        padding: 40px 20px;
      }

      .included-items {
        flex-direction: column;
        gap: 12px;
      }

      .roles-grid {
        grid-template-columns: 1fr;
      }

      .how-section {
        padding: 30px 20px;
      }

      .how-steps {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .cta-section {
        padding: 40px 20px;
      }
    }
