
/* Pricing Section Styles */
.pricing-heading {
    font-size: 48px;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    background: linear-gradient(to bottom, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 
        2px 2px 2px rgba(0,0,0,0.2),
        -1px -1px 1px rgba(255,255,255,0.1),
        0 4px 8px rgba(255, 255, 255, 0.15);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
}

.pricing-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px; 
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    border-color: #00a796;
    transform: translateY(-2px);
}

.price-title { 
    font-family: 'Inter', sans-serif;
    color: #fff;
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 700;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-old {
    background: linear-gradient(to bottom, #00a796, #00c7b3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 28px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration-line: line-through;
    text-decoration-style: solid;
    text-decoration-thickness: 2px;
    text-decoration-color: #00a796;
    margin: 0 0 2px;
    text-align: left;
    position: relative;
}

.price-value { 
    background: linear-gradient(to bottom, #00a796, #00c7b3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 0 16px;
    text-align: left;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
    text-shadow: 
        2px 2px 2px rgba(0,0,0,0.2),
        -1px -1px 1px rgba(255,255,255,0.1),
        0 4px 8px rgba(0,167,150,0.2);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
}

.price-includes {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    margin: 32px 0 16px;
    font-family: 'Roboto', sans-serif;
}

.price-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.price-list li {
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.price-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%2300a796' stroke-width='2'/%3E%3Cpath d='M8 12l3 3 5-5' stroke='%2300a796' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.9;
}

.price-card .btn {
    margin-top: 24px;
    width: 100%;
    padding: 14px 24px;
    background: #00a796;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.price-card .btn:hover {
    background: #00c2ae;
}

.spots-left {
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin: 8px 0 24px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }
    
    .price-card {
        padding: 24px;
    }
    
    .price-value {
        font-size: 28px;
    }

    .price-includes {
        font-size: 15px;
        margin: 24px 0 12px;
    }
}

