:root {
  --primary: #3b82f6;
  --secondary: #10b981;
  --dark: #1e293b;
  --light: #f8fafc;
  --highlight: #f59e0b;
}
body {
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  color: #334155;
  background-color: #f1f5f9;
  margin: 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}
header {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 3rem;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
}
.subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.pricing-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  /* overflow: hidden; */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.card-header {
  padding: 1.75rem;
  text-align: center;
  background: var(--light);
  border-bottom: 1px solid #e2e8f0;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  position: relative;
}
.popular-badge {
  position: absolute;
  top: 0;
  right: 2rem;
  transform: translateY(-50%);
  background: var(--highlight);
  color: white;
  padding: 0.25rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.3);
}
.card-title {
  font-size: 1.625rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.card-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0.5rem 0;
}
.card-price span {
  font-size: 1rem;
  font-weight: 500;
  color: #64748b;
}
.card-duration {
  color: #64748b;
  font-size: 0.9375rem;
}
.card-body {
  padding: 1.75rem;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.feature-item {
  padding: 0.875rem 0;
  border-bottom: 1px dashed #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feature-item:last-child {
  border-bottom: none;
}
.feature-name {
  font-weight: 500;
  color: #475569;
  flex: 1;
}
.feature-value {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-left: 1rem;
  text-align: right;
  min-width: 80px;
}
.yes {
  color: var(--secondary);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 1.25rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  font-size: 1.0625rem;
}
.btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}
.btn i {
  margin-right: 0.625rem;
}
.growth-card .card-header {
  background: #FA8072;
  color: white;
}
.growth-card .btn {
  background: var(--highlight);
}
.growth-card .btn:hover {
  background: #d97706;
}
.enterprise-card .card-header {
  background: var(--dark);
  color: white;
}
.enterprise-card .btn {
  background: var(--secondary);
}
.enterprise-card .btn:hover {
  background: #0d9488;
}
.comparison-section {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  border: 1px solid #e2e8f0;
}
.section-title {
  text-align: center;
  font-size: 1.75rem;
  color: var(--dark);
  margin-bottom: 2rem;
  font-weight: 700;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.comparison-table th {
  padding: 1.125rem;
  text-align: left;
  background: var(--light);
  font-weight: 600;
  color: var(--dark);
  border-bottom: 2px solid #e2e8f0;
}
.comparison-table td {
  padding: 1.125rem;
  border-bottom: 1px solid #e2e8f0;
  color: #475569;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table tr:hover td {
  background: #f8fafc;
}
.note {
  text-align: center;
  font-size: 0.9375rem;
  color: #64748b;
  margin-top: 2rem;
  padding: 1.25rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}
.note strong {
  color: var(--dark);
}
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(16, 185, 129, 0.1);
  color: var(--secondary);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 1.5rem;
}
.guarantee-badge i {
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 1.5rem;
  }
  header {
    padding: 2.5rem 1rem;
  }
  h1 {
    font-size: 2.25rem;
  }
  .comparison-section {
    padding: 1.5rem;
  }
}
