@font-face {
  font-family: 'SF Pro Display';
  src: url('SF Pro Display/SF-Pro-Display-Regular.otf') format('otf');
  font-weight: normal;
  font-style: normal;
}

* 
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'SF Pro Display', 'Open Sans', sans-serif;
  line-height: 1.6;
}


.hero {
  background: linear-gradient(135deg, #007BFF, #00C6FF);
  color: white;
  padding: 5.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.features {
  background: linear-gradient(135deg, #F9FAFB, #E3E4E6);
  padding: 4.5rem 0;
}

.features h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 1.5rem;
  border-radius: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.feature-card svg {
  width: 48px;
  height: 48px;
  fill: #ffffff;
  margin-bottom: 1rem;
  color: #007BFF;
}

.pricing {
  padding: 5rem 0;
}

.pricing h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 4rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.price-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.price-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.price {
  font-size: 2rem;
  color: #007BFF;
  font-weight: bold;
  margin: 1rem 0;
}

.features-list {
  list-style: none;
  margin: 2rem 0;
}

.features-list li {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
}

.features-list svg {
  width: 20px;
  height: 20px;
  fill: #007BFF;
  margin-right: 0.5rem;
}

.btn {
  background-color: white;
  padding: 0.75rem 2rem;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-text {
  background-image: linear-gradient(135deg, #007BFF, #00C6FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.btn:hover {
  background-color: #f0f0f0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-white {
  background-color: white;
  color: #007BFF;
}

.btn-white:hover {
  background-color: #F3F4F6;
}

.cta {
  background: linear-gradient(135deg, #007BFF, #00C6FF);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .features-grid,
  .pricing-grid {
      grid-template-columns: 1fr;
  }
}