body { background: #f8fafc; color: #0f172a; }
.page-header { text-align: center; padding: 60px 8% 48px; }
.page-header h1 { font-size: 48px; font-weight: 800; margin-bottom: 16px; letter-spacing: -1px; }
.page-header p { font-size: 18px; color: var(--text-gray); }
.plans { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; padding: 0 8% 80px; max-width: 1000px; margin: 0 auto; }
.plan { background: white; border-radius: 24px; padding: 40px 36px; flex: 1; min-width: 280px; max-width: 420px; box-shadow: 0 8px 32px rgba(0,0,0,0.08); border: 2px solid transparent; position: relative; }
.plan.featured { border-color: var(--primary); box-shadow: 0 12px 40px rgba(14,165,233,0.2); }
.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 4px 20px; border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; white-space: nowrap; }
.plan-name { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.plan-price { font-size: 48px; font-weight: 800; margin-bottom: 4px; letter-spacing: -1px; }
.plan-price span { font-size: 18px; font-weight: 600; color: var(--text-gray); }
.plan-desc { font-size: 14px; color: var(--text-gray); margin-bottom: 28px; }
.plan-features { list-style: none; margin-bottom: 32px; }
.plan-features li { padding: 9px 0; font-size: 15px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #f1f5f9; }
.plan-features li:last-child { border-bottom: none; }
.plan-features .check { color: #10b981; font-weight: 700; }
.plan-features .cross { color: #cbd5e1; }
.btn-plan { display: block; text-align: center; padding: 14px 28px; border-radius: 50px; font-size: 16px; font-weight: 700; text-decoration: none; transition: all 0.2s; border: none; cursor: pointer; width: 100%; }
.btn-plan-primary { background: var(--primary); color: white; box-shadow: 0 6px 20px rgba(14,165,233,0.35); }
.btn-plan-primary:hover { background: var(--primary-hover); transform: translateY(-2px); }
.btn-plan-secondary { background: #f1f5f9; color: var(--text-dark); }
.btn-plan-secondary:hover { background: #e2e8f0; }
.interval-toggle { display: flex; align-items: center; justify-content: center; gap: 0; margin: 0 auto 40px; background: #e2e8f0; border-radius: 50px; padding: 4px; width: fit-content; }
.interval-toggle button { border: none; background: transparent; padding: 9px 22px; border-radius: 50px; font-size: 14px; font-weight: 700; cursor: pointer; color: var(--text-gray); transition: all 0.2s; }
.interval-toggle button.active { background: white; color: var(--text-dark); box-shadow: 0 2px 8px rgba(0,0,0,0.10); }
.interval-toggle .save-badge { background: #dcfce7; color: #15803d; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 20px; margin-left: 6px; }
.price-monthly, .price-yearly { display: none; }
.price-monthly.active, .price-yearly.active { display: block; }
.gdpr-check-label { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 13px; color: #475569; cursor: pointer; line-height: 1.5; }
.gdpr-check-label input { margin-top: 2px; flex-shrink: 0; accent-color: var(--primary); }
.gdpr-check-label a { color: var(--primary); text-decoration: none; }
.gdpr-check-label a:hover { text-decoration: underline; }
.btn-plan-primary:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }
@media(max-width: 640px) {
    .page-header { padding: 36px 6% 28px; }
    .page-header h1 { font-size: 28px; letter-spacing: -0.5px; }
    .page-header p { font-size: 15px; }
    .plan-price { font-size: 36px; }
}
