.page-hero {
    position:relative; text-align:center; margin:0 0 2rem 0;
    background-image: linear-gradient(135deg, rgba(11,102,255,0.15), rgba(42,160,255,0.15)),
                      url('/static/hero/subscription.jpg');
    background-size:cover; background-position:center; border-radius:12px; color:#fff;
    min-height:320px; display:flex; align-items:center; overflow:hidden;
    box-shadow:0 12px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
  }
  .page-hero::before {
    content:""; position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.6) 100%); z-index:1;
  }
  .page-hero .hero-content { position:relative; z-index:2; width:100%;
    padding:3rem 1.5rem; max-width:900px; margin:0 auto; }
  .page-hero h1 { margin:0 0 1rem 0; font-size:2.75rem; font-weight:800;
    letter-spacing:-0.02em; text-shadow:0 2px 12px rgba(0,0,0,0.3); line-height:1.15; }
  .page-hero .hero-tagline { font-size:1.25rem; font-weight:500;
    color:rgba(255,255,255,0.98); max-width:64ch; margin:0 auto 1.5rem;
    text-shadow:0 1px 6px rgba(0,0,0,0.3); }
  .page-hero .hero-subtext { font-size:1rem; color:rgba(255,255,255,0.85);
    max-width:58ch; margin:0 auto; text-shadow:0 1px 4px rgba(0,0,0,0.25); }
  @media (max-width:768px) {
    .page-hero { min-height:260px; }
    .page-hero h1 { font-size:2rem; }
    .page-hero .hero-tagline { font-size:1.1rem; }
    .page-hero .hero-content { padding:2rem 1rem; }
  }

  .pricing-section { margin:0 0 2.5rem 0; }
  .pricing-section h2 { font-size:1.5rem; font-weight:700; margin:0 0 1rem 0; padding-bottom:0.5rem; border-bottom:2px solid rgba(11,102,255,0.15); }
  .pricing-section p { max-width:72ch; line-height:1.7; }
  .pricing-intro { text-align:center; }
  .pricing-intro p { margin-left:auto; margin-right:auto; }
  .pricing-intro h2 { border-bottom:none; padding-bottom:0; margin-bottom:0.5rem; font-size:1.75rem; }

  /* Plan cards */
  .plan-grid {
    display:grid; grid-template-columns:repeat(auto-fit, minmax(240px, 1fr)); gap:1.25rem; margin:1.5rem 0;
  }
  .plan-card {
    border:2px solid rgba(15,23,42,0.08); border-radius:14px; padding:1.75rem 1.5rem;
    background:#fff; display:flex; flex-direction:column; gap:0.75rem;
    transition:transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position:relative;
  }
  .plan-card:hover {
    transform:translateY(-4px); box-shadow:0 12px 32px rgba(11,102,255,0.12);
    border-color:var(--brand,#0b66ff);
  }
  .plan-card.highlighted {
    border-color:var(--brand,#0b66ff);
    box-shadow:0 8px 24px rgba(11,102,255,0.1);
  }
  .plan-badge {
    position:absolute; top:-12px; right:1.25rem;
    background:var(--brand,#0b66ff); color:#fff; font-size:0.75rem; font-weight:700;
    padding:3px 12px; border-radius:999px; letter-spacing:0.02em;
  }
  .plan-name { font-size:1.35rem; font-weight:800; margin:0; text-align:center; }
  .plan-tagline { font-size:0.9rem; color:var(--muted); margin:0; text-align:center; }
  .plan-price { font-size:1.25rem; font-weight:700; color:var(--brand,#0b66ff); margin:0.25rem 0 0 0; text-align:center; }
  .plan-note { text-align:center; font-size:0.9rem; color:var(--muted); margin:0.75rem auto 0; max-width:none; }
  .plan-features { list-style:none; padding:0; margin:0.75rem 0 0 0; flex:1; }
  .plan-features li {
    padding:0.4rem 0; font-size:0.9rem; color:#334155; border-bottom:1px solid rgba(0,0,0,0.04);
    display:flex; align-items:flex-start; gap:0.5rem;
  }
  .plan-features li:last-child { border-bottom:none; }
  .plan-features .check { color:#059669; font-weight:700; flex-shrink:0; }
  .plan-features .dash { color:#94a3b8; flex-shrink:0; }
  .plan-cta { margin-top:auto; padding-top:0.75rem; }

  /* Comparison table */
  .compare-table-wrap { overflow-x:auto; margin:1.25rem 0; }
  .compare-table {
    width:100%; border-collapse:collapse; font-size:0.9rem; min-width:640px;
  }
  .compare-table th, .compare-table td {
    padding:0.65rem 0.9rem; text-align:left; border-bottom:1px solid rgba(0,0,0,0.06);
  }
  .compare-table thead th {
    background:linear-gradient(180deg,#f8faff,#fff); font-weight:700; color:#0f172a;
    position:sticky; top:0;
  }
  .compare-table thead th:first-child { border-radius:8px 0 0 0; }
  .compare-table thead th:last-child { border-radius:0 8px 0 0; }
  .compare-table tbody tr:hover { background:rgba(11,102,255,0.03); }
  .compare-table .feat-name { font-weight:600; color:#334155; }
  .compare-table .yes { color:#059669; font-weight:700; }
  .compare-table .no { color:#cbd5e1; }

  /* FAQ */
  .faq-grid {
    display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:1.25rem; margin:1rem 0;
  }
  .faq-card {
    border:1px solid rgba(15,23,42,0.08); border-radius:10px; padding:1.25rem;
    background:linear-gradient(180deg,#fff,#fafafa);
  }
  .faq-card strong { display:block; margin-bottom:0.35rem; font-size:0.95rem; }
  .faq-card p { font-size:0.9rem; color:var(--muted); margin:0; line-height:1.6; }

  .cta-section {
    background:linear-gradient(135deg, rgba(11,102,255,0.08), rgba(42,160,255,0.08));
    border-radius:10px; padding:1.75rem; margin:1.5rem 0 0; text-align:center;
  }
  .cta-section p { margin:0 0 1rem 0; color:var(--muted); }
  .cta-actions { margin-top:0.5rem; display:flex; gap:12px; flex-wrap:wrap; justify-content:center; }
