/* ── Pricing Page ─────────────────────────────────────────────────── */

.pricing-page-hero {
    padding: 64px 40px 48px;
    background: linear-gradient(135deg, #FEF6F3 0%, #FAE8E0 100%);
}
.pricing-page-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #C4714A;
    margin-bottom: 10px;
}
.pricing-page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 16px;
    line-height: 1.1;
}
.pricing-page-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    max-width: 620px;
    margin: 0;
}

/* Grid */
.pricing-page-section { padding: 64px 40px; background: #F8FAFC; }
.pricing-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    align-items: start;
}

.pp-card {
    background: linear-gradient(135deg, #FEF6F3 0%, #FAE8E0 100%);
    border: 1.5px solid #E8C9B8;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.2s ease;
}
.pp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(196,113,74,0.15);
    border-color: #C4714A;
}
.pp-card-featured {
    background: linear-gradient(135deg, #3A5C1A 0%, #537A27 100%);
    border-color: #3A5C1A;
}
.pp-card-featured:hover { box-shadow: 0 12px 36px rgba(58,92,26,0.35); border-color: #2A4712; }

.pp-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #F59E0B;
    color: #1C2E0A;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.pp-enrollment {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #C4714A;
    margin-bottom: 10px;
}
.pp-card-featured .pp-enrollment { color: rgba(255,255,255,0.75); }
.pp-price {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 24px;
    line-height: 1;
}
.pp-price span { font-size: 1rem; font-weight: 500; color: #888; }
.pp-card-featured .pp-price { color: white; }
.pp-card-featured .pp-price span { color: rgba(255,255,255,0.65); }
.pp-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}
.pp-features li {
    font-size: 0.92rem;
    color: #444;
    padding: 7px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    line-height: 1.5;
}
.pp-features li:last-child { border-bottom: none; }
.pp-card-featured .pp-features li { color: rgba(255,255,255,0.9); border-bottom-color: rgba(255,255,255,0.12); }
.pp-cta {
    display: block;
    text-align: center;
    padding: 11px 20px;
    background: linear-gradient(135deg, #3A5C1A 0%, #537A27 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    margin-top: auto;
}
.pp-cta:hover {
    background: linear-gradient(135deg, #2A4712 0%, #3A5C1A 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}
.pp-card-featured .pp-cta { background: white; color: #3A5C1A; }
.pp-card-featured .pp-cta:hover { background: #F5EDE6; color: #2A4712; }

/* What's Included */
.pp-included-section { padding: 64px 40px; background: #F5EDE6; }
.pp-included-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 36px;
}
.pp-included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.pp-included-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    border: 1.5px solid #E8DDD6;
    border-radius: 12px;
    padding: 24px 20px;
    transition: all 0.2s ease;
}
.pp-included-item:hover {
    border-color: #3A5C1A;
    box-shadow: 0 4px 16px rgba(58,92,26,0.1);
    transform: translateY(-2px);
}
.pp-included-lens { border-color: #F59E0B; }
.pp-included-lens:hover { border-color: #D97706; box-shadow: 0 4px 16px rgba(245,158,11,0.15); }
.pp-included-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.pp-included-item strong { display: block; font-size: 1rem; color: #1C2E0A; margin-bottom: 6px; }
.pp-included-item p { font-size: 0.9rem; line-height: 1.7; color: #555; margin: 0; }
.lens-tag-inline {
    font-size: 0.6rem;
    font-weight: 700;
    background: #F59E0B;
    color: #1C2E0A;
    padding: 1px 6px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

/* CTA strip */
.pp-cta-section {
    text-align: center;
    padding: 72px 40px;
    background: linear-gradient(135deg, #2B4513 0%, #3A5C1A 100%);
}
.pp-cta-section h2 { font-size: 2rem; font-weight: 800; color: white; margin-bottom: 14px; }
.pp-cta-section p { font-size: 1rem; color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto 28px; line-height: 1.7; }

/* Mobile */
@media (max-width: 768px) {
    .pricing-page-hero { padding: 32px 16px; }
    .pricing-page-title { font-size: 1.9rem; }
    .pricing-page-desc { font-size: 0.95rem; }
    .pricing-page-section,
    .pp-included-section,
    .pp-cta-section { padding: 40px 16px; }
    .pricing-page-grid { grid-template-columns: 1fr; gap: 20px; }
    .pp-included-grid { grid-template-columns: 1fr; gap: 14px; }
    .pp-price { font-size: 2rem; }
    .pp-cta-section h2 { font-size: 1.6rem; }
    .pp-cta-section p { font-size: 0.92rem; }
}

@media (min-width: 480px) and (max-width: 768px) {
    .pricing-page-grid { grid-template-columns: repeat(2, 1fr); }
}
