:root {
  --primary: #3b82f6;
  --dark: #0f172a;
  --gray: #64748b;
  --bg: #f8fafc;
  --border: #e2e8f0;
}

body {
  background: var(--bg);
  font-family: "Poppins", sans-serif;
  color: var(--dark);
}

/* Hero */
.services-hero {
  background: var(--dark);
  color: white;
  padding: 80px 0;
  text-align: center;
  margin-bottom: 60px;
  background-image: radial-gradient(
    circle at 20% 50%,
    #1e293b 0%,
    var(--dark) 100%
  );
}
.services-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.services-hero p {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

.main-content {
  padding-bottom: 80px;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
  margin-top: -40px;
  padding: 20px;
}

.service-card {
  background: white;
  padding: 35px 30px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

/* Highlight Card Style */
.service-card.highlight {
  border-color: var(--primary);
  background: #eff6ff;
}
.service-card.highlight .card-icon {
  background: var(--primary);
  color: white;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: #eff6ff;
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 25px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.service-card p {
  color: var(--gray);
  margin-bottom: 25px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-size: 0.9rem;
  margin-bottom: 10px;
  font-weight: 500;
}
.service-features i {
  color: #10b981;
  font-size: 0.8rem;
}

/* Process Detail */
.process-detail {
  margin-bottom: 80px;
  padding: 20px;
}
.detail-header {
  text-align: center;
  margin-bottom: 60px;
}
.detail-header h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.detail-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

.detail-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
}
.detail-row.reverse {
  flex-direction: row-reverse;
}

.detail-text {
  flex: 1;
}
.detail-text h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.step-num {
  font-size: 0.9rem;
  background: var(--dark);
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: monospace;
}
.detail-text p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
}

.detail-visual {
  flex: 1;
  height: 250px;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #e2e8f0;
  box-shadow: inset 0 0 40px #f8fafc;
}

/* Pricing Banner */
.pricing-banner {
  background: var(--primary);
  color: white;
  border-radius: 20px;
  padding: 50px;
  margin: 20px;
  text-align: center;
  background-image: linear-gradient(135deg, var(--primary), #2563eb);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}
.pricing-banner h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.pricing-banner p {
  margin-bottom: 30px;
  opacity: 0.9;
}

.price-tags {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.tag {
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-white {
  background: white;
  color: var(--primary);
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: 0.3s;
}
.btn-white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .detail-row,
  .detail-row.reverse {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .detail-text h3 {
    justify-content: center;
  }
  .detail-visual {
    width: 100%;
    height: 180px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}
