/* planos.css — extracted from original HTML */

:root {
    --bg: #0a0a0a;
    --bg2: #111111;
    --bg3: #181818;
    --surface: #1e1e1e;
    --surface2: #252525;
    --border: rgba(255,255,255,0.07);
    --border2: rgba(255,255,255,0.12);
    --accent: #00D4E8;
    --accent2: #33DDED;
    --gold: #F5C842;
    --gold2: #E8B920;
    --text: #f0ede8;
    --muted: #c8c8c8;
    --muted2: #555;
    --green: #34D399;
    --blue: #60A5FA;
    --purple: #A78BFA;
    --red: #F87171;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
  }

  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 9999; opacity: 0.5;
  }

  .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 16px 0;
    background: rgba(10,10,10,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }
  nav .inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1140px; margin: 0 auto; padding: 0 24px;
  }
  .logo { text-decoration: none; display: flex; align-items: center; }
  .logo img { height: 34px; width: auto; }
  .nav-back {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--muted); font-size: 0.84rem; font-weight: 500;
    text-decoration: none; transition: color 0.2s;
  }
  .nav-back:hover { color: var(--text); }
  .nav-back svg { width: 16px; height: 16px; }

  /* ── HERO ── */
  .hero {
    padding: 130px 0 72px;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    width: 800px; height: 500px;
    background: radial-gradient(ellipse, rgba(0,212,232,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 0%, black 0%, transparent 100%);
  }
  .hero-content { position: relative; z-index: 1; }

  .pill {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 14px; border-radius: 100px;
    background: var(--surface); border: 1px solid var(--border2);
    font-size: 0.75rem; color: var(--muted); margin-bottom: 24px;
    animation: fadeUp 0.5s ease both;
  }
  .pill span { color: var(--accent); font-weight: 700; }

  .hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800; line-height: 1.08;
    letter-spacing: -0.03em;
    animation: fadeUp 0.5s 0.08s ease both;
  }
  .hero h1 em { font-style: normal; color: var(--accent); }
  .hero-sub {
    margin: 18px auto 0; max-width: 540px;
    font-size: 1rem; color: var(--muted); line-height: 1.75;
    animation: fadeUp 0.5s 0.16s ease both;
  }

  /* ── BILLING TOGGLE ── */
  .billing-toggle {
    display: inline-flex; align-items: center; gap: 14px;
    margin: 36px auto 0;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 100px; padding: 6px 20px;
    animation: fadeUp 0.5s 0.24s ease both;
    cursor: pointer;
  }
  .billing-toggle span {
    font-size: 0.85rem; font-weight: 600; color: var(--muted);
    transition: color 0.2s; user-select: none;
  }
  .billing-toggle span.active { color: var(--text); }
  .toggle-track {
    width: 40px; height: 22px; border-radius: 100px;
    background: var(--accent);
    position: relative; transition: background 0.2s; cursor: pointer;
    flex-shrink: 0;
  }
  .toggle-thumb {
    position: absolute; top: 3px; left: 3px;
    width: 16px; height: 16px; border-radius: 50%;
    background: #000; transition: transform 0.25s;
  }
  .toggle-track.annual .toggle-thumb { transform: translateX(18px); }
  .save-badge {
    display: inline-block; padding: 2px 8px; border-radius: 100px;
    background: rgba(52,211,153,0.15); color: var(--green);
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.04em;
    text-transform: uppercase; margin-left: 4px;
  }

  /* ── PLANS GRID ── */
  .plans-section { padding: 56px 0 0; }
  .plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; align-items: start;
  }

  .plan-card {
    border-radius: 22px; padding: 36px 32px;
    border: 1px solid var(--border);
    background: var(--surface);
    position: relative; overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
  }
  .plan-card:hover { transform: translateY(-5px); }

  /* PRO featured */
  .plan-card.featured {
    background: linear-gradient(160deg, #171206 0%, #1e1609 60%, #1a1208 100%);
    border-color: rgba(245,200,66,0.35);
    box-shadow: 0 0 80px rgba(245,200,66,0.05), inset 0 1px 0 rgba(245,200,66,0.12);
  }
  .plan-card.featured::after {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--accent2) 100%);
  }

  .plan-top-badge {
    position: absolute; top: 22px; right: 22px;
    padding: 4px 11px; border-radius: 100px;
    font-size: 0.62rem; font-weight: 800;
    letter-spacing: 0.07em; text-transform: uppercase;
  }
  .badge-popular { background: var(--gold); color: #000; }
  .badge-max { background: rgba(0,212,232,0.15); border: 1px solid rgba(0,212,232,0.3); color: var(--accent); }

  .plan-icon {
    width: 46px; height: 46px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 20px;
  }
  .plan-icon.basic { background: rgba(255,255,255,0.06); }
  .plan-icon.pro { background: rgba(245,200,66,0.1); }
  .plan-icon.ent { background: rgba(0,212,232,0.1); }

  .plan-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 10px;
  }
  .plan-name.pro-name { color: var(--gold); }
  .plan-name.ent-name { color: var(--accent); }

  .plan-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.2rem; font-weight: 800;
    letter-spacing: -0.04em; line-height: 1;
    margin-bottom: 4px;
  }
  .plan-price .currency {
    font-size: 1.4rem; vertical-align: super;
    font-weight: 700; letter-spacing: 0;
  }
  .plan-price small {
    font-size: 0.95rem; font-weight: 400;
    color: var(--muted); letter-spacing: 0;
  }
  .plan-period-row {
    font-size: 0.78rem; color: var(--muted); margin-bottom: 6px;
    min-height: 20px;
  }
  .plan-saving {
    display: inline-block; padding: 3px 9px; border-radius: 100px;
    background: rgba(52,211,153,0.12); color: var(--green);
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.03em;
    margin-bottom: 18px;
  }
  .plan-desc {
    font-size: 0.88rem; color: var(--muted); line-height: 1.65;
    margin-bottom: 24px; padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
  }

  .plan-cta {
    display: block; text-align: center; width: 100%;
    padding: 14px; border-radius: 11px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; font-size: 0.9rem;
    text-decoration: none; cursor: pointer;
    transition: all 0.2s; margin-bottom: 28px; border: none;
  }
  .cta-outline {
    border: 1px solid var(--border2); color: var(--text);
    background: transparent;
  }
  .cta-outline:hover { background: var(--bg3); border-color: rgba(255,255,255,0.2); }
  .cta-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #000;
    box-shadow: 0 4px 24px rgba(245,200,66,0.2);
  }
  .cta-gold:hover { opacity: 0.88; box-shadow: 0 6px 32px rgba(245,200,66,0.3); }
  .cta-cyan {
    background: var(--accent); color: #000;
    box-shadow: 0 4px 24px rgba(0,212,232,0.2);
  }
  .cta-cyan:hover { opacity: 0.88; box-shadow: 0 6px 32px rgba(0,212,232,0.3); }

  /* ── FEATURE LIST ── */
  .feat-group-label {
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted2); margin: 18px 0 10px;
  }
  .feat-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .feat-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.84rem; color: var(--muted);
  }
  .fi {
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px; font-size: 0.6rem; font-weight: 800;
  }
  .fi.yes { background: rgba(52,211,153,0.15); color: var(--green); }
  .fi.no { background: rgba(255,255,255,0.04); color: var(--muted2); }
  .fi.star { background: rgba(245,200,66,0.15); color: var(--gold); }

  /* ── COMPARE TABLE ── */
  .compare-section {
    padding: 80px 0;
  }
  .compare-header {
    text-align: center; margin-bottom: 48px;
  }
  .compare-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800; letter-spacing: -0.02em; margin-top: 12px;
  }

  .tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 13px; border-radius: 100px;
    background: rgba(0,212,232,0.1); border: 1px solid rgba(0,212,232,0.2);
    color: var(--accent); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
  }

  .compare-wrapper {
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid var(--border);
  }
  table.ctable {
    width: 100%; border-collapse: collapse;
    min-width: 640px;
  }
  .ctable thead tr {
    border-bottom: 1px solid var(--border);
  }
  .ctable th {
    padding: 18px 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem; font-weight: 800;
    letter-spacing: 0.06em; text-transform: uppercase;
    text-align: center; background: var(--surface);
  }
  .ctable th:first-child { text-align: left; width: 36%; color: var(--muted); }
  .ctable th.col-basic { color: var(--muted); }
  .ctable th.col-pro { color: var(--gold); background: rgba(245,200,66,0.04); }
  .ctable th.col-ent { color: var(--accent); }

  .ctable tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.15s;
  }
  .ctable tbody tr:last-child { border-bottom: none; }
  .ctable tbody tr:hover { background: rgba(255,255,255,0.02); }
  .ctable tbody tr.group-row td {
    padding: 14px 24px 6px;
    font-size: 0.63rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted2); background: rgba(255,255,255,0.015);
  }
  .ctable td {
    padding: 12px 24px; font-size: 0.84rem;
    text-align: center; color: var(--muted);
  }
  .ctable td:first-child { text-align: left; color: var(--muted); }
  .ctable td.col-pro { background: rgba(245,200,66,0.025); }

  .ck { color: var(--green); font-size: 1rem; font-weight: 700; }
  .xx { color: var(--muted2); font-size: 1rem; }
  .ti { color: var(--gold); font-size: 0.8rem; font-weight: 600; }

  /* ── FAQ ── */
  .faq-section {
    padding: 0 0 80px;
    max-width: 720px; margin: 0 auto;
  }
  .faq-section .compare-header { margin-bottom: 36px; }
  .faq-item {
    border-bottom: 1px solid var(--border); padding: 20px 0; cursor: pointer;
  }
  .faq-item:first-of-type { border-top: 1px solid var(--border); }
  .faq-q {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.95rem; font-weight: 600; gap: 16px;
  }
  .faq-icon { color: var(--muted); transition: transform 0.3s; font-size: 1.3rem; flex-shrink: 0; }
  .faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent); }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
    font-size: 0.87rem; color: var(--muted); line-height: 1.75;
  }
  .faq-item.open .faq-a { max-height: 240px; padding-top: 14px; }

  /* ── CTA FINAL ── */
  .cta-section {
    padding: 80px 0;
    text-align: center;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: ''; position: absolute;
    bottom: -160px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(0,212,232,0.07), transparent 70%);
    pointer-events: none;
  }
  .cta-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800; letter-spacing: -0.025em;
    margin: 12px 0 16px; position: relative; z-index: 1;
  }
  .cta-section p { color: var(--muted); position: relative; z-index: 1; }
  .cta-btns {
    display: flex; justify-content: center; gap: 12px;
    flex-wrap: wrap; margin-top: 32px; position: relative; z-index: 1;
  }
  .btn-p {
    padding: 14px 28px; border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; font-size: 0.92rem;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.2s; cursor: pointer; border: none;
  }
  .btn-cyan {
    background: var(--accent); color: #000;
    box-shadow: 0 4px 20px rgba(0,212,232,0.2);
  }
  .btn-cyan:hover { opacity: 0.88; transform: translateY(-2px); }
  .btn-ghost {
    background: var(--surface); color: var(--text);
    border: 1px solid var(--border2);
  }
  .btn-ghost:hover { background: var(--bg3); }
  .cta-note {
    margin-top: 20px; font-size: 0.76rem; color: var(--muted2);
    position: relative; z-index: 1;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 28px 0;
  }
  .footer-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
    font-size: 0.78rem; color: var(--muted2);
  }
  .footer-inner a { color: var(--muted2); text-decoration: none; }
  .footer-inner a:hover { color: var(--muted); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }

  /* ── POINTS HIGHLIGHT ── */
  .points-section {
    padding: 96px 0;
    position: relative; overflow: hidden;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .points-section::before {
    content: '';
    position: absolute; top: -200px; right: -100px;
    width: 700px; height: 700px;
    background: radial-gradient(ellipse, rgba(245,200,66,0.07) 0%, transparent 65%);
    pointer-events: none;
  }
  .points-section::after {
    content: '';
    position: absolute; bottom: -200px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(ellipse, rgba(0,212,232,0.05) 0%, transparent 65%);
    pointer-events: none;
  }

  .points-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 72px; align-items: center;
    position: relative; z-index: 1;
  }

  .points-text .pts-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 14px; border-radius: 100px;
    background: rgba(245,200,66,0.1); border: 1px solid rgba(245,200,66,0.25);
    color: var(--gold); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 22px;
  }
  .points-text h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -0.025em; margin-bottom: 18px;
  }
  .points-text h2 em { font-style: normal; color: var(--gold); }
  .points-text p {
    color: var(--muted); font-size: 0.97rem; line-height: 1.75;
    margin-bottom: 14px;
  }
  .points-benefits {
    list-style: none; margin-top: 24px;
    display: flex; flex-direction: column; gap: 14px;
  }
  .points-benefits li {
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 0.9rem;
  }
  .pb-icon {
    width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
    background: rgba(245,200,66,0.1); border: 1px solid rgba(245,200,66,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
  }
  .pb-text strong { display: block; font-weight: 700; margin-bottom: 2px; }
  .pb-text span { font-size: 0.82rem; color: var(--muted); }

  .points-ent-badge {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 28px; padding: 10px 18px; border-radius: 10px;
    background: rgba(0,212,232,0.08); border: 1px solid rgba(0,212,232,0.2);
    font-size: 0.83rem; color: var(--accent); font-weight: 600;
  }

  /* Points visual card */
  .points-visual {
    background: linear-gradient(145deg, #15110a, #1c1608);
    border: 1px solid rgba(245,200,66,0.2);
    border-radius: 22px; padding: 32px;
    box-shadow: 0 0 60px rgba(245,200,66,0.05);
    position: relative; overflow: hidden;
  }
  .points-visual::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .pv-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 24px;
  }
  .pv-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 0.85rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
  .pv-live { display: flex; align-items: center; gap: 6px; font-size: 0.7rem; color: var(--green); font-weight: 600; }
  .pv-live::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }

  .pv-total-row {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
    margin-bottom: 24px;
  }
  .pv-kpi {
    background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px; padding: 14px;
  }
  .pv-kpi-val {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
    font-size: 1.3rem; line-height: 1;
  }
  .pv-kpi-val.gold { color: var(--gold); }
  .pv-kpi-val.green { color: var(--green); }
  .pv-kpi-val.cyan { color: var(--accent); }
  .pv-kpi-label { font-size: 0.65rem; color: var(--muted); margin-top: 5px; }

  .pv-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 16px 0; }

  .pv-rank-title { font-size: 0.68rem; color: var(--muted); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
  .pv-rank-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
  .pv-rank-row {
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(0,0,0,0.25); border-radius: 10px; padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.04);
  }
  .pv-rank-left { display: flex; align-items: center; gap: 10px; }
  .pv-rank-medal { font-size: 0.95rem; width: 22px; text-align: center; }
  .pv-rank-name { font-size: 0.82rem; font-weight: 600; }
  .pv-rank-pts { font-size: 0.78rem; font-weight: 700; }

  .pv-config-box {
    background: rgba(0,0,0,0.3); border: 1px solid rgba(245,200,66,0.15);
    border-radius: 12px; padding: 16px;
  }
  .pv-config-title { font-size: 0.68rem; color: var(--gold); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
  .pv-config-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.78rem; margin-bottom: 7px;
  }
  .pv-config-row:last-child { margin-bottom: 0; }
  .pv-config-label { color: var(--muted); }
  .pv-config-val { font-weight: 700; color: var(--text); }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }


  /* ── POINTS HIGHLIGHT ── */
  .points-section {
    padding: 96px 0;
    position: relative; overflow: hidden;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .points-section::before {
    content: '';
    position: absolute; top: -200px; right: -100px;
    width: 700px; height: 700px;
    background: radial-gradient(ellipse, rgba(245,200,66,0.07) 0%, transparent 65%);
    pointer-events: none;
  }
  .points-section::after {
    content: '';
    position: absolute; bottom: -200px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(ellipse, rgba(0,212,232,0.05) 0%, transparent 65%);
    pointer-events: none;
  }
  .points-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 72px; align-items: center;
    position: relative; z-index: 1;
  }
  .points-text .pts-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 14px; border-radius: 100px;
    background: rgba(245,200,66,0.1); border: 1px solid rgba(245,200,66,0.25);
    color: var(--gold); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 22px;
  }
  .points-text h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -0.025em; margin-bottom: 18px;
  }
  .points-text h2 em { font-style: normal; color: var(--gold); }
  .points-text p { color: var(--muted); font-size: 0.97rem; line-height: 1.75; margin-bottom: 14px; }
  .points-benefits { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
  .points-benefits li { display: flex; align-items: flex-start; gap: 14px; font-size: 0.9rem; }
  .pb-icon {
    width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
    background: rgba(245,200,66,0.1); border: 1px solid rgba(245,200,66,0.2);
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
  }
  .pb-text strong { display: block; font-weight: 700; margin-bottom: 2px; }
  .pb-text span { font-size: 0.82rem; color: var(--muted); }
  .points-ent-badge {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 28px; padding: 10px 18px; border-radius: 10px;
    background: rgba(0,212,232,0.08); border: 1px solid rgba(0,212,232,0.2);
    font-size: 0.83rem; color: var(--accent); font-weight: 600;
  }
  .points-visual {
    background: linear-gradient(145deg, #15110a, #1c1608);
    border: 1px solid rgba(245,200,66,0.2);
    border-radius: 22px; padding: 32px;
    box-shadow: 0 0 60px rgba(245,200,66,0.05);
    position: relative; overflow: hidden;
  }
  .points-visual::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .pv-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
  .pv-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 0.85rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
  .pv-live { display: flex; align-items: center; gap: 6px; font-size: 0.7rem; color: var(--green); font-weight: 600; }
  .pv-live::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
  .pv-total-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
  .pv-kpi { background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 14px; }
  .pv-kpi-val { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.3rem; line-height: 1; }
  .pv-kpi-val.gold { color: var(--gold); }
  .pv-kpi-val.green { color: var(--green); }
  .pv-kpi-val.cyan { color: var(--accent); }
  .pv-kpi-label { font-size: 0.63rem; color: var(--muted); margin-top: 5px; }
  .pv-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 16px 0; }
  .pv-rank-title { font-size: 0.68rem; color: var(--muted); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
  .pv-rank-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
  .pv-rank-row { display: flex; align-items: center; justify-content: space-between; background: rgba(0,0,0,0.25); border-radius: 10px; padding: 10px 14px; border: 1px solid rgba(255,255,255,0.04); }
  .pv-rank-left { display: flex; align-items: center; gap: 10px; }
  .pv-rank-medal { font-size: 0.95rem; width: 22px; text-align: center; }
  .pv-rank-name { font-size: 0.82rem; font-weight: 600; }
  .pv-rank-pts { font-size: 0.78rem; font-weight: 700; }
  .pv-config-box { background: rgba(0,0,0,0.3); border: 1px solid rgba(245,200,66,0.15); border-radius: 12px; padding: 16px; }
  .pv-config-title { font-size: 0.68rem; color: var(--gold); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
  .pv-config-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; margin-bottom: 7px; }
  .pv-config-row:last-child { margin-bottom: 0; }
  .pv-config-label { color: var(--muted); }
  .pv-config-val { font-weight: 700; color: var(--text); }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 860px) {
    .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .points-inner { grid-template-columns: 1fr; gap: 40px; }
  }
  @media (max-width: 540px) {
    .billing-toggle { flex-wrap: wrap; justify-content: center; }
    .hero h1 { font-size: 2rem; }
    .pv-total-row { grid-template-columns: 1fr 1fr; }
  }