@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

.pricing {
  font-family: "Inter", sans-serif;
  padding: 60px 20px;
  background: linear-gradient(180deg, #fafbfd 0%, #f5f5f5 100%);
}

.pricing .container {
  max-width: 1200px;
  margin: auto;
  margin-bottom: 50px;
}

.pricing .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.pricing .section-header h1 {
  color: #161616;
  margin-bottom: 15px;
}

.pricing .section-header p {
  max-width: 620px;
  margin: auto;
  color: #6b7280;
  line-height: 1.7;
}

.pricing .billing-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  background: white;
  border-radius: 2px;
  padding: 4px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing .billing-toggle input[type="radio"] {
  display: none;
}

.pricing .billing-toggle label {
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pricing .billing-toggle input[type="radio"]:checked + label {
  background: #ff7704;
  color: white;
  box-shadow: 0 2px 8px rgba(255, 119, 4, 0.3);
}

.pricing .billing-toggle input[type="radio"]:checked + label .discount-badge {
  color: white;
}

.pricing .discount-badge {
  color: #22c55e;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

.pricing .card {
  position: relative;
  background: #fff;
  border-radius: 4px;
  padding: 30px 30px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  transition: 0.35s;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.pricing .featured {
  background: linear-gradient(145deg, #ff7704, #f7b272);
  color: #fff;
  transform: scale(1.04);
}

.pricing .featured:hover {
  transform: scale(1.04) translateY(-10px);
}

.pricing .popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #161616;
  color: #fff;
  padding: 8px 20px;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing .plan-icon {
  width: 50px;
  height: 50px;
  border-radius: 2px;
  background: #fff0e6;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #ff7704;
  margin-bottom: 12px;
}

.pricing .featured .plan-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.pricing .card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.pricing .description {
  color: #6b7280;
  line-height: 1.4;
  margin-bottom: 15px;
  font-size: 0.85rem;
}

.pricing .featured .description {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(0, 0, 0, 0.1);
  padding: 8px 12px;
  border-radius: 2px;
  display: inline-block;
}

.pricing .price {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.pricing .currency {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.pricing .amount {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.pricing .original-price {
  font-size: 1.2rem;
  color: #9ca3af;
  text-decoration: line-through;
  margin-bottom: 8px;
}

.pricing .period {
  margin-left: 6px;
  color: #6b7280;
  margin-bottom: 10px;
}

.pricing .featured .period {
  color: rgba(255, 255, 255, 0.8);
}

.pricing .custom {
  font-size: 2.8rem;
  font-weight: 800;
}

.pricing .features {
  list-style: none;
  margin: 15px 0;
  flex-grow: 1;
}

.pricing .features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #161616;
  font-size: 0.85rem;
}

.pricing .features i {
  color: #ff7704;
}

.pricing .featured .features {
  background: transparent;
}

.pricing .featured .features li {
  color: #fff;
  background: transparent;
}

.pricing .featured .features i {
  color: #fff;
}

.pricing button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 2px;
  background: #ff7704;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  margin-top: auto;
}

.pricing button:hover {
  background: #e66a00;
}

.pricing .featured button {
  background: #fff;
  color: #ff7704;
}

.pricing .featured button:hover {
  background: #f5f5f5;
}

@media (max-width: 900px) {
  .pricing .featured {
    transform: none;
  }

  .pricing .featured:hover {
    transform: translateY(-10px);
  }

  .pricing .section-header h2 {
    font-size: 2.2rem;
  }
}
