:root {
  --primary-color: #00b3b8;
  --secondary-color: #1b1f3a;
  --accent-color: #faae2b;
  --text-light: #ffffff;
  --text-dark: #1b1f3a;
}

/* General */
body {
  font-family: 'Poppins', sans-serif;
  background: #f9fafe;
  margin: 0;
  padding: 0;
  color: var(--text-dark);
}

h1, h2, h3 {
  font-weight: 800;
  margin: 0;
}

/* Hero Section */
.pricing-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.pricing-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.pricing-hero p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
}

/* Pricing Container */
.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

/* Card Styling */
.pricing-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 40px 30px;
  flex: 1 1 260px;
  max-width: 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.pricing-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
}

.pricing-card ul li {
  font-size: 16px;
  margin: 10px 0;
}

/* Price Styling */
.price {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.price del {
  color: #999;
  margin-right: 8px;
}

.price strong {
  color: var(--primary-color);
}

/* Community price override */
.community-price {
  color: #444;
}

/* Featured Card (Community) */
.pricing-card.featured {
  border: 2px solid var(--primary-color);
  background: #fefefe;
  box-shadow: 0 8px 30px rgba(0, 179, 184, 0.15);
}

/* Streamline Swimmer Card (Accent Color) */
.pricing-card.streamline {
  background-color: var(--accent-color);
  color: var(--text-dark);
}

.pricing-card.streamline .price strong,
.pricing-card.streamline .price del,
.pricing-card.streamline ul li {
  color: var(--text-dark);
}

.pricing-card.streamline a.btn-pricing {
  background: white;
  color: var(--accent-color);
  border: none;
}

/* CTA Button */
.btn-pricing {
  display: inline-block;
  padding: 12px 24px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-pricing:hover {
  background: #0096a1;
  transform: scale(1.03);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    max-width: 90%;
  }
}
