:root {
    --brand-color-1: #e91e63;
    --brand-color-2: #2196f3;
    --text-color-main: #333;
    --text-color-secondary: #666;
    --body-bg-color: #f9f9f9;
    --white: #fff;
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  body {
    background-color: var(--white);
  }

  .pricing-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
  }

  .pricing-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
  }

  .dots-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--brand-color-1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.03;
  }

  .wave-shape {
    position: absolute;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%232196f3' fill-opacity='0.05' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,218.7C672,235,768,245,864,229.3C960,213,1056,171,1152,144C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    bottom: 0;
    left: 0;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }

  .pricing-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color-main);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--brand-color-1), var(--brand-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* This may not work in all browsers */
}


  .pricing-header p {
    font-size: 1.1rem;
    color: var(--text-color-secondary);
    max-width: 600px;
    margin: 0 auto 1.5rem;
  }

  .pricing-subheader {
    font-size: 1.2rem;
    color: var(--text-color-secondary);
    margin-bottom: 2rem;
  }

  .contact-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, var(--brand-color-1), var(--brand-color-2));
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    margin-top: 1rem;
    font-size: 1rem;
  }

  .contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.25);
  }

  .pricing-plans {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .pricing-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(50, 50, 93, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    animation: floatUp 1s forwards;
    opacity: 0;
    transform: translateY(30px);
  }

  .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.12);
    border-color: rgba(233, 30, 99, 0.1);
  }

  .pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--brand-color-1);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.15);
  }

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

  .pricing-card.featured::after {
    content: "FEATURED";
    position: absolute;
    top: -12px;
    right: 25px;
    background: linear-gradient(45deg, var(--brand-color-1), var(--brand-color-2));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
  }

  .plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color-main);
    margin-bottom: 0.5rem;
  }

  .plan-subtitle {
    color: var(--text-color-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .price-container {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.5rem;
  }

  .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-color-1);
    margin-right: 0.25rem;
  }

  .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-color-1);
    line-height: 1;
  }

  .period {
    font-size: 1rem;
    color: var(--text-color-secondary);
    margin-left: 0.5rem;
  }

  .start-button {
    background: linear-gradient(45deg, var(--brand-color-1), var(--brand-color-2));
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.2);
  }

  .start-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
  }

  @keyframes floatUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .pricing-card:nth-child(1) {
    animation-delay: 0.1s;
  }

  .pricing-card:nth-child(2) {
    animation-delay: 0.3s;
  }

  .pricing-card:nth-child(3) {
    animation-delay: 0.5s;
  }

  @media (max-width: 992px) {
    .pricing-card {
      min-width: 260px;
    }
  }

  @media (max-width: 768px) {
    .pricing-plans {
      flex-direction: row;
      justify-content: center;
    }
    
    .pricing-card {
      width: calc(100% - 40px);
      max-width: 350px;
      margin-bottom: 20px;
    }
    
    .pricing-card.featured {
      transform: scale(1);
      order: -1;
    }
    
    .pricing-card.featured:hover {
      transform: translateY(-10px);
    }
  }

  @media (max-width: 480px) {
    .pricing-section {
      padding: 6rem 0;
    }
    
    .pricing-header h2 {
      font-size: 2rem;
    }
    
    .pricing-card {
      padding: 2rem;
    }
  }