body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #f7f9fc;
}

.services-hero {
  padding: 80px 20px;
  text-align: center;
  background: #111827;
  color: #fff;
}

.service-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px;
}

.tab {
  padding: 10px 18px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  background: #e5e7eb;
}

.tab.active {
  background: #1e40af;
  color: #fff;
}

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

.service-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: transform .3s;
}

.service-card:hover {
  transform: translateY(-6px);
}

.icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.trust-points {
  padding-left: 0;
  list-style: none;
}

.service-card button {
  margin-top: 15px;
  padding: 12px;
  width: 100%;
  border: none;
  background: #1e40af;
  color: #fff;
  border-radius: 10px;
}

.comparison {
  padding: 60px 20px;
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 14px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.faq {
  padding: 60px 20px;
}

.faq-item p {
  display: none;
}

.mobile-cta {
  display: none;
}

@media(max-width:768px) {
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #1e40af;
  }
  .mobile-cta a {
    flex: 1;
    padding: 14px;
    color: #fff;
    text-align: center;
    text-decoration: none;
  }
}

/* MODAL */
.service-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  max-width: 400px;
}
