/* ============================================
   PRICING TABLE SECTION
   Repair pricing with device selector tabs
   ============================================ */

    /* Pricing Section */
    .pricing-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 120px 24px;
    }

    /* Section Header */
    .pricing-section .section-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .pricing-section .section-overline {
      font-size: 13px;
      font-weight: 600;
      color: var(--orange-500);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 16px;
      display: inline-block;
      padding: 8px 16px;
      background: var(--orange-50);
      border-radius: 6px;
    }

    .pricing-section .section-title {
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 700;
      color: var(--grey-900);
      line-height: 1.2;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
    }

    .pricing-section .section-subtitle {
      font-size: clamp(16px, 2.5vw, 20px);
      color: var(--grey-600);
      line-height: 1.7;
      max-width: 700px;
      margin: 0 auto;
    }

    /* Trust Bar */
    .trust-bar {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 48px;
      margin-top: 32px;
      padding-top: 32px;
      border-top: 1px solid var(--grey-200);
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .trust-icon {
      width: 24px;
      height: 24px;
      color: var(--orange-500);
    }

    .trust-text {
      font-size: 15px;
      font-weight: 600;
      color: var(--grey-900);
    }

    /* Device Selector Tabs */
    .device-tabs {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 48px;
      flex-wrap: wrap;
    }

    .device-tab {
      padding: 12px 28px;
      font-size: 15px;
      font-weight: 600;
      color: var(--grey-600);
      background: var(--white);
      border: 2px solid var(--grey-200);
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .device-tab:hover {
      border-color: var(--grey-400);
      color: var(--grey-900);
    }

    .device-tab.active {
      background: var(--grey-900);
      color: var(--white);
      border-color: var(--grey-900);
    }

    /* Pricing Table Container */
    .pricing-table-container {
      background: var(--white);
      border: 2px solid var(--grey-200);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    }

    /* Table */
    .pricing-table {
      width: 100%;
      border-collapse: collapse;
    }

    /* Table Header */
    .pricing-table thead {
      background: var(--grey-900);
      color: var(--white);
    }

    .pricing-table thead th {
      padding: 20px 24px;
      text-align: left;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .pricing-table thead th:last-child {
      text-align: right;
    }

    /* Table Body */
    .pricing-table tbody tr {
      border-bottom: 1px solid var(--grey-200);
      transition: background 0.2s ease;
    }

    .pricing-table tbody tr:hover {
      background: var(--grey-50);
    }

    .pricing-table tbody tr:last-child {
      border-bottom: none;
    }

    .pricing-table tbody td {
      padding: 24px;
      font-size: 15px;
      color: var(--grey-900);
    }

    /* Model Column */
    .model-cell {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .model-icon {
      width: 48px;
      height: 48px;
      background: var(--grey-100);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .model-icon svg {
      width: 28px;
      height: 28px;
      stroke: var(--grey-900);
      stroke-width: 2;
    }

    .model-info {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .model-name {
      font-weight: 600;
      color: var(--grey-900);
      font-size: 16px;
    }

    .model-year {
      font-size: 13px;
      color: var(--grey-600);
    }

    /* Issue Column */
    .issue-cell {
      color: var(--grey-600);
    }

    /* Price Column */
    .price-cell {
      text-align: right;
      font-weight: 700;
      font-size: 18px;
      color: var(--grey-900);
    }

    .price-value {
      display: flex;
      align-items: baseline;
      justify-content: flex-end;
      gap: 4px;
    }

    .price-amount {
      font-size: 24px;
    }

    .price-currency {
      font-size: 16px;
      color: var(--grey-600);
      font-weight: 500;
    }

    /* Popular Badge */
    .popular-badge {
      display: inline-block;
      padding: 4px 12px;
      background: var(--orange-100);
      color: var(--orange-600);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      border-radius: 6px;
      margin-left: 12px;
    }

    /* Warranty Badge */
    .warranty-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 12px;
      background: var(--orange-50);
      color: var(--orange-500);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      border-radius: 6px;
      margin-left: 8px;
    }

    .warranty-badge svg {
      width: 14px;
      height: 14px;
    }

    /* Footer CTA */
    .pricing-footer {
      background: var(--grey-50);
      padding: 32px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 2px solid var(--grey-200);
    }

    .pricing-footer-text {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .pricing-footer-title {
      font-size: 18px;
      font-weight: 600;
      color: var(--grey-900);
    }

    .pricing-footer-subtitle {
      font-size: 14px;
      color: var(--grey-600);
    }

    .btn-primary {
      background: var(--orange-500);
      color: var(--white);
      padding: 14px 32px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-primary:hover {
      background: var(--orange-600);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(255, 107, 74, 0.35);
    }

    .btn-primary svg {
      width: 18px;
      height: 18px;
    }

    /* Responsive */
    @media (max-width: 968px) {
      .pricing-section {
        padding: 80px 20px;
      }

      .pricing-table thead {
        display: none;
      }

      .pricing-table tbody tr {
        display: flex;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border: 2px solid var(--grey-200);
        border-radius: 12px;
        margin-bottom: 16px;
      }

      .pricing-table tbody td {
        padding: 0;
        display: block;
      }

      .price-cell {
        text-align: left;
      }

      .price-value {
        justify-content: flex-start;
      }

      .pricing-footer {
        flex-direction: column;
        gap: 24px;
        text-align: center;
      }

      .trust-bar {
        gap: 24px;
      }
    }

    @media (max-width: 640px) {
      .pricing-section {
        padding: 60px 16px;
      }

      .pricing-section .section-header {
        margin-bottom: 48px;
      }

      .device-tabs {
        flex-direction: column;
      }

      .device-tab {
        width: 100%;
        text-align: center;
      }

      .model-icon {
        width: 40px;
        height: 40px;
      }

      .model-icon svg {
        width: 24px;
        height: 24px;
      }

      .btn-primary {
        width: 100%;
        justify-content: center;
      }
    }

    /* Demo Section */
    .demo-section {
      max-width: 1200px;
      margin: 80px auto 0;
      padding: 40px;
      background: var(--grey-50);
      border-radius: 12px;
      border: 2px dashed var(--grey-200);
    }

    .demo-section h3 {
      color: var(--grey-900);
      margin-bottom: 20px;
      font-size: 20px;
    }

    .demo-section p {
      color: var(--grey-600);
      line-height: 1.8;
      margin-bottom: 12px;
    }

    .demo-section strong {
      color: var(--grey-900);
    }

    .demo-section code {
      background: var(--white);
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 14px;
      color: var(--orange-500);
      border: 1px solid var(--grey-200);
    }