/* ── TAB NAVIGATION ── */
.services-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tab-btn {
  background: rgba(62,207,207,0.06);
  border: 1px solid rgba(62,207,207,0.15);
  color: var(--muted);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 10px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
}

.tab-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.tab-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #1a2128;
  font-weight: 700;
}

.tab-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.tab-btn:hover .tab-icon,
.tab-btn.active .tab-icon {
  filter: brightness(0) saturate(100%) invert(71%) sepia(160%) saturate(400%) hue-rotate(130deg);
}

/* ── TAB CONTENT ── */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ── PRICE CARDS ── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.price-card {
  background: var(--bg);
  border: 1px solid rgba(62,207,207,0.08);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s;
}

.price-card:hover {
  border-color: var(--accent-line);
  transform: translateY(-3px);
}

.price-card.highlight {
  border-color: rgba(62,207,207,0.25);
  background: rgba(62,207,207,0.04);
}

.price-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-icon {
  max-height: 40px;
  max-width: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.price-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a2128;
  background: var(--teal);
  padding: 4px 12px;
  border-radius: 100px;
}

.price-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--white);
}

.price-card p {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  flex: 1;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(62,207,207,0.08);
  margin-top: 4px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(62,207,207,0.05);
  gap: 12px;
}

.price-row:last-child {
  border-bottom: none;
}

.price-label {
  font-size: 0.83rem;
  color: var(--muted);
  font-weight: 300;
}

.price-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  color: var(--teal);
  white-space: nowrap;
}

.service-cta {
  display: inline-block;
  margin-top: 8px;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.service-cta:hover { color: var(--white); }

/* ── BOTTOM CTA ── */
.services-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding: 28px 36px;
  background: rgba(62,207,207,0.04);
  border: 1px solid var(--accent-line);
  border-radius: 8px;
  flex-wrap: wrap;
}

.services-bottom p {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  flex: 1;
}

.services-bottom strong {
  color: var(--text);
  font-weight: 600;
}

/* ── MOBILE ── */
@media (max-width: 768px) {

  .services-tabs {
    gap: 6px;
  }

  .tab-btn {
    font-size: 0.76rem;
    padding: 8px 14px;
  }

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

  .price-card {
    padding: 22px 20px;
  }

  .services-bottom {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .services-bottom .btn-primary {
    width: 100%;
    text-align: center;
  }
}