/* ========= MEMBERSHIP PAGE SPECIFIC STYLES ========= */

.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* 4-Tier Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: white;
    border-radius: 32px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--gray-light);
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card .features {
    flex-grow: 1;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border: 2px solid var(--sky);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sky);
    color: var(--navy);
    padding: 4px 16px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.6rem;
    color: var(--navy);
    margin: 0.5rem 0 0.25rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0.5rem 0;
}

.price span {
    font-size: 0.9rem;
    font-weight: 400;
}

.features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.features li i {
    color: var(--sky);
    width: 20px;
    font-size: 0.9rem;
}

.tier-note {
    font-size: 0.75rem;
    color: #6a7a9a;
    margin: 1rem 0;
    padding-top: 0.5rem;
    border-top: 1px solid var(--gray-light);
}

.pricing-card .btn-outline {
    margin-top: auto;
}

/* Benefits Highlight Box */
.benefits-highlight {
    background: linear-gradient(135deg, var(--sky-light) 0%, #e8f4f8 100%);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.benefits-highlight h3 {
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.benefits-highlight i {
    color: var(--sky);
    margin-right: 8px;
}

.benefits-highlight a {
    color: var(--navy);
    font-weight: 700;
    text-decoration: underline;
}

/* Form Box */
.form-box {
    max-width: 600px;
    margin: 2rem auto;
    background: var(--navy-soft);
    padding: 2rem;
    border-radius: 32px;
}

.form-box h2 {
    color: var(--navy);
    text-align: center;
    margin-bottom: 0.5rem;
}

.form-box p {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #4a5a7a;
}

input, select {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 60px;
    border: 1px solid var(--gray-light);
    font-family: inherit;
    font-size: 1rem;
    background: white;
}

.form-note {
    font-size: 0.8rem;
    margin-top: 1rem;
    color: #6a7a9a;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    margin: 4rem 0;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--navy-soft);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(122, 179, 200, 0.2);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--sky);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
    color: #3a4e6b;
    line-height: 1.6;
    border-top: 1px solid rgba(122, 179, 200, 0.3);
    display: none;
}

.faq-answer p {
    margin: 0;
    padding-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 { font-size: 2rem; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-8px); }
}