/* Start custom CSS for html, class: .elementor-element-60421a3 */<style>
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

  :root {
    --lime:       #aaff00;
    --lime-glow:  rgba(170,255,0,0.22);
    --black:      #0d0d0d;
    --white:      #ffffff;
    --soft-gray:  #f0f0f0;
    --text-gray:  #555555;
    --card-bg:    #f5f5f5;
  }

  .pricing {
    width: 100%;
    padding: 80px 60px;
    background: var(--white);
    text-align: center;
  }

  .section-label {
    display: inline-block;
    background: var(--lime);
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 6px;
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--black);
    margin-bottom: 14px;
    line-height: 1.15;
  }

  .section-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    color: var(--text-gray);
    margin: 0 auto 50px;
    line-height: 1.7;
    max-width: 600px;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    margin-top: 20px;
  }

  .price-card {
    background: var(--card-bg);
    border-radius: 22px;
    padding: 38px 32px;
    border: 1px solid rgba(170,255,0,0.12);
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px var(--lime-glow);
  }

  .price-card.featured {
    background: var(--black);
    border: 2px solid var(--lime);
    box-shadow: 0 12px 40px var(--lime-glow);
    color: var(--white);
  }

  .price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--lime);
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .price-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: inherit;
  }

  .price-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 46px;
    font-weight: 900;
    margin-bottom: 6px;
    color: inherit;
  }

  .price-amount span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-gray);
  }

  .price-card.featured .price-amount span {
    color: rgba(255,255,255,0.6);
  }

  .price-period {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 24px;
  }

  .price-card.featured .price-period {
    color: rgba(255,255,255,0.6);
  }

  .price-list {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
    padding: 0;
  }

  .price-list li {
    font-family: 'Open Sans', sans-serif;
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 14px;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .price-list li:last-child { border-bottom: none; }

  .price-card.featured .price-list li {
    color: rgba(255,255,255,0.75);
    border-bottom-color: rgba(255,255,255,0.06);
  }

  .price-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--lime);
    font-weight: 700;
  }

  .price-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    border-radius: 9999px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--soft-gray);
    color: var(--black);
    border: 2px solid rgba(170,255,0,0.25);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
  }

  .price-btn:hover {
    background: var(--lime);
    border-color: var(--lime);
    box-shadow: 0 0 20px var(--lime-glow);
  }

  .price-card.featured .price-btn {
    background: var(--lime);
    color: var(--black);
    border-color: var(--lime);
    box-shadow: 0 0 24px var(--lime-glow);
  }

  .price-card.featured .price-btn:hover {
    background: #c8ff33;
    box-shadow: 0 0 36px rgba(170,255,0,0.5);
  }

  /* Responsive */
  @media (max-width: 900px) {
    .pricing { padding: 60px 30px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  }

  @media (max-width: 480px) {
    .pricing { padding: 50px 20px; }
  }
</style>/* End custom CSS */