/* SERVICES CSS */

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* PAGE HERO */
.page-hero {
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.orb-page-1 {
  width: 500px;
  height: 500px;
  background: rgba(91, 60, 245, 0.1);
  top: -200px;
  right: -100px;
}
.orb-page-2 {
  width: 350px;
  height: 350px;
  background: rgba(37, 99, 235, 0.07);
  bottom: -150px;
  left: -100px;
}

/* PRICING */
.pricing-section {
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
}

.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card--featured {
  background: var(--gradient);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.pricing-badge-top {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-1);
}

.pricing-icon--light {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.pricing-label {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.pricing-price {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.price-from {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.price-amount {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.03em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text);
}

.pricing-features--light li {
  color: rgba(255, 255, 255, 0.85);
}

.feat-check {
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--gradient);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 1px;
}

.feat-check--light {
  background: rgba(255, 255, 255, 0.2);
}

/* CUSTOM QUOTE */
.custom-quote {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
}

.custom-quote-inner {
  background: var(--gradient-soft);
  border: 1px solid rgba(91, 60, 245, 0.1);
  border-radius: var(--radius-sm);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.custom-quote-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gradient);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .custom-quote-inner > div {
  flex: 1;
} */

.custom-quote-inner strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.custom-quote-inner p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* PROCESS */
.process-section {
  background: white;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-num {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.process-connector {
  flex: 0 0 2px;
  height: 2px;
  background: var(--gradient);
  margin-top: 4rem;
  opacity: 0.3;
  min-width: 20px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  .process-connector {
    width: 2px;
    height: 24px;
    min-width: 2px;
    flex: 0 0 24px;
    margin-top: 0;
  }
  .custom-quote-inner {
    flex-direction: column;
  }
}
