
/* Page header styles */
.page-header {
  padding: 200px 0 60px;
  background: linear-gradient(to bottom, #000, #111827);
  text-align: center;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.page-description {
  font-size: 20px;
  color: #d1d5db;
  max-width: 800px;
  margin: 0 auto;
}

/* Services section styles */
.services-section {
  background-color: #000;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-icon {
  color: #22d3ee;
  margin-bottom: 16px;
}

.icon {
  width: 40px;
  height: 40px;
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  color: #22d3ee;
  margin-bottom: 12px;
}

.service-description {
  color: #9ca3af;
  margin-bottom: 16px;
}

.service-features {
  list-style: none;
  color: #d1d5db;
  font-size: 14px;
  padding-left: 0;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

.service-features li::before {
  content: '•';
  color: #22d3ee;
  position: absolute;
  left: 0;
}

/* Pricing section styles */
.pricing-section {
  background: linear-gradient(to bottom, #000, #111827);
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pricing-card.popular {
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #22d3ee;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  padding: 4px 12px;
  transform: translate(8px, -8px) rotate(45deg);
  transform-origin: bottom left;
}

.plan-header {
  margin-bottom: 24px;
}

.plan-name {
  font-size: 24px;
  font-weight: 600;
  color: #22d3ee;
  margin-bottom: 16px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.billing {
  font-size: 16px;
  color: #9ca3af;
  margin-left: 4px;
}

.plan-description {
  color: #9ca3af;
  font-size: 14px;
}

.plan-features {
  margin-bottom: 24px;
  flex-grow: 1;
}

.plan-features ul {
  list-style: none;
  padding-left: 0;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
  color: #d1d5db;
  font-size: 14px;
  position: relative;
  padding-left: 16px;
}

.plan-features li::before {
  content: '•';
  color: #22d3ee;
  position: absolute;
  left: 0;
}

.plan-cta {
  margin-top: auto;
}

.plan-cta .button {
  width: 100%;
}

.custom-quote {
  text-align: center;
  color: #9ca3af;
  margin-top: 32px;
}

.custom-quote p {
  margin-bottom: 16px;
}

/* CTA section styles */
.cta {
  background: linear-gradient(to bottom, #111827, #000);
}

.cta-buttons {
  display: flex;
  justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-title {
    font-size: 36px;
  }
  
  .services-grid,
  .pricing-plans {
    grid-template-columns: 1fr;
  }
}
