/* Pricing Page Specific Styles */

.pricing-hero {
    padding: 12rem 4rem 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, rgba(67, 56, 203, 0.03) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 80%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(67, 56, 203, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(60, 202, 71, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1.1rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pricing-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.pricing-hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 40px rgba(67, 56, 203, 0.1);
    border: 1px solid var(--gray-200);
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
}

.pricing-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-family: 'Cal Sans', 'Red Hat Text', sans-serif;
    font-size: 4rem;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pricing-amount .currency {
    font-size: 2rem;
    vertical-align: top;
    margin-right: 0.25rem;
}

.pricing-amount .period {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-family: 'Red Hat Text', sans-serif;
    font-weight: 400;
}

.pricing-basis {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 1.05rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    width: 22px;
    height: 22px;
    color: var(--secondary);
    flex-shrink: 0;
}

.nonprofit-note {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.nonprofit-note p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.nonprofit-note a {
    font-weight: 600;
    color: var(--primary);
}

@media (max-width: 1024px) {
    .pricing-hero { padding: 10rem 2rem 6rem; }
}

@media (max-width: 640px) {
    .pricing-hero { padding: 8rem 1.5rem 4rem; }
    .pricing-card { padding: 2rem 1.5rem; }
    .pricing-amount { font-size: 3rem; }
}
