/* ============================================
   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;
      line-height: 1.2;
      letter-spacing: -0.03em;
      margin-bottom: 24px;

      /* Gradient shimmer effect */
      background: linear-gradient(
        110deg,
        var(--grey-900) 0%,
        var(--grey-900) 40%,
        rgba(255, 107, 74, 0.4) 45%,
        rgba(255, 107, 74, 0.6) 50%,
        rgba(255, 107, 74, 0.4) 55%,
        var(--grey-900) 60%,
        var(--grey-900) 100%
      );
      background-size: 200% 100%;
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: shimmer 8s ease-in-out infinite;
    }

    @keyframes shimmer {
      0%, 100% {
        background-position: 200% center;
      }
      50% {
        background-position: 0% center;
      }
    }

    .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;
      margin-bottom: 48px;
      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-container {
        border: none;
        background: transparent;
        box-shadow: none;
      }

      .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;
        background: var(--white);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
      }

      .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);
    }
/* ============================================
   SERVICE TABS - Main Navigation
   ============================================ */

.service-tabs {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 60px auto 48px;
  max-width: 800px;
  padding: 0 24px;
}

.service-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--white);
  border: 2px solid var(--grey-200);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--grey-600);
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
}

.service-tab:hover {
  border-color: var(--orange-500);
  color: var(--grey-900);
  transform: translateY(-2px);
}

.service-tab.active {
  background: var(--orange-500);
  border-color: var(--orange-500);
  color: var(--white);
}

.service-tab-icon {
  font-size: 20px;
}

/* Service Content Containers */
.service-content {
  margin-top: 40px;
}

/* ============================================
   WEB DEVELOPMENT PRICING
   ============================================ */

.web-pricing,
.it-pricing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.pricing-category-title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: var(--grey-900);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.pricing-category-subtitle {
  font-size: 18px;
  color: var(--grey-600);
  text-align: center;
  margin-bottom: 48px;
}

/* Pricing Packages Grid */
.pricing-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.pricing-package {
  background: var(--white);
  border: 2px solid var(--grey-200);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-package:hover {
  border-color: var(--orange-500);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.pricing-package.featured {
  border-color: var(--orange-500);
  background: linear-gradient(180deg, rgba(255, 107, 74, 0.02) 0%, var(--white) 100%);
}

.package-badge {
  position: absolute;
  top: -12px;
  right: 32px;
  background: var(--orange-500);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.package-icon {
  font-size: 32px;
}

.package-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--grey-900);
}

.package-price {
  margin-bottom: 32px;
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}

.package-from {
  display: block;
  font-size: 13px;
  color: var(--grey-500);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--orange-500);
  letter-spacing: -0.02em;
}

.package-features {
  list-style: none;
  margin-bottom: 32px;
}

.package-features li {
  padding: 12px 0;
  color: var(--grey-700);
  font-size: 15px;
  line-height: 1.6;
  border-bottom: 1px solid var(--grey-100);
}

.package-features li:last-child {
  border-bottom: none;
}

.package-cta {
  display: block;
  width: 100%;
  padding: 16px 32px;
  background: var(--orange-500);
  color: var(--white);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.package-cta:hover {
  background: #FF5733;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 74, 0.3);
}

/* Add-ons Section */
.pricing-addons {
  background: var(--grey-50);
  border-radius: 16px;
  padding: 40px;
  margin-top: 60px;
}

.addons-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 32px;
  text-align: center;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--grey-200);
}

.addon-name {
  font-weight: 600;
  color: var(--grey-800);
}

.addon-price {
  font-weight: 700;
  color: var(--orange-500);
  white-space: nowrap;
}

/* ============================================
   IT CONSULTING PRICING
   ============================================ */

/* Hourly Rates */
.hourly-rates {
  margin-bottom: 60px;
}

.rates-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 32px;
  text-align: center;
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.rate-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 24px;
  background: var(--white);
  border: 2px solid var(--grey-200);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.rate-item:hover {
  border-color: var(--orange-500);
  transform: translateY(-4px);
}

.rate-icon {
  font-size: 32px;
}

.rate-name {
  font-weight: 600;
  color: var(--grey-800);
  font-size: 15px;
}

.rate-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--orange-500);
}

/* IT Packages */
.it-packages {
  margin-bottom: 40px;
}

.packages-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 32px;
  text-align: center;
}

.packages-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.it-package-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
  background: var(--white);
  border: 2px solid var(--grey-200);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.it-package-item:hover {
  border-color: var(--orange-500);
  transform: translateX(4px);
}

.it-package-info {
  flex: 1;
}

.it-package-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 8px;
}

.it-package-desc {
  font-size: 15px;
  color: var(--grey-600);
}

.it-package-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--orange-500);
  white-space: nowrap;
  margin-left: 24px;
}

.it-note {
  background: rgba(255, 107, 74, 0.05);
  border-left: 4px solid var(--orange-500);
  padding: 24px;
  border-radius: 8px;
}

.it-note p {
  color: var(--grey-700);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 968px) {
  .service-tabs {
    flex-direction: column;
    max-width: 400px;
  }

  .pricing-packages {
    grid-template-columns: 1fr;
  }

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

  .rates-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .it-package-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .it-package-price {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .service-tab {
    padding: 14px 24px;
    font-size: 15px;
  }

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

  .package-cta {
    font-size: 15px;
    padding: 14px 24px;
  }
}
