Neumorphic Pricing Cards

Intermediate

Modern pricing table with neumorphic design, soft shadows, and interactive elements

Live Preview

Code Implementation

HTML
<div class="neumorphic-pricing-container">
  <div class="pricing-header">
    <h2 class="pricing-title">Choose Your Plan</h2>
    <p class="pricing-subtitle">Select the perfect plan for your needs</p>
  </div>
  
  <div class="pricing-toggle">
    <span class="toggle-label">Monthly</span>
    <label class="switch">
      <input type="checkbox" id="billing-toggle">
      <span class="slider"></span>
    </label>
    <span class="toggle-label">Yearly</span>
    <span class="discount-badge">Save 20%</span>
  </div>
  
  <div class="pricing-grid">
    <div class="pricing-card">
      <div class="card-header">
        <h3 class="plan-name">Starter</h3>
        <p class="plan-description">Perfect for individuals</p>
      </div>
      <div class="card-price">
        <span class="currency">$</span>
        <span class="amount" data-monthly="9" data-yearly="7.20">9</span>
        <span class="period">/month</span>
      </div>
      <ul class="features-list">
        <li class="feature-item">
          <span class="feature-icon">βœ“</span>
          <span class="feature-text">5 Projects</span>
        </li>
        <li class="feature-item">
          <span class="feature-icon">βœ“</span>
          <span class="feature-text">10GB Storage</span>
        </li>
        <li class="feature-item">
          <span class="feature-icon">βœ“</span>
          <span class="feature-text">Basic Support</span>
        </li>
        <li class="feature-item disabled">
          <span class="feature-icon">βœ—</span>
          <span class="feature-text">Advanced Analytics</span>
        </li>
        <li class="feature-item disabled">
          <span class="feature-icon">βœ—</span>
          <span class="feature-text">Custom Domain</span>
        </li>
      </ul>
      <button class="select-button">Get Started</button>
    </div>
    
    <div class="pricing-card popular">
      <div class="popular-badge">Most Popular</div>
      <div class="card-header">
        <h3 class="plan-name">Professional</h3>
        <p class="plan-description">Ideal for small teams</p>
      </div>
      <div class="card-price">
        <span class="currency">$</span>
        <span class="amount" data-monthly="29" data-yearly="23.20">29</span>
        <span class="period">/month</span>
      </div>
      <ul class="features-list">
        <li class="feature-item">
          <span class="feature-icon">βœ“</span>
          <span class="feature-text">Unlimited Projects</span>
        </li>
        <li class="feature-item">
          <span class="feature-icon">βœ“</span>
          <span class="feature-text">100GB Storage</span>
        </li>
        <li class="feature-item">
          <span class="feature-icon">βœ“</span>
          <span class="feature-text">Priority Support</span>
        </li>
        <li class="feature-item">
          <span class="feature-icon">βœ“</span>
          <span class="feature-text">Advanced Analytics</span>
        </li>
        <li class="feature-item disabled">
          <span class="feature-icon">βœ—</span>
          <span class="feature-text">Custom Domain</span>
        </li>
      </ul>
      <button class="select-button">Get Started</button>
    </div>
    
    <div class="pricing-card">
      <div class="card-header">
        <h3 class="plan-name">Enterprise</h3>
        <p class="plan-description">For large organizations</p>
      </div>
      <div class="card-price">
        <span class="currency">$</span>
        <span class="amount" data-monthly="99" data-yearly="79.20">99</span>
        <span class="period">/month</span>
      </div>
      <ul class="features-list">
        <li class="feature-item">
          <span class="feature-icon">βœ“</span>
          <span class="feature-text">Unlimited Projects</span>
        </li>
        <li class="feature-item">
          <span class="feature-icon">βœ“</span>
          <span class="feature-text">1TB Storage</span>
        </li>
        <li class="feature-item">
          <span class="feature-icon">βœ“</span>
          <span class="feature-text">24/7 Premium Support</span>
        </li>
        <li class="feature-item">
          <span class="feature-icon">βœ“</span>
          <span class="feature-text">Advanced Analytics</span>
        </li>
        <li class="feature-item">
          <span class="feature-icon">βœ“</span>
          <span class="feature-text">Custom Domain</span>
        </li>
      </ul>
      <button class="select-button">Get Started</button>
    </div>
  </div>
</div>

Snippet Features

Responsive Design: Yes
Dark Mode Support: No
Category: pricing-tables
Difficulty Level: Intermediate