/* Cloud Pricing Section Styles */
.pricing-section {
    position: relative;
    padding: 24rem 2rem 20rem 2rem;
    overflow: visible;
    min-height: 80vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    max-width: none;
    background: #000000;
}

.pricing-section h2 {
    font-family: 'Libre Baskerville', serif;
    font-style: normal;
    font-size: clamp(4rem, 12vw, 7rem);
    line-height: 1.0;
    color: #E8DDD0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.4), 0 0 60px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    text-align: center;
}

.pricing-section .section-subtitle {
    color: rgba(220, 205, 185, 0.8);
    max-width: 600px;
    margin: 0 auto 4rem auto;
    position: relative;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.pricing-card.featured {
    background: rgba(255, 140, 60, 0.15);
    border-color: rgba(255, 140, 60, 0.4);
    transform: scale(1.02);
}

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

.pricing-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cloud-orange);
    margin-bottom: 0.5rem;
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #E8DDD0;
    font-weight: 400;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: rgba(220, 205, 185, 0.7);
    margin-bottom: 1.5rem;
}

.pricing-card > p {
    color: rgba(220, 205, 185, 0.8);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(220, 205, 185, 0.9);
    font-size: 0.9375rem;
}

.pricing-features li::before {
    content: "\2713";
    color: var(--cloud-orange);
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-cta {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.pricing-cta-primary {
    background: var(--cloud-orange);
    color: white;
    border: none;
}

.pricing-cta-primary:hover {
    background: #ff7a24;
    transform: translateY(-2px);
}

.pricing-cta-secondary {
    background: transparent;
    color: #E8DDD0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pricing-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}
